first-line-reparent-crash.html (362B)
1 <!doctype html> 2 <html class="test-wait"> 3 <script> 4 window.addEventListener("load", () => { 5 const a = document.createElement("style") 6 document.documentElement.appendChild(a) 7 a.textContent = ":first-line{}" 8 document.adoptNode(document.body) 9 document.startViewTransition().ready.then(() => { 10 document.documentElement.className = ""; 11 }); 12 }) 13 </script>