historical.html (579B)
1 <!DOCTYPE html> 2 3 <title>Historical CSS Transition features must be removed</title> 4 <link rel="help" href="http://www.w3.org/TR/css3-transitions-1/#starting"> 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 "WebKitTransitionEvent", // Replaced by unprefixed TransitionEvent 16 ]; 17 nukedInterfaces.forEach(isInterfaceNuked); 18 </script>