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

Side by Side Diff: LayoutTests/compositing/tiling/rotated-tiled-clamped.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, 3 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 14 matching lines...) Expand all
25 -webkit-transform: rotateY(80deg); 25 -webkit-transform: rotateY(80deg);
26 -webkit-transform-origin: 1500px 50%; 26 -webkit-transform-origin: 1500px 50%;
27 } 27 }
28 28
29 #layers { 29 #layers {
30 opacity: 0; /* hide from pixel result */ 30 opacity: 0; /* hide from pixel result */
31 } 31 }
32 </style> 32 </style>
33 <script> 33 <script>
34 if (window.testRunner) 34 if (window.testRunner)
35 testRunner.dumpAsText(true); 35 testRunner.dumpAsTextWithPixelResults();
36 36
37 function doTest() 37 function doTest()
38 { 38 {
39 if (window.internals) { 39 if (window.internals) {
40 document.getElementById('layers').innerText = internals.layerTre eAsText(document); 40 document.getElementById('layers').innerText = internals.layerTre eAsText(document);
41 } 41 }
42 } 42 }
43 43
44 window.addEventListener('load', doTest, false); 44 window.addEventListener('load', doTest, false);
45 </script> 45 </script>
46 </head> 46 </head>
47 <body> 47 <body>
48 48
49 <div class="scene"> 49 <div class="scene">
50 <div class="tiled"></div> 50 <div class="tiled"></div>
51 </div> 51 </div>
52 <pre id="layers">Layer tree goes here</p> 52 <pre id="layers">Layer tree goes here</p>
53 53
54 </body> 54 </body>
55 </html> 55 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698