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

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

Issue 1413493005: Update layout tests to work when smooth scrolling is enabled by default (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: worked on nit Created 5 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
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <script src="resources/text-based-repaint.js" type="text/javascript"></scrip t> 4 <script src="resources/text-based-repaint.js" type="text/javascript"></scrip t>
5 <script> 5 <script>
6 function repaintTest() { 6 function repaintTest() {
7 // Now scroll once in the #innerDiv to the green area. 7 // Now scroll once in the #innerDiv to the green area.
8 if (window.eventSender) 8 if (window.eventSender)
9 eventSender.mouseScrollBy(0, -10); 9 eventSender.mouseScrollBy(0, -10);
10 } 10 }
11 window.addEventListener("load", runRepaintTest, false); 11 window.addEventListener("load", runRepaintTest, false);
12 </script> 12 </script>
13 </head> 13 </head>
14 <body> 14 <body>
15 <!-- Bug 71550 - REGRESSION (r93614): Content remains despite parent element bei ng scrolled off page using javascript. --> 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 --> 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"> 17 <div style="height: 300px; overflow-y: scroll;" id="outerDiv">
18 <div style="height: 300px; background: purple;"></div> 18 <div style="height: 300px; background: purple;"></div>
19 <div style="height: 400px; overflow-y: scroll;" id="innerDiv"> 19 <div style="height: 400px; overflow-y: scroll;" id="innerDiv">
20 <table> 20 <table>
21 <tr><td style="height: 400px; width: 300px; background: red"></td></ tr> 21 <tr><td style="height: 400px; width: 300px; background: red"></td></ tr>
22 <tr><td style="height: 400px; width: 300px; background: green"></td> </tr> 22 <tr><td style="height: 400px; width: 300px; background: green"></td> </tr>
23 </table> 23 </table>
24 </div> 24 </div>
25 </div> 25 </div>
26 <script> 26 <script>
27 if (window.eventSender) { 27 if (window.eventSender) {
28 testRunner.dumpAsTextWithPixelResults(); 28 testRunner.dumpAsTextWithPixelResults();
29 29
30 if (window.internals)
31 internals.settings.setScrollAnimatorEnabled(false);
32
30 // Scroll the #outerDiv until we reach the #innerDiv. 33 // Scroll the #outerDiv until we reach the #innerDiv.
31 eventSender.mouseMoveTo(50, 50); 34 eventSender.mouseMoveTo(50, 50);
32 eventSender.mouseScrollBy(0, -8); 35 eventSender.mouseScrollBy(0, -8);
33 } else { 36 } else {
34 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."); 37 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.");
35 } 38 }
36 </script> 39 </script>
37 </body> 40 </body>
38 </html> 41 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698