2018-09-13 22:30:51 +03:00
|
|
|
/* -*- Mode: IDL; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
|
|
|
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
|
2014-05-14 01:49:36 +04:00
|
|
|
/* 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://slightlyoff.github.io/ServiceWorker/spec/service_worker/index.html
|
|
|
|
*/
|
|
|
|
|
2014-11-06 18:57:57 +03:00
|
|
|
[Constructor(DOMString type, optional ExtendableEventInit eventInitDict),
|
|
|
|
Exposed=ServiceWorker]
|
|
|
|
interface ExtendableEvent : Event {
|
2014-05-14 01:49:36 +04:00
|
|
|
// https://github.com/slightlyoff/ServiceWorker/issues/261
|
2015-08-19 02:28:04 +03:00
|
|
|
[Throws]
|
2014-08-01 07:50:30 +04:00
|
|
|
void waitUntil(Promise<any> p);
|
2014-05-14 01:49:36 +04:00
|
|
|
};
|
2014-11-06 18:57:57 +03:00
|
|
|
|
|
|
|
dictionary ExtendableEventInit : EventInit {
|
|
|
|
// Defined for the forward compatibility across the derived events
|
|
|
|
};
|