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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/select/option-constructor-selected.html

Issue 1509853008: Move select/option/optgroup-related tests in fast/forms to fast/forms/select. (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 <html> 1 <html>
2 <script> 2 <script>
3 function test() { 3 function test() {
4 if (window.testRunner) 4 if (window.testRunner)
5 testRunner.dumpAsText(); 5 testRunner.dumpAsText();
6 6
7 var popup = document.getElementById('popup'); 7 var popup = document.getElementById('popup');
8 var success; 8 var success;
9 9
10 // Test 0 10 // Test 0
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 var console = document.getElementById('console'); 61 var console = document.getElementById('console');
62 console.innerHTML = console.innerHTML + msg + "<br>"; 62 console.innerHTML = console.innerHTML + msg + "<br>";
63 } 63 }
64 </script> 64 </script>
65 <body onload="test()"> 65 <body onload="test()">
66 This tests that the "selected" argument is honored when constructing an opti on element.<br> 66 This tests that the "selected" argument is honored when constructing an opti on element.<br>
67 <select id="popup"></select><br> 67 <select id="popup"></select><br>
68 <div id="console"></div> 68 <div id="console"></div>
69 </body> 69 </body>
70 </html> 70 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698