Bug 1943761 - Add class alignment to the mozsearch analysis file. r=asuth
[gecko.git] / dom / tests / unit / test_geolocation_timeout_wrap.js
blob023571f4457b12e92a58b43b6f23b5aa0c070814
1 const { HttpServer } = ChromeUtils.importESModule(
2 "resource://testing-common/httpd.sys.mjs"
3 );
5 var httpserver = null;
7 function run_test() {
8 Services.prefs.setBoolPref("geo.provider.network.scan", false);
10 httpserver = new HttpServer();
11 httpserver.start(-1);
12 Services.prefs.setCharPref(
13 "geo.provider.network.url",
14 "http://localhost:" + httpserver.identity.primaryPort + "/geo"
16 run_test_in_child("./test_geolocation_timeout.js");