| Index: third_party/WebKit/LayoutTests/compositing/overflow/do-not-repaint-if-scrolling-composited-layers.html
|
| diff --git a/third_party/WebKit/LayoutTests/compositing/overflow/do-not-repaint-if-scrolling-composited-layers.html b/third_party/WebKit/LayoutTests/compositing/overflow/do-not-repaint-if-scrolling-composited-layers.html
|
| index 87f37ebfd597c4a96944f7338ac22341bb6a6e39..0a4ed4e90a17d0c935babf6bead0cc5e257b1f8a 100644
|
| --- a/third_party/WebKit/LayoutTests/compositing/overflow/do-not-repaint-if-scrolling-composited-layers.html
|
| +++ b/third_party/WebKit/LayoutTests/compositing/overflow/do-not-repaint-if-scrolling-composited-layers.html
|
| @@ -69,7 +69,7 @@
|
| toScroll.scrollTop = 100;
|
|
|
| if (window.internals) {
|
| - if (hasScrollbarRepaint(window.internals.layerTreeAsText(document, internals.LAYER_TREE_INCLUDES_REPAINT_RECTS)) == expected_results[testIteration])
|
| + if (hasScrollbarRepaint(window.internals.layerTreeAsText(document, internals.LAYER_TREE_INCLUDES_PAINT_INVALIDATIONS)) == expected_results[testIteration])
|
| result += "PASS repainted when expected\n";
|
| else
|
| result += "FAIL did not repaint when expected\n";
|
| @@ -98,7 +98,7 @@
|
| container.scrollTop = 100;
|
|
|
| if (window.internals) {
|
| - if (!hasScrollbarRepaint(window.internals.layerTreeAsText(document, internals.LAYER_TREE_INCLUDES_REPAINT_RECTS)))
|
| + if (!hasScrollbarRepaint(window.internals.layerTreeAsText(document, internals.LAYER_TREE_INCLUDES_PAINT_INVALIDATIONS)))
|
| result += "PASS did not repaint as expected\n";
|
| else
|
| result += "FAIL repainted when unexpected\n";
|
| @@ -123,7 +123,7 @@
|
| container.scrollTop = 100;
|
|
|
| if (window.internals) {
|
| - if (hasScrollbarRepaint(window.internals.layerTreeAsText(document, internals.LAYER_TREE_INCLUDES_REPAINT_RECTS)))
|
| + if (hasScrollbarRepaint(window.internals.layerTreeAsText(document, internals.LAYER_TREE_INCLUDES_PAINT_INVALIDATIONS)))
|
| result += "PASS repainted when expected\n";
|
| else
|
| result += "FAIL did not repaint when expected\n";
|
|
|