2018-09-13 23:04:55 +03:00
|
|
|
/* -*- Mode: IDL; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
|
2014-10-27 14:03:00 +03: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
|
|
|
|
* http://slightlyoff.github.io/ServiceWorker/spec/service_worker/index.html
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
[Exposed=ServiceWorker]
|
2015-02-20 18:16:17 +03:00
|
|
|
interface Clients {
|
2015-03-06 16:04:49 +03:00
|
|
|
// The objects returned will be new instances every time
|
2015-10-25 06:23:11 +03:00
|
|
|
[NewObject]
|
2022-09-28 22:10:51 +03:00
|
|
|
Promise<(Client or undefined)> get(DOMString id);
|
2015-11-28 01:27:53 +03:00
|
|
|
[NewObject]
|
2019-07-03 10:52:35 +03:00
|
|
|
Promise<sequence<Client>> matchAll(optional ClientQueryOptions options = {});
|
2017-12-12 23:44:47 +03:00
|
|
|
[NewObject]
|
2016-01-09 06:12:49 +03:00
|
|
|
Promise<WindowClient?> openWindow(USVString url);
|
2015-10-25 06:23:11 +03:00
|
|
|
[NewObject]
|
2022-09-21 10:44:58 +03:00
|
|
|
Promise<undefined> claim();
|
2015-02-20 18:16:17 +03:00
|
|
|
};
|
|
|
|
|
|
|
|
dictionary ClientQueryOptions {
|
|
|
|
boolean includeUncontrolled = false;
|
|
|
|
ClientType type = "window";
|
2014-10-27 14:03:00 +03:00
|
|
|
};
|
2015-02-20 18:16:17 +03:00
|
|
|
|
|
|
|
enum ClientType {
|
|
|
|
"window",
|
|
|
|
"worker",
|
|
|
|
"sharedworker",
|
2017-11-21 23:13:04 +03:00
|
|
|
// https://github.com/w3c/ServiceWorker/issues/1036
|
|
|
|
"serviceworker",
|
2015-02-20 18:16:17 +03:00
|
|
|
"all"
|
|
|
|
};
|