tenfourfox/layout/style/crashtests/1200568-1.html

17 lines
261 B
HTML
Raw Normal View History

2017-04-19 07:56:45 +00:00
<!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>