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 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203
|
<!doctype html>
<meta charset=utf-8>
<title>KeyframeEffect.getKeyframes() for CSS transitions</title>
<!-- TODO: Add a more specific link for this once it is specified. -->
<link rel="help" href="https://drafts.csswg.org/css-transitions-2/#csstransition">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="support/helper.js"></script>
<style>
:root {
--var-100px: 100px;
}
</style>
<div id="log"></div>
<script>
'use strict';
const getKeyframes = e => {
return e.getAnimations()[0].effect.getKeyframes();
};
const assert_frames_equal = (a, b, name) => {
assert_equals(
Object.keys(a).sort().toString(),
Object.keys(b).sort().toString(),
`properties on ${name}`
);
for (const p in a) {
assert_equals(a[p], b[p], `value for '${p}' on ${name}`);
}
};
test(t => {
const div = addDiv(t);
div.style.left = '0px';
getComputedStyle(div).transitionProperty;
div.style.transition = 'left 100s';
div.style.left = '100px';
const frames = getKeyframes(div);
assert_equals(frames.length, 2, 'number of frames');
const expected = [
{ offset: 0,
computedOffset: 0,
easing: 'linear',
composite: 'auto',
left: '0px',
},
{
offset: 1,
computedOffset: 1,
easing: 'linear',
composite: 'auto',
left: '100px',
},
];
for (let i = 0; i < frames.length; i++) {
assert_frames_equal(frames[i], expected[i], `ComputedKeyframe #${i}`);
}
}, 'KeyframeEffect.getKeyframes() returns expected frames for a simple'
+ ' transition');
test(t => {
const div = addDiv(t);
div.style.left = '0px';
getComputedStyle(div).transitionProperty;
div.style.transition = 'left 100s steps(2,end)';
div.style.left = '100px';
const frames = getKeyframes(div);
assert_equals(frames.length, 2, 'number of frames');
const expected = [
{
offset: 0,
computedOffset: 0,
easing: 'linear',
composite: 'auto',
left: '0px',
},
{
offset: 1,
computedOffset: 1,
easing: 'linear',
composite: 'auto',
left: '100px',
},
];
for (let i = 0; i < frames.length; i++) {
assert_frames_equal(frames[i], expected[i], `ComputedKeyframe #${i}`);
}
}, 'KeyframeEffect.getKeyframes() returns frames unaffected by a non-default easing function');
test(t => {
const div = addDiv(t);
div.style.left = '0px';
getComputedStyle(div).transitionProperty;
div.style.transition = 'left 100s';
div.style.left = 'var(--var-100px)';
const frames = getKeyframes(div);
// CSS transition endpoints are based on the computed value so we
// shouldn't see the variable reference
const expected = [
{
offset: 0,
computedOffset: 0,
easing: 'linear',
composite: 'auto',
left: '0px',
},
{
offset: 1,
computedOffset: 1,
easing: 'linear',
composite: 'auto',
left: '100px',
},
];
for (let i = 0; i < frames.length; i++) {
assert_frames_equal(frames[i], expected[i], `ComputedKeyframe #${i}`);
}
}, 'KeyframeEffect.getKeyframes() returns expected frames for a'
+ ' transition with a CSS variable endpoint');
test(t => {
const div = addDiv(t);
div.style.left = '0px';
getComputedStyle(div).transitionProperty;
div.style.transition = 'left 100s';
div.style.left = '100px';
// Resetting the effect target before retrieving the keyframes should not
// affect the computed property values.
const anim = div.getAnimations()[0];
anim.effect.target = null;
const frames = anim.effect.getKeyframes();
const expected = [
{
offset: 0,
computedOffset: 0,
easing: 'linear',
composite: 'auto',
left: '0px',
},
{
offset: 1,
computedOffset: 1,
easing: 'linear',
composite: 'auto',
left: '100px',
},
];
for (let i = 0; i < frames.length; i++) {
assert_frames_equal(frames[i], expected[i], `ComputedKeyframe #${i}`);
}
}, 'KeyframeEffect.getKeyframes() returns expected frames for a'
+ ' transition after resetting the effect target');
test(t => {
const div = addDiv(t);
div.style.transition = '--foo 100s allow-discrete';
div.style.setProperty("--foo", "10");
getComputedStyle(div).getPropertyValue("--foo");
div.style.setProperty("--foo", "20");
const frames = getKeyframes(div);
assert_equals(frames.length, 2, 'number of frames');
const expected = [
{ offset: 0,
computedOffset: 0,
easing: 'linear',
composite: 'auto',
"--foo": '10',
},
{
offset: 1,
computedOffset: 1,
easing: 'linear',
composite: 'auto',
"--foo": '20',
},
];
for (let i = 0; i < frames.length; i++) {
assert_frames_equal(frames[i], expected[i], `ComputedKeyframe #${i}`);
}
}, 'KeyframeEffect.getKeyframes() returns expected frames for a custom'
+ ' property transition');
</script>
|