mirror of
https://github.com/servo/servo.git
synced 2025-07-31 11:10:22 +01:00
21 lines
446 B
HTML
21 lines
446 B
HTML
<!DOCTYPE html>
|
|
<title>View transitions: documentElement.remove</title>
|
|
<link rel="help" href="https://github.com/WICG/view-transitions">
|
|
<link rel="author" href="mailto:vmpstr@chromium.org">
|
|
|
|
<style>
|
|
html {
|
|
display: none;
|
|
}
|
|
</style>
|
|
|
|
<script>
|
|
async function runTest() {
|
|
document.startViewTransition(() => {
|
|
requestAnimationFrame(() => document.documentElement.remove());
|
|
})
|
|
|
|
}
|
|
onload = () => requestAnimationFrame(runTest);
|
|
</script>
|
|
|