summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/portals/resources/portals-nested-portal.html
blob: 278b32eea06bf71dd951780b12a8715410a83aab (plain)
1
2
3
4
5
6
7
8
9
<!DOCTYPE html>
<body>
  <script>
    var portal = document.createElement("portal");
    portal.src = "simple-portal.html";
    portal.onload = e => window.portalHost.postMessage(e.data);
    document.body.appendChild(portal);
  </script>
</body>