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
|
2017-02-15 23:12:37 +03:00
|
|
|
* https://w3c.github.io/ServiceWorker/#client-interface
|
2014-10-27 14:03:00 +03:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
[Exposed=ServiceWorker]
|
2015-02-20 18:16:17 +03:00
|
|
|
interface Client {
|
2015-03-06 16:04:49 +03:00
|
|
|
readonly attribute USVString url;
|
2017-02-15 23:12:37 +03:00
|
|
|
|
|
|
|
// Remove frameType in bug 1290936
|
2017-12-12 23:44:47 +03:00
|
|
|
[BinaryName="GetFrameType"]
|
2015-10-25 06:17:02 +03:00
|
|
|
readonly attribute FrameType frameType;
|
2017-02-15 23:12:37 +03:00
|
|
|
|
|
|
|
readonly attribute ClientType type;
|
2015-10-25 06:17:02 +03:00
|
|
|
readonly attribute DOMString id;
|
2015-02-09 20:43:00 +03:00
|
|
|
|
2017-02-15 23:12:37 +03:00
|
|
|
// Implement reserved in bug 1264177
|
|
|
|
// readonly attribute boolean reserved;
|
|
|
|
|
2015-02-09 20:43:00 +03:00
|
|
|
[Throws]
|
2018-10-29 18:26:30 +03:00
|
|
|
void postMessage(any message, sequence<object> transfer);
|
|
|
|
[Throws]
|
2019-07-03 10:52:35 +03:00
|
|
|
void postMessage(any message, optional PostMessageOptions aOptions = {});
|
2014-10-27 14:03:00 +03:00
|
|
|
};
|
2015-03-06 16:04:49 +03:00
|
|
|
|
|
|
|
[Exposed=ServiceWorker]
|
|
|
|
interface WindowClient : Client {
|
2017-12-12 23:44:47 +03:00
|
|
|
[BinaryName="GetVisibilityState"]
|
2015-03-06 16:04:49 +03:00
|
|
|
readonly attribute VisibilityState visibilityState;
|
|
|
|
readonly attribute boolean focused;
|
2015-04-07 16:25:08 +03:00
|
|
|
|
2017-02-15 23:12:37 +03:00
|
|
|
// Implement ancestorOrigins in bug 1264180
|
|
|
|
// [SameObject] readonly attribute FrozenArray<USVString> ancestorOrigins;
|
|
|
|
|
2015-10-25 06:18:22 +03:00
|
|
|
[Throws, NewObject]
|
2015-03-06 16:04:49 +03:00
|
|
|
Promise<WindowClient> focus();
|
2016-05-24 10:05:17 +03:00
|
|
|
|
|
|
|
[Throws, NewObject]
|
|
|
|
Promise<WindowClient> navigate(USVString url);
|
2015-03-06 16:04:49 +03:00
|
|
|
};
|
|
|
|
|
2017-02-15 23:12:37 +03:00
|
|
|
// Remove FrameType in bug 1290936
|
2015-03-06 16:04:49 +03:00
|
|
|
enum FrameType {
|
|
|
|
"auxiliary",
|
|
|
|
"top-level",
|
|
|
|
"nested",
|
|
|
|
"none"
|
|
|
|
};
|