Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(181)

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/textarea/empty-textarea-toggle-disabled.html

Issue 1524663002: Move textarea-related tests to fast/forms/textarea/, part 2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698