| Index: third_party/WebKit/LayoutTests/compositing/squashing/dont-squash-into-animated-layers.html
|
| diff --git a/third_party/WebKit/LayoutTests/compositing/squashing/dont-squash-into-animated-layers.html b/third_party/WebKit/LayoutTests/compositing/squashing/dont-squash-into-animated-layers.html
|
| index 006e4ed632d1fea1e6ddb376349dac4b2bd81628..b540b9dd625e706105175b4971a7148ae027911f 100644
|
| --- a/third_party/WebKit/LayoutTests/compositing/squashing/dont-squash-into-animated-layers.html
|
| +++ b/third_party/WebKit/LayoutTests/compositing/squashing/dont-squash-into-animated-layers.html
|
| @@ -23,9 +23,9 @@ if (window.testRunner) {
|
| onload = function() {
|
| target.style.transform = "translateX(10px)";
|
| if (window.internals) {
|
| - var layers = JSON.parse(internals.layerTreeAsText(document, 1));
|
| - assert_true(layers.children[0].children[1].compositingReasons[1] == "Layer was separately composited because it could not be squashed.");
|
| - assert_true(layers.children[0].children[1].squashingDisallowedReasons[0] == "Cannot squash into a layer that is animating.");
|
| + var layers = JSON.parse(internals.layerTreeAsText(document, 1))["layers"]
|
| + assert_true(layers[2].compositingReasons[1] == "Layer was separately composited because it could not be squashed.");
|
| + assert_true(layers[2].squashingDisallowedReasons[0] == "Cannot squash into a layer that is animating.");
|
| }
|
| };
|
| </script>
|
|
|