| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <script src="../../fast/repaint/resources/text-based-repaint.js"></script> | 2 <script src="../../fast/repaint/resources/text-based-repaint.js"></script> |
| 3 <script> | 3 <script> |
| 4 window.onload = runRepaintTest; | 4 window.onload = runRepaintAndPixelTest; |
| 5 | 5 |
| 6 function repaintTest() { | 6 function repaintTest() { |
| 7 document.querySelector('path').setAttribute('pathLength', 200); | 7 document.querySelector('path').setAttribute('pathLength', 200); |
| 8 } | 8 } |
| 9 </script> | 9 </script> |
| 10 <svg width="400" height="400"> | 10 <svg width="400" height="400"> |
| 11 <path pathLength="0" d="M100,100h100v100h-100z" fill="none" | 11 <path pathLength="0" d="M100,100h100v100h-100z" fill="none" |
| 12 stroke="blue" stroke-width="20" stroke-dasharray="25"/> | 12 stroke="blue" stroke-width="20" stroke-dasharray="25"/> |
| 13 </svg> | 13 </svg> |
| OLD | NEW |