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

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

Issue 2039943003: Convert fast/repaint/window-resize*.html into reftests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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 side-by-side diff with in-line comments
Download patch
Index: third_party/WebKit/LayoutTests/fast/repaint/resources/window-resize-repaint.js
diff --git a/third_party/WebKit/LayoutTests/fast/repaint/resources/window-resize-repaint.js b/third_party/WebKit/LayoutTests/fast/repaint/resources/window-resize-repaint.js
index b4035369311ad888fde5b7c2e337023c58d2ee08..72d4659f88982a6df091de3eca7b986701f5ca9a 100644
--- a/third_party/WebKit/LayoutTests/fast/repaint/resources/window-resize-repaint.js
+++ b/third_party/WebKit/LayoutTests/fast/repaint/resources/window-resize-repaint.js
@@ -1,39 +1,36 @@
var testSizes = [
- { width: 200, height: 200 }, // initial size
- { width: 200, height: 300 }, // height increase
- { width: 300, height: 300 }, // width increase
- { width: 300, height: 250 }, // height decrease
- { width: 250, height: 250 } // width decrease
- // Tests can add more testSizes.
+ { width: 600, height: 500 }, // initial size
+ { width: 600, height: 250 }, // height decrease
+ { width: 400, height: 250 }, // width decrease
+ { width: 400, height: 600 }, // height increase
+ { width: 800, height: 600 } // width increase
];
var sizeIndex = 0;
+var repaintRects = "";
-function repaintTest() {
- window.resizeTo(testSizes[sizeIndex].width, testSizes[sizeIndex].height);
-}
+if (window.internals)
+ internals.settings.setUseDefaultImageInterpolationQuality(true);
-if (window.internals) {
- internals.settings.setOverlayScrollbarsEnabled(true);
- internals.settings.setMockScrollbarsEnabled(true);
+function doTest() {
+ if (sizeIndex) {
+ repaintRects += internals.layerTreeAsText(document, window.internals.LAYER_TREE_INCLUDES_PAINT_INVALIDATIONS);
+ internals.stopTrackingRepaints(document);
+ }
+ ++sizeIndex;
+ if (sizeIndex < testSizes.length) {
+ internals.startTrackingRepaints(document);
+ window.resizeTo(testSizes[sizeIndex].width, testSizes[sizeIndex].height);
+ testRunner.layoutAndPaintAsyncThen(doTest);
+ } else if (window.testRunner) {
+ testRunner.setCustomTextOutput(repaintRects);
+ testRunner.notifyDone();
+ }
}
if (window.testRunner) {
testRunner.useUnfortunateSynchronousResizeMode();
- testRunner.dumpAsText();
-
- window.onload = function() {
- window.resizeTo(testSizes[0].width, testSizes[0].height);
-
- var repaintRects = "";
- for (sizeIndex = 1; sizeIndex < testSizes.length; ++sizeIndex) {
- document.body.offsetTop;
- internals.startTrackingRepaints(document);
- repaintTest();
- document.body.offsetTop;
- repaintRects += internals.layerTreeAsText(document, window.internals.LAYER_TREE_INCLUDES_PAINT_INVALIDATIONS);
- internals.stopTrackingRepaints(document);
- }
- testRunner.setCustomTextOutput(repaintRects);
- }
+ testRunner.waitUntilDone();
+ window.resizeTo(testSizes[0].width, testSizes[0].height);
+ testRunner.layoutAndPaintAsyncThen(doTest);
}

Powered by Google App Engine
This is Rietveld 408576698