gecko-dev/layout/style/crashtests/1374175-1.html
Hiroyuki Ikezoe f0c746144f Bug 1374175 - Return no damage if there is no display property changes. r=heycam
MozReview-Commit-ID: 8VUu7UcnMmb

--HG--
extra : rebase_source : 5f56cf1a17a5aabcd5d7fcf4d25ac2fa09fe1b8c
2017-06-29 13:22:42 -07:00

13 lines
198 B
HTML

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