Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<html class="test-wait">
<title>View transitions: documentElement.remove sync after startViewTransition</title>
<link rel="author" href="mailto:vmpstr@chromium.org">
<script>
function runTest() {
document.startViewTransition(() => {});
const html = document.documentElement;
html.remove();
html.classList.remove('test-wait');
}
onload = () => requestAnimationFrame(() => requestAnimationFrame(runTest));
</script>
</html>