| 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: 120px; | 8 height: 120px; |
| 9 width: 200px; | 9 width: 200px; |
| 10 margin: 10px; | 10 margin: 10px; |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 .linear8 { | 43 .linear8 { |
| 44 background-image: linear-gradient(to top left, white -20%, blue, black 120
%); | 44 background-image: linear-gradient(to top left, white -20%, blue, black 120
%); |
| 45 } | 45 } |
| 46 | 46 |
| 47 .linear9 { | 47 .linear9 { |
| 48 background-image: linear-gradient(0deg, white -20%, blue, black 120%); | 48 background-image: linear-gradient(0deg, white -20%, blue, black 120%); |
| 49 } | 49 } |
| 50 </style> | 50 </style> |
| 51 <script> | 51 <script> |
| 52 if (window.testRunner) { | 52 if (window.testRunner) { |
| 53 var dumpPixels = true; | 53 testRunner.dumpAsTextWithPixelResults(); |
| 54 testRunner.dumpAsText(dumpPixels); | |
| 55 } | 54 } |
| 56 </script> | 55 </script> |
| 57 </head> | 56 </head> |
| 58 <body> | 57 <body> |
| 59 | 58 |
| 60 <div class="linear1 box"></div> | 59 <div class="linear1 box"></div> |
| 61 <div class="linear2 box"></div> | 60 <div class="linear2 box"></div> |
| 62 <div class="linear3 box"></div> | 61 <div class="linear3 box"></div> |
| 63 <br> | 62 <br> |
| 64 <div class="linear4 box"></div> | 63 <div class="linear4 box"></div> |
| 65 <div class="linear5 box"></div> | 64 <div class="linear5 box"></div> |
| 66 <div class="linear6 box"></div> | 65 <div class="linear6 box"></div> |
| 67 <br> | 66 <br> |
| 68 <div class="linear7 box"></div> | 67 <div class="linear7 box"></div> |
| 69 <div class="linear8 box"></div> | 68 <div class="linear8 box"></div> |
| 70 <div class="linear9 box"></div> | 69 <div class="linear9 box"></div> |
| 71 | 70 |
| 72 </body> | 71 </body> |
| 73 </html> | 72 </html> |
| OLD | NEW |