blob: 71db694d013d1508eb45d935b7de1bf5d36b6cbd (
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
|
<!doctype html>
<html class="reftest-wait">
<head>
<meta charset=utf-8>
<style>
@keyframes a { }
body {
animation: a 100s;
}
</style>
<script>
function boom()
{
var anim = document.body.getAnimations()[0];
anim.finish();
anim.pause();
anim.play();
document.documentElement.removeAttribute("class");
}
</script>
</head>
<body onload="setTimeout(boom, 100);"></body>
</html>
|