1383319.html (351B)
1 <!doctype html> 2 <style> 3 @keyframes anim { 4 to { background-color: green; } 5 } 6 .foo { 7 width: 100px; 8 height: 100px; 9 background: red; 10 animation: anim 10s ease; 11 } 12 </style> 13 <div id="test" contenteditable> 14 </div> 15 <script> 16 document.documentElement.offsetTop; 17 test.innerHTML = '<div class="foo">Some random element</div>'; 18 </script>