Source code
Revision control
Copy as Markdown
Other Tools
Test Info: Warnings
- This test gets skipped with pattern: os == 'mac' OR os == 'android'
- Manifest: dom/tests/unit/xpcshell.toml
const { HttpServer } = ChromeUtils.importESModule(
);
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",
);
run_test_in_child("./test_geolocation_timeout.js");
}