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

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

Issue 2728273002: [RLS] Don't create PaintLayerCompositor layers. (Closed)
Patch Set: rebase Created 3 years, 9 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/compositing/layer-tree.html
diff --git a/third_party/WebKit/LayoutTests/compositing/layer-tree.html b/third_party/WebKit/LayoutTests/compositing/layer-tree.html
new file mode 100644
index 0000000000000000000000000000000000000000..2076a445503d68ff81d174144f75ea76afeaa209
--- /dev/null
+++ b/third_party/WebKit/LayoutTests/compositing/layer-tree.html
@@ -0,0 +1,19 @@
+<!DOCTYPE html>
+<!--
+This test dumps the full composited layer tree on a blank page with overflow.
+-->
+<style>
+html { overflow: scroll; width: 1200px; height: 900px; }
+/* Fixed scrollbar thickness for consistency across platforms. */
+::-webkit-scrollbar { width: 20px; height: 20px; }
+::-webkit-scrollbar-thumb { background-color: blue; }
+</style>
+<script>
+
+testRunner.dumpAsText();
+testRunner.setCustomTextOutput(
+ internals.layerTreeAsText(document,
+ internals.OUTPUT_AS_LAYER_TREE |
+ internals.LAYER_TREE_INCLUDES_ROOT_LAYER));
+
+</script>

Powered by Google App Engine
This is Rietveld 408576698