2016-03-09 19:38:13 +00:00
|
|
|
// For mochitests, we're more interested in testing the behavior of in-
|
|
|
|
// content XBL bindings, so we set this pref to true. In reftests, we're
|
|
|
|
// more interested in testing the behavior of XBL as it works in chrome,
|
|
|
|
// so we want this pref to be false.
|
|
|
|
user_pref("dom.use_xbl_scopes_for_remote_xul", false);
|
|
|
|
user_pref("gfx.color_management.mode", 2);
|
|
|
|
user_pref("gfx.color_management.force_srgb", true);
|
|
|
|
user_pref("browser.dom.window.dump.enabled", true);
|
|
|
|
user_pref("ui.caretBlinkTime", -1);
|
|
|
|
user_pref("dom.send_after_paint_to_content", true);
|
|
|
|
// no slow script dialogs
|
|
|
|
user_pref("dom.max_script_run_time", 0);
|
|
|
|
user_pref("dom.max_chrome_script_run_time", 0);
|
|
|
|
user_pref("hangmonitor.timeout", 0);
|
|
|
|
// Ensure autoplay is enabled for all platforms.
|
|
|
|
user_pref("media.autoplay.enabled", true);
|
|
|
|
// Disable updates
|
|
|
|
user_pref("app.update.enabled", false);
|
|
|
|
user_pref("app.update.staging.enabled", false);
|
|
|
|
user_pref("app.update.url.android", "");
|
|
|
|
// Disable addon updates and prefetching so we don't leak them
|
|
|
|
user_pref("extensions.update.enabled", false);
|
|
|
|
user_pref("extensions.systemAddon.update.url", "http://localhost/dummy-system-addons.xml");
|
|
|
|
user_pref("extensions.getAddons.cache.enabled", false);
|
|
|
|
// Disable blocklist updates so we don't have them reported as leaks
|
|
|
|
user_pref("extensions.blocklist.enabled", false);
|
|
|
|
// Make url-classifier updates so rare that they won't affect tests
|
|
|
|
user_pref("urlclassifier.updateinterval", 172800);
|
|
|
|
// Disable downscale-during-decode, since it makes reftests more difficult.
|
|
|
|
user_pref("image.downscale-during-decode.enabled", false);
|
|
|
|
// Disable the single-color optimization, since it can cause intermittent
|
|
|
|
// oranges and it causes many of our tests to test a different code path
|
|
|
|
// than the one that normal images on the web use.
|
|
|
|
user_pref("image.single-color-optimization.enabled", false);
|
|
|
|
// Checking whether two files are the same is slow on Windows.
|
|
|
|
// Setting this pref makes tests run much faster there.
|
|
|
|
user_pref("security.fileuri.strict_origin_policy", false);
|
|
|
|
// Disable the thumbnailing service
|
|
|
|
user_pref("browser.pagethumbnails.capturing_disabled", true);
|
|
|
|
// Since our tests are 800px wide, set the assume-designed-for width of all
|
|
|
|
// pages to be 800px (instead of the default of 980px). This ensures that
|
|
|
|
// in our 800px window we don't zoom out by default to try to fit the
|
|
|
|
// assumed 980px content.
|
|
|
|
user_pref("browser.viewport.desktopWidth", 800);
|
|
|
|
// Disable the fade out (over time) of overlay scrollbars, since we
|
|
|
|
// can't guarantee taking both reftest snapshots at the same point
|
|
|
|
// during the fade.
|
|
|
|
user_pref("layout.testing.overlay-scrollbars.always-visible", true);
|
|
|
|
// Disable interruptible reflow since (1) it's normally not going to
|
|
|
|
// happen, but (2) it might happen if we somehow end up with both
|
|
|
|
// pending user events and clock skew. So to avoid having to change
|
|
|
|
// MakeProgress to deal with waiting for interruptible reflows to
|
|
|
|
// complete for a rare edge case, we just disable interruptible
|
|
|
|
// reflow so that that rare edge case doesn't lead to reftest
|
|
|
|
// failures.
|
|
|
|
user_pref("layout.interruptible-reflow.enabled", false);
|
2014-12-23 11:17:12 +00:00
|
|
|
|
2016-03-09 19:38:13 +00:00
|
|
|
// Tell the search service we are running in the US. This also has the
|
|
|
|
// desired side-effect of preventing our geoip lookup.
|
|
|
|
user_pref("browser.search.isUS", true);
|
|
|
|
user_pref("browser.search.countryCode", "US");
|
|
|
|
user_pref("browser.search.geoSpecificDefaults", false);
|
2015-01-09 10:18:00 +00:00
|
|
|
|
2016-03-09 19:38:13 +00:00
|
|
|
// Make sure SelfSupport doesn't hit the network.
|
|
|
|
user_pref("browser.selfsupport.url", "https://localhost/selfsupport-dummy/");
|
2015-04-16 15:22:16 +00:00
|
|
|
|
2016-03-09 19:38:13 +00:00
|
|
|
// use about:blank, not browser.startup.homepage
|
|
|
|
user_pref("browser.startup.page", 0);
|
2015-12-11 13:06:41 +00:00
|
|
|
|
2016-03-09 19:38:13 +00:00
|
|
|
// Allow XUL and XBL files to be opened from file:// URIs
|
|
|
|
user_pref("dom.allow_XUL_XBL_for_file", true);
|
|
|
|
|
|
|
|
// Allow view-source URIs to be opened from URIs that share
|
|
|
|
// their protocol with the inner URI of the view-source URI
|
|
|
|
user_pref("security.view-source.reachable-from-inner-protocol", true);
|
|
|
|
|
|
|
|
// Ensure that telemetry is disabled, so we don't connect to the telemetry
|
|
|
|
// server in the middle of the tests.
|
|
|
|
user_pref("toolkit.telemetry.enabled", false);
|
|
|
|
user_pref("toolkit.telemetry.unified", false);
|
|
|
|
// Likewise for safebrowsing.
|
|
|
|
user_pref("browser.safebrowsing.enabled", false);
|
|
|
|
user_pref("browser.safebrowsing.malware.enabled", false);
|
2016-03-24 00:59:55 +00:00
|
|
|
user_pref("browser.safebrowsing.forbiddenURIs.enabled", false);
|
2016-03-29 07:37:44 +00:00
|
|
|
user_pref("browser.safebrowsing.blockedURIs.enabled", false);
|
2016-03-09 19:38:13 +00:00
|
|
|
// Likewise for tracking protection.
|
|
|
|
user_pref("privacy.trackingprotection.enabled", false);
|
|
|
|
user_pref("privacy.trackingprotection.pbmode.enabled", false);
|
|
|
|
// And for snippets.
|
|
|
|
user_pref("browser.snippets.enabled", false);
|
|
|
|
user_pref("browser.snippets.syncPromo.enabled", false);
|
|
|
|
user_pref("browser.snippets.firstrunHomepage.enabled", false);
|
|
|
|
// And for useragent updates.
|
|
|
|
user_pref("general.useragent.updates.enabled", false);
|
|
|
|
// And for webapp updates. Yes, it is supposed to be an integer.
|
|
|
|
user_pref("browser.webapps.checkForUpdates", 0);
|
|
|
|
// And for about:newtab content fetch and pings.
|
|
|
|
user_pref("browser.newtabpage.directory.source", "data:application/json,{\"reftest\":1}");
|
|
|
|
user_pref("browser.newtabpage.directory.ping", "");
|
|
|
|
// Only allow add-ons from the profile and app and allow foreign
|
|
|
|
// injection
|
|
|
|
user_pref("extensions.enabledScopes", 5);
|
|
|
|
user_pref("extensions.autoDisableScopes", 0);
|
|
|
|
// Allow unsigned add-ons
|
|
|
|
user_pref("xpinstall.signatures.required", false);
|
|
|
|
|
|
|
|
// Don't use auto-enabled e10s
|
|
|
|
user_pref("browser.tabs.remote.autostart.1", false);
|
|
|
|
user_pref("browser.tabs.remote.autostart.2", false);
|
|
|
|
|
|
|
|
user_pref("startup.homepage_welcome_url", "");
|
2016-03-14 21:00:40 +00:00
|
|
|
user_pref("startup.homepage_welcome_url.additional", "");
|
2016-03-09 19:38:13 +00:00
|
|
|
user_pref("startup.homepage_override_url", "");
|
2016-03-16 06:27:25 +00:00
|
|
|
user_pref("browser.usedOnWindows10.introURL", "");
|
2016-03-09 19:38:13 +00:00
|
|
|
|
|
|
|
user_pref("media.gmp-manager.url.override", "http://localhost/dummy-gmp-manager.xml");
|