Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/css-view-transitions/first-line-reparent-crash.html - WPT Dashboard Interop Dashboard
<!doctype html>
<html class="test-wait">
<script>
window.addEventListener("load", () => {
const a = document.createElement("style")
document.documentElement.appendChild(a)
a.textContent = ":first-line{}"
document.adoptNode(document.body)
document.startViewTransition().ready.then(() => {
document.documentElement.className = "";
});
})
</script>