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