summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-view-transitions/document-element-detached-crash.html
blob: cfdf769695dc11864229d0f4fe5d1dfc3712aec7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
<!DOCTYPE html>
<html class="test-wait">
<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>
function runTest() {
  document.startViewTransition(() => {
    requestAnimationFrame(() => {
      const html = document.documentElement;
      html.remove();
      html.classList.remove('test-wait');
    });
  });
}
onload = () => requestAnimationFrame(runTest);
</script>
</html>