blob: 4b69c7f60c3ea068c1b7ffc9397495804fb2b43f (
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
44
45
46
47
48
49
50
|
<!doctype html>
<head>
<meta charset=utf-8>
<style>
@keyframes enabled-and-disabled {
from {
left: 0px;
-webkit-text-fill-color: green;
}
to {
left: 100px;
-webkit-text-fill-color: blue;
}
}
</style>
<script>
var is = opener.is.bind(opener);
var ok = opener.ok.bind(opener);
function finish() {
var o = opener;
self.close();
o.SimpleTest.finish();
}
</script>
</head>
<body>
<div id="display"></div>
<script>
'use strict';
var display = document.getElementById('display');
display.style.animation = 'enabled-and-disabled 0.01s';
var animation = display.getAnimations()[0];
is(animation.effect.getKeyframes().length, 2,
'Got two frames on the generated animation');
ok(animation.effect.getKeyframes()[0].hasOwnProperty('left'),
'Enabled property is set on initial keyframe');
ok(!animation.effect.getKeyframes()[0].hasOwnProperty('webkitTextFillColor'),
'Disabled property is not set on initial keyframe');
ok(animation.effect.getKeyframes()[1].hasOwnProperty('left'),
'Enabled property is set on final keyframe');
ok(!animation.effect.getKeyframes()[1].hasOwnProperty('webkitTextFillColor'),
'Disabled property is not set on final keyframe');
finish();
</script>
</body>
|