diff --git a/tests/integration/data/prompt/geolocation.html b/tests/integration/data/prompt/geolocation.html index 8bb88e45a..89e7edd4c 100644 --- a/tests/integration/data/prompt/geolocation.html +++ b/tests/integration/data/prompt/geolocation.html @@ -13,6 +13,9 @@ case error.PERMISSION_DENIED: console.log("geolocation permission denied"); break; + case error.POSITION_UNAVAILABLE: + console.log("geolocation position unavailable (ignored)"); + break; default: console.log("[FAIL] geolocation error " + error.code + ": " + error.message);