"use strict"; const { Services } = ChromeUtils.import("resource://gre/modules/Services.jsm"); const EXPORTED_SYMBOLS = ["RegionTestUtils"]; const RegionTestUtils = Object.freeze({ REGION_URL_PREF: "browser.region.network.url", setNetworkRegion(region) { Services.prefs.setCharPref( this.REGION_URL_PREF, `data:application/json,{"country_code": "${region}"}` ); }, });