summaryrefslogtreecommitdiffstats
path: root/dom/tests/unit/test_geolocation_timeout_wrap.js
blob: 023571f4457b12e92a58b43b6f23b5aa0c070814 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
const { HttpServer } = ChromeUtils.importESModule(
  "resource://testing-common/httpd.sys.mjs"
);

var httpserver = null;

function run_test() {
  Services.prefs.setBoolPref("geo.provider.network.scan", false);

  httpserver = new HttpServer();
  httpserver.start(-1);
  Services.prefs.setCharPref(
    "geo.provider.network.url",
    "http://localhost:" + httpserver.identity.primaryPort + "/geo"
  );
  run_test_in_child("./test_geolocation_timeout.js");
}