summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/portals/portals-activate-inside-portal.html
blob: 19b57b3e42e4227d2af780486d3d1d53ceb4a34d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<!DOCTYPE html>
<script src="/resources/testharness.js"></script>
<script src="/resources/testharnessreport.js"></script>
<body>
  <script>
    promise_test(async () => {
      assert_implements("HTMLPortalElement" in self);
      var portal = document.createElement("portal");
      portal.src = "resources/portal-activate-inside-portal.html";
      let waitForMessage = new Promise((resolve, reject) => {
        portal.onmessage = e => resolve(e.data);
        document.body.appendChild(portal);
      });
      var error = await waitForMessage;
      assert_equals(error, "InvalidStateError");
    }, "activating a nested portal should throw an error");
  </script>
</body>