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

Side by Side Diff: LayoutTests/fast/gradients/css3-radial-gradients.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, 2 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 type="text/css" media="screen"> 5 <style type="text/css" media="screen">
6 .box { 6 .box {
7 display: inline-block; 7 display: inline-block;
8 height: 120px; 8 height: 120px;
9 width: 200px; 9 width: 200px;
10 margin: 10px; 10 margin: 10px;
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
53 } 53 }
54 54
55 .gradient9 { 55 .gradient9 {
56 background-image: -webkit-radial-gradient(20% 20%, circle closest-corner, red -50%, green, blue 150%); 56 background-image: -webkit-radial-gradient(20% 20%, circle closest-corner, red -50%, green, blue 150%);
57 background-image: -moz-radial-gradient(20% 20%, circle closest-corner, red -50%, green, blue 150%); 57 background-image: -moz-radial-gradient(20% 20%, circle closest-corner, red -50%, green, blue 150%);
58 } 58 }
59 59
60 </style> 60 </style>
61 <script type="text/javascript" charset="utf-8"> 61 <script type="text/javascript" charset="utf-8">
62 if (window.testRunner) { 62 if (window.testRunner) {
63 var dumpPixels = true; 63 testRunner.dumpAsTextWithPixelResults();
64 testRunner.dumpAsText(dumpPixels);
65 } 64 }
66 </script> 65 </script>
67 </head> 66 </head>
68 <body> 67 <body>
69 68
70 <div class="gradient1 box"></div> 69 <div class="gradient1 box"></div>
71 <div class="gradient2 box"></div> 70 <div class="gradient2 box"></div>
72 <div class="gradient3 box"></div> 71 <div class="gradient3 box"></div>
73 <br> 72 <br>
74 <div class="gradient4 box"></div> 73 <div class="gradient4 box"></div>
75 <div class="gradient5 box"></div> 74 <div class="gradient5 box"></div>
76 <div class="gradient6 box"></div> 75 <div class="gradient6 box"></div>
77 <br> 76 <br>
78 <div class="gradient7 box"></div> 77 <div class="gradient7 box"></div>
79 <div class="gradient8 box"></div> 78 <div class="gradient8 box"></div>
80 <div class="gradient9 box"></div> 79 <div class="gradient9 box"></div>
81 80
82 </body> 81 </body>
83 </html> 82 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698