mirror of
https://github.com/servo/servo.git
synced 2025-08-03 12:40:06 +01:00
Update web-platform-tests to revision b'b728032f59a396243864b0f8584e7211e3632005'
This commit is contained in:
parent
ace9b32b1c
commit
df68c4e5d1
15632 changed files with 514865 additions and 155000 deletions
|
@ -0,0 +1,14 @@
|
|||
<!doctype html>
|
||||
<meta charset=utf-8>
|
||||
<title>Test geolocation is a powerful feature via Permissions API</title>
|
||||
<script src=/resources/testharness.js></script>
|
||||
<script src=/resources/testharnessreport.js></script>
|
||||
|
||||
<script>
|
||||
promise_test(async (test) => {
|
||||
const status = await navigator.permissions.query({ name: "geolocation" });
|
||||
assert_true(status instanceof PermissionStatus);
|
||||
assert_equals(status.name, "geolocation", `permission's name must be "geolocation"`);
|
||||
assert_equals(status.state, "prompt", `permission's state must be "prompt" by default`);
|
||||
}, `Query "geolocation" powerful feature`);
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue