зеркало из https://github.com/mozilla/gecko-dev.git
17 строки
522 B
JavaScript
17 строки
522 B
JavaScript
const { HttpServer } = ChromeUtils.import("resource://testing-common/httpd.js");
|
|
const { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm");
|
|
|
|
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");
|
|
}
|