Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /html/dom/render-blocking/render-blocking-during-update-the-rendering-crash.html - WPT Dashboard Interop Dashboard
<body>
<div id="container">
<link id="link" href="x">
</div>
<script>
document.replaceChild(container, document.childNodes[0]);
requestAnimationFrame(() => { link.rel = "stylesheet" });
</script>
</body>