mirror of
https://github.com/servo/servo.git
synced 2025-08-06 14:10:11 +01:00
Update web-platform-tests to revision 756a676d640e9a772f565964285b2f20f6164fce
This commit is contained in:
parent
a38f28f811
commit
3d5ad91231
3066 changed files with 23973 additions and 26209 deletions
|
@ -0,0 +1,82 @@
|
|||
<!DOCTYPE html>
|
||||
<meta charset="utf-8" />
|
||||
<title>Geolocation Test: non-secure contexts</title>
|
||||
<link rel="help" href="https://github.com/w3c/geolocation-api/pull/34" />
|
||||
<script src="/resources/testharness.js"></script>
|
||||
<script src="/resources/testharnessreport.js"></script>
|
||||
<script>
|
||||
promise_test(() => {
|
||||
return new Promise(resolve => {
|
||||
let isAsync = true;
|
||||
const successCallback = () => {
|
||||
assert_unreached(
|
||||
"successCallback must never be invoked in non-secure contexts."
|
||||
);
|
||||
};
|
||||
const errorCallBack = () => {
|
||||
isAsync = false;
|
||||
resolve();
|
||||
};
|
||||
navigator.geolocation.getCurrentPosition(successCallback, errorCallBack);
|
||||
assert_true(
|
||||
isAsync,
|
||||
"Expected the errorCallback to be called asynchronously."
|
||||
);
|
||||
});
|
||||
}, "When in a non-secure context, getCurrentPosition()'s errorCallback is asynchronously called.");
|
||||
|
||||
promise_test(async () => {
|
||||
return new Promise(resolve => {
|
||||
let isAsync = true;
|
||||
const successCallback = () => {
|
||||
assert_unreached(
|
||||
"successCallback must never be invoked in non-secure contexts."
|
||||
);
|
||||
};
|
||||
const errorCallBack = () => {
|
||||
isAsync = false;
|
||||
resolve();
|
||||
};
|
||||
navigator.geolocation.watchPosition(successCallback, errorCallBack);
|
||||
assert_true(isAsync, "errorCallback must be called asynchronously.");
|
||||
});
|
||||
}, "When in a non-secure context, watchPosition()'s errorCallback is asynchronously called.");
|
||||
|
||||
promise_test(async () => {
|
||||
const positionErrorPromise = new Promise(errorCallBack => {
|
||||
const successCallback = () => {
|
||||
assert_unreached(
|
||||
"successCallback must never be invoked in non-secure contexts."
|
||||
);
|
||||
};
|
||||
navigator.geolocation.getCurrentPosition(successCallback, errorCallBack);
|
||||
});
|
||||
const positionError = await positionErrorPromise;
|
||||
assert_equals(
|
||||
positionError.code,
|
||||
1,
|
||||
"Expected the value for PERMISSION_DENIED, which is 1."
|
||||
);
|
||||
}, "When in a non-secure context, the getCurrentPosition() errorCallBack gets a PositionError with the correct error code.");
|
||||
|
||||
promise_test(async () => {
|
||||
const positionErrorPromise = new Promise(errorCallBack => {
|
||||
const successCallback = () => {
|
||||
assert_unreached(
|
||||
"successCallback must never be invoked in non-secure contexts."
|
||||
);
|
||||
};
|
||||
const id = navigator.geolocation.watchPosition(
|
||||
successCallback,
|
||||
errorCallBack
|
||||
);
|
||||
assert_true(Number.isInteger(id), "Must return an identifier.");
|
||||
});
|
||||
const positionError = await positionErrorPromise;
|
||||
assert_equals(
|
||||
positionError.code,
|
||||
1,
|
||||
"Expected the value for PERMISSION_DENIED, which is 1."
|
||||
);
|
||||
}, "When in a non-secure context, the watchPosition() errorCallBack gets a PositionError with the correct error code.");
|
||||
</script>
|
Loading…
Add table
Add a link
Reference in a new issue