summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/portals/portals-close-window.html
blob: e3a66c0bf10b102ef4efea70be8efa7c6b6ab74e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
<script>
promise_test(async t => {
  assert_implements("HTMLPortalElement" in self);
  let portal = document.createElement('portal');
  portal.src = "resources/portal-close-window.html";
  let waitForMessage = new Promise((resolve, reject) => {
    portal.onmessage = e => resolve(e.data);
    document.body.appendChild(portal);
  });
  document.body.appendChild(portal);
  var message = await waitForMessage;
  assert_equals(message, false);
  t.add_cleanup(() => { document.body.removeChild(portal); });
}, "A portal's window cannot be closed");
</script>
</body>