| OLD | NEW |
| (Empty) | |
| 1 <div id="target"></div> |
| 2 This test passes if there are three warnings about invalid keyframe values. |
| 3 <script> |
| 4 if (window.testRunner) { |
| 5 testRunner.dumpAsText(); |
| 6 } |
| 7 target.animate({offsetPath: ''}); |
| 8 target.animate({offsetPath: 'path("m0 0")'}); |
| 9 target.animate({offsetPath: 'path("invalid")'}); |
| 10 target.animate({'--valid': ''}); |
| 11 target.animate({'--x': 'valid'}); |
| 12 target.animate({'--x': 'invalid )'}); |
| 13 target.animate({'--x': 'invalid !important'}); |
| 14 target.animate([{background: 'green', backgroundColor: 'green'}]); |
| 15 </script> |
| OLD | NEW |