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-details-element/nested-top-layer-elements-in-details-crash.html - WPT Dashboard Interop Dashboard
<!doctype HTML>
<link rel=author href="mailto:vmpstr@chromium.org">
<dialog id="parentElement">
<details id="childElement" open="true" ontoggle="toggleHandler()">
<dialog id="grandchildElement">
</dialog>
</details>
</dialog>
<script>
function toggleHandler() {
grandchildElement.showModal();
parentElement.showModal();
childElement.open = false;
}
</script>