summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-transitions/idlharness-2.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/css/css-transitions/idlharness-2.html')
-rw-r--r--testing/web-platform/tests/css/css-transitions/idlharness-2.html28
1 files changed, 28 insertions, 0 deletions
diff --git a/testing/web-platform/tests/css/css-transitions/idlharness-2.html b/testing/web-platform/tests/css/css-transitions/idlharness-2.html
new file mode 100644
index 0000000000..236bf5642b
--- /dev/null
+++ b/testing/web-platform/tests/css/css-transitions/idlharness-2.html
@@ -0,0 +1,28 @@
+<!doctype html>
+<title>css-transitions-2 IDL tests</title>
+<link rel="help" href="https://drafts.csswg.org/css-transitions-2/">
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script src="/resources/WebIDLParser.js"></script>
+<script src="/resources/idlharness.js"></script>
+<!-- used to provide objects -->
+<style>
+ @starting-style {
+ #id { color: green }
+ }
+</style>
+<script>
+ "use strict";
+
+ idl_test(
+ ['css-transitions-2'],
+ ['web-animations', 'cssom', 'html', 'dom'],
+ idl_array => {
+ idl_array.add_objects({
+ Animation: ['new Animation()'],
+ CSSStartingStyleRule: ['sheet.cssRules[0]'],
+ });
+ self.sheet = document.styleSheets[0];
+ }
+ );
+</script>