OLD | NEW |
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 Loading... |
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> |
OLD | NEW |