зеркало из https://github.com/mozilla/gecko-dev.git
26 строки
461 B
HTML
26 строки
461 B
HTML
<!doctype html>
|
|
<html class="reftest-wait">
|
|
<head>
|
|
<meta charset=utf-8>
|
|
<style>
|
|
@keyframes a { }
|
|
body {
|
|
animation-name: a;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
function boom()
|
|
{
|
|
var body = document.body;
|
|
body.style.animationPlayState = 'paused';
|
|
window.getComputedStyle(body).animationPlayState;
|
|
body.style.animationPlayState = 'running';
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
</script>
|
|
</head>
|
|
|
|
<body onload="setTimeout(boom, 100);"></body>
|
|
</html>
|