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

Side by Side Diff: LayoutTests/fast/gradients/css3-color-stops.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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 background-image: -moz-linear-gradient(left, red, green 100px, blue); 54 background-image: -moz-linear-gradient(left, red, green 100px, blue);
55 } 55 }
56 56
57 .linear9 { 57 .linear9 {
58 background-image: -webkit-linear-gradient(left, red, green 120%, blue); 58 background-image: -webkit-linear-gradient(left, red, green 120%, blue);
59 background-image: -moz-linear-gradient(left, red, green 120%, blue); 59 background-image: -moz-linear-gradient(left, red, green 120%, blue);
60 } 60 }
61 </style> 61 </style>
62 <script type="text/javascript" charset="utf-8"> 62 <script type="text/javascript" charset="utf-8">
63 if (window.testRunner) { 63 if (window.testRunner) {
64 var dumpPixels = true; 64 testRunner.dumpAsTextWithPixelResults();
65 testRunner.dumpAsText(dumpPixels);
66 } 65 }
67 </script> 66 </script>
68 </head> 67 </head>
69 <body> 68 <body>
70 69
71 <div class="linear1 box"></div> 70 <div class="linear1 box"></div>
72 <div class="linear2 box"></div> 71 <div class="linear2 box"></div>
73 <div class="linear3 box"></div> 72 <div class="linear3 box"></div>
74 <br> 73 <br>
75 <div class="linear4 box"></div> 74 <div class="linear4 box"></div>
76 <div class="linear5 box"></div> 75 <div class="linear5 box"></div>
77 <div class="linear6 box"></div> 76 <div class="linear6 box"></div>
78 <br> 77 <br>
79 <div class="linear7 box"></div> 78 <div class="linear7 box"></div>
80 <div class="linear8 box"></div> 79 <div class="linear8 box"></div>
81 <div class="linear9 box"></div> 80 <div class="linear9 box"></div>
82 81
83 </body> 82 </body>
84 </html> 83 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/gradients/css3-color-stop-units.html ('k') | LayoutTests/fast/gradients/css3-linear-angle-gradients.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698