Bug 1874684 - Part 37: Fix unified compilation. r=allstarschh
[gecko.git] / layout / style / crashtests / 1161320-2.html
blob71db694d013d1508eb45d935b7de1bf5d36b6cbd
1 <!doctype html>
2 <html class="reftest-wait">
3 <head>
4 <meta charset=utf-8>
5 <style>
6 @keyframes a { }
7 body {
8 animation: a 100s;
10 </style>
12 <script>
13 function boom()
15 var anim = document.body.getAnimations()[0];
16 anim.finish();
17 anim.pause();
18 anim.play();
19 document.documentElement.removeAttribute("class");
21 </script>
22 </head>
24 <body onload="setTimeout(boom, 100);"></body>
25 </html>