summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/semantics/interactive-elements/the-details-element/nested-top-layer-elements-in-details-crash.html
blob: c8d8ae4ed7f2c4fd205d90c1c580fb8bd2133dff (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!doctype HTML>
<link rel=author href="mailto:vmpstr@chromium.org">
<link rel=help href="https://crbug.com/1273395">

<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>