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-remove-open-attr-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<!-- This test passes if it does not crash. -->
<dialog id="dialog">Dialog</dialog>
<script>
window.onload = () => {
dialog.showModal();
dialog.open = false;
dialog.showModal();
}
</script>