dialog-requestclose-2-crash.html (335B)
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 dialog = document.createElement("dialog"); 9 dialog.setAttribute("open", ""); 10 dialog.requestClose(); 11 </script>