зеркало из https://github.com/mozilla/gecko-dev.git
17 строки
261 B
HTML
17 строки
261 B
HTML
|
<!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>
|