summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/performance-timeline/resources/navigation-id-detached-frame-page.html
blob: 02aafbb5c78368c69dbf1cdae81b432d988e17d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE HTML>
<html>

<head>
  <meta charset="utf-8">
  <title>The navigation_id Detached iframe Page.</title>
</head>

<body>
  <script>
      window.addEventListener("load", () => {
        setTimeout(() => {
          const container = window.frameElement;
          container.remove();
        }, 10);
        performance.mark('mark-window-detached-frame');
      });
  </script>
</body>

</html>