summaryrefslogtreecommitdiffstats
path: root/layout/style/crashtests/1161320-1.html
blob: 3cb3a7b45ef25071ed4cfe43635b9230dd6943fa (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-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>