blob: 121e86455972ddf97befa00c58d0825321b7ad93 [file] [log] [blame] [edit]
<!doctype html>
<link rel="author" href="mailto:wpt@keithcirkel.co.uk" />
<link rel="help" href="https://html.spec.whatwg.org/#dom-dialog-requestclose" />
<!-- This test passes if it does not crash. -->
<script>
const doc = document.implementation.createHTMLDocument("");
const dialog = doc.createElement("dialog");
doc.body.append(dialog);
dialog.setAttribute("open", "");
dialog.requestClose();
</script>