1291413-2.html (433B)
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.playbackRate = 1; 15 anim.ready.then(() => { 16 document.documentElement.className = ''; 17 }); 18 }); 19 }; 20 </script> 21 </html>