1 <!--- Verify that a large drop-down paints properly when scrolling it with the mousewheel -->
3 window
.onload = function() {
4 var frag
= document
.createDocumentFragment();
5 for (var i
= 0; i
< 100; i
++) {
6 var opt
= document
.createElement('option');
7 opt
.textContent
= 'option ' + i
;
10 var select
= document
.querySelector('select');
11 select
.appendChild(frag
);