blob: 3c5419a8102c2160ac82e69bf046408b2c542e41 [file] [log] [blame] [edit]
<!DOCTYPE html>
<title>View transitions: documentElement.remove</title>
<link rel="help" href="https://github.com/WICG/view-transitions">
<link rel="author" href="mailto:[email protected]">
<style>
html {
display: none;
}
</style>
<script>
async function runTest() {
document.startViewTransition(() => {
requestAnimationFrame(() => document.documentElement.remove());
})
}
onload = () => requestAnimationFrame(runTest);
</script>