OLD | NEW |
---|---|
(Empty) | |
1 <!DOCTYPE html> | |
2 <html> | |
3 <body> | |
4 <textarea id='test' cols=5 rows=4> | |
5 test | |
6 | |
7 </textarea> | |
8 <script src='../../resources/js-test.js'></script> | |
9 <script> | |
10 var textarea = document.getElementById('test'); | |
11 textarea.focus(); | |
12 | |
13 // copy a new line | |
14 textarea.setSelectionRange(4, 5); | |
15 document.execCommand('copy'); | |
16 | |
17 document.execCommand('SelectAll'); | |
18 document.execCommand('paste'); | |
19 shouldBeEqualToString('textarea.value', '\n'); | |
leviw_travelin_and_unemployed
2014/01/07 19:48:10
It would be nice if you added a description of wha
ziran.sun
2014/01/08 11:58:53
Done.
| |
20 </script> | |
21 </body> | |
22 </html> | |
OLD | NEW |