summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/performance-timeline/supportedEntryTypes-cross-realm-access.html
blob: 8b86a6398bfd499e57fae0e20f04d84b8c6e3a6c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<meta charset="utf-8">
<title>Cross-realm access of supportedEntryTypes returns Array of another realm</title>
<link rel="help" href="https://w3c.github.io/performance-timeline/#supportedentrytypes-attribute">
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<script>
test(t => {
  const iframe = document.createElement("iframe");
  t.add_cleanup(() => { iframe.remove(); });
  iframe.onload = t.step_func_done(() => {
    const otherWindow = iframe.contentWindow;
    assert_true(otherWindow.PerformanceObserver.supportedEntryTypes instanceof otherWindow.Array);
  });
  document.body.append(iframe);
});
</script>