blob: ca73549c7256e50793987ac4f056fd667dfe0234 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<!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.core.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>
|