blob: 2565aa6eb83abc224f0f056ac1d099026304dba4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<!doctype html>
<head>
<script>
function start() {
var animation = document.body.animate([{marks: 'crop'},{marks: 'crop'}], 12);
document.write('<html><body></body></html>');
setTimeout(function() { animation.play(); }, 4);
setTimeout(function() {
animation.timeline = undefined;
SpecialPowers.Cu.forceGC();
window.top.continueTest();
}, 5);
}
</script>
</head>
<body onload="start()"></body>
</html>
|