idlharness-2.html (763B)
1 <!doctype html> 2 <title>css-transitions-2 IDL tests</title> 3 <link rel="help" href="https://drafts.csswg.org/css-transitions-2/"> 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 <!-- used to provide objects --> 9 <style> 10 @starting-style { 11 #id { color: green } 12 } 13 </style> 14 <script> 15 "use strict"; 16 17 idl_test( 18 ['css-transitions-2'], 19 ['web-animations', 'cssom', 'html', 'dom'], 20 idl_array => { 21 idl_array.add_objects({ 22 Animation: ['new Animation()'], 23 CSSStartingStyleRule: ['sheet.cssRules[0]'], 24 }); 25 self.sheet = document.styleSheets[0]; 26 } 27 ); 28 </script>