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

Side by Side Diff: LayoutTests/compositing/tiling/backface-preserve-3d-tiled.html

Issue 24438004: Rename testRunner.dumpAsText(true) to testRunner.dumpAsTextWithPixelResults() (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: more tests Created 7 years, 2 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; 7 overflow: hidden;
8 } 8 }
9 9
10 .container { 10 .container {
(...skipping 19 matching lines...) Expand all
30 .tiled { 30 .tiled {
31 height: 2500px; 31 height: 2500px;
32 } 32 }
33 33
34 #layers { 34 #layers {
35 opacity: 0; /* Hide from pixel result */ 35 opacity: 0; /* Hide from pixel result */
36 } 36 }
37 </style> 37 </style>
38 <script> 38 <script>
39 if (window.testRunner) 39 if (window.testRunner)
40 testRunner.dumpAsText(true); 40 testRunner.dumpAsTextWithPixelResults();
41 41
42 function dumpLayers() 42 function dumpLayers()
43 { 43 {
44 if (window.internals) 44 if (window.internals)
45 document.getElementById('layers').innerText = window.internals.l ayerTreeAsText(document); 45 document.getElementById('layers').innerText = window.internals.l ayerTreeAsText(document);
46 } 46 }
47 window.addEventListener('load', dumpLayers, false); 47 window.addEventListener('load', dumpLayers, false);
48 </script> 48 </script>
49 </head> 49 </head>
50 <body> 50 <body>
51 <!-- You should see two empty white squares. --> 51 <!-- You should see two empty white squares. -->
52 <div class="container"> 52 <div class="container">
53 <div class="box"></div> 53 <div class="box"></div>
54 </div> 54 </div>
55 <div class="container"> 55 <div class="container">
56 <div class="tiled box"> 56 <div class="tiled box">
57 </div> 57 </div>
58 </div> 58 </div>
59 59
60 <pre id="layers">Layers go here</pre> 60 <pre id="layers">Layers go here</pre>
61 </body> 61 </body>
62 </html> 62 </html>
OLDNEW
« no previous file with comments | « LayoutTests/compositing/text-on-scaled-surface-expected.html ('k') | LayoutTests/compositing/tiling/huge-layer-img.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698