blob: 14a3694ba8ed8032b3a31bb0fd4190567a6fae65 [file] [log] [blame]
// Copyright 2019 The Chromium Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// https://wicg.github.io/portals/#the-portalhost-interface
[Exposed=Window, RuntimeEnabled=Portals]
interface PortalHost : EventTarget {
[RaisesException, CallWith=ScriptState, Measure] void postMessage(any message,
optional PostMessageOptions options = {});
attribute EventHandler onmessage;
attribute EventHandler onmessageerror;
};