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-2-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 dialog = document.createElement("dialog");
dialog.setAttribute("open", "");
dialog.requestClose();
</script>