blob: 6389829c7cc469304c67be8c7aca2609301fd5ed [file] [log] [blame]
<!DOCTYPE html>
<body>
<script>
var portal = document.createElement("portal");
portal.src = "portal-post-message-before-activate-portal.html";
document.body.appendChild(portal);
portal.onload = () => {
portal.postMessage("message");
portal.activate();
}
</script>
</body>