OLD | NEW |
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: 250px; | 8 height: 250px; |
9 width: 200px; | 9 width: 200px; |
10 margin: 10px; | 10 margin: 10px; |
(...skipping 23 matching lines...) Expand all Loading... |
34 background-image: radial-gradient(at bottom right, black, white); | 34 background-image: radial-gradient(at bottom right, black, white); |
35 } | 35 } |
36 | 36 |
37 .gradient6 { | 37 .gradient6 { |
38 background-image: radial-gradient(ellipse closest-side at 50% 20%, black,
white); | 38 background-image: radial-gradient(ellipse closest-side at 50% 20%, black,
white); |
39 } | 39 } |
40 | 40 |
41 </style> | 41 </style> |
42 <script> | 42 <script> |
43 if (window.testRunner) { | 43 if (window.testRunner) { |
44 var dumpPixels = true; | 44 testRunner.dumpAsTextWithPixelResults(); |
45 testRunner.dumpAsText(dumpPixels); | |
46 } | 45 } |
47 </script> | 46 </script> |
48 </head> | 47 </head> |
49 <body> | 48 <body> |
50 | 49 |
51 <div class="gradient1 box"></div> | 50 <div class="gradient1 box"></div> |
52 <div class="gradient2 box"></div> | 51 <div class="gradient2 box"></div> |
53 <div class="gradient3 box"></div> | 52 <div class="gradient3 box"></div> |
54 <br> | 53 <br> |
55 <div class="gradient4 box"></div> | 54 <div class="gradient4 box"></div> |
56 <div class="gradient5 box"></div> | 55 <div class="gradient5 box"></div> |
57 <div class="gradient6 box"></div> | 56 <div class="gradient6 box"></div> |
58 | 57 |
59 </body> | 58 </body> |
60 </html> | 59 </html> |
OLD | NEW |