mirror of
https://github.com/servo/servo.git
synced 2025-08-03 04:30:10 +01:00
Update webidl of ServiceWorkerRegistration
This commit is contained in:
parent
19b4f35de1
commit
72ffbb7a27
2 changed files with 22 additions and 5 deletions
|
@ -2,14 +2,16 @@
|
|||
* 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/. */
|
||||
|
||||
// https://w3c.github.io/ServiceWorker/#service-worker-registration-obj
|
||||
[Pref="dom.serviceworker.enabled", Exposed=(Window,Worker)]
|
||||
// https://w3c.github.io/ServiceWorker/#serviceworkerregistration-interface
|
||||
[Pref="dom.serviceworker.enabled", SecureContext, Exposed=(Window,Worker)]
|
||||
interface ServiceWorkerRegistration : EventTarget {
|
||||
[Unforgeable] readonly attribute ServiceWorker? installing;
|
||||
[Unforgeable] readonly attribute ServiceWorker? waiting;
|
||||
[Unforgeable] readonly attribute ServiceWorker? active;
|
||||
readonly attribute ServiceWorker? installing;
|
||||
readonly attribute ServiceWorker? waiting;
|
||||
readonly attribute ServiceWorker? active;
|
||||
// [SameObject] readonly attribute NavigationPreloadManager navigationPreload;
|
||||
|
||||
readonly attribute USVString scope;
|
||||
readonly attribute ServiceWorkerUpdateViaCache updateViaCache;
|
||||
|
||||
// [NewObject] Promise<void> update();
|
||||
// [NewObject] Promise<boolean> unregister();
|
||||
|
@ -17,3 +19,9 @@ interface ServiceWorkerRegistration : EventTarget {
|
|||
// event
|
||||
// attribute EventHandler onupdatefound;
|
||||
};
|
||||
|
||||
enum ServiceWorkerUpdateViaCache {
|
||||
"imports",
|
||||
"all",
|
||||
"none"
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue