blob: 184fc9d3bcd3976b6cb7bb1f441dc717d2802d66 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
|
<!doctype html>
<head>
<meta charset=utf-8>
<title>Bug 1536688 - Test that 'display' is not included in
KeyframeEffect.getProperties() when using shorthand 'all'</title>
<script type="application/javascript" src="../testharness.js"></script>
<script type="application/javascript" src="../testharnessreport.js"></script>
<script type="application/javascript" src="../testcommon.js"></script>
</head>
<body>
<a href="https://bugzilla.mozilla.org/show_bug.cgi?id=1536688"
target="_blank">Mozilla Bug 1536688</a>
<div id="log"></div>
<script>
'use strict';
SpecialPowers.pushPrefEnv(
{
set: [['dom.animations-api.core.enabled', true]],
},
function() {
test(t => {
const div = addDiv(t);
const animation = div.animate(
{ all: ['unset', 'unset'] },
100 * MS_PER_SEC
);
// Flush styles since getProperties does not.
getComputedStyle(div).opacity;
const properties = animation.effect.getProperties();
assert_false(
properties.some(property => property.property === 'display'),
'Should not have a property for display'
);
});
done();
}
);
</script>
</body>
|