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

Side by Side Diff: LayoutTests/fast/backgrounds/transformed-body-background.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 -webkit-transform: rotate(20deg); 7 -webkit-transform: rotate(20deg);
8 -webkit-transform-origin: top left; 8 -webkit-transform-origin: top left;
9 background-color: silver; 9 background-color: silver;
10 overflow: hidden; 10 overflow: hidden;
11 } 11 }
12 12
13 .contents { 13 .contents {
14 height: 1200px; 14 height: 1200px;
15 width: 100%; 15 width: 100%;
16 border: 1px solid black; 16 border: 1px solid black;
17 } 17 }
18 </style> 18 </style>
19 <script> 19 <script>
20 if (window.testRunner) 20 if (window.testRunner)
21 testRunner.dumpAsText(true); 21 testRunner.dumpAsTextWithPixelResults();
22 </script> 22 </script>
23 </head> 23 </head>
24 <body> 24 <body>
25 <div class="contents"></div> 25 <div class="contents"></div>
26 </body> 26 </body>
27 </html> 27 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698