Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / fast / css / recursive-delay-update-scroll.html
blob439bd141a957677d841f6ab7766cdf61b16253ba
1 <html>
2 <head>
3 <script>
4 if (window.testRunner)
5 testRunner.dumpAsText();
6 </script>
8 <style media="all" type="text/css">
9 body {
10 display: -webkit-box;
13 .test {
14 margin-right: -1000000;
15 overflow-y: auto;
17 </style>
18 </head>
20 <body>
21 <!-- This would previously trigger an assertion failure. Thanks to Robert
22 Swiecki for the test case. -->
24 <form class="test">
25 <select class="test">
26 <option>1</option>
27 </select>
28 </form>
30 <p>PASS</p>
31 </body>
32 </html>