Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/rendering/the-details-element/two-summaries-removal-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<meta charset="utf-8">
<link rel="author" href="mailto:masonf@chromium.org">
<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>