document-element-attribute-part-crash.tentative.html (386B)
1 <!DOCTYPE html> 2 <head> 3 <title>DOM Parts: Attribute part on documentElement crash test</title> 4 <link rel=author href="mailto:vmpstr@chromium.org"> 5 </head> 6 7 <div></div> 8 9 <script> 10 function runTest() { 11 try { 12 new AttributePart(document.getPartRoot(), document.documentElement, "", {}); 13 } catch (e) {} 14 } 15 onload = requestAnimationFrame(() => requestAnimationFrame(runTest)); 16 </script>