gecko-dev/layout/style/crashtests/1374175-1.html

13 строки
198 B
HTML

<style>
@keyframes anim {
from { color: red }
}
input {
animation: anim 1s;
}
</style>
<script>
input=document.createElement('input');
document.documentElement.appendChild(input);
</script>