summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/client-hints/critical-ch/resources/util.js
blob: 36800f1e4f0c4933ee78ddaec2c9e2d86723e2f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
ECHO_URL = "resources/echo-critical-hint.py"
REDIRECT_URL = "resources/redirect-critical-hint.py"

message_listener = (t, message) =>
  (e) => {
    t.step(()=>{assert_equals(e.data, message)});
    t.done();
  }

make_message_test = (url, message) =>
  (t) => {
    popup_window = window.open("/common/blank.html");
    assert_not_equals(popup_window, null, "Popup windows not allowed?");
    window.addEventListener('message', message_listener(t, message));
    popup_window.location = url;
  }