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/document-element-detached-crash.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<html class="test-wait">
<title>View transitions: documentElement.remove</title>
<link rel="author" href="mailto:vmpstr@chromium.org">
<style>
html {
display: none;
}
</style>
<script>
function runTest() {
document.startViewTransition(() => {
requestAnimationFrame(() => {
const html = document.documentElement;
html.remove();
html.classList.remove('test-wait');
});
});
}
onload = () => requestAnimationFrame(runTest);
</script>
</html>