idlharness.html (709B)
1 <!doctype html> 2 <title>css-transitions IDL tests</title> 3 <link rel="help" href="https://drafts.csswg.org/css-transitions/"> 4 <script src="/resources/testharness.js"></script> 5 <script src="/resources/testharnessreport.js"></script> 6 <script src="/resources/WebIDLParser.js"></script> 7 <script src="/resources/idlharness.js"></script> 8 <script> 9 "use strict"; 10 11 idl_test( 12 ['css-transitions'], 13 ['cssom', 'html', 'dom'], 14 idl_array => { 15 idl_array.add_objects({ 16 TransitionEvent: ['new TransitionEvent("transitionend")'], 17 // These include GlobalEventHandlers 18 Document: ['document'], 19 HTMLElement: ['document'], 20 Window: ['window'], 21 }) 22 } 23 ); 24 </script>