2013-11-19 15:14:07 -08:00
|
|
|
/* -*- 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
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2015-06-26 11:18:18 -07:00
|
|
|
[Func="ServiceWorkerContainer::IsEnabled",
|
2014-08-19 06:56:00 -07:00
|
|
|
Exposed=Window]
|
|
|
|
interface ServiceWorkerContainer : EventTarget {
|
2013-11-19 15:14:07 -08:00
|
|
|
// FIXME(nsm):
|
|
|
|
// https://github.com/slightlyoff/ServiceWorker/issues/198
|
|
|
|
// and discussion at https://etherpad.mozilla.org/serviceworker07apr
|
2014-06-17 11:01:28 -07:00
|
|
|
[Unforgeable] readonly attribute ServiceWorker? controller;
|
2013-11-19 15:14:07 -08:00
|
|
|
|
2014-07-18 18:31:11 -07:00
|
|
|
[Throws]
|
2014-08-19 06:56:00 -07:00
|
|
|
readonly attribute Promise<ServiceWorkerRegistration> ready;
|
2014-06-17 11:01:28 -07:00
|
|
|
|
2013-11-19 15:14:07 -08:00
|
|
|
[Throws]
|
2014-11-20 03:58:00 -08:00
|
|
|
Promise<ServiceWorkerRegistration> register(USVString scriptURL,
|
2015-03-09 18:57:06 -07:00
|
|
|
optional RegistrationOptions options);
|
2013-11-19 15:14:07 -08:00
|
|
|
|
|
|
|
[Throws]
|
2014-11-20 03:58:00 -08:00
|
|
|
Promise<ServiceWorkerRegistration> getRegistration(optional USVString documentURL = "");
|
2013-11-19 15:14:07 -08:00
|
|
|
|
|
|
|
[Throws]
|
2015-04-10 20:19:28 -07:00
|
|
|
Promise<sequence<ServiceWorkerRegistration>> getRegistrations();
|
2013-11-19 15:14:07 -08:00
|
|
|
|
2014-06-17 11:01:28 -07:00
|
|
|
attribute EventHandler oncontrollerchange;
|
2013-11-19 15:14:07 -08:00
|
|
|
attribute EventHandler onreloadpage;
|
|
|
|
attribute EventHandler onerror;
|
2015-02-25 11:38:37 -08:00
|
|
|
attribute EventHandler onmessage;
|
2013-11-19 15:14:07 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
// Testing only.
|
|
|
|
partial interface ServiceWorkerContainer {
|
2014-08-04 19:20:33 -07:00
|
|
|
[Throws,Pref="dom.serviceWorkers.testing.enabled"]
|
2014-07-11 11:52:19 -07:00
|
|
|
DOMString getScopeForUrl(DOMString url);
|
2013-11-19 15:14:07 -08:00
|
|
|
};
|
|
|
|
|
2015-03-09 18:57:06 -07:00
|
|
|
dictionary RegistrationOptions {
|
|
|
|
USVString scope;
|
2013-11-19 15:14:07 -08:00
|
|
|
};
|