2018-09-13 23:04:55 +03:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2013-11-20 03:14:07 +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/.
|
|
|
|
*
|
|
|
|
* The origin of this IDL file is
|
2018-10-11 15:37:37 +03:00
|
|
|
* https://w3c.github.io/ServiceWorker/#serviceworkercontainer
|
2013-11-20 03:14:07 +04:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-06-26 21:18:18 +03:00
|
|
|
[Func="ServiceWorkerContainer::IsEnabled",
|
2014-08-19 17:56:00 +04:00
|
|
|
Exposed=Window]
|
|
|
|
interface ServiceWorkerContainer : EventTarget {
|
2013-11-20 03:14:07 +04:00
|
|
|
// FIXME(nsm):
|
|
|
|
// https://github.com/slightlyoff/ServiceWorker/issues/198
|
|
|
|
// and discussion at https://etherpad.mozilla.org/serviceworker07apr
|
2014-06-17 22:01:28 +04:00
|
|
|
[Unforgeable] readonly attribute ServiceWorker? controller;
|
2013-11-20 03:14:07 +04:00
|
|
|
|
2017-01-28 02:53:36 +03:00
|
|
|
[Throws]
|
2014-08-19 17:56:00 +04:00
|
|
|
readonly attribute Promise<ServiceWorkerRegistration> ready;
|
2014-06-17 22:01:28 +04:00
|
|
|
|
2015-11-23 18:10:33 +03:00
|
|
|
[NewObject]
|
2014-11-20 14:58:00 +03:00
|
|
|
Promise<ServiceWorkerRegistration> register(USVString scriptURL,
|
2015-03-10 04:57:06 +03:00
|
|
|
optional RegistrationOptions options);
|
2013-11-20 03:14:07 +04:00
|
|
|
|
2015-11-23 18:10:33 +03:00
|
|
|
[NewObject]
|
2016-01-09 06:03:44 +03:00
|
|
|
Promise<any> getRegistration(optional USVString documentURL = "");
|
2013-11-20 03:14:07 +04:00
|
|
|
|
2015-11-23 18:10:33 +03:00
|
|
|
[NewObject]
|
2015-04-11 06:19:28 +03:00
|
|
|
Promise<sequence<ServiceWorkerRegistration>> getRegistrations();
|
2013-11-20 03:14:07 +04:00
|
|
|
|
2018-10-11 15:37:37 +03:00
|
|
|
void startMessages();
|
|
|
|
|
2014-06-17 22:01:28 +04:00
|
|
|
attribute EventHandler oncontrollerchange;
|
2013-11-20 03:14:07 +04:00
|
|
|
attribute EventHandler onerror;
|
2015-02-25 22:38:37 +03:00
|
|
|
attribute EventHandler onmessage;
|
2018-10-23 00:22:25 +03:00
|
|
|
attribute EventHandler onmessageerror;
|
2013-11-20 03:14:07 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
// Testing only.
|
|
|
|
partial interface ServiceWorkerContainer {
|
2014-08-05 06:20:33 +04:00
|
|
|
[Throws,Pref="dom.serviceWorkers.testing.enabled"]
|
2014-07-11 22:52:19 +04:00
|
|
|
DOMString getScopeForUrl(DOMString url);
|
2013-11-20 03:14:07 +04:00
|
|
|
};
|
|
|
|
|
2015-03-10 04:57:06 +03:00
|
|
|
dictionary RegistrationOptions {
|
|
|
|
USVString scope;
|
2017-08-16 09:18:52 +03:00
|
|
|
ServiceWorkerUpdateViaCache updateViaCache = "imports";
|
2013-11-20 03:14:07 +04:00
|
|
|
};
|