| 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 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 53 } | 53 } |
| 54 | 54 |
| 55 .linear9 { | 55 .linear9 { |
| 56 background-image: -webkit-repeating-linear-gradient(left, red, orange, yel
low, green, blue, red 60px); | 56 background-image: -webkit-repeating-linear-gradient(left, red, orange, yel
low, green, blue, red 60px); |
| 57 background-image: -moz-repeating-linear-gradient(left, red, orange, yellow
, green, blue, red 60px); | 57 background-image: -moz-repeating-linear-gradient(left, red, orange, yellow
, green, blue, red 60px); |
| 58 } | 58 } |
| 59 | 59 |
| 60 </style> | 60 </style> |
| 61 <script type="text/javascript" charset="utf-8"> | 61 <script type="text/javascript" charset="utf-8"> |
| 62 if (window.testRunner) { | 62 if (window.testRunner) { |
| 63 var dumpPixels = true; | 63 testRunner.dumpAsTextWithPixelResults(); |
| 64 testRunner.dumpAsText(dumpPixels); | |
| 65 } | 64 } |
| 66 </script> | 65 </script> |
| 67 </head> | 66 </head> |
| 68 <body> | 67 <body> |
| 69 | 68 |
| 70 <div class="linear1 box"></div> | 69 <div class="linear1 box"></div> |
| 71 <div class="linear2 box"></div> | 70 <div class="linear2 box"></div> |
| 72 <div class="linear3 box"></div> | 71 <div class="linear3 box"></div> |
| 73 <br> | 72 <br> |
| 74 <div class="linear4 box"></div> | 73 <div class="linear4 box"></div> |
| 75 <div class="linear5 box"></div> | 74 <div class="linear5 box"></div> |
| 76 <div class="linear6 box"></div> | 75 <div class="linear6 box"></div> |
| 77 <br> | 76 <br> |
| 78 <div class="linear7 box"></div> | 77 <div class="linear7 box"></div> |
| 79 <div class="linear8 box"></div> | 78 <div class="linear8 box"></div> |
| 80 <div class="linear9 box"></div> | 79 <div class="linear9 box"></div> |
| 81 | 80 |
| 82 </body> | 81 </body> |
| 83 </html> | 82 </html> |
| OLD | NEW |