| 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 72d4659f88982a6df091de3eca7b986701f5ca9a..b4035369311ad888fde5b7c2e337023c58d2ee08 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,36 +1,39 @@
|
| var 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
|
| + { 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.
|
| ];
|
|
|
| var sizeIndex = 0;
|
| -var repaintRects = "";
|
|
|
| -if (window.internals)
|
| - internals.settings.setUseDefaultImageInterpolationQuality(true);
|
| +function repaintTest() {
|
| + window.resizeTo(testSizes[sizeIndex].width, testSizes[sizeIndex].height);
|
| +}
|
|
|
| -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.internals) {
|
| + internals.settings.setOverlayScrollbarsEnabled(true);
|
| + internals.settings.setMockScrollbarsEnabled(true);
|
| }
|
|
|
| if (window.testRunner) {
|
| testRunner.useUnfortunateSynchronousResizeMode();
|
| - testRunner.waitUntilDone();
|
| - window.resizeTo(testSizes[0].width, testSizes[0].height);
|
| - testRunner.layoutAndPaintAsyncThen(doTest);
|
| + 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);
|
| + }
|
| }
|
|
|