summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/resource-timing/resources/nested-contexts.js
blob: 31337ae5da2e181df178fa881bb38c3f394580b1 (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
let destination = location;

if (location.search == "?cross-site") {
    const https = destination.protocol.startsWith("https");
    destination = get_host_info()[https ? 'HTTPS_NOTSAMESITE_ORIGIN' : 'HTTP_NOTSAMESITE_ORIGIN'];
} else if (location.search == "?crossorigin") {
    destination =  get_host_info().REMOTE_ORIGIN;
}

const pre_navigate_url =
  new URL("/resource-timing/resources/document-that-navigates.html",
    destination).href;
const post_navigate_url =
  new URL("/resource-timing/resources/document-navigated.html",
    destination).href;
const pre_refresh_url =
  new URL("/resource-timing/resources/document-that-refreshes.html",
    destination).href;
const post_refresh_url =
  new URL("/resource-timing/resources/document-refreshed.html",
    destination).href;

const setup_navigate_or_refresh = (type, pre, post) => {
  const verify_document_navigate_not_observable = () => {
    if (performance.getEntriesByName(post).length) {
      opener.postMessage(`FAIL - ${type} document should not be observable`,
      `*`);

    }

    opener.postMessage("PASS", "*");
  }
  window.addEventListener("message", e => {
    if (e.data == type) {
      verify_document_navigate_not_observable();
    }
  });
}

const setup_navigate_test = () => {
  setup_navigate_or_refresh("navigated", pre_navigate_url, post_navigate_url);
}

const setup_refresh_test = () => {
  setup_navigate_or_refresh("refreshed", pre_refresh_url, post_refresh_url);
}

const setup_back_navigation = pushed_url => {
  const verify_document_navigate_not_observable = navigated_back => {
    if (performance.getEntriesByName(post_navigate_url).length) {
      opener.postMessage("FAIL - navigated document exposed", "*");
    }
    if (navigated_back) {
      opener.postMessage("PASS", "*");
    }
  }
  window.addEventListener("message", e => {
    if (e.data == "navigated") {
      verify_document_navigate_not_observable(sessionStorage.navigated);
      if (sessionStorage.navigated) {
        delete sessionStorage.navigated;
      } else {
        sessionStorage.navigated = true;
        setTimeout(() => {
          history.pushState({}, "", pushed_url);
          location.href="navigate_back.html";
        }, 0);
      }
    }
  });
}

const open_test_window = (url, message) => {
  promise_test(() => {
    return new Promise((resolve, reject) => {
      const openee = window.open(url);
      addEventListener("message", e => {
        openee.close();
        if (e.data == "PASS") {
          resolve();
        } else {
          reject(e.data);
        }
      });
    });
  }, message);
}