mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-27 23:02:20 +00:00
Backed out 2 changesets (bug 1836204) for causing frequent marionette / bidi failures. CLOSED TREE
Backed out changeset 1316e023af44 (bug 1836204) Backed out changeset 0ab331879e6d (bug 1836204)
This commit is contained in:
parent
c19ab85068
commit
5023905cc7
@ -1055,12 +1055,15 @@ var TranslationsPanel = new (class {
|
||||
const { panel, appMenuButton } = this.elements;
|
||||
const openedFromAppMenu = target.id === appMenuButton.id;
|
||||
|
||||
TranslationsParent.telemetry().panel().onOpen({
|
||||
maintainFlow,
|
||||
openedFromAppMenu,
|
||||
isFirstUserInteraction,
|
||||
panel.addEventListener(
|
||||
"ViewShown",
|
||||
() => {
|
||||
TranslationsParent.telemetry().panel().onOpen({
|
||||
maintainFlow,
|
||||
openedFromAppMenu,
|
||||
isFirstUserInteraction,
|
||||
})
|
||||
});
|
||||
|
||||
PanelMultiView.openPopup(panel, target, {
|
||||
position: "bottomright topright",
|
||||
triggerEvent: event,
|
||||
|
@ -156,6 +156,10 @@ function defaultProfilePreferences(
|
||||
// Do not warn when multiple tabs will be opened
|
||||
'browser.tabs.warnOnOpen': false,
|
||||
|
||||
// Disable page translations, which can cause issues with tests.
|
||||
// See https://bugzilla.mozilla.org/show_bug.cgi?id=1836093.
|
||||
'browser.translations.enable': false,
|
||||
|
||||
// Disable the UI tour.
|
||||
'browser.uitour.enabled': false,
|
||||
// Turn off search suggestions in the location bar so as not to trigger
|
||||
|
@ -52,6 +52,10 @@ lazy_static! {
|
||||
// Start with a blank page (about:blank)
|
||||
("browser.startup.page", Pref::new(0)),
|
||||
|
||||
// Disable page translations, causing timeouts for wdspec tests in early
|
||||
// beta. See Bug 1836093.
|
||||
("browser.translations.enable", Pref::new(false)),
|
||||
|
||||
// Disable the UI tour
|
||||
("browser.uitour.enabled", Pref::new(false)),
|
||||
|
||||
|
@ -45,6 +45,9 @@ class GeckoInstance(object):
|
||||
"browser.region.network.url": "",
|
||||
# Don't pull Top Sites content from the network
|
||||
"browser.topsites.contile.enabled": False,
|
||||
# Disable page translations, causing timeouts for wdspec tests in early
|
||||
# beta. See Bug 1836093.
|
||||
"browser.translations.enable": False,
|
||||
# Disable UI tour
|
||||
"browser.uitour.pinnedTabUrl": "http://%(server)s/uitour-dummy/pinnedTab",
|
||||
"browser.uitour.url": "http://%(server)s/uitour-dummy/tour",
|
||||
|
Loading…
Reference in New Issue
Block a user