gecko-dev/layout/style/crashtests/1383319.html
Emilio Cobos Álvarez 456487c25b Bug 1383001: Crashtests for this and bug 1383319. r=heycam
MozReview-Commit-ID: CDWKn1ygZ6S
2017-07-24 11:26:05 +02:00

19 lines
351 B
HTML

<!doctype html>
<style>
@keyframes anim {
to { background-color: green; }
}
.foo {
width: 100px;
height: 100px;
background: red;
animation: anim 10s ease;
}
</style>
<div id="test" contenteditable>
</div>
<script>
document.documentElement.offsetTop;
test.innerHTML = '<div class="foo">Some random element</div>';
</script>