summaryrefslogtreecommitdiffstats
path: root/dom/animation/test/mozilla/test_disable_animations_api_implicit_keyframes.html
blob: aaebf1f00a7ad033b4298078e08df1cca2c4cc3c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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>