Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(567)

Side by Side Diff: LayoutTests/compositing/overflow/update-widget-positions-on-nested-frames-and-scrollers.html

Issue 719813002: Ensure scrolling causes updateWidgetPositions even on nested frames. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: + linux expectations Created 6 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
(Empty)
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;
11 }
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>
20
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.h tml.
27 -->
28 <body>
29 <iframe src="resources/update-widget-positions-on-nested-frames-and-scrollers- outer-frame.html"></iframe>
30 </body>
31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698