iframe-anchor-name-crash.html (350B)
1 <!doctype html> 2 <link rel="help" href="https://bugzilla.mozilla.org/show_bug.cgi?id=1998438"> 3 <style> 4 * { 5 anchor-name: --anchor-name_0; 6 } 7 </style> 8 <script> 9 window.addEventListener("load", async () => { 10 const iframe = document.createElementNS("http://www.w3.org/1999/xhtml", "iframe") 11 document.documentElement.appendChild(iframe) 12 }) 13 </script>