Files
palemoon26/dom/webidl/MessageChannel.webidl
roytam1 b20724f725 ported mozilla patches:
- bug677638 - (initial) MessageChannel API
- bug887241, Use strings, not atoms, for worker events, r=khuey
2018-08-28 20:32:50 +08:00

15 lines
575 B
Plaintext

/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* For more information on this interface, please see
* http://www.whatwg.org/specs/web-apps/current-work/#channel-messaging
*/
[Constructor, Pref="dom.messageChannel.enabled"]
interface MessageChannel {
readonly attribute MessagePort port1;
readonly attribute MessagePort port2;
};