upload tizen1.0 source
[framework/web/webkit-efl.git] / LayoutTests / fast / css / recursive-delay-update-scroll.html
1 <html>
2  <head>
3    <script>
4      if (window.layoutTestController)
5        layoutTestController.dumpAsText();
6    </script>
7
8    <style media="all" type="text/css">
9       body {
10         display: -webkit-box;
11       }
12
13       .test {
14         margin-right: -1000000;
15         overflow-y: auto;
16       }
17     </style>
18   </head>
19
20   <body>
21     <!-- This would previously trigger an assertion failure. Thanks to Robert
22          Swiecki for the test case. -->
23
24     <form class="test">
25       <select class="test">
26         <option>1</option>
27       </select>
28     </form>
29
30     <p>PASS</p>
31   </body>
32 </html>