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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/forms/select/select-initial-position.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 2
3 <body> 3 <body>
4 initial selected:<br> 4 initial selected:<br>
5 <select name="component" size="4"> 5 <select name="component" size="4">
6 <option>opt</option> 6 <option>opt</option>
7 <option>opt</option> 7 <option>opt</option>
8 <option>opt</option> 8 <option>opt</option>
9 <option>opt</option> 9 <option>opt</option>
10 <option>opt</option> 10 <option>opt</option>
(...skipping 128 matching lines...) Expand 10 before | Expand all | Expand 10 after
139 opt.selected = 'selected'; 139 opt.selected = 'selected';
140 sel.appendChild(opt); 140 sel.appendChild(opt);
141 opt = document.createElement('option') 141 opt = document.createElement('option')
142 opt.innerHTML = 'opt'; 142 opt.innerHTML = 'opt';
143 sel.appendChild(opt); 143 sel.appendChild(opt);
144 </script> 144 </script>
145 145
146 </body> 146 </body>
147 147
148 </html> 148 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698