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

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");
}