summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-view-transitions/document-element-detatched-crash.html
blob: 3c5419a8102c2160ac82e69bf046408b2c542e41 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!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>