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

Side by Side Diff: LayoutTests/fast/gradients/unprefixed-color-stop-units.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> 5 <style>
6 h2 { 6 h2 {
7 font-size: 12pt; 7 font-size: 12pt;
8 margin: 2px; 8 margin: 2px;
9 } 9 }
10 10
(...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after
54 .linear7 { 54 .linear7 {
55 background-image: linear-gradient(to right, red, green 100px, yellow 50%, blue); 55 background-image: linear-gradient(to right, red, green 100px, yellow 50%, blue);
56 } 56 }
57 57
58 .linear8 { 58 .linear8 {
59 background-image: linear-gradient(to right, red, green 100px, yellow 50%, blue); 59 background-image: linear-gradient(to right, red, green 100px, yellow 50%, 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 <!--These should look the same--> 70 <!--These should look the same-->
72 <div class="container"> 71 <div class="container">
73 <div class="linear1 box"></div><br> 72 <div class="linear1 box"></div><br>
74 <div class="linear2 box"></div> 73 <div class="linear2 box"></div>
75 </div> 74 </div>
(...skipping 11 matching lines...) Expand all
87 </div> 86 </div>
88 87
89 <!--Should see a sharp green/yellow transition in the right box--> 88 <!--Should see a sharp green/yellow transition in the right box-->
90 <div class="container"> 89 <div class="container">
91 <div class="linear7 box"></div> 90 <div class="linear7 box"></div>
92 <div class="linear8 box" style="width: 200px;"></div> 91 <div class="linear8 box" style="width: 200px;"></div>
93 </div> 92 </div>
94 93
95 </body> 94 </body>
96 </html> 95 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698