| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 Test passes if it does not crash. | 3 Test passes if it does not crash. |
| 4 <textarea id="A"></textarea> | 4 <textarea id="A"></textarea> |
| 5 <textarea id="B"></textarea> | 5 <textarea id="B"></textarea> |
| 6 <script> | 6 <script> |
| 7 if (window.layoutTestController) | 7 if (window.layoutTestController) |
| 8 layoutTestController.dumpAsText(); | 8 layoutTestController.dumpAsText(); |
| 9 | 9 |
| 10 A.selectionStart = 0; | 10 A.selectionStart = 0; |
| 11 B.style.display = "none"; | 11 B.style.display = "none"; |
| 12 B.selectionStart = 0; | 12 B.selectionStart = 0; |
| 13 </script> | 13 </script> |
| 14 </html> | 14 </html> |
| OLD | NEW |