Merge Chromium + Blink git repositories
[chromium-blink-merge.git] / third_party / WebKit / LayoutTests / compositing / overflow / update-widget-positions-on-nested-frames-and-scrollers.html
blob6989fad9b1a3f92448bb66541c34817fdbd01913
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <style>
5 iframe {
6 top: 0;
7 left: 0;
8 height: 500px;
9 width: 500px;
10 border: 2px solid black;
12 </style>
13 <script>
14 if (window.testRunner)
15 testRunner.waitUntilDone();
16 if (window.internals)
17 window.internals.settings.setPreferCompositingToLCDTextEnabled(true);
18 </script>
19 </head>
21 <!--
22 This test scrolls a nested iframe down, then clicks on a select element. If
23 updateWidgetPositions() hasn't been called properly, this will cause the frame
24 to scroll to where it thinks the element being clicked on is. Javascript
25 execution will start in the onload handler in
26 resources/update-widget-positions-on-nested-frames-and-scrollers-inner-frame.html.
27 -->
28 <body>
29 <iframe src="resources/update-widget-positions-on-nested-frames-and-scrollers-outer-frame.html"></iframe>
30 </body>
31 </html>