Bug 1614879 [wpt PR 21750] - Set request mode for beacon request with non-cors-safeli...
[gecko.git] / dom / webidl / PresentationConnectionList.webidl
blob875582eb2a25daff8fcc17105d19d4c341a843b3
1 /* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
2 /* This Source Code Form is subject to the terms of the Mozilla Public
3  * License, v. 2.0. If a copy of the MPL was not distributed with this file,
4  * You can obtain one at http://mozilla.org/MPL/2.0/.
5  *
6  * The origin of this IDL file is
7  * https://w3c.github.io/presentation-api/#interface-presentationconnectionlist
8  */
10 [Pref="dom.presentation.receiver.enabled",
11  Exposed=Window]
12 interface PresentationConnectionList : EventTarget {
13   /*
14    * Return the non-terminated set of presentation connections in the
15    * set of presentation controllers.
16    * TODO: Use FrozenArray once available. (Bug 1236777)
17    * readonly attribute FrozenArray<PresentationConnection> connections;
18    */
19   [Frozen, Cached, Pure]
20   readonly attribute sequence<PresentationConnection> connections;
22   /*
23    * It is called when an incoming connection is connected.
24    */
25   attribute EventHandler onconnectionavailable;