chrome-bug-1301281.html (799B)
1 <!DOCTYPE html> 2 <html class="test-wait"> 3 <link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org"> 4 <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1301281"> 5 <div style="columns:2; column-fill:auto; height:30px; line-height:20px; width:fit-content;"> 6 <span><span id="first"></span><input style="float:right; padding:3%;"></span> 7 </div> 8 <script> 9 requestAnimationFrame(()=> { 10 requestAnimationFrame(()=> { 11 first.innerHTML = "D"; 12 document.body.offsetTop; 13 requestAnimationFrame(()=> { 14 requestAnimationFrame(()=> { 15 document.body.style.color = "blue"; 16 document.documentElement.classList.remove("test-wait"); 17 }); 18 }); 19 }); 20 }); 21 </script> 22 </html>