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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/overflow-scroll-in-overflow-scroll-scrolled.html

Issue 2321183002: Move repaint tests (except for svg/) to paint/invalidation (Closed)
Patch Set: - Created 4 years, 3 months 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
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <html>
3 <head>
4 <script src="resources/text-based-repaint.js" type="text/javascript"></scrip t>
5 <script>
6 function repaintTest() {
7 // Now scroll once in the #innerDiv to the green area.
8 if (window.eventSender)
9 eventSender.mouseScrollBy(0, -10);
10 }
11 window.addEventListener("load", runRepaintAndPixelTest, false);
12 </script>
13 </head>
14 <body>
15 <!-- Bug 71550 - REGRESSION (r93614): Content remains despite parent element bei ng scrolled off page using javascript. -->
16 <!-- For the test to pass you should not see any RED or PURPLE, only green -->
17 <div style="height: 300px; overflow-y: scroll;" id="outerDiv">
18 <div style="height: 300px; background: purple;"></div>
19 <div style="height: 400px; overflow-y: scroll;" id="innerDiv">
20 <div style="height: 400px; width: 300px; background: red"></div>
21 <div style="height: 400px; width: 300px; background: green"></div>
22 </div>
23 </div>
24 <script>
25 if (window.eventSender) {
26 testRunner.dumpAsTextWithPixelResults();
27
28 if (window.internals)
29 internals.settings.setScrollAnimatorEnabled(false);
30
31 // Scroll the #outerDiv until we reach the #innerDiv.
32 eventSender.mouseMoveTo(50, 50);
33 eventSender.mouseScrollBy(0, -8);
34 } else {
35 document.write("This test is better run under DumpRenderTree. To manually te st it, continuously scroll down on the top-most element. There should be no repa int issue.");
36 }
37 </script>
38 </body>
39 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698