| OLD | NEW |
| 1 <script src="../resources/testharness.js"></script> | 1 <script src="../../resources/testharness.js"></script> |
| 2 <script src="../resources/testharnessreport.js"></script> | 2 <script src="../../resources/testharnessreport.js"></script> |
| 3 <div id="target"></div> | 3 <div id="target"></div> |
| 4 <script> | 4 <script> |
| 5 test(() => { | 5 test(() => { |
| 6 target.animate({background: 'none, 10px'}, {fill: 'forwards'}); | 6 target.animate({background: 'none, 10px'}, {fill: 'forwards'}); |
| 7 getComputedStyle(target).backgroundPosition; | 7 getComputedStyle(target).backgroundPosition; |
| 8 }, "Don't crash when animating background with implicit longhand values and more
than one bg-layer."); | 8 }, "Don't crash when animating background with implicit longhand values and more
than one bg-layer."); |
| 9 </script> | 9 </script> |
| OLD | NEW |