summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/resource-timing/cross-origin-iframe.html
blob: 69daebffaf2a245eae51872826bc04ff78b0a135 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
<!DOCTYPE html>
<meta charset="utf-8">
<title>Test ResourceTiming reporting for cross-origin iframe.</title>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="/common/get-host-info.sub.js"></script>
<script src="resources/entry-invariants.js"></script>
<script src="resources/observe-entry.js"></script>
</head>
<body>
<body>
<script>
  const {REMOTE_ORIGIN} = get_host_info();

  promise_test(async t => {
    const iframe = document.createElement('iframe');
    t.add_cleanup(() => iframe.remove());
    iframe.src = `${REMOTE_ORIGIN}/resource-timing/resources/green.html`;
    document.body.appendChild(iframe);
    const entry = await observe_entry(iframe.src);
    invariants.assert_tao_failure_resource(entry);
  }, "A cross-origin iframe should report an opaque RT entry");

  promise_test(async t => {
    const iframe = document.createElement('iframe');
    t.add_cleanup(() => iframe.remove());
    iframe.src = `${REMOTE_ORIGIN}/resource-timing/resources/TAOResponse.py?tao=wildcard`;
    document.body.appendChild(iframe);
    const entry = await observe_entry(iframe.src);
    invariants.assert_tao_pass_no_redirect_http(entry);
  }, "A cross-origin iframe with TAO enabled should report a full RT entry");

  </script>