| OLD | NEW |
| 1 <html> | 1 <html> |
| 2 <head> | 2 <head> |
| 3 <style> | 3 <style> |
| 4 .square { | 4 .square { |
| 5 margin: 25px; | 5 margin: 25px; |
| 6 height: 200px; | 6 height: 200px; |
| 7 width: 200px; | 7 width: 200px; |
| 8 background-color: black; | 8 background-color: black; |
| 9 border-radius: 100px; | 9 border-radius: 100px; |
| 10 } | 10 } |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 | 49 |
| 50 -webkit-box-shadow: inset 40px 0px 0px -10px #00f, | 50 -webkit-box-shadow: inset 40px 0px 0px -10px #00f, |
| 51 inset 80px 0px 0px 15px #808, | 51 inset 80px 0px 0px 15px #808, |
| 52 inset 120px 0px 0px -20px #b04, | 52 inset 120px 0px 0px -20px #b04, |
| 53 inset 160px 0px 0px 25px #f00; | 53 inset 160px 0px 0px 25px #f00; |
| 54 } | 54 } |
| 55 | 55 |
| 56 </style> | 56 </style> |
| 57 <script> | 57 <script> |
| 58 if (window.testRunner) | 58 if (window.testRunner) |
| 59 testRunner.dumpAsText(true); | 59 testRunner.dumpAsTextWithPixelResults(); |
| 60 </script> | 60 </script> |
| 61 </head> | 61 </head> |
| 62 <body> | 62 <body> |
| 63 <p>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=51386">51386</a></p> | 63 <p>Bug <a href="https://bugs.webkit.org/show_bug.cgi?id=51386">51386</a></p> |
| 64 <div class="square" id="negative"></div> | 64 <div class="square" id="negative"></div> |
| 65 <div class="square" id="positive"></div> | 65 <div class="square" id="positive"></div> |
| 66 <div class="square" id="mixed1"></div> | 66 <div class="square" id="mixed1"></div> |
| 67 <div class="square" id="mixed2"></div> | 67 <div class="square" id="mixed2"></div> |
| 68 </body> | 68 </body> |
| 69 </html> | 69 </html> |
| OLD | NEW |