Ticket #4665: paste_test.html

File paste_test.html, 545 bytes (added by pomu0325, 15 years ago)

test code for comparing execCommand('paste')

Line 
1<html>
2<head>
3<title>test</title>
4<script language="JavaScript">
5function test() {
6        document.getElementById('test1').focus();
7        document.execCommand('paste');
8
9        var r = document.body.createTextRange();
10        r.moveToElementText(document.getElementById('test2'));
11        r.execCommand('paste');
12}
13</script>
14</head>
15<body>
16<input type="button" onclick="test()" value="paste">
17<div id="test1" contenteditable="true" style="background:yellow">
18</div>
19
20<div id="test2" contenteditable="true" style="background:red">
21</div>
22
23</body>
24</html>
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy