mirror of
https://github.com/classilla/tenfourfox.git
synced 2025-01-08 07:31:32 +00:00
14 lines
443 B
JavaScript
14 lines
443 B
JavaScript
var Cc = Components.classes;
|
|
var Ci = Components.interfaces;
|
|
var Cu = Components.utils;
|
|
|
|
|
|
function run_test() {
|
|
var prefs = Cc["@mozilla.org/preferences-service;1"].getService(Ci.nsIPrefBranch);
|
|
prefs.setBoolPref("geo.wifi.scan", false);
|
|
|
|
prefs.setCharPref("geo.wifi.uri", "UrlNotUsedHere");
|
|
prefs.setBoolPref("dom.testing.ignore_ipc_principal", true);
|
|
run_test_in_child("./test_geolocation_position_unavailable.js");
|
|
}
|