navigation-id-detached-frame-page.html (402B)
1 <!DOCTYPE HTML> 2 <html> 3 4 <head> 5 <meta charset="utf-8"> 6 <title>The navigation_id Detached iframe Page.</title> 7 </head> 8 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> 20 21 </html>