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-open-add-closedby-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<link rel=author href="mailto:luke@warlow.dev">
<link rel=author href="mailto:masonf@chromium.org">
<!-- This test passes if it does not crash. -->
<dialog id="dialog" open>Dialog</dialog>
<script>
window.onload = () => dialog.setAttribute('closedby', 'closerequest');
</script>