Chromium Code Reviews| Index: third_party/WebKit/LayoutTests/inspector/tracing/layer-tree.html |
| diff --git a/third_party/WebKit/LayoutTests/inspector/tracing/layer-tree.html b/third_party/WebKit/LayoutTests/inspector/tracing/layer-tree.html |
| index 79e32b3a68f5bed49c442fbac5bf14f6880ff6c8..ff9b011f1a3ae70a101e84a83b61d69026e27a72 100644 |
| --- a/third_party/WebKit/LayoutTests/inspector/tracing/layer-tree.html |
| +++ b/third_party/WebKit/LayoutTests/inspector/tracing/layer-tree.html |
| @@ -44,12 +44,12 @@ function test() |
| <body onload="runTestAfterDisplay()"> |
| Tests that LayerTreeModel successfully imports layers from a trace. |
| </p> |
| -<div id="a" style="width: 200px; height: 200px" class="layer"> |
| - <div class="layer" id="b1" style="width: 150px; height: 100px"></div> |
| - <div id="b2" class="layer" style="width: 140px; height: 110px"> |
| - <div id="c" class="layer" style="width: 100px; height: 90px"></div> |
| +<div id="a" style="width: 200px; height: 200px; background-color: yellow" class="layer"> |
|
vmpstr
2016/05/31 22:16:16
Why these changes?
sunxd
2016/05/31 22:41:52
When cc composites layers, it composites several l
|
| + <div class="layer" id="b1" style="width: 150px; height: 100px; background-color: red"></div> |
| + <div id="b2" class="layer" style="width: 140px; height: 110px; background-color: blue"> |
| + <div id="c" class="layer" style="width: 100px; height: 90px; background-color: black"></div> |
| </div> |
| - <div id="b3" class="layer" style="width: 140px; height: 110px"></div> |
| + <div id="b3" class="layer" style="width: 140px; height: 110px; background-color: red"></div> |
| </div> |
| </body> |
| </html> |