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

Side by Side Diff: LayoutTests/compositing/layer-creation/overlap-transformed-layer.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 <html> 1 <html>
2 <head> 2 <head>
3 <style> 3 <style>
4 #container { 4 #container {
5 -webkit-transform: translate(-10px, 0px); 5 -webkit-transform: translate(-10px, 0px);
6 } 6 }
7 7
8 #indicator { 8 #indicator {
9 position: absolute; 9 position: absolute;
10 left: 15px; 10 left: 15px;
(...skipping 25 matching lines...) Expand all
36 } 36 }
37 37
38 body { 38 body {
39 overflow: hidden; 39 overflow: hidden;
40 } 40 }
41 41
42 </style> 42 </style>
43 43
44 <script> 44 <script>
45 if (window.testRunner) { 45 if (window.testRunner) {
46 testRunner.dumpAsText(true); 46 testRunner.dumpAsTextWithPixelResults();
47 window.addEventListener('load', function() { 47 window.addEventListener('load', function() {
48 document.getElementById("layertree").innerText = window.internals.la yerTreeAsText(document); 48 document.getElementById("layertree").innerText = window.internals.la yerTreeAsText(document);
49 }, false); 49 }, false);
50 } 50 }
51 </script> 51 </script>
52 52
53 <body> 53 <body>
54 <div id="container"> 54 <div id="container">
55 <!-- This red square should not be visible --> 55 <!-- This red square should not be visible -->
56 <div id="indicator"></div> 56 <div id="indicator"></div>
57 <div id="composited"></div> 57 <div id="composited"></div>
58 </div> 58 </div>
59 59
60 <!-- This green square should render completely on top of the red one --> 60 <!-- This green square should render completely on top of the red one -->
61 <div id="green"></div> 61 <div id="green"></div>
62 62
63 <pre id="layertree"></pre> 63 <pre id="layertree"></pre>
64 </body> 64 </body>
65 </html> 65 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698