Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(182)

Unified Diff: third_party/WebKit/LayoutTests/inspector/tracing/layer-tree.html

Issue 1945813002: cc: Make LayerTreeImpl dump layer list to FrameViewer and Devtools (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Force drawsContent for layout test Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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>

Powered by Google App Engine
This is Rietveld 408576698