summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/portals/portals-activate-resolution.html
blob: 7094768a4f81fe25136f3b2647d4c9b9451ab817 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<script src="resources/open-blank-host.js"></script>
<script>
  promise_test(async () => {
    assert_implements("HTMLPortalElement" in self);
    var win = await openBlankPortalHost();
    var portal = win.document.createElement("portal");
    portal.src = new URL("resources/simple-portal.html", location.href)

    await new Promise((resolve, reject) => {
      portal.onload = resolve;
      win.document.body.appendChild(portal);
    });

    return portal.activate();
  });
</script>