| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <script src="../js/resources/js-test-pre.js"></script> | 3 <script src="../js/resources/js-test-pre.js"></script> |
| 4 </head> | 4 </head> |
| 5 <body> | 5 <body> |
| 6 <p>This tests for problems where we'd lose the selection in a textarea when maki
ng style and value changes.</p> | 6 <p>This tests for problems where we'd lose the selection in a textarea when maki
ng style and value changes.</p> |
| 7 <div id="console"></div> | 7 <div id="console"></div> |
| 8 <p><textarea id="ta">abc123 | 8 <p><textarea id="ta">abc123 |
| 9 </textarea></p> | 9 </textarea></p> |
| 10 <script type="text/javascript"> | 10 <script type="text/javascript"> |
| (...skipping 22 matching lines...) Expand all Loading... |
| 33 shouldBe('ta.selectionEnd', '4'); | 33 shouldBe('ta.selectionEnd', '4'); |
| 34 debug("- add background style"); | 34 debug("- add background style"); |
| 35 ta.setAttribute("style", "background-color: yellow"); | 35 ta.setAttribute("style", "background-color: yellow"); |
| 36 shouldBe('ta.selectionStart', '3'); | 36 shouldBe('ta.selectionStart', '3'); |
| 37 shouldBe('ta.selectionEnd', '4'); | 37 shouldBe('ta.selectionEnd', '4'); |
| 38 debug("- set value to same value"); | 38 debug("- set value to same value"); |
| 39 ta.value = "abc123"; | 39 ta.value = "abc123"; |
| 40 shouldBe('ta.selectionStart', '3'); | 40 shouldBe('ta.selectionStart', '3'); |
| 41 shouldBe('ta.selectionEnd', '4'); | 41 shouldBe('ta.selectionEnd', '4'); |
| 42 </script> | 42 </script> |
| 43 <script type="text/javascript" src="../js/resources/js-test-post.js"></script> | |
| 44 </body> | 43 </body> |
| 45 </html> | 44 </html> |
| OLD | NEW |