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

Side by Side Diff: LayoutTests/fast/gradients/css3-repeating-linear-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: 120px; 8 height: 120px;
9 width: 400px; 9 width: 400px;
10 margin: 10px; 10 margin: 10px;
11 border: 1px solid black; 11 border: 1px solid black;
12 background-repeat: no-repeat; 12 background-repeat: no-repeat;
13 } 13 }
14 14
15 .linear1 { 15 .linear1 {
16 background-image: -webkit-repeating-linear-gradient(0deg, green 150px, blu e 175px, blue 200px); 16 background-image: -webkit-repeating-linear-gradient(0deg, green 150px, blu e 175px, blue 200px);
17 background-image: -moz-repeating-linear-gradient(0deg, green 150px, blue 1 75px, blue 200px); 17 background-image: -moz-repeating-linear-gradient(0deg, green 150px, blue 1 75px, blue 200px);
18 } 18 }
19 </style> 19 </style>
20 <script> 20 <script>
21 if (window.testRunner) { 21 if (window.testRunner) {
22 var dumpPixels = true; 22 testRunner.dumpAsTextWithPixelResults();
23 testRunner.dumpAsText(dumpPixels);
24 } 23 }
25 </script> 24 </script>
26 </head> 25 </head>
27 <body> 26 <body>
28 27
29 <div class="linear1 box"></div> 28 <div class="linear1 box"></div>
30 29
31 </body> 30 </body>
32 </html> 31 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698