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

Side by Side Diff: LayoutTests/fast/gradients/unprefixed-radial-gradients2.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 .box { 6 .box {
7 display: inline-block; 7 display: inline-block;
8 height: 250px; 8 height: 250px;
9 width: 200px; 9 width: 200px;
10 margin: 10px; 10 margin: 10px;
(...skipping 23 matching lines...) Expand all
34 background-image: radial-gradient(at bottom right, black, white); 34 background-image: radial-gradient(at bottom right, black, white);
35 } 35 }
36 36
37 .gradient6 { 37 .gradient6 {
38 background-image: radial-gradient(ellipse closest-side at 50% 20%, black, white); 38 background-image: radial-gradient(ellipse closest-side at 50% 20%, black, white);
39 } 39 }
40 40
41 </style> 41 </style>
42 <script> 42 <script>
43 if (window.testRunner) { 43 if (window.testRunner) {
44 var dumpPixels = true; 44 testRunner.dumpAsTextWithPixelResults();
45 testRunner.dumpAsText(dumpPixels);
46 } 45 }
47 </script> 46 </script>
48 </head> 47 </head>
49 <body> 48 <body>
50 49
51 <div class="gradient1 box"></div> 50 <div class="gradient1 box"></div>
52 <div class="gradient2 box"></div> 51 <div class="gradient2 box"></div>
53 <div class="gradient3 box"></div> 52 <div class="gradient3 box"></div>
54 <br> 53 <br>
55 <div class="gradient4 box"></div> 54 <div class="gradient4 box"></div>
56 <div class="gradient5 box"></div> 55 <div class="gradient5 box"></div>
57 <div class="gradient6 box"></div> 56 <div class="gradient6 box"></div>
58 57
59 </body> 58 </body>
60 </html> 59 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698