summaryrefslogtreecommitdiff
path: root/chromium/third_party/blink/renderer/core/html/portal/portal_host.idl
blob: 4e2ea0c214c49acee660142b235bcdb322b3cbb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// 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, DOMString targetOrigin,
                                                                    optional sequence<object> transfer = []);
  [RaisesException, CallWith=ScriptState, Measure] void postMessage(any message,
                                                                    optional WindowPostMessageOptions options = {});

  attribute EventHandler onmessage;
  attribute EventHandler onmessageerror;
};