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

Side by Side Diff: LayoutTests/fast/gradients/css3-linear-right-angle-gradients.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 <html> 2 <html>
3 <head> 3 <head>
4 <style type="text/css" media="screen"> 4 <style type="text/css" media="screen">
5 .box { 5 .box {
6 display: inline-block; 6 display: inline-block;
7 height: 120px; 7 height: 120px;
8 width: 201px; 8 width: 201px;
9 margin: 10px; 9 margin: 10px;
10 border: 1px solid black; 10 border: 1px solid black;
(...skipping 27 matching lines...) Expand all
38 .gradientAngleMinus180 { 38 .gradientAngleMinus180 {
39 background-image: -webkit-linear-gradient(-180deg, white, black); 39 background-image: -webkit-linear-gradient(-180deg, white, black);
40 } 40 }
41 41
42 .gradientAngleMinus270 { 42 .gradientAngleMinus270 {
43 background-image: -webkit-linear-gradient(-270deg, white, black); 43 background-image: -webkit-linear-gradient(-270deg, white, black);
44 } 44 }
45 </style> 45 </style>
46 <script> 46 <script>
47 if (window.testRunner) { 47 if (window.testRunner) {
48 var dumpPixels = true; 48 testRunner.dumpAsTextWithPixelResults();
49 testRunner.dumpAsText(dumpPixels);
50 } 49 }
51 </script> 50 </script>
52 </head> 51 </head>
53 <body> 52 <body>
54 <div class="box gradientAngle0"></div> 53 <div class="box gradientAngle0"></div>
55 <div class="box gradientAngleMinus0"></div> 54 <div class="box gradientAngleMinus0"></div>
56 <br/> 55 <br/>
57 <div class="box gradientAngle90"></div> 56 <div class="box gradientAngle90"></div>
58 <div class="box gradientAngleMinus270"></div> 57 <div class="box gradientAngleMinus270"></div>
59 <br/> 58 <br/>
60 <div class="box gradientAngle180"></div> 59 <div class="box gradientAngle180"></div>
61 <div class="box gradientAngleMinus180"></div> 60 <div class="box gradientAngleMinus180"></div>
62 <br/> 61 <br/>
63 <div class="box gradientAngle270"></div> 62 <div class="box gradientAngle270"></div>
64 <div class="box gradientAngleMinus90"></div> 63 <div class="box gradientAngleMinus90"></div>
65 </body> 64 </body>
66 </html> 65 </html>
OLDNEW
« no previous file with comments | « LayoutTests/fast/gradients/css3-linear-angle-gradients.html ('k') | LayoutTests/fast/gradients/css3-radial-gradients.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698