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

Side by Side Diff: third_party/WebKit/LayoutTests/fast/repaint/resources/window-resize-repaint.js

Issue 2188383002: Try to fix flakiness of fast/repaint/window-resize-background-image*.html (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: - Created 4 years, 4 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
1 var testSizes = [ 1 var testSizes = [
2 { width: 600, height: 500 }, // initial size 2 { width: 600, height: 500 }, // initial size
3 { width: 600, height: 250 }, // height decrease 3 { width: 600, height: 250 }, // height decrease
4 { width: 400, height: 250 }, // width decrease 4 { width: 400, height: 250 }, // width decrease
5 { width: 400, height: 600 }, // height increase 5 { width: 400, height: 600 }, // height increase
6 { width: 800, height: 600 } // width increase 6 { width: 800, height: 600 } // width increase
7 ]; 7 ];
8 8
9 var sizeIndex = 0; 9 var sizeIndex = 0;
10 var repaintRects = ""; 10 var repaintRects = "";
(...skipping 15 matching lines...) Expand all
26 testRunner.layoutAndPaintAsyncThen(doTest); 26 testRunner.layoutAndPaintAsyncThen(doTest);
27 } else if (window.testRunner) { 27 } else if (window.testRunner) {
28 testRunner.setCustomTextOutput(repaintRects); 28 testRunner.setCustomTextOutput(repaintRects);
29 testRunner.notifyDone(); 29 testRunner.notifyDone();
30 } 30 }
31 } 31 }
32 32
33 if (window.testRunner) { 33 if (window.testRunner) {
34 testRunner.useUnfortunateSynchronousResizeMode(); 34 testRunner.useUnfortunateSynchronousResizeMode();
35 testRunner.waitUntilDone(); 35 testRunner.waitUntilDone();
36 window.resizeTo(testSizes[0].width, testSizes[0].height); 36 onload = function() {
37 testRunner.layoutAndPaintAsyncThen(doTest); 37 window.resizeTo(testSizes[0].width, testSizes[0].height);
38 testRunner.layoutAndPaintAsyncThen(doTest);
39 };
38 } 40 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698