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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/search/disabled-search-input.html

Issue 2005093002: Remove non-standard 'results' attribute of INPUT element. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 months 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 <html> 1 <html>
2 <head> 2 <head>
3 <script> 3 <script>
4 4
5 if (window.testRunner) { 5 if (window.testRunner) {
6 testRunner.dumpAsText(); 6 testRunner.dumpAsText();
7 testRunner.waitUntilDone(); 7 testRunner.waitUntilDone();
8 } 8 }
9 9
10 var logDiv; 10 var logDiv;
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
43 eventSender.keyDown('a'); 43 eventSender.keyDown('a');
44 log('The inner text element of the search input should never be 0-height ', input.value == 'a'); 44 log('The inner text element of the search input should never be 0-height ', input.value == 'a');
45 testRunner.notifyDone(); 45 testRunner.notifyDone();
46 }, 0); 46 }, 0);
47 } 47 }
48 48
49 </script> 49 </script>
50 </head> 50 </head>
51 <body onload="runTest()"> 51 <body onload="runTest()">
52 <div> 52 <div>
53 <input id="foo" type="search" results="0" disabled> 53 <input id="foo" type="search" disabled>
54 </div> 54 </div>
55 <div id="console"> 55 <div id="console">
56 </div> 56 </div>
57 </body> 57 </body>
58 </html> 58 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698