Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-contain/content-visibility/detach-locked-slot-children-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html class="reftest-wait">
<body dir="auto">
<p>Pass if no crash.</p>
<details id="details">
<img id="img" alt="alt"></img>
<marquee id="marquee"></marquee>
</details>
</body>
<script>
requestAnimationFrame(() => requestAnimationFrame(() => {
marquee.appendChild(details.firstChild);
img.srcset = "dummy";
img.alt = "dummy";
document.documentElement.classList.remove("reftest-wait");
}));
</script>