OLD | NEW |
1 <html> | 1 <html> |
2 <head> | 2 <head> |
3 <style> | 3 <style> |
4 div { | 4 div { |
5 background-color: red; | 5 background-color: red; |
6 background-image: -moz-linear-gradient(gray 50px, currentColor 50px); | 6 background-image: -moz-linear-gradient(gray 50px, currentColor 50px); |
7 background-image: -ms-linear-gradient(gray 50px, currentColor 50px); | 7 background-image: -ms-linear-gradient(gray 50px, currentColor 50px); |
8 background-image: -o-linear-gradient(gray 50px, currentColor 50px); | 8 background-image: -o-linear-gradient(gray 50px, currentColor 50px); |
9 background-image: -webkit-linear-gradient(gray 50px, currentColor 50px); | 9 background-image: -webkit-linear-gradient(gray 50px, currentColor 50px); |
10 background-image: linear-gradient(gray 50px, currentColor 50px); | 10 background-image: linear-gradient(gray 50px, currentColor 50px); |
11 width: 100px; | 11 width: 100px; |
12 height: 100px; | 12 height: 100px; |
13 } | 13 } |
14 </style> | 14 </style> |
15 </head> | 15 </head> |
16 <script> | 16 <script> |
17 if (window.testRunner) | 17 if (window.testRunner) |
18 window.testRunner.dumpAsText(true); | 18 window.testRunner.dumpAsTextWithPixelResults(); |
19 </script> | 19 </script> |
20 <body> | 20 <body> |
21 <div style="color: green"></div> | 21 <div style="color: green"></div> |
22 <div style="color: blue"></div> | 22 <div style="color: blue"></div> |
23 </body> | 23 </body> |
24 </html> | 24 </html> |
OLD | NEW |