| Index: third_party/WebKit/LayoutTests/compositing/overflow/ancestor-with-clip-path.html
|
| diff --git a/third_party/WebKit/LayoutTests/compositing/overflow/ancestor-with-clip-path.html b/third_party/WebKit/LayoutTests/compositing/overflow/ancestor-with-clip-path.html
|
| index b509523780ca06a3070505a4cc7bf43235087ea7..e3164fe097e04194c7a4b1500a1cd02754446bb4 100644
|
| --- a/third_party/WebKit/LayoutTests/compositing/overflow/ancestor-with-clip-path.html
|
| +++ b/third_party/WebKit/LayoutTests/compositing/overflow/ancestor-with-clip-path.html
|
| @@ -49,7 +49,7 @@ var result = "";
|
| onload = function() {
|
| if (window.internals) {
|
| result += "No clip path ancestor (should be using composited scrolling): ";
|
| - var layers = window.internals.layerTreeAsText(document, window.internals.OUTPUT_CHILDREN_AS_LAYER_LIST);
|
| + var layers = window.internals.layerTreeAsText(document);
|
| if (isUsingCompositedScrolling(JSON.parse(layers)))
|
| result += "Pass.\n";
|
| else
|
| @@ -59,7 +59,7 @@ onload = function() {
|
| requestAnimationFrame(function() {
|
| if (window.internals) {
|
| result += "Has clip path ancestor (should not be using composited scrolling): ";
|
| - var layers = window.internals.layerTreeAsText(document, window.internals.OUTPUT_CHILDREN_AS_LAYER_LIST);
|
| + var layers = window.internals.layerTreeAsText(document);
|
| if (!isUsingCompositedScrolling(JSON.parse(layers)))
|
| result += "Pass.\n";
|
| else
|
|
|