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

Side by Side Diff: LayoutTests/fast/gradients/unprefixed-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> 5 <style>
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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
45 .linear8 { 45 .linear8 {
46 background-image: linear-gradient(to right, red, green 100px, blue); 46 background-image: linear-gradient(to right, red, green 100px, blue);
47 } 47 }
48 48
49 .linear9 { 49 .linear9 {
50 background-image: linear-gradient(to right, red, green 120%, blue); 50 background-image: linear-gradient(to right, red, green 120%, blue);
51 } 51 }
52 </style> 52 </style>
53 <script type="text/javascript" charset="utf-8"> 53 <script type="text/javascript" charset="utf-8">
54 if (window.testRunner) { 54 if (window.testRunner) {
55 var dumpPixels = true; 55 testRunner.dumpAsTextWithPixelResults();
56 testRunner.dumpAsText(dumpPixels);
57 } 56 }
58 </script> 57 </script>
59 </head> 58 </head>
60 <body> 59 <body>
61 60
62 <div class="linear1 box"></div> 61 <div class="linear1 box"></div>
63 <div class="linear2 box"></div> 62 <div class="linear2 box"></div>
64 <div class="linear3 box"></div> 63 <div class="linear3 box"></div>
65 <br> 64 <br>
66 <div class="linear4 box"></div> 65 <div class="linear4 box"></div>
67 <div class="linear5 box"></div> 66 <div class="linear5 box"></div>
68 <div class="linear6 box"></div> 67 <div class="linear6 box"></div>
69 <br> 68 <br>
70 <div class="linear7 box"></div> 69 <div class="linear7 box"></div>
71 <div class="linear8 box"></div> 70 <div class="linear8 box"></div>
72 <div class="linear9 box"></div> 71 <div class="linear9 box"></div>
73 72
74 </body> 73 </body>
75 </html> 74 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698