tenfourfox/layout/style/crashtests/1161320-2.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

26 lines
387 B
HTML

<!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>