blob: c05696c1595c9a6c1407308ce5c5f6cccc4cd048 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
/* -*- 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/.
*
* The origin of this IDL file is
* http://slightlyoff.github.io/ServiceWorker/spec/service_worker/index.html
*
*/
[Pref="dom.serviceWorkers.enabled",
Constructor(DOMString type, optional ServiceWorkerMessageEventInit eventInitDict),
Exposed=Window]
interface ServiceWorkerMessageEvent : Event {
/**
* Custom data associated with this event.
*/
readonly attribute any data;
/**
* The origin of the site from which this event originated.
*/
readonly attribute DOMString origin;
/**
* The last event ID string of the event source.
*/
readonly attribute DOMString lastEventId;
/**
* The service worker or port which originated this event.
* FIXME: Use SameOject after IDL spec is updated
* https://bugzilla.mozilla.org/show_bug.cgi?id=1196097
*/
[Constant] readonly attribute (ServiceWorker or MessagePort)? source;
[Constant, Cached, Frozen]
readonly attribute sequence<MessagePort> ports;
};
dictionary ServiceWorkerMessageEventInit : EventInit
{
any data = null;
DOMString origin = "";
DOMString lastEventId = "";
(ServiceWorker or MessagePort)? source = null;
sequence<MessagePort> ports = [];
};
|