flex-basis-content-crash.html (403B)
1 <!DOCTYPE html> 2 <html class="test-wait"> 3 <body> 4 <textarea id="target"></textarea> 5 <!-- crbug.com/ 356194015 --> 6 <script> 7 const target = document.getElementById('target'); 8 const anim = target.animate({ flexBasis: ['content', 'content'] }, 9 { duration: 1000 }); 10 anim.ready.then(() => { 11 document.documentElement.classList.remove('test-wait'); 12 }); 13 </script> 14 </body>