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

Side by Side Diff: third_party/WebKit/LayoutTests/compositing/repaint/page-scale-repaint.html

Issue 2162153003: compositing/repaint/page-scale-repaint.html also times out on release bots (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Make it fast Created 4 years, 5 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
« no previous file with comments | « third_party/WebKit/LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 ::-webkit-scrollbar { 5 ::-webkit-scrollbar {
6 width: 0px; 6 width: 0px;
7 height: 0px; 7 height: 0px;
8 } 8 }
9 </style> 9 </style>
10 </head> 10 </head>
11 <body style="width: 4000px; height:10000px;background-image:url('resources/grid. png')" onload="runTest();"> 11 <body style="width: 4000px; height:10000px;background-image:url('resources/grid. png')" onload="runTest();">
12 <script src="../../resources/run-after-layout-and-paint.js"></script> 12 <script src="../../resources/run-after-layout-and-paint.js"></script>
13 <script> 13 <script>
14 // Under-invalidation checking is too slow for this test.
15 if (window.internals)
16 internals.runtimeFlags.slimmingPaintUnderInvalidationCheckingEnabled = false ;
17
14 function runTest() { 18 function runTest() {
15 if (window.testRunner) 19 if (window.testRunner)
16 testRunner.waitUntilDone(); 20 testRunner.waitUntilDone();
17 runAfterLayoutAndPaint(function() { 21 runAfterLayoutAndPaint(function() {
18 if (window.internals) { 22 if (window.internals) {
19 window.internals.setPageScaleFactorLimits(0.5, 0.5); 23 window.internals.setPageScaleFactorLimits(0.5, 0.5);
20 window.internals.setPageScaleFactor(0.5); 24 window.internals.setPageScaleFactor(0.5);
21 } 25 }
22 if (window.testRunner) 26 if (window.testRunner)
23 testRunner.notifyDone(); 27 testRunner.notifyDone();
24 }); 28 });
25 } 29 }
26 </script> 30 </script>
27 <div style="transform:translateZ(0);"></div> 31 <div style="transform:translateZ(0);"></div>
28 </body> 32 </body>
29 </html> 33 </html>
OLDNEW
« no previous file with comments | « third_party/WebKit/LayoutTests/TestExpectations ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698