OLD | NEW |
1 <!DOCTYPE html> | 1 <!DOCTYPE html> |
2 <script src="../../../resources/testharness.js"></script> | 2 <script src="../../../resources/testharness.js"></script> |
3 <script src="../../../resources/testharnessreport.js"></script> | 3 <script src="../../../resources/testharnessreport.js"></script> |
4 <div id="target"></div> | |
5 <script> | 4 <script> |
6 test(() => { | 5 test(t => { |
7 target.animate({background: 'var(--x)'}); | 6 assert_throws(null, function() { new window.blur(); }); |
8 }, 'This test passes if it does not crash'); | 7 }, "Construct call to window methods throws."); |
9 </script> | 8 </script> |
OLD | NEW |