blob: 960b5393833bbc7bcdde23eef16d4920c74ef903 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<!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>
|