summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/portals/resources/portal-activate-twice-window-1.html
blob: fbc5a6e93d9244178d89a6a0be30660e8b453452 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<!DOCTYPE html>
<body>
  <script>
    var portal = document.createElement("portal");
    portal.src = "simple-portal.html"
    portal.onload = () => {
      portal.activate();
      portal.activate().catch(e => window.opener.postMessage(e.name, "*"));
    }
    document.body.append(portal);
  </script>
</body>