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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/select/listbox-onchange.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 <head> 2 <head>
3 <script> 3 <script>
4 function setup() 4 function setup()
5 { 5 {
6 var results = document.createElement('div'); 6 var results = document.createElement('div');
7 results.id = "res"; 7 results.id = "res";
8 results.appendChild(document.createTextNode("Results:")); 8 results.appendChild(document.createTextNode("Results:"));
9 document.body.appendChild(results); 9 document.body.appendChild(results);
10 } 10 }
(...skipping 174 matching lines...) Expand 10 before | Expand all | Expand 10 after
185 </head> 185 </head>
186 <body onload="test()"> 186 <body onload="test()">
187 <select id="sl1" size=5 multiple onchange="log('onChange fired')"> 187 <select id="sl1" size=5 multiple onchange="log('onChange fired')">
188 <option selected value="0">item 0</option> 188 <option selected value="0">item 0</option>
189 <option value="1">item 1 189 <option value="1">item 1
190 <option value="2">item 2 190 <option value="2">item 2
191 <option value="3">item 3 191 <option value="3">item 3
192 </select> 192 </select>
193 </body> 193 </body>
194 </html> 194 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698