| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <html> | 2 <html> |
| 3 <head> | 3 <head> |
| 4 <script src="../resources/text-based-repaint.js"></script> | 4 <script src="../resources/text-based-repaint.js"></script> |
| 5 <script> | 5 <script> |
| 6 if (window.testRunner) | 6 if (window.testRunner) |
| 7 testRunner.dumpAsText(); | 7 testRunner.dumpAsText(); |
| 8 | 8 |
| 9 function repaintTest() | 9 function repaintTest() |
| 10 { | 10 { |
| (...skipping 13 matching lines...) Expand all Loading... |
| 24 } | 24 } |
| 25 .before { | 25 .before { |
| 26 background-color: red; | 26 background-color: red; |
| 27 } | 27 } |
| 28 </style> | 28 </style> |
| 29 </head> | 29 </head> |
| 30 <body onload="runRepaintAndPixelTest()"> | 30 <body onload="runRepaintAndPixelTest()"> |
| 31 <div class="box before"></div> | 31 <div class="box before"></div> |
| 32 <svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" version="1.1"> | 32 <svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" version="1.1"> |
| 33 <defs> | 33 <defs> |
| 34 <filter id="morphology"> | 34 <filter id="morphology" x="-0.5" y="-0.5" width="2" height="2"> |
| 35 <feMorphology radius="25" operator="erode"/> | 35 <feMorphology radius="25" operator="erode"/> |
| 36 </filter> | 36 </filter> |
| 37 </defs> | 37 </defs> |
| 38 </svg> | 38 </svg> |
| 39 </body> | 39 </body> |
| 40 </html> | 40 </html> |
| OLD | NEW |