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

Side by Side Diff: LayoutTests/fast/gradients/unprefixed-repeating-end-fill.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 <html> 2 <html>
3 <head> 3 <head>
4 <style> 4 <style>
5 div { 5 div {
6 display: inline-block; 6 display: inline-block;
7 width: 200px; 7 width: 200px;
8 height: 100px; 8 height: 100px;
9 background-image: repeating-linear-gradient(red 10%, green 10%, green 30%) ; 9 background-image: repeating-linear-gradient(red 10%, green 10%, green 30%) ;
10 } 10 }
11 11
12 .ref { 12 .ref {
13 background-image: repeating-linear-gradient(green 10%, green 30%); 13 background-image: repeating-linear-gradient(green 10%, green 30%);
14 } 14 }
15 </style> 15 </style>
16 <script> 16 <script>
17 if (window.testRunner) { 17 if (window.testRunner) {
18 var dumpPixels = true; 18 testRunner.dumpAsTextWithPixelResults();
19 testRunner.dumpAsText(dumpPixels);
20 } 19 }
21 </script> 20 </script>
22 </head> 21 </head>
23 <body> 22 <body>
24 23
25 <!-- You should see two green rectangles, with no red. --> 24 <!-- You should see two green rectangles, with no red. -->
26 <div></div> 25 <div></div>
27 <div class="ref"></div> 26 <div class="ref"></div>
28 27
29 </body> 28 </body>
30 </html> 29 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698