Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /geolocation-sensor/historical.https.html - WPT Dashboard Interop Dashboard
<!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:
test(() => {
assert_false("GeolocationSensor" in window, "GeolocationSensor must not be defined");
}, "GeolocationSensor interface must not be defined");
</script>