Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /domparsing/tentative/move-head-during-prepend-before-close-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<meta charset="utf-8" />
<title>Closing streamPrependHTML while head is detached</title>
<script>
(async () => {
const writer = document.documentElement.streamPrependHTML().getWriter();
document.head.remove();
await writer.close();
})();
</script>