animated-textarea.html (493B)
1 <!DOCTYPE html> 2 <!-- This tests that the anonymous descendants of the textarea do not lose 3 their attachment to parent objects --> 4 <html class="test-wait"> 5 <canvas> 6 <textarea> 7 </textarea> 8 <script> 9 const canvas = document.querySelector('canvas'); 10 const animation = canvas.animate([ 11 {"listStylePosition":"outside"}, {"listStylePosition":"inside"}], 12 {"duration":100,"delay":0}); 13 animation.addEventListener('finish', () => { 14 document.documentElement.className = ''; 15 }); 16 </script> 17 </canvas>