Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/semantics/interactive-elements/the-dialog-element/dialog-requestclose-4-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<link rel="author" href="mailto:wpt@keithcirkel.co.uk" />
<!-- This test passes if it does not crash. -->
<script>
const doc = document.implementation.createHTMLDocument("");
const dialog = doc.createElement("dialog");
dialog.setAttribute("open", "");
doc.body.append(dialog);
dialog.requestClose();
</script>