Bug 1769564 [wpt PR 34073] - Add navigation_id to all types of performance entries...
[gecko.git] / testing / web-platform / tests / performance-timeline / resources / navigation-id-detached-frame-page.html
blob02aafbb5c78368c69dbf1cdae81b432d988e17d1
1 <!DOCTYPE HTML>
2 <html>
4 <head>
5 <meta charset="utf-8">
6 <title>The navigation_id Detached iframe Page.</title>
7 </head>
9 <body>
10 <script>
11 window.addEventListener("load", () => {
12 setTimeout(() => {
13 const container = window.frameElement;
14 container.remove();
15 }, 10);
16 performance.mark('mark-window-detached-frame');
17 });
18 </script>
19 </body>
21 </html>