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/3d-corners.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 type="text/css" media="screen"> 3 <style type="text/css" media="screen">
4 .container { 4 .container {
5 position: relative; 5 position: relative;
6 height: 100px; 6 height: 100px;
7 width: 500px; 7 width: 500px;
8 margin: 50px 100px; 8 margin: 50px 100px;
9 border: 1px solid blue; 9 border: 1px solid blue;
10 -webkit-perspective: 10; 10 -webkit-perspective: 10;
(...skipping 19 matching lines...) Expand all
30 #div3 30 #div3
31 { 31 {
32 height:500px; 32 height:500px;
33 background-color:green; 33 background-color:green;
34 -webkit-transform-origin: center top; 34 -webkit-transform-origin: center top;
35 -webkit-transform:rotate3d(1,0,0,-167deg); 35 -webkit-transform:rotate3d(1,0,0,-167deg);
36 } 36 }
37 </style> 37 </style>
38 <script type="text/javascript" charset="utf-8"> 38 <script type="text/javascript" charset="utf-8">
39 if (window.testRunner) 39 if (window.testRunner)
40 testRunner.dumpAsText(true); 40 testRunner.dumpAsTextWithPixelResults();
41 </script> 41 </script>
42 </head> 42 </head>
43 <body style="overflow:hidden"> 43 <body style="overflow:hidden">
44 <div class="container"> 44 <div class="container">
45 <div class="parent"> 45 <div class="parent">
46 <div id="div1"></div> 46 <div id="div1"></div>
47 </div> 47 </div>
48 </div> 48 </div>
49 <div class="container"> 49 <div class="container">
50 <div class="parent"> 50 <div class="parent">
51 <div id="div2"></div> 51 <div id="div2"></div>
52 </div> 52 </div>
53 </div> 53 </div>
54 <div class="container"> 54 <div class="container">
55 <div class="parent"> 55 <div class="parent">
56 <div id="div3"></div> 56 <div id="div3"></div>
57 </div> 57 </div>
58 </div> 58 </div>
59 </body> 59 </body>
60 </html> 60 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698