Move parseFontFaceDescriptor to CSSPropertyParser.cpp
[chromium-blink-merge.git] / third_party / WebKit / ManualTests / scroll-wheel-select-element.html
blob650be175c775e26b34a51598aa3e3e21ab56e2c5
1 <!--- Verify that a large drop-down paints properly when scrolling it with the mousewheel -->
2 <script>
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;
8 frag.appendChild(opt);
10 var select = document.querySelector('select');
11 select.appendChild(frag);
13 </script>
14 <select></select>