summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/performance-timeline/timing-removed-iframe.html
blob: 43988b21fbbe022d001c7177da87ae0d62f700ae (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!DOCTYPE html>
<head>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
</head>
<body>
<script>
test(() => {
  const iframe = document.createElement('iframe');
  iframe.src = "resources/empty.html"
  document.body.appendChild(iframe);
  const iframePerformance = iframe.contentWindow.performance;
  iframe.parentNode.removeChild(iframe);
  const timing = iframePerformance.timing;
}, "Test that a removed iframe which timing is accessed does not crash the renderer.");
</script>