blob: 6f3b6fdf87ac1eb4ba0f204ca6dc8c3d07a4d2ad (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js
// META: timeout=long
'use strict';
// https://wicg.github.io/periodic-background-sync/
idl_test(
['periodic-background-sync'],
['service-workers', 'html', 'dom'],
async idl_array => {
idl_array.add_objects({
ServiceWorkerGlobalScope: ['self', 'onperiodicsync'],
ServiceWorkerRegistration: ['registration'],
PeriodicSyncManager: ['registration.periodicSync'],
PeriodicSyncEvent: ['new PeriodicSyncEvent("tag")'],
});
}
);
|