summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/client-hints/critical-ch/unsafe-method.https.window.js
blob: 0eca0eb8e9aea1c066d56b685f23ffadf3a6754f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
async_test((t) => {
  // This test requires a navigation with a non-safe (i.e. non-GET) HTTP
  // response, which the Critical-CH spec says to ignore. The most
  // "straight-forward" way to do this in JS is by making a form with an
  // unsafe method (e.g. POST) method and submit it.

  // Build the form DOM element
  var form = document.createElement("form");
  form.setAttribute("method", "post");
  form.setAttribute("action", "resources/echo-critical-hint.py");
  form.setAttribute("target", "popup"); //don't navigate away from the page running the test...
  document.body.appendChild(form);

  var popup_window = window.open("/common/blank.html", "popup");
  assert_not_equals(popup_window, null, "Popup windows not allowed?");

  popup_window.addEventListener('message', (e) => {
    t.step(()=>{assert_equals(e.data, "FAIL")});
    t.done();
  });

  form.submit();
}, "Critical-CH unsafe method")