mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-03 20:30:00 +00:00
20 lines
613 B
JavaScript
20 lines
613 B
JavaScript
var Cc = Components.classes;
|
|
var Ci = Components.interfaces;
|
|
var Cu = Components.utils;
|
|
|
|
Cu.import("resource://testing-common/httpd.js");
|
|
|
|
var httpserver = null;
|
|
|
|
function run_test() {
|
|
var prefs = Cc["@mozilla.org/preferences-service;1"].getService(Ci.nsIPrefBranch);
|
|
prefs.setBoolPref("geo.wifi.scan", false);
|
|
|
|
httpserver = new HttpServer();
|
|
httpserver.start(-1);
|
|
prefs.setCharPref("geo.wifi.uri", "http://localhost:" +
|
|
httpserver.identity.primaryPort + "/geo");
|
|
prefs.setBoolPref("dom.testing.ignore_ipc_principal", true);
|
|
run_test_in_child("./test_geolocation_timeout.js");
|
|
}
|