1
0
Fork 0
firefox/testing/web-platform/tests/html/rendering/the-details-element/two-summaries-removal-crash.html
Daniel Baumann 5e9a113729
Adding upstream version 140.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
2025-06-25 09:37:52 +02:00

17 lines
413 B
HTML

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