historical.html (577B)
1 <!DOCTYPE html> 2 3 <title>Historical CSS Animation features must be removed</title> 4 <link rel="help" href="https://www.w3.org/TR/css-animations-1/#animations"> 5 6 <script src="/resources/testharness.js"></script> 7 <script src="/resources/testharnessreport.js"></script> 8 <script> 9 function isInterfaceNuked(name) { 10 test(function() { 11 assert_equals(window[name], undefined) 12 }, "Historical CSS features must be removed: " + name) 13 } 14 var nukedInterfaces = [ 15 "WebKitAnimationEvent", // Replaced by unprefixed AnimationEvent 16 ]; 17 nukedInterfaces.forEach(isInterfaceNuked); 18 </script>