OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <script src="../../resources/js-test.js"></script> | 3 <script src="../../../resources/js-test.js"></script> |
4 </head> | 4 </head> |
5 <body> | 5 <body> |
6 <textarea id="text"></textarea> | 6 <textarea id="text"></textarea> |
7 <script> | 7 <script> |
8 description("This test calls textarea.select and confirms selectionStart/End."); | 8 description("This test calls textarea.select and confirms selectionStart/End."); |
9 | 9 |
10 text.value = "hello\n"; | 10 text.value = "hello\n"; |
11 text.select(); | 11 text.select(); |
12 shouldBe("text.selectionStart", "0"); | 12 shouldBe("text.selectionStart", "0"); |
13 shouldBe("text.selectionEnd", "6"); | 13 shouldBe("text.selectionEnd", "6"); |
14 </script> | 14 </script> |
15 </body> | 15 </body> |
16 </html> | 16 </html> |
OLD | NEW |