| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 | 2 |
| 3 <html lang="en"> | 3 <html lang="en"> |
| 4 <head> | 4 <head> |
| 5 <style> | 5 <style> |
| 6 .box { | 6 .box { |
| 7 position: absolute; | 7 position: absolute; |
| 8 height: 50px; | 8 height: 50px; |
| 9 width: 100px; | 9 width: 100px; |
| 10 left: 20px; | 10 left: 20px; |
| 11 background-color: green; | 11 background-color: green; |
| 12 outline: 4px solid black; | 12 outline: 4px solid black; |
| 13 -webkit-filter: blur(0); | 13 -webkit-filter: blur(0); |
| 14 } | 14 } |
| 15 | 15 |
| 16 .indicator { | 16 .indicator { |
| 17 top: 50px; | 17 top: 50px; |
| 18 background-color: red; | 18 background-color: red; |
| 19 } | 19 } |
| 20 </style> | 20 </style> |
| 21 <script> | 21 <script> |
| 22 if (window.testRunner) | 22 if (window.testRunner) |
| 23 window.testRunner.dumpAsText(true); | 23 window.testRunner.dumpAsTextWithPixelResults(); |
| 24 </script> | 24 </script> |
| 25 </head> | 25 </head> |
| 26 <body> | 26 <body> |
| 27 | 27 |
| 28 <!-- You should see two green rectangles with black outlines, and no red. --> | 28 <!-- You should see two green rectangles with black outlines, and no red. --> |
| 29 <div class="indicator box"></div> | 29 <div class="indicator box"></div> |
| 30 <div class="box"> | 30 <div class="box"> |
| 31 <div class="box" style="top: 50px; left: 0"></div> | 31 <div class="box" style="top: 50px; left: 0"></div> |
| 32 </div> | 32 </div> |
| 33 | 33 |
| 34 </body> | 34 </body> |
| 35 </html> | 35 </html> |
| OLD | NEW |