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

Side by Side 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 unified diff | Download patch
OLDNEW
(Empty)
1 <!DOCTYPE html>
2 <!--
3 This test dumps the full composited layer tree on a blank page with overflow.
4 -->
5 <style>
6 html { overflow: scroll; width: 1200px; height: 900px; }
7 /* Fixed scrollbar thickness for consistency across platforms. */
8 ::-webkit-scrollbar { width: 20px; height: 20px; }
9 ::-webkit-scrollbar-thumb { background-color: blue; }
10 </style>
11 <script>
12
13 testRunner.dumpAsText();
14 testRunner.setCustomTextOutput(
15 internals.layerTreeAsText(document,
16 internals.OUTPUT_AS_LAYER_TREE |
17 internals.LAYER_TREE_INCLUDES_ROOT_LAYER));
18
19 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698