1291413-1.html (406B)
1 <!doctype html> 2 <html class=reftest-wait> 3 <script> 4 window.onload = () => { 5 const div = document.createElement('div'); 6 7 document.documentElement.appendChild(div); 8 const anim = div.animate([], 1000); 9 10 anim.ready.then(() => { 11 anim.pause(); 12 anim.reverse(); 13 anim.playbackRate = 0; 14 anim.ready.then(() => { 15 document.documentElement.className = ''; 16 }); 17 }); 18 }; 19 </script> 20 </html>