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

Side by Side Diff: LayoutTests/compositing/tiling/rotated-tiled-preserve3d-clamped.html

Issue 16509007: Cleanup constants for layerTreeAsText. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: naming Created 7 years, 6 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 | Annotate | Revision Log
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 2
3 <html> 3 <html>
4 <head> 4 <head>
5 <style> 5 <style>
6 body { 6 body {
7 overflow: hidden; /* hide body scrollbars */ 7 overflow: hidden; /* hide body scrollbars */
8 } 8 }
9 .scene { 9 .scene {
10 position: relative; 10 position: relative;
(...skipping 22 matching lines...) Expand all
33 opacity: 0; /* hide from pixel result */ 33 opacity: 0; /* hide from pixel result */
34 } 34 }
35 </style> 35 </style>
36 <script> 36 <script>
37 if (window.testRunner) 37 if (window.testRunner)
38 testRunner.dumpAsText(true); 38 testRunner.dumpAsText(true);
39 39
40 function doTest() 40 function doTest()
41 { 41 {
42 if (window.internals) { 42 if (window.internals) {
43 document.getElementById('layers').innerText = internals.layerTre eAsText(document, 43 document.getElementById('layers').innerText = internals.layerTre eAsText(document);
44 internals.LAYER_TREE_INCLUDES_VISIBLE_RECTS | internals.LAYE R_TREE_INCLUDES_TILE_CACHES);
45 } 44 }
46 } 45 }
47 46
48 window.addEventListener('load', doTest, false); 47 window.addEventListener('load', doTest, false);
49 </script> 48 </script>
50 </head> 49 </head>
51 <body> 50 <body>
52 51
53 <div class="scene"> 52 <div class="scene">
54 <div class="container"> 53 <div class="container">
55 <div class="tiled"></div> 54 <div class="tiled"></div>
56 </div> 55 </div>
57 </div> 56 </div>
58 <pre id="layers">Layer tree goes here</p> 57 <pre id="layers">Layer tree goes here</p>
59 58
60 </body> 59 </body>
61 </html> 60 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698