summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/html/rendering/the-details-element/two-summaries-removal-crash.html
blob: 164d3f16aa65deb97826607e2f57c33dcaa0f9b0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<meta charset="utf-8">
<link rel="author" href="mailto:masonf@chromium.org">
<link rel="help" href="https://crbug.com/1216804">
<meta name="assert" content="The renderer should not crash.">

<details id="details" open>
  <summary></summary>
  <summary>
    <details></details>
  </summary>
</details>

<script>
details.appendChild(document.createElement("frame"));
details.innerText="";
</script>