OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <html> | 2 <html> |
3 <head> | 3 <head> |
4 <script> | 4 <script> |
5 function test() | 5 function test() |
6 { | 6 { |
7 if (window.testRunner) | 7 if (window.testRunner) |
8 testRunner.dumpAsText(); | 8 testRunner.dumpAsText(); |
9 | 9 |
10 ta = document.getElementById('ta'); | 10 ta = document.getElementById('ta'); |
(...skipping 10 matching lines...) Expand all Loading... |
21 } | 21 } |
22 </script> | 22 </script> |
23 </head> | 23 </head> |
24 <body onload="test();"> | 24 <body onload="test();"> |
25 <p>Tests that toggling disabled state in a textarea leaves the textarea typeable
. | 25 <p>Tests that toggling disabled state in a textarea leaves the textarea typeable
. |
26 To Test manually, load this page and type in the textarea. If you can type, then | 26 To Test manually, load this page and type in the textarea. If you can type, then |
27 the test succeeded.<p> | 27 the test succeeded.<p> |
28 <textarea id="ta" disabled="disabled"></textarea> | 28 <textarea id="ta" disabled="disabled"></textarea> |
29 </body> | 29 </body> |
30 </html> | 30 </html> |
OLD | NEW |