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-5-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<!-- This test passes if it does not crash. -->
<dialog id=d></dialog>
<script>
let fired = false;
d.addEventListener('beforetoggle', e => {
if (e.newState === 'closed' && !fired) {
fired = true;
d.close();
d.setAttribute('open', '');
}
});
d.showModal();
d.requestClose('close');
</script>