The WindowClient interface of the ServiceWorker API represents the scope of a service worker client that is a document in a browser context, controlled by an active worker. The service worker client independently selects and uses a service worker for its own loading and sub-resources.

Documentation WindowClient by Mozilla Contributors, licensed under CC-BY-SA 2.5.

See also:

Variables

read onlyfocused:Bool

A boolean that indicates whether the current client has focus.

read onlyvisibilityState:VisibilityState

Indicates the visibility of the current client. This value can be one of hidden, visible, prerender, or unloaded.

Methods

focus():Promise<WindowClient>

Throws:

null

DOMError

Inherited Variables

Defined by Client

read onlyframeType:FrameType

Indicates the type of browsing context of the current client. This value can be one of auxiliarytop-levelnested, or none.

read onlyid:String

Returns the universally unique identifier of the Client object.

read onlyurl:String

The URL of the current service worker client.

Inherited Methods

Defined by Client

postMessage(message:Dynamic, ?transfer:Array<Dynamic>):Void

Throws:

null

DOMError