Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!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>