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

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

Powered by Google App Engine
This is Rietveld 408576698