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

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

Powered by Google App Engine
This is Rietveld 408576698