Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /permissions/idlharness.any.html - WPT Dashboard Interop Dashboard
- /permissions/idlharness.any.worker.html - WPT Dashboard Interop Dashboard
// META: script=/resources/WebIDLParser.js
// META: script=/resources/idlharness.js
"use strict";
idl_test(
['permissions'],
['html', 'dom'],
async idl_array => {
try {
self.permissionStatus = await navigator.permissions.query({ name: "geolocation" });
} catch (e) {}
if (self.GLOBAL.isWorker()) {
idl_array.add_objects({ WorkerNavigator: ['navigator'] });
} else {
idl_array.add_objects({ Navigator: ['navigator'] });
}
idl_array.add_objects({
Permissions: ['navigator.permissions'],
PermissionStatus: ['permissionStatus']
});
}
);