summaryrefslogtreecommitdiffstats
path: root/layout/style/crashtests/1200568-1.html
blob: e2dc9c09df7b36b3ac3efc1dd292c2f843a4637a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!doctype html>
<html>
<head>
<style>
.anim { animation: anim 2s infinite linear }
@keyframes anim { }
</style>
</head>
<body>
<script>
var i = document.createElement('i');
i.setAttribute('class', 'anim');
getComputedStyle(i).display;
</script>
</body>
</html>