Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / scrolling / listbox-wheel-event-expected.html
blob8914f94e77d0692770bf49373299df76cfaa285f
1 <!DOCTYPE html>
2 <html>
3 <script>
4 function test() {
5 sel = document.getElementById("sel");
6 sel.selectedIndex = 49;
7 sel.selectedIndex = -1;
9 </script>
10 <body onload="test()">
11 <select multiple id="sel" style="width:500px; height:300px;"></select>
12 <script>
13 sel = document.getElementById("sel");
14 for (var i = 0; i < 50; i++) {
15 option = document.createElement("option");
16 option.innerHTML = "Option " + i;
17 sel.appendChild(option);
19 </script>
20 </body>
21 </html>