Automatic update from web-platform-tests Replace Geolocation Sensor tests with historical artifact (#58459) GeolocationSensor has been published as a Discontinued Draft so the tests should be removed. Change-Id: I9e9bbae09eb48371837f0f6e1d120b219b954186 Reviewed-on: https://chromium-review.googlesource.com/c/chromium/src/+/7653319 Reviewed-by: Alvin Ji <alvinji@chromium.org> Commit-Queue: Reilly Grant <reillyg@chromium.org> Auto-Submit: Reilly Grant <reillyg@chromium.org> Cr-Commit-Position: refs/heads/main@{#1597946} Co-authored-by: Reilly Grant <reillyg@chromium.org> -- wpt-commits: a2d381831d9ee59cf00ae3c6b53d9f4cc2fed94e wpt-pr: 58459
15 lines
571 B
HTML
15 lines
571 B
HTML
<!DOCTYPE html>
|
|
<meta charset="utf-8">
|
|
<title>GeolocationSensor must not be defined</title>
|
|
<link rel="help" href="https://wicg.github.io/geolocation-sensor/">
|
|
<script src="/resources/testharness.js"></script>
|
|
<script src="/resources/testharnessreport.js"></script>
|
|
<script>
|
|
// GeolocationSensor has been published as a Discontinued Draft:
|
|
// https://www.w3.org/TR/2026/DISC-geolocation-sensor-20260203/
|
|
|
|
test(() => {
|
|
assert_false("GeolocationSensor" in window, "GeolocationSensor must not be defined");
|
|
}, "GeolocationSensor interface must not be defined");
|
|
</script>
|