Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /dom/collections/childnodes-messagechannel-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<script>
document.addEventListener('DOMContentLoaded', () => {
const a = document.createElement("pre")
const b = new MessageChannel()
b.port1.postMessage(a.childNodes)
})
</script>