dialog-requestclose-4-crash.html (419B)
1 <!doctype html> 2 <link rel="author" href="mailto:wpt@keithcirkel.co.uk" /> 3 <link rel="help" href="https://html.spec.whatwg.org/#dom-dialog-requestclose" /> 4 5 <!-- This test passes if it does not crash. --> 6 7 <script> 8 const doc = document.implementation.createHTMLDocument(""); 9 const dialog = doc.createElement("dialog"); 10 dialog.setAttribute("open", ""); 11 doc.body.append(dialog); 12 dialog.requestClose(); 13 </script>