summaryrefslogtreecommitdiffstats
path: root/dom/animation/test/mozilla/test_disable_animations_api_implicit_keyframes.html
diff options
context:
space:
mode:
Diffstat (limited to 'dom/animation/test/mozilla/test_disable_animations_api_implicit_keyframes.html')
-rw-r--r--dom/animation/test/mozilla/test_disable_animations_api_implicit_keyframes.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/dom/animation/test/mozilla/test_disable_animations_api_implicit_keyframes.html b/dom/animation/test/mozilla/test_disable_animations_api_implicit_keyframes.html
new file mode 100644
index 0000000000..aaebf1f00a
--- /dev/null
+++ b/dom/animation/test/mozilla/test_disable_animations_api_implicit_keyframes.html
@@ -0,0 +1,14 @@
+<!doctype html>
+<meta charset=utf-8>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<div id="log"></div>
+<script>
+'use strict';
+setup({explicit_done: true});
+SpecialPowers.pushPrefEnv(
+ { "set": [["dom.animations-api.implicit-keyframes.enabled", false]]},
+ function() {
+ window.open("file_disable_animations_api_implicit_keyframes.html");
+ });
+</script>