blob: e2c7f6d3170f5cdb8ed42fbcf5924dda4ae38f9d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
if (typeof getDefaultLocale === "undefined") {
var getDefaultLocale = SpecialPowers.Cu.getJSTestingFunctions().getDefaultLocale;
}
if (typeof setDefaultLocale === "undefined") {
var setDefaultLocale = SpecialPowers.Cu.getJSTestingFunctions().setDefaultLocale;
}
if (typeof getTimeZone === "undefined") {
var getTimeZone = SpecialPowers.Cu.getJSTestingFunctions().getTimeZone;
}
if (typeof setTimeZone === "undefined") {
var setTimeZone = SpecialPowers.Cu.getJSTestingFunctions().setTimeZone;
}
|