fune/dom/base/test/test_bug1295852.html
Brian Birtles 8ab6ee61ba Bug 1471814 - Add a preference for {Document,Element}.getAnimations(); r=bz,hiro
This is probably the last thing we will ship since it needs the most spec work.

MozReview-Commit-ID: LLmDBLCsCBJ

--HG--
extra : rebase_source : c06752c9201a9ede87e1ac200ab12577bf784ce6
2018-07-14 09:23:03 +09:00

23 lines
654 B
HTML

<!DOCTYPE html>
<meta charset=utf-8>
<title>Bug 1295852</title>
<script src="/tests/SimpleTest/SimpleTest.js"></script>
<link rel="stylesheet" type="text/css" href="/tests/SimpleTest/test.css">
<body>
<script>
var names = [
"span", "_moz_generated_content_before", "_moz_generated_content_after"
];
if (SpecialPowers.getBoolPref("dom.animations-api.getAnimations.enabled")) {
names.forEach(name => {
var element = document.createElement(name);
element.animate({ "color": ["red", "blue"] }, { duration: 1000 });
is(element.getAnimations().length, 1);
});
} else {
ok("Test requires Web Animations, which is disabled.");
}
</script>