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
|
<!DOCTYPE html>
<script src="../../resources/js-test.js"></script>
<style>
@-webkit-keyframes example {
from { width: 50px; height: 50px; }
to { width: 10px; height: 10px; }
}
@keyframes example {
from { width: 50px; height: 50px; }
to { width: 10px; height: 10px; }
}
.after:after,
.before:before {
content: "";
display: block;
position: relative;
background: green;
width: 10px;
height: 10px;
-webkit-animation: example 2s;
-moz-animation: example 2s;
animation: example 2s;
}
.before,
.after {
display: inline-block;
border: 1px solid black;
background: red;
}
</style>
<div class="before"></div>
<div class="before" id="before"></div>
<div class="before"></div>
<div class="after"></div>
<div class="after" id="after"></div>
<div class="after"></div>
<script>
description('Animations on :before and :after pseudo elements should run when applied before onload.');
if (window.testRunner)
testRunner.dumpAsText();
// FIXME: This test should be modified so subpixel doesn't cause off by one
// below and it no longer needs shouldBeCloseTo.
function testAnimations()
{
if (window.internals) {
internals.pauseAnimations(1);
var div = document.getElementById('before');
window.div = div;
shouldBeCloseTo('div.offsetWidth', 20, 1);
var div = document.getElementById('after');
window.div = div;
shouldBeCloseTo('div.offsetWidth', 20, 1);
internals.pauseAnimations(2);
var div = document.getElementById('before');
window.div = div;
shouldBeCloseTo('div.offsetWidth', 12, 1);
var div = document.getElementById('after');
window.div = div;
shouldBeCloseTo('div.offsetWidth', 12, 1);
} else {
// This will be flaky, but it's a reasonable approximation for testing
// in a browser instead of DRT.
setTimeout(function() {
var div = document.getElementById('before');
window.div = div;
shouldBeCloseTo('div.offsetWidth', 20, 1);
var div = document.getElementById('after');
window.div = div;
shouldBeCloseTo('div.offsetWidth', 20, 1);
}, 1000);
setTimeout(function() {
var div = document.getElementById('before');
window.div = div;
shouldBeCloseTo('div.offsetWidth', 12, 1);
var div = document.getElementById('after');
window.div = div;
shouldBeCloseTo('div.offsetWidth', 12, 1);
}, 2000);
}
}
onload = testAnimations;
</script>
|