| OLD | NEW |
| 1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
| 2 <style> | 2 <style> |
| 3 path { | 3 path { |
| 4 -webkit-animation: inset-anim 2s linear; | 4 animation: inset-anim 2s linear; |
| 5 } | 5 } |
| 6 @-webkit-keyframes inset-anim { | 6 @keyframes inset-anim { |
| 7 from { -webkit-clip-path: inset(10%); } | 7 from { clip-path: inset(10%); } |
| 8 to { -webkit-clip-path: inset(20%); } | 8 to { clip-path: inset(20%); } |
| 9 } | 9 } |
| 10 </style> | 10 </style> |
| 11 <script src="../resources/text-based-repaint.js"></script> | 11 <script src="../resources/text-based-repaint.js"></script> |
| 12 <script> | 12 <script> |
| 13 outputRepaintRects = false; | 13 outputRepaintRects = false; |
| 14 onload = runRepaintTest; | 14 onload = runRepaintTest; |
| 15 function repaintTest() { | 15 function repaintTest() { |
| 16 }; | 16 }; |
| 17 </script> | 17 </script> |
| 18 Test for crbug.com/448227: This test passes if it does not crash. | 18 Test for crbug.com/448227: This test passes if it does not crash. |
| 19 <svg> | 19 <svg> |
| 20 <path d="M0 0"/> | 20 <path d="M0 0"/> |
| 21 </svg> | 21 </svg> |
| 22 | 22 |
| OLD | NEW |