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-6-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<!-- This test passes if it does not crash. -->
<dialog id=d></dialog>
<script>
d.showModal();
d.oncancel = e => e.preventDefault();
d.requestClose('first');
d.requestClose('second');
</script>