Files
Kmake/test/fixtures/wpt/performance-timeline/resources/navigation-id-detached-frame-page.html

21 lines
402 B
HTML
Raw Normal View History

2026-05-26 23:36:42 -07:00
<!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>