Commit Graph

8997 Commits

Author SHA1 Message Date
Kirk Steuber
589b7532ea Bug 1585482 - Restructure all <xul:dialog> usages such that they are not the top level element r=bgrins
This patch also includes necessary JS changes to support this. Most commonly, the dialog was accessed with document.documentElement, which needed to be changed now that the dialog is not the top level element.

Differential Revision: https://phabricator.services.mozilla.com/D52411

--HG--
extra : moz-landing-system : lando
2019-12-10 18:25:59 +00:00
Itiel
b51c7bc9fa Bug 1601345 - Replace the "<< Go Back" text link in about:preferences#containers with a button r=Gijs,fluent-reviewers
Also fix the styling of containers to have their separators centered vertically, and make them stretch to the end.

Differential Revision: https://phabricator.services.mozilla.com/D55839

--HG--
extra : moz-landing-system : lando
2019-12-10 05:09:30 +00:00
Noemi Erli
82d41a33b2 Backed out 9 changesets (bug 1596918) for causing multiple browser-chrome failures
Backed out changeset 415007efd8c9 (bug 1596918)
Backed out changeset 011eb5ce927b (bug 1596918)
Backed out changeset e5fd3ee22ea1 (bug 1596918)
Backed out changeset 0bca4de31d40 (bug 1596918)
Backed out changeset 11ec4393f23d (bug 1596918)
Backed out changeset c5404a7c286d (bug 1596918)
Backed out changeset 7e9304405a46 (bug 1596918)
Backed out changeset fa0f0aeabf99 (bug 1596918)
Backed out changeset de196b077000 (bug 1596918)
2019-12-07 22:26:43 +02:00
Kris Maglione
8c28f5ff8d Bug 1596918: Part 4d - Fix callers which try to return non-clonable values. r=mccr8
Differential Revision: https://phabricator.services.mozilla.com/D53745

--HG--
extra : moz-landing-system : lando
2019-12-07 18:44:35 +00:00
Kris Maglione
bd497b1a21 Bug 1596918: Part 4c - Fix callers which depend on document lifecycle changes. r=mccr8
ContentTask tasks have a different lifetime than SpecialPowers tasks, with the
former being tied to the lifetime of a message manager and the latter tied to
the lifetime of a window global. That means that existing ContentTask callers
which expect to be able to register load listeners before the creation of a
window global, or which expect to persist after a page has navigated, won't
work as SpecialPowers tasks.

Since those sorts of tasks are not really resilient in the face of Fission,
they should really be written to work differently, but this patch mostly just
reverts them to using ContentTask for the time being.

Differential Revision: https://phabricator.services.mozilla.com/D53744

--HG--
extra : moz-landing-system : lando
2019-12-07 18:44:34 +00:00
Kris Maglione
fa3556c3fc Bug 1596918: Part 3b - Run code formatters on files changed by previous patch. r=mccr8,remote-protocol-reviewers,ato
Differential Revision: https://phabricator.services.mozilla.com/D53741

--HG--
extra : moz-landing-system : lando
2019-12-07 18:44:34 +00:00
Kris Maglione
910eab35d2 Bug 1596918: Part 3a - Scripted rewrite of most ContentTask.spawn calls to SpecialPowers.spawn calls. r=mccr8,remote-protocol-reviewers,ato
This is generally pretty straightforward, and rewrites nearly all calls. It
skips the ones that it can detect using frame script globals like
`sendAsyncMessage`, though.

Differential Revision: https://phabricator.services.mozilla.com/D53740

--HG--
extra : moz-landing-system : lando
2019-12-07 19:11:58 +00:00
Daniel Varga
84a601a6d4 Backed out 17 changesets (bug 1596918) for multiple browser-chrome and dev-tools failures. On a CLOSED TREE
Backed out changeset ab87d2c1afae (bug 1596918)
Backed out changeset 775f3b06a687 (bug 1596918)
Backed out changeset 67cc63ef5d7f (bug 1596918)
Backed out changeset 7d290bcd2067 (bug 1596918)
Backed out changeset 048db9f4db7c (bug 1596918)
Backed out changeset 96a79d2ba614 (bug 1596918)
Backed out changeset be770d112dd8 (bug 1596918)
Backed out changeset 302c8ab8391c (bug 1596918)
Backed out changeset 44ef8f20732e (bug 1596918)
Backed out changeset 38c11ebfb8ff (bug 1596918)
Backed out changeset b586fc081374 (bug 1596918)
Backed out changeset 12283166716f (bug 1596918)
Backed out changeset 99b0421015d8 (bug 1596918)
Backed out changeset 97ec49dbbbf3 (bug 1596918)
Backed out changeset ec79478f58f1 (bug 1596918)
Backed out changeset c6d356833bb8 (bug 1596918)
Backed out changeset 5ef6026806c8 (bug 1596918)
2019-12-07 03:12:07 +02:00
Kris Maglione
a89b63b446 Bug 1596918: Follow-up: Fix more rebase bustage.
Differential Revision: https://phabricator.services.mozilla.com/D56266

--HG--
extra : moz-landing-system : lando
2019-12-07 00:22:38 +00:00
Geoff Lankow
63c08abd8f Bug 1602089 - Ignore load event from about:blank when initializing the Add-On Manager r=MattN
Differential Revision: https://phabricator.services.mozilla.com/D56257

--HG--
extra : moz-landing-system : lando
2019-12-06 23:56:46 +00:00
Kris Maglione
6d5729ccb5 Bug 1596918: Part 4d - Fix callers which try to return non-clonable values. r=mccr8
Differential Revision: https://phabricator.services.mozilla.com/D53745

--HG--
extra : moz-landing-system : lando
2019-12-06 22:15:27 +00:00
Kris Maglione
73e3d8bcf6 Bug 1596918: Part 4c - Fix callers which depend on document lifecycle changes. r=mccr8
ContentTask tasks have a different lifetime than SpecialPowers tasks, with the
former being tied to the lifetime of a message manager and the latter tied to
the lifetime of a window global. That means that existing ContentTask callers
which expect to be able to register load listeners before the creation of a
window global, or which expect to persist after a page has navigated, won't
work as SpecialPowers tasks.

Since those sorts of tasks are not really resilient in the face of Fission,
they should really be written to work differently, but this patch mostly just
reverts them to using ContentTask for the time being.

Differential Revision: https://phabricator.services.mozilla.com/D53744

--HG--
extra : moz-landing-system : lando
2019-12-06 22:15:25 +00:00
Kris Maglione
b5238224ba Bug 1596918: Part 3b - Run code formatters on files changed by previous patch. r=mccr8,remote-protocol-reviewers,ato
Differential Revision: https://phabricator.services.mozilla.com/D53741

--HG--
extra : moz-landing-system : lando
2019-12-06 22:14:22 +00:00
Kris Maglione
20da940e14 Bug 1596918: Part 3a - Scripted rewrite of most ContentTask.spawn calls to SpecialPowers.spawn calls. r=mccr8,remote-protocol-reviewers,ato
This is generally pretty straightforward, and rewrites nearly all calls. It
skips the ones that it can detect using frame script globals like
`sendAsyncMessage`, though.

Differential Revision: https://phabricator.services.mozilla.com/D53740

--HG--
extra : moz-landing-system : lando
2019-12-06 22:14:14 +00:00
Robert Strong
7f3d92be85 Bug 1601827 - Fix the UpdatePing 'ready' telemetry ping for staged updates. r=mhowell
Changes UpdatePing.jsm so it observes 'update-staged' notifications and adds a test so this shouldn't break in the future

Differential Revision: https://phabricator.services.mozilla.com/D56155

--HG--
rename : toolkit/mozapps/update/tests/browser/browser_telemetry_updatePing_ready.js => toolkit/mozapps/update/tests/browser/browser_telemetry_updatePing_downloaded_ready.js
rename : toolkit/mozapps/update/tests/browser/browser_telemetry_updatePing_ready.js => toolkit/mozapps/update/tests/browser/browser_telemetry_updatePing_staged_ready.js
extra : moz-landing-system : lando
2019-12-06 16:13:30 +00:00
Agi Sferro
4b6b64b2b4 Bug 1599580 - Allow null aBrowser in AddonManager.installAddonFromWebpage. r=mixedpuppy,snorp
GeckoView will install extensions from the native UI so it doesn't have a
browser object to pass into this method.

Differential Revision: https://phabricator.services.mozilla.com/D55726

--HG--
extra : moz-landing-system : lando
2019-12-05 23:16:02 +00:00
shindli
d0e6e72266 Backed out 7 changesets (bug 1599580) for causing linting opt failure CLOSED TREE
Backed out changeset 64fd40663930 (bug 1599580)
Backed out changeset 7dc53077d58a (bug 1599580)
Backed out changeset 51a8fbed80c3 (bug 1599580)
Backed out changeset e7fbe7147d19 (bug 1599580)
Backed out changeset 176337e5ba59 (bug 1599580)
Backed out changeset 24d4083da050 (bug 1599580)
Backed out changeset 312f626fb657 (bug 1599580)
2019-12-06 01:10:47 +02:00
Agi Sferro
4f9802d34f Bug 1599580 - Allow null aBrowser in AddonManager.installAddonFromWebpage. r=mixedpuppy,snorp
GeckoView will install extensions from the native UI so it doesn't have a
browser object to pass into this method.

Differential Revision: https://phabricator.services.mozilla.com/D55726

--HG--
extra : moz-landing-system : lando
2019-12-05 16:35:42 +00:00
Mark Striemer
749ba15c52 Bug 1337627 - Remove remote discovery pane from about:addons r=robwu,fluent-reviewers
Differential Revision: https://phabricator.services.mozilla.com/D55719

--HG--
rename : browser/base/content/test/general/browser_bug581242.js => browser/base/content/test/webextensions/browser_aboutaddons_blanktab.js
extra : moz-landing-system : lando
2019-12-05 18:32:17 +00:00
Shane Caraveo
d27218da77 Bug 1572140 remove compat override handling from AOM r=aswan
Differential Revision: https://phabricator.services.mozilla.com/D55762

--HG--
extra : moz-landing-system : lando
2019-12-04 17:51:27 +00:00
Geoff Brown
9e59579c39 Bug 1601076 - Fix some broken BUG_COMPONENTS in moz.build files; r=jmaher
Some of these were obvious typos. Others probably reflect once-correct components
that have been combined, split, or otherwise obsoleted; for these I've tried to
use the component associated with the bugs for recent changes to the affected files.

Differential Revision: https://phabricator.services.mozilla.com/D55756

--HG--
extra : moz-landing-system : lando
2019-12-04 13:55:45 +00:00
Dimi Lee
5d0cac68ea Bug 1584931 - P3. Hide the flashblock checkbox when fission is enabled. r=Gijs
Depends on D55091

Differential Revision: https://phabricator.services.mozilla.com/D55092

--HG--
extra : moz-landing-system : lando
2019-12-04 09:00:36 +00:00
Mark Striemer
91e6212ae7 Bug 1598928 - Relax opacity test on about:addons cards r=rpl
Differential Revision: https://phabricator.services.mozilla.com/D55466

--HG--
extra : moz-landing-system : lando
2019-12-02 17:36:00 +00:00
Rob Lemley
144d734abc Bug 1464689 - Use gen_built_in_addons.py for Thunderbird builds. r=kmag
Thunderbird has a couple of system extensions that are able to make use of
this now, specifically the wetransfer extension.

Differential Revision: https://phabricator.services.mozilla.com/D39990

--HG--
extra : moz-landing-system : lando
2019-11-11 18:10:14 +00:00
Drew Willcoxon
70d3caf1ee Bug 1599360 - Use AppUpdater.jsm in aboutDialog-appUpdater.js when preffed on, and use the current implementation when preffed off r=rstrong
Summary of changes:

* Copy aboutDialog-appUpdater.js to a new aboutDialog-appUpdater-legacy.js file
* Update aboutDialog-appUpdater.js: Rewrite it to use the new AppUpdater.jsm when the `browser.aboutDialogNewAppUpdater` pref is true, and load aboutDialog-appUpdater-legacy.js otherwise
* In toolkit/mozapps/update/tests/browser, add new browser.legacy.ini and browser.legacy.bits.ini files that do not set `browser.aboutDialogNewAppUpdater` to true, so that the old implementation is still tested
* Update browser.ini and browser.bits.ini files to set `browser.aboutDialogNewAppUpdater` to true so that the new implementation is tested

If all this is OK, I'll file another bug for removing the legacy stuff once we merge.

Differential Revision: https://phabricator.services.mozilla.com/D54837

--HG--
rename : browser/base/content/aboutDialog-appUpdater.js => browser/base/content/aboutDialog-appUpdater-legacy.js
rename : toolkit/mozapps/update/tests/browser/browser.bits.ini => toolkit/mozapps/update/tests/browser/browser.legacy.bits.ini
rename : toolkit/mozapps/update/tests/browser/browser.ini => toolkit/mozapps/update/tests/browser/browser.legacy.ini
extra : moz-landing-system : lando
2019-12-03 06:01:32 +00:00
Mark Striemer
732638b973 Bug 1600179 - Force reorder animation to run when testing it r=rpl
On ubuntu1804 prefers-reduced-motion is reduce so the animations are
being skipped even when we're trying to test them. Force them to run
when running the tests.

Differential Revision: https://phabricator.services.mozilla.com/D55331

--HG--
extra : moz-landing-system : lando
2019-11-29 22:22:11 +00:00
Mark Striemer
d2062ef28c Bug 1593649 - Part 2: Always set focus as if using the keyboard r=rpl
Differential Revision: https://phabricator.services.mozilla.com/D55194

--HG--
extra : moz-landing-system : lando
2019-11-29 19:37:04 +00:00
Mark Striemer
415e677b84 Bug 1593649 - Part 1: Fix a11y issues with about:addons header/recommendations r=robwu,rpl,fluent-reviewers,flod
Add a proper title and popup attributes to page-options button.
Make recommended card's add-on names headings.
Give the HTML pane a title so it reads better in screen readers.
Always include a label for the search box.
Clarify the label on the extension enable checkbox.

Differential Revision: https://phabricator.services.mozilla.com/D54874

--HG--
extra : moz-landing-system : lando
2019-11-29 19:36:57 +00:00
Shane Caraveo
43733c66c4 Bug 1578513 make disable/enable during safe mode update extension settings r=robwu
Differential Revision: https://phabricator.services.mozilla.com/D44595

--HG--
extra : moz-landing-system : lando
2019-11-27 20:00:08 +00:00
Shane Caraveo
c00b26e5f3 Bug 1578513 make uninstall during safemode remove extension settings r=robwu
Differential Revision: https://phabricator.services.mozilla.com/D44594

--HG--
extra : moz-landing-system : lando
2019-11-27 22:19:15 +00:00
Andrew Halberstadt
83a9540265 Bug 1593402 - Skip toolkit/mozapps/extensions/test/browser/browser_about_debugging_link.js on Linux64/debug with fission, r=egao
Differential Revision: https://phabricator.services.mozilla.com/D54820

--HG--
extra : moz-landing-system : lando
2019-11-27 13:57:20 +00:00
Mark Striemer
c9b7200658 Bug 1598901 - Fix extension toggle in RTL r=rpl,Itiel
Differential Revision: https://phabricator.services.mozilla.com/D54590

--HG--
extra : moz-landing-system : lando
2019-11-26 19:29:14 +00:00
Sylvestre Ledru
e94f355d96 Bug 1596911 - Add missing license headers on the new managed extensions r=Gijs,MattN
Depends on D53267

Differential Revision: https://phabricator.services.mozilla.com/D53269

--HG--
extra : moz-landing-system : lando
2019-11-26 15:00:00 +00:00
JaStenson
0ef4489322 Bug 1594082 - Remove test code related to XUL about:addons, r=mstriemer
Differential Revision: https://phabricator.services.mozilla.com/D54585

--HG--
extra : moz-landing-system : lando
2019-11-25 20:36:47 +00:00
Agi Sferro
71a0f9df8f Bug 1598378 - Disable mozAddonManager for GeckoView. r=mixedpuppy
Differential Revision: https://phabricator.services.mozilla.com/D54317

--HG--
extra : moz-landing-system : lando
2019-11-25 16:40:25 +00:00
Taylor
9fa2878a4c Bug 1371687 - Remove UpdateShortcutAppUserModelIds from helper.exe. r=mhowell
Differential Revision: https://phabricator.services.mozilla.com/D54390

--HG--
extra : moz-landing-system : lando
2019-11-25 16:05:13 +00:00
Mark Striemer
1ad0709e9d Bug 1593358 - Wait to move extension cards while list is active r=rpl,Gijs
Differential Revision: https://phabricator.services.mozilla.com/D51700

--HG--
extra : source : 43490702945ff3266f57277a1abafd6ca1d700b5
2019-11-22 15:35:23 +00:00
Mark Striemer
8ff9fdc060 Bug 1570792 - Toggle extension enabled state on the card r=rpl,fluent-reviewers,Gijs
Differential Revision: https://phabricator.services.mozilla.com/D51699

--HG--
extra : source : cf2f28971e644574fec25c268044bde692511c08
2019-11-21 22:04:55 +00:00
Mark Striemer
ecb3c6477f Bug 1575905 - Part 2: Surface enable/disable button on theme cards r=rpl,Gijs
Differential Revision: https://phabricator.services.mozilla.com/D51698

--HG--
extra : source : 67f284b0e4c2a65ddcc20d66e2833f9c491c198b
2019-11-21 22:04:53 +00:00
Mark Striemer
40c408d00f Bug 1575905 - Part 1: Show theme previews for built-in themes, hide theme icons r=rpl,Gijs
Differential Revision: https://phabricator.services.mozilla.com/D51697

--HG--
extra : source : 13d8e61774f1802f661fcb603a2053e158acf2d1
2019-11-21 22:04:50 +00:00
Cosmin Sabou
09e4d6e7d0 Backed out 4 changesets (bug 1570792, bug 1593358, bug 1575905) for causing bug 1593402 to near permafail. CLOSED TREE
Backed out changeset 43490702945f (bug 1593358)
Backed out changeset cf2f28971e64 (bug 1570792)
Backed out changeset 67f284b0e4c2 (bug 1575905)
Backed out changeset 13d8e61774f1 (bug 1575905)

--HG--
extra : amend_source : 9541e3e941e7b62095715bb4859991bd48ea0489
extra : histedit_source : 51dd3724c2e8b806b2c9e531aa14119ff38f37e4
2019-11-23 01:57:15 +02:00
Mark Striemer
3ad260c258 Bug 1593358 - Wait to move extension cards while list is active r=rpl,Gijs
Differential Revision: https://phabricator.services.mozilla.com/D51700

--HG--
extra : moz-landing-system : lando
2019-11-22 15:35:23 +00:00
Mark Striemer
fc6c868f4a Bug 1570792 - Toggle extension enabled state on the card r=rpl,fluent-reviewers,Gijs
Differential Revision: https://phabricator.services.mozilla.com/D51699

--HG--
extra : moz-landing-system : lando
2019-11-21 22:04:55 +00:00
Mark Striemer
a3fe9e281e Bug 1575905 - Part 2: Surface enable/disable button on theme cards r=rpl,Gijs
Differential Revision: https://phabricator.services.mozilla.com/D51698

--HG--
extra : moz-landing-system : lando
2019-11-21 22:04:53 +00:00
Mark Striemer
96337440a3 Bug 1575905 - Part 1: Show theme previews for built-in themes, hide theme icons r=rpl,Gijs
Differential Revision: https://phabricator.services.mozilla.com/D51697

--HG--
extra : moz-landing-system : lando
2019-11-21 22:04:50 +00:00
Robert Strong
3f677af9e6 Bug 1596778 - fallback to the normal update path when a replace request fails. r=mhowell
Differential Revision: https://phabricator.services.mozilla.com/D54086

--HG--
extra : moz-landing-system : lando
2019-11-21 21:15:53 +00:00
Brian Grinstead
d497e5fd20 Bug 1596591 - Rename inc.xul files to inc.xhtml r=Gijs
Differential Revision: https://phabricator.services.mozilla.com/D53843

--HG--
rename : browser/base/content/browser-allTabsMenu.inc.xul => browser/base/content/browser-allTabsMenu.inc.xhtml
rename : browser/base/content/macWindow.inc.xul => browser/base/content/macWindow.inc.xhtml
rename : browser/components/controlcenter/content/identityPanel.inc.xul => browser/components/controlcenter/content/identityPanel.inc.xhtml
rename : browser/components/controlcenter/content/protectionsPanel.inc.xul => browser/components/controlcenter/content/protectionsPanel.inc.xhtml
rename : browser/components/customizableui/content/customizeMode.inc.xul => browser/components/customizableui/content/customizeMode.inc.xhtml
rename : browser/components/customizableui/content/panelUI.inc.xul => browser/components/customizableui/content/panelUI.inc.xhtml
rename : browser/components/downloads/content/downloadsCommands.inc.xul => browser/components/downloads/content/downloadsCommands.inc.xhtml
rename : browser/components/downloads/content/downloadsContextMenu.inc.xul => browser/components/downloads/content/downloadsContextMenu.inc.xhtml
rename : browser/components/downloads/content/downloadsPanel.inc.xul => browser/components/downloads/content/downloadsPanel.inc.xhtml
rename : browser/components/downloads/content/downloadsStrings.inc.xul => browser/components/downloads/content/downloadsStrings.inc.xhtml
rename : browser/components/places/content/bookmarksHistoryTooltip.inc.xul => browser/components/places/content/bookmarksHistoryTooltip.inc.xhtml
rename : browser/components/places/content/editBookmarkPanel.inc.xul => browser/components/places/content/editBookmarkPanel.inc.xhtml
rename : browser/components/places/content/placesCommands.inc.xul => browser/components/places/content/placesCommands.inc.xhtml
rename : browser/components/places/content/placesContextMenu.inc.xul => browser/components/places/content/placesContextMenu.inc.xhtml
extra : moz-landing-system : lando
2019-11-21 09:46:01 +00:00
Gijs Kruitbosch
afb3b66abd Bug 1594521 - enable remote settings blocklist on nightly, r=mconley
Differential Revision: https://phabricator.services.mozilla.com/D52939

--HG--
extra : moz-landing-system : lando
2019-11-19 00:23:55 +00:00
Luca Greco
4c45a675b0 Bug 1597265 - Explicitly mark abuse report panel buttons as type button. r=mstriemer
Any button inside a form is by spec considered a submit button
(as mentioned here https://www.w3.org/TR/html401/interact/forms.html#h-17.5)
and so, when Enter was pressed while the form was focused, a click event
was being triggered on the first button found inside the form
(and the first button was the hidden close icon button).

Explicitly marking all the report panel buttons as type="button" prevent
the report panel from being wrongly cancelled in these scenarios.

Differential Revision: https://phabricator.services.mozilla.com/D53633

--HG--
extra : moz-landing-system : lando
2019-11-18 21:56:56 +00:00
Mark Striemer
1b8d2c5a0b Bug 1594014 - Remove unused options UI helpers from extensions.xul r=rpl
Differential Revision: https://phabricator.services.mozilla.com/D53104

--HG--
extra : moz-landing-system : lando
2019-11-18 20:03:14 +00:00
Moritz Birghan
975648e245 Bug 1571656 - Use Assert.jsm numeric comparison functions in tests r=mixedpuppy,MattN
Differential Revision: https://phabricator.services.mozilla.com/D40614

--HG--
extra : moz-landing-system : lando
2019-11-18 13:03:58 +00:00
Gurzau Raul
8f0c9950ab Backed out changeset f1c44a2eb604 (bug 1594014) for eslint failure at /content/extensions.js on a CLOSED TREE. 2019-11-17 11:11:49 +02:00
Mark Striemer
f6456df200 Bug 1594014 - Remove unused options UI helpers from extensions.xul r=rpl
Differential Revision: https://phabricator.services.mozilla.com/D53104

--HG--
extra : moz-landing-system : lando
2019-11-16 17:21:08 +00:00
Brian Grinstead
eda9707050 Bug 1596329 - Migrate .xul files in preferences to .xhtml;r=Gijs
Differential Revision: https://phabricator.services.mozilla.com/D53125

--HG--
rename : browser/components/preferences/applicationManager.xul => browser/components/preferences/applicationManager.xhtml
rename : browser/components/preferences/blocklists.xul => browser/components/preferences/blocklists.xhtml
rename : browser/components/preferences/browserLanguages.xul => browser/components/preferences/browserLanguages.xhtml
rename : browser/components/preferences/clearSiteData.xul => browser/components/preferences/clearSiteData.xhtml
rename : browser/components/preferences/colors.xul => browser/components/preferences/colors.xhtml
rename : browser/components/preferences/connection.xul => browser/components/preferences/connection.xhtml
rename : browser/components/preferences/containers.xul => browser/components/preferences/containers.xhtml
rename : browser/components/preferences/fonts.xul => browser/components/preferences/fonts.xhtml
rename : browser/components/preferences/in-content/containers.inc.xul => browser/components/preferences/in-content/containers.inc.xhtml
rename : browser/components/preferences/in-content/fxaPairDevice.xul => browser/components/preferences/in-content/fxaPairDevice.xhtml
rename : browser/components/preferences/in-content/home.inc.xul => browser/components/preferences/in-content/home.inc.xhtml
rename : browser/components/preferences/in-content/main.inc.xul => browser/components/preferences/in-content/main.inc.xhtml
rename : browser/components/preferences/in-content/preferences.xul => browser/components/preferences/in-content/preferences.xhtml
rename : browser/components/preferences/in-content/privacy.inc.xul => browser/components/preferences/in-content/privacy.inc.xhtml
rename : browser/components/preferences/in-content/search.inc.xul => browser/components/preferences/in-content/search.inc.xhtml
rename : browser/components/preferences/in-content/searchResults.inc.xul => browser/components/preferences/in-content/searchResults.inc.xhtml
rename : browser/components/preferences/in-content/sync.inc.xul => browser/components/preferences/in-content/sync.inc.xhtml
rename : browser/components/preferences/in-content/syncChooseWhatToSync.xul => browser/components/preferences/in-content/syncChooseWhatToSync.xhtml
rename : browser/components/preferences/languages.xul => browser/components/preferences/languages.xhtml
rename : browser/components/preferences/permissions.xul => browser/components/preferences/permissions.xhtml
rename : browser/components/preferences/sanitize.xul => browser/components/preferences/sanitize.xhtml
rename : browser/components/preferences/selectBookmark.xul => browser/components/preferences/selectBookmark.xhtml
rename : browser/components/preferences/siteDataRemoveSelected.xul => browser/components/preferences/siteDataRemoveSelected.xhtml
rename : browser/components/preferences/siteDataSettings.xul => browser/components/preferences/siteDataSettings.xhtml
rename : browser/components/preferences/sitePermissions.xul => browser/components/preferences/sitePermissions.xhtml
rename : browser/components/preferences/translation.xul => browser/components/preferences/translation.xhtml
rename : toolkit/mozapps/preferences/changemp.xul => toolkit/mozapps/preferences/changemp.xhtml
rename : toolkit/mozapps/preferences/removemp.xul => toolkit/mozapps/preferences/removemp.xhtml
rename : toolkit/mozapps/update/content/history.xul => toolkit/mozapps/update/content/history.xhtml
extra : moz-landing-system : lando
2019-11-15 17:36:11 +00:00
Narcis Beleuzu
d65afd5e9a Backed out changeset dea221c2e93e (bug 1594521) for xpcshell failures on test_isDebuggable.js . CLOSED TREE 2019-11-16 00:04:29 +02:00
Gijs Kruitbosch
bb1a101c48 Bug 1594521 - enable remote settings blocklist on nightly, r=mconley
Differential Revision: https://phabricator.services.mozilla.com/D52939

--HG--
extra : moz-landing-system : lando
2019-11-15 16:54:23 +00:00
Luca Greco
d5d18672c8 Bug 1595091 - Remove alwaysOnTop from the window features used by the abuse report dialog. r=mstriemer
Differential Revision: https://phabricator.services.mozilla.com/D52896

--HG--
extra : moz-landing-system : lando
2019-11-14 19:06:03 +00:00
Luca Greco
2f3bd6f27d Bug 1596137 - mozAddonManager.reportAbuse should reject on unsupported addon types. r=mixedpuppy
mozAddonManager.reportAbuse should reject explicitly when called for an unsupported addon type,
to make AMO able to detect when if triggering the integrated report failed instead of being cancelled by the user,
and fallback on the report form integrated on the AMO website.

Differential Revision: https://phabricator.services.mozilla.com/D52882

--HG--
extra : moz-landing-system : lando
2019-11-14 16:42:30 +00:00
Bryce Seager van Dyk
c0ca5cebe0 Bug 1596220 - Document GMPProvider's findUpdates and checkForUpdates functions. r=spohl
Add documentation to help differentiate the use cases for these two functions.

Differential Revision: https://phabricator.services.mozilla.com/D52911

--HG--
extra : moz-landing-system : lando
2019-11-14 17:36:22 +00:00
Kirk Steuber
99edf9e247 Bug 1595470 - Prevent EnsureCorrectPermissions from making faulty assumptions about childBuffer r=rstrong
Differential Revision: https://phabricator.services.mozilla.com/D52604

--HG--
extra : moz-landing-system : lando
2019-11-13 02:00:18 +00:00
Dorel Luca
15a1992411 Backed out changeset 6e3d285d14ee (bug 1594521) for toolkit/mozapps/extensions/test/browser/browser_CTP_plugins.js. CLOSED TREE 2019-11-14 19:06:36 +02:00
Gijs Kruitbosch
73cf8851d5 Bug 1594521 - enable remote settings blocklist on nightly, r=mconley
Differential Revision: https://phabricator.services.mozilla.com/D52939

--HG--
extra : moz-landing-system : lando
2019-11-14 14:43:17 +00:00
Mark Striemer
50115c87f7 Bug 1591501 - Click category to go back to list in about:addons r=rpl
Differential Revision: https://phabricator.services.mozilla.com/D51317

--HG--
extra : moz-landing-system : lando
2019-11-13 21:20:05 +00:00
Luca Greco
fe059baf92 Bug 1596133 - AbuseReporter.queryAMOAddonDetails should normalize type 'statictheme' into type 'theme'. r=mixedpuppy
The addon details returned from the AMO API endpoint for webextensions static themes is type "statictheme",
but for an installed WebExtension static theme we expect addon.type to be "theme", and so
AbuseReporter.queryAMOAddonDetails should normalize the type received to ensure it matches what
Firefox expects.

This fix is needed to ensure that reporting a "not installed" theme from AMO works as expected
(see https://github.com/mozilla/addons-frontend/issues/8762#issuecomment-553430081).

Differential Revision: https://phabricator.services.mozilla.com/D52853

--HG--
extra : moz-landing-system : lando
2019-11-13 18:02:22 +00:00
Gurzau Raul
c169dfc73c Backed out changeset 97a383ec65b7 (bug 1591501) for failures at browser_discovery.js on a CLOSED TREE. 2019-11-13 21:39:22 +02:00
Mark Striemer
bbfe79b8dd Bug 1591501 - Click category to go back to list in about:addons r=rpl
Differential Revision: https://phabricator.services.mozilla.com/D51317

--HG--
extra : moz-landing-system : lando
2019-11-13 15:54:28 +00:00
Mark Striemer
2f84b4696f Bug 1594196 - Fix badge positioning in about:addons r=Gijs
Differential Revision: https://phabricator.services.mozilla.com/D51924

--HG--
extra : moz-landing-system : lando
2019-11-13 15:31:28 +00:00
Geoff Lankow
fba9fee231 Bug 1593544 - Stop loading plugin provider modules in Thunderbird. r=Gijs
Differential Revision: https://phabricator.services.mozilla.com/D52257

--HG--
extra : moz-landing-system : lando
2019-11-11 10:37:53 +00:00
Emma Malysz
c154961d64 Bug 1592141, rename .xul test files in toolkit/ to .xhtml r=mossop
Differential Revision: https://phabricator.services.mozilla.com/D50884

--HG--
rename : toolkit/components/aboutmemory/tests/remote.xul => toolkit/components/aboutmemory/tests/remote.xhtml
rename : toolkit/components/aboutmemory/tests/test_aboutmemory.xul => toolkit/components/aboutmemory/tests/test_aboutmemory.xhtml
rename : toolkit/components/aboutmemory/tests/test_aboutmemory2.xul => toolkit/components/aboutmemory/tests/test_aboutmemory2.xhtml
rename : toolkit/components/aboutmemory/tests/test_aboutmemory3.xul => toolkit/components/aboutmemory/tests/test_aboutmemory3.xhtml
rename : toolkit/components/aboutmemory/tests/test_aboutmemory4.xul => toolkit/components/aboutmemory/tests/test_aboutmemory4.xhtml
rename : toolkit/components/aboutmemory/tests/test_aboutmemory5.xul => toolkit/components/aboutmemory/tests/test_aboutmemory5.xhtml
rename : toolkit/components/aboutmemory/tests/test_aboutmemory6.xul => toolkit/components/aboutmemory/tests/test_aboutmemory6.xhtml
rename : toolkit/components/aboutmemory/tests/test_aboutmemory7.xul => toolkit/components/aboutmemory/tests/test_aboutmemory7.xhtml
rename : toolkit/components/aboutmemory/tests/test_dumpGCAndCCLogsToFile.xul => toolkit/components/aboutmemory/tests/test_dumpGCAndCCLogsToFile.xhtml
rename : toolkit/components/aboutmemory/tests/test_memoryReporters.xul => toolkit/components/aboutmemory/tests/test_memoryReporters.xhtml
rename : toolkit/components/aboutmemory/tests/test_memoryReporters2.xul => toolkit/components/aboutmemory/tests/test_memoryReporters2.xhtml
rename : toolkit/components/aboutmemory/tests/test_sqliteMultiReporter.xul => toolkit/components/aboutmemory/tests/test_sqliteMultiReporter.xhtml
rename : toolkit/components/ctypes/tests/chrome/test_ctypes.xul => toolkit/components/ctypes/tests/chrome/test_ctypes.xhtml
rename : toolkit/components/osfile/tests/mochi/test_osfile_async.xul => toolkit/components/osfile/tests/mochi/test_osfile_async.xhtml
rename : toolkit/components/osfile/tests/mochi/test_osfile_back.xul => toolkit/components/osfile/tests/mochi/test_osfile_back.xhtml
rename : toolkit/components/osfile/tests/mochi/test_osfile_comms.xul => toolkit/components/osfile/tests/mochi/test_osfile_comms.xhtml
rename : toolkit/components/osfile/tests/mochi/test_osfile_front.xul => toolkit/components/osfile/tests/mochi/test_osfile_front.xhtml
rename : toolkit/components/places/tests/chrome/browser_disableglobalhistory.xul => toolkit/components/places/tests/chrome/browser_disableglobalhistory.xhtml
rename : toolkit/components/places/tests/chrome/test_371798.xul => toolkit/components/places/tests/chrome/test_371798.xhtml
rename : toolkit/components/places/tests/chrome/test_browser_disableglobalhistory.xul => toolkit/components/places/tests/chrome/test_browser_disableglobalhistory.xhtml
rename : toolkit/components/places/tests/chrome/test_favicon_annotations.xul => toolkit/components/places/tests/chrome/test_favicon_annotations.xhtml
rename : toolkit/components/workerloader/tests/test_loading.xul => toolkit/components/workerloader/tests/test_loading.xhtml
rename : toolkit/components/xulstore/tests/chrome/test_persistence.xul => toolkit/components/xulstore/tests/chrome/test_persistence.xhtml
rename : toolkit/components/xulstore/tests/chrome/window_persistence.xul => toolkit/components/xulstore/tests/chrome/window_persistence.xhtml
rename : toolkit/content/tests/chrome/bug263683_window.xul => toolkit/content/tests/chrome/bug263683_window.xhtml
rename : toolkit/content/tests/chrome/bug304188_window.xul => toolkit/content/tests/chrome/bug304188_window.xhtml
rename : toolkit/content/tests/chrome/bug331215_window.xul => toolkit/content/tests/chrome/bug331215_window.xhtml
rename : toolkit/content/tests/chrome/bug360437_window.xul => toolkit/content/tests/chrome/bug360437_window.xhtml
rename : toolkit/content/tests/chrome/bug366992_window.xul => toolkit/content/tests/chrome/bug366992_window.xhtml
rename : toolkit/content/tests/chrome/bug409624_window.xul => toolkit/content/tests/chrome/bug409624_window.xhtml
rename : toolkit/content/tests/chrome/bug429723_window.xul => toolkit/content/tests/chrome/bug429723_window.xhtml
rename : toolkit/content/tests/chrome/bug451540_window.xul => toolkit/content/tests/chrome/bug451540_window.xhtml
rename : toolkit/content/tests/chrome/bug624329_window.xul => toolkit/content/tests/chrome/bug624329_window.xhtml
rename : toolkit/content/tests/chrome/dialog_dialogfocus.xul => toolkit/content/tests/chrome/dialog_dialogfocus.xhtml
rename : toolkit/content/tests/chrome/dialog_dialogfocus2.xul => toolkit/content/tests/chrome/dialog_dialogfocus2.xhtml
rename : toolkit/content/tests/chrome/file_edit_contextmenu.xul => toolkit/content/tests/chrome/file_edit_contextmenu.xhtml
rename : toolkit/content/tests/chrome/findbar_entireword_window.xul => toolkit/content/tests/chrome/findbar_entireword_window.xhtml
rename : toolkit/content/tests/chrome/findbar_events_window.xul => toolkit/content/tests/chrome/findbar_events_window.xhtml
rename : toolkit/content/tests/chrome/findbar_window.xul => toolkit/content/tests/chrome/findbar_window.xhtml
rename : toolkit/content/tests/chrome/frame_popup_anchor.xul => toolkit/content/tests/chrome/frame_popup_anchor.xhtml
rename : toolkit/content/tests/chrome/frame_popupremoving_frame.xul => toolkit/content/tests/chrome/frame_popupremoving_frame.xhtml
rename : toolkit/content/tests/chrome/frame_subframe_origin_subframe1.xul => toolkit/content/tests/chrome/frame_subframe_origin_subframe1.xhtml
rename : toolkit/content/tests/chrome/frame_subframe_origin_subframe2.xul => toolkit/content/tests/chrome/frame_subframe_origin_subframe2.xhtml
rename : toolkit/content/tests/chrome/popup_childframe_node.xul => toolkit/content/tests/chrome/popup_childframe_node.xhtml
rename : toolkit/content/tests/chrome/rtltest/content/dirtest.xul => toolkit/content/tests/chrome/rtltest/content/dirtest.xhtml
rename : toolkit/content/tests/chrome/test_arrowpanel.xul => toolkit/content/tests/chrome/test_arrowpanel.xhtml
rename : toolkit/content/tests/chrome/test_autocomplete2.xul => toolkit/content/tests/chrome/test_autocomplete2.xhtml
rename : toolkit/content/tests/chrome/test_autocomplete3.xul => toolkit/content/tests/chrome/test_autocomplete3.xhtml
rename : toolkit/content/tests/chrome/test_autocomplete4.xul => toolkit/content/tests/chrome/test_autocomplete4.xhtml
rename : toolkit/content/tests/chrome/test_autocomplete5.xul => toolkit/content/tests/chrome/test_autocomplete5.xhtml
rename : toolkit/content/tests/chrome/test_autocomplete_emphasis.xul => toolkit/content/tests/chrome/test_autocomplete_emphasis.xhtml
rename : toolkit/content/tests/chrome/test_autocomplete_mac_caret.xul => toolkit/content/tests/chrome/test_autocomplete_mac_caret.xhtml
rename : toolkit/content/tests/chrome/test_autocomplete_placehold_last_complete.xul => toolkit/content/tests/chrome/test_autocomplete_placehold_last_complete.xhtml
rename : toolkit/content/tests/chrome/test_browser_drop.xul => toolkit/content/tests/chrome/test_browser_drop.xhtml
rename : toolkit/content/tests/chrome/test_bug1048178.xul => toolkit/content/tests/chrome/test_bug1048178.xhtml
rename : toolkit/content/tests/chrome/test_bug263683.xul => toolkit/content/tests/chrome/test_bug263683.xhtml
rename : toolkit/content/tests/chrome/test_bug304188.xul => toolkit/content/tests/chrome/test_bug304188.xhtml
rename : toolkit/content/tests/chrome/test_bug331215.xul => toolkit/content/tests/chrome/test_bug331215.xhtml
rename : toolkit/content/tests/chrome/test_bug360220.xul => toolkit/content/tests/chrome/test_bug360220.xhtml
rename : toolkit/content/tests/chrome/test_bug360437.xul => toolkit/content/tests/chrome/test_bug360437.xhtml
rename : toolkit/content/tests/chrome/test_bug365773.xul => toolkit/content/tests/chrome/test_bug365773.xhtml
rename : toolkit/content/tests/chrome/test_bug366992.xul => toolkit/content/tests/chrome/test_bug366992.xhtml
rename : toolkit/content/tests/chrome/test_bug382990.xul => toolkit/content/tests/chrome/test_bug382990.xhtml
rename : toolkit/content/tests/chrome/test_bug409624.xul => toolkit/content/tests/chrome/test_bug409624.xhtml
rename : toolkit/content/tests/chrome/test_bug418874.xul => toolkit/content/tests/chrome/test_bug418874.xhtml
rename : toolkit/content/tests/chrome/test_bug429723.xul => toolkit/content/tests/chrome/test_bug429723.xhtml
rename : toolkit/content/tests/chrome/test_bug437844.xul => toolkit/content/tests/chrome/test_bug437844.xhtml
rename : toolkit/content/tests/chrome/test_bug451540.xul => toolkit/content/tests/chrome/test_bug451540.xhtml
rename : toolkit/content/tests/chrome/test_bug457632.xul => toolkit/content/tests/chrome/test_bug457632.xhtml
rename : toolkit/content/tests/chrome/test_bug460942.xul => toolkit/content/tests/chrome/test_bug460942.xhtml
rename : toolkit/content/tests/chrome/test_bug471776.xul => toolkit/content/tests/chrome/test_bug471776.xhtml
rename : toolkit/content/tests/chrome/test_bug509732.xul => toolkit/content/tests/chrome/test_bug509732.xhtml
rename : toolkit/content/tests/chrome/test_bug557987.xul => toolkit/content/tests/chrome/test_bug557987.xhtml
rename : toolkit/content/tests/chrome/test_bug562554.xul => toolkit/content/tests/chrome/test_bug562554.xhtml
rename : toolkit/content/tests/chrome/test_bug624329.xul => toolkit/content/tests/chrome/test_bug624329.xhtml
rename : toolkit/content/tests/chrome/test_bug792324.xul => toolkit/content/tests/chrome/test_bug792324.xhtml
rename : toolkit/content/tests/chrome/test_button.xul => toolkit/content/tests/chrome/test_button.xhtml
rename : toolkit/content/tests/chrome/test_chromemargin.xul => toolkit/content/tests/chrome/test_chromemargin.xhtml
rename : toolkit/content/tests/chrome/test_closemenu_attribute.xul => toolkit/content/tests/chrome/test_closemenu_attribute.xhtml
rename : toolkit/content/tests/chrome/test_contextmenu_list.xul => toolkit/content/tests/chrome/test_contextmenu_list.xhtml
rename : toolkit/content/tests/chrome/test_cursorsnap.xul => toolkit/content/tests/chrome/test_cursorsnap.xhtml
rename : toolkit/content/tests/chrome/test_custom_element_base.xul => toolkit/content/tests/chrome/test_custom_element_base.xhtml
rename : toolkit/content/tests/chrome/test_custom_element_delay_connection.xul => toolkit/content/tests/chrome/test_custom_element_delay_connection.xhtml
rename : toolkit/content/tests/chrome/test_deck.xul => toolkit/content/tests/chrome/test_deck.xhtml
rename : toolkit/content/tests/chrome/test_dialogfocus.xul => toolkit/content/tests/chrome/test_dialogfocus.xhtml
rename : toolkit/content/tests/chrome/test_findbar.xul => toolkit/content/tests/chrome/test_findbar.xhtml
rename : toolkit/content/tests/chrome/test_findbar_entireword.xul => toolkit/content/tests/chrome/test_findbar_entireword.xhtml
rename : toolkit/content/tests/chrome/test_findbar_events.xul => toolkit/content/tests/chrome/test_findbar_events.xhtml
rename : toolkit/content/tests/chrome/test_frames.xul => toolkit/content/tests/chrome/test_frames.xhtml
rename : toolkit/content/tests/chrome/test_hiddenitems.xul => toolkit/content/tests/chrome/test_hiddenitems.xhtml
rename : toolkit/content/tests/chrome/test_hiddenpaging.xul => toolkit/content/tests/chrome/test_hiddenpaging.xhtml
rename : toolkit/content/tests/chrome/test_keys.xul => toolkit/content/tests/chrome/test_keys.xhtml
rename : toolkit/content/tests/chrome/test_labelcontrol.xul => toolkit/content/tests/chrome/test_labelcontrol.xhtml
rename : toolkit/content/tests/chrome/test_maximized_persist.xul => toolkit/content/tests/chrome/test_maximized_persist.xhtml
rename : toolkit/content/tests/chrome/test_menu.xul => toolkit/content/tests/chrome/test_menu.xhtml
rename : toolkit/content/tests/chrome/test_menu_hide.xul => toolkit/content/tests/chrome/test_menu_hide.xhtml
rename : toolkit/content/tests/chrome/test_menu_withcapture.xul => toolkit/content/tests/chrome/test_menu_withcapture.xhtml
rename : toolkit/content/tests/chrome/test_menuchecks.xul => toolkit/content/tests/chrome/test_menuchecks.xhtml
rename : toolkit/content/tests/chrome/test_menuitem_blink.xul => toolkit/content/tests/chrome/test_menuitem_blink.xhtml
rename : toolkit/content/tests/chrome/test_menuitem_commands.xul => toolkit/content/tests/chrome/test_menuitem_commands.xhtml
rename : toolkit/content/tests/chrome/test_menulist.xul => toolkit/content/tests/chrome/test_menulist.xhtml
rename : toolkit/content/tests/chrome/test_menulist_keynav.xul => toolkit/content/tests/chrome/test_menulist_keynav.xhtml
rename : toolkit/content/tests/chrome/test_menulist_null_value.xul => toolkit/content/tests/chrome/test_menulist_null_value.xhtml
rename : toolkit/content/tests/chrome/test_menulist_paging.xul => toolkit/content/tests/chrome/test_menulist_paging.xhtml
rename : toolkit/content/tests/chrome/test_menulist_position.xul => toolkit/content/tests/chrome/test_menulist_position.xhtml
rename : toolkit/content/tests/chrome/test_mousescroll.xul => toolkit/content/tests/chrome/test_mousescroll.xhtml
rename : toolkit/content/tests/chrome/test_mozinputbox_dictionary.xul => toolkit/content/tests/chrome/test_mozinputbox_dictionary.xhtml
rename : toolkit/content/tests/chrome/test_notificationbox.xul => toolkit/content/tests/chrome/test_notificationbox.xhtml
rename : toolkit/content/tests/chrome/test_panel.xul => toolkit/content/tests/chrome/test_panel.xhtml
rename : toolkit/content/tests/chrome/test_panel_anchoradjust.xul => toolkit/content/tests/chrome/test_panel_anchoradjust.xhtml
rename : toolkit/content/tests/chrome/test_panel_focus.xul => toolkit/content/tests/chrome/test_panel_focus.xhtml
rename : toolkit/content/tests/chrome/test_panelfrommenu.xul => toolkit/content/tests/chrome/test_panelfrommenu.xhtml
rename : toolkit/content/tests/chrome/test_popup_anchor.xul => toolkit/content/tests/chrome/test_popup_anchor.xhtml
rename : toolkit/content/tests/chrome/test_popup_anchoratrect.xul => toolkit/content/tests/chrome/test_popup_anchoratrect.xhtml
rename : toolkit/content/tests/chrome/test_popup_attribute.xul => toolkit/content/tests/chrome/test_popup_attribute.xhtml
rename : toolkit/content/tests/chrome/test_popup_button.xul => toolkit/content/tests/chrome/test_popup_button.xhtml
rename : toolkit/content/tests/chrome/test_popup_coords.xul => toolkit/content/tests/chrome/test_popup_coords.xhtml
rename : toolkit/content/tests/chrome/test_popup_keys.xul => toolkit/content/tests/chrome/test_popup_keys.xhtml
rename : toolkit/content/tests/chrome/test_popup_moveToAnchor.xul => toolkit/content/tests/chrome/test_popup_moveToAnchor.xhtml
rename : toolkit/content/tests/chrome/test_popup_preventdefault.xul => toolkit/content/tests/chrome/test_popup_preventdefault.xhtml
rename : toolkit/content/tests/chrome/test_popup_preventdefault_chrome.xul => toolkit/content/tests/chrome/test_popup_preventdefault_chrome.xhtml
rename : toolkit/content/tests/chrome/test_popup_recreate.xul => toolkit/content/tests/chrome/test_popup_recreate.xhtml
rename : toolkit/content/tests/chrome/test_popup_scaled.xul => toolkit/content/tests/chrome/test_popup_scaled.xhtml
rename : toolkit/content/tests/chrome/test_popup_tree.xul => toolkit/content/tests/chrome/test_popup_tree.xhtml
rename : toolkit/content/tests/chrome/test_popuphidden.xul => toolkit/content/tests/chrome/test_popuphidden.xhtml
rename : toolkit/content/tests/chrome/test_popupincontent.xul => toolkit/content/tests/chrome/test_popupincontent.xhtml
rename : toolkit/content/tests/chrome/test_popupremoving.xul => toolkit/content/tests/chrome/test_popupremoving.xhtml
rename : toolkit/content/tests/chrome/test_popupremoving_frame.xul => toolkit/content/tests/chrome/test_popupremoving_frame.xhtml
rename : toolkit/content/tests/chrome/test_position.xul => toolkit/content/tests/chrome/test_position.xhtml
rename : toolkit/content/tests/chrome/test_preferences.xul => toolkit/content/tests/chrome/test_preferences.xhtml
rename : toolkit/content/tests/chrome/test_preferences_beforeaccept.xul => toolkit/content/tests/chrome/test_preferences_beforeaccept.xhtml
rename : toolkit/content/tests/chrome/test_preferences_onsyncfrompreference.xul => toolkit/content/tests/chrome/test_preferences_onsyncfrompreference.xhtml
rename : toolkit/content/tests/chrome/test_props.xul => toolkit/content/tests/chrome/test_props.xhtml
rename : toolkit/content/tests/chrome/test_radio.xul => toolkit/content/tests/chrome/test_radio.xhtml
rename : toolkit/content/tests/chrome/test_richlistbox.xul => toolkit/content/tests/chrome/test_richlistbox.xhtml
rename : toolkit/content/tests/chrome/test_righttoleft.xul => toolkit/content/tests/chrome/test_righttoleft.xhtml
rename : toolkit/content/tests/chrome/test_screenPersistence.xul => toolkit/content/tests/chrome/test_screenPersistence.xhtml
rename : toolkit/content/tests/chrome/test_scrollbar.xul => toolkit/content/tests/chrome/test_scrollbar.xhtml
rename : toolkit/content/tests/chrome/test_showcaret.xul => toolkit/content/tests/chrome/test_showcaret.xhtml
rename : toolkit/content/tests/chrome/test_subframe_origin.xul => toolkit/content/tests/chrome/test_subframe_origin.xhtml
rename : toolkit/content/tests/chrome/test_tabbox.xul => toolkit/content/tests/chrome/test_tabbox.xhtml
rename : toolkit/content/tests/chrome/test_tabindex.xul => toolkit/content/tests/chrome/test_tabindex.xhtml
rename : toolkit/content/tests/chrome/test_textbox_search.xul => toolkit/content/tests/chrome/test_textbox_search.xhtml
rename : toolkit/content/tests/chrome/test_titlebar.xul => toolkit/content/tests/chrome/test_titlebar.xhtml
rename : toolkit/content/tests/chrome/test_tooltip.xul => toolkit/content/tests/chrome/test_tooltip.xhtml
rename : toolkit/content/tests/chrome/test_tooltip_noautohide.xul => toolkit/content/tests/chrome/test_tooltip_noautohide.xhtml
rename : toolkit/content/tests/chrome/test_tree.xul => toolkit/content/tests/chrome/test_tree.xhtml
rename : toolkit/content/tests/chrome/test_tree_hier.xul => toolkit/content/tests/chrome/test_tree_hier.xhtml
rename : toolkit/content/tests/chrome/test_tree_single.xul => toolkit/content/tests/chrome/test_tree_single.xhtml
rename : toolkit/content/tests/chrome/test_tree_view.xul => toolkit/content/tests/chrome/test_tree_view.xhtml
rename : toolkit/content/tests/chrome/test_window_intrinsic_size.xul => toolkit/content/tests/chrome/test_window_intrinsic_size.xhtml
rename : toolkit/content/tests/chrome/window_browser_drop.xul => toolkit/content/tests/chrome/window_browser_drop.xhtml
rename : toolkit/content/tests/chrome/window_chromemargin.xul => toolkit/content/tests/chrome/window_chromemargin.xhtml
rename : toolkit/content/tests/chrome/window_cursorsnap_dialog.xul => toolkit/content/tests/chrome/window_cursorsnap_dialog.xhtml
rename : toolkit/content/tests/chrome/window_cursorsnap_wizard.xul => toolkit/content/tests/chrome/window_cursorsnap_wizard.xhtml
rename : toolkit/content/tests/chrome/window_intrinsic_size.xul => toolkit/content/tests/chrome/window_intrinsic_size.xhtml
rename : toolkit/content/tests/chrome/window_keys.xul => toolkit/content/tests/chrome/window_keys.xhtml
rename : toolkit/content/tests/chrome/window_largemenu.xul => toolkit/content/tests/chrome/window_largemenu.xhtml
rename : toolkit/content/tests/chrome/window_maximized_persist.xul => toolkit/content/tests/chrome/window_maximized_persist.xhtml
rename : toolkit/content/tests/chrome/window_panel.xul => toolkit/content/tests/chrome/window_panel.xhtml
rename : toolkit/content/tests/chrome/window_panel_anchoradjust.xul => toolkit/content/tests/chrome/window_panel_anchoradjust.xhtml
rename : toolkit/content/tests/chrome/window_panel_focus.xul => toolkit/content/tests/chrome/window_panel_focus.xhtml
rename : toolkit/content/tests/chrome/window_popup_anchor.xul => toolkit/content/tests/chrome/window_popup_anchor.xhtml
rename : toolkit/content/tests/chrome/window_popup_anchoratrect.xul => toolkit/content/tests/chrome/window_popup_anchoratrect.xhtml
rename : toolkit/content/tests/chrome/window_popup_attribute.xul => toolkit/content/tests/chrome/window_popup_attribute.xhtml
rename : toolkit/content/tests/chrome/window_popup_button.xul => toolkit/content/tests/chrome/window_popup_button.xhtml
rename : toolkit/content/tests/chrome/window_popup_preventdefault_chrome.xul => toolkit/content/tests/chrome/window_popup_preventdefault_chrome.xhtml
rename : toolkit/content/tests/chrome/window_preferences.xul => toolkit/content/tests/chrome/window_preferences.xhtml
rename : toolkit/content/tests/chrome/window_preferences2.xul => toolkit/content/tests/chrome/window_preferences2.xhtml
rename : toolkit/content/tests/chrome/window_preferences3.xul => toolkit/content/tests/chrome/window_preferences3.xhtml
rename : toolkit/content/tests/chrome/window_preferences_beforeaccept.xul => toolkit/content/tests/chrome/window_preferences_beforeaccept.xhtml
rename : toolkit/content/tests/chrome/window_preferences_commandretarget.xul => toolkit/content/tests/chrome/window_preferences_commandretarget.xhtml
rename : toolkit/content/tests/chrome/window_preferences_onsyncfrompreference.xul => toolkit/content/tests/chrome/window_preferences_onsyncfrompreference.xhtml
rename : toolkit/content/tests/chrome/window_screenPosSize.xul => toolkit/content/tests/chrome/window_screenPosSize.xhtml
rename : toolkit/content/tests/chrome/window_showcaret.xul => toolkit/content/tests/chrome/window_showcaret.xhtml
rename : toolkit/content/tests/chrome/window_subframe_origin.xul => toolkit/content/tests/chrome/window_subframe_origin.xhtml
rename : toolkit/content/tests/chrome/window_titlebar.xul => toolkit/content/tests/chrome/window_titlebar.xhtml
rename : toolkit/content/tests/chrome/window_tooltip.xul => toolkit/content/tests/chrome/window_tooltip.xhtml
rename : toolkit/content/tests/widgets/test_contextmenu_menugroup.xul => toolkit/content/tests/widgets/test_contextmenu_menugroup.xhtml
rename : toolkit/content/tests/widgets/test_contextmenu_nested.xul => toolkit/content/tests/widgets/test_contextmenu_nested.xhtml
rename : toolkit/content/tests/widgets/test_editor_currentURI.xul => toolkit/content/tests/widgets/test_editor_currentURI.xhtml
rename : toolkit/content/tests/widgets/test_label_checkbox.xul => toolkit/content/tests/widgets/test_label_checkbox.xhtml
rename : toolkit/content/tests/widgets/test_menubar.xul => toolkit/content/tests/widgets/test_menubar.xhtml
rename : toolkit/content/tests/widgets/test_popupanchor.xul => toolkit/content/tests/widgets/test_popupanchor.xhtml
rename : toolkit/content/tests/widgets/test_popupreflows.xul => toolkit/content/tests/widgets/test_popupreflows.xhtml
rename : toolkit/content/tests/widgets/test_tree_column_reorder.xul => toolkit/content/tests/widgets/test_tree_column_reorder.xhtml
rename : toolkit/content/tests/widgets/window_label_checkbox.xul => toolkit/content/tests/widgets/window_label_checkbox.xhtml
rename : toolkit/content/tests/widgets/window_menubar.xul => toolkit/content/tests/widgets/window_menubar.xhtml
rename : toolkit/modules/tests/chrome/test_bug544442_checkCert.xul => toolkit/modules/tests/chrome/test_bug544442_checkCert.xhtml
rename : toolkit/mozapps/extensions/test/browser/addon_prefs.xul => toolkit/mozapps/extensions/test/browser/addon_prefs.xhtml
rename : toolkit/mozapps/extensions/test/browser/more_options.xul => toolkit/mozapps/extensions/test/browser/more_options.xhtml
rename : toolkit/mozapps/extensions/test/browser/options.xul => toolkit/mozapps/extensions/test/browser/options.xhtml
rename : toolkit/mozapps/extensions/test/browser/webapi_checkchromeframe.xul => toolkit/mozapps/extensions/test/browser/webapi_checkchromeframe.xhtml
rename : toolkit/profile/test/test_create_profile.xul => toolkit/profile/test/test_create_profile.xhtml
extra : moz-landing-system : lando
2019-11-11 19:14:34 +00:00
Mark Striemer
71b8038684 Bug 1594417 - Ensure panel-list is hidden when added to document r=Gijs
When the stylesheet needs to load for panel-list it is missing the rule to
hide the panel while it's closed. Move this style into the shadow DOM so
it's always present even if the other styles haven't loaded yet.

This was especially noticeable when the "Disable Cache" option was enabled
with the devtools open.

Differential Revision: https://phabricator.services.mozilla.com/D52063

--HG--
extra : moz-landing-system : lando
2019-11-07 23:17:44 +00:00
Kashav Madan
449e7a00a5 Bug 1588193 - Fix broken tests, r=mccr8
Most of these tests relied on assumptions that were broken by the updated
content event helpers (timing, being in a ContentTask, etc).

Depends on D51441

Differential Revision: https://phabricator.services.mozilla.com/D51442

--HG--
extra : moz-landing-system : lando
2019-11-07 21:33:10 +00:00
Coroiu Cristina
27a753cc4a Backed out changeset 96048cce4b80 (bug 1571656) for xpcshell failures at toolkit/components/places/tests/unifiedcomplete/test_autofill_origins.js on a CLOSED TREE 2019-11-06 22:59:45 +02:00
Moritz Birghan
70c7a633fb Bug 1571656 - Use Assert.jsm numeric comparison functions in tests r=mixedpuppy,MattN
Differential Revision: https://phabricator.services.mozilla.com/D40614

--HG--
extra : moz-landing-system : lando
2019-11-06 18:07:54 +00:00
Andreas Wagner
bc482b0cd5 Bug 1593386 - Update add-on manager abuse report reasons copy r=fluent-reviewers,rpl,flod
Differential Revision: https://phabricator.services.mozilla.com/D51991

--HG--
extra : moz-landing-system : lando
2019-11-06 18:18:57 +00:00
Dorel Luca
97387d0d91 Backed out 4 changesets (bug 1588193) for Broswer-chrome failures on browser/base/content/test/favicons/browser_favicon_change_not_in_document.js. CLOSED TREE
Backed out changeset df4c4004abc5 (bug 1588193)
Backed out changeset 1beab20978b2 (bug 1588193)
Backed out changeset 1ada54e7ba7c (bug 1588193)
Backed out changeset a0d9537d24c6 (bug 1588193)
2019-11-06 21:30:29 +02:00
Kashav Madan
a7396dd033 Bug 1588193 - Fix broken tests, r=mccr8
Most of these tests relied on assumptions that were broken by the new content
event utils (timing, being in a ContentTask, etc).

Differential Revision: https://phabricator.services.mozilla.com/D51442

--HG--
extra : moz-landing-system : lando
2019-11-06 15:35:19 +00:00
Brindusan Cristian
3eaf139d31 Backed out 4 changesets (bug 1588193) for bc failures at browser_mixedcontent_aboutblocked.js. CLOSED TREE
Backed out changeset 0bbb1f92bb47 (bug 1588193)
Backed out changeset 074bb8a6fd68 (bug 1588193)
Backed out changeset b10ec4058ec3 (bug 1588193)
Backed out changeset c90bab12f4cb (bug 1588193)
2019-11-06 02:39:32 +02:00
Kashav Madan
eeeeb803c4 Bug 1588193 - Fix broken tests, r=mccr8
Most of these tests relied on assumptions that were broken by the new content
event utils (timing, being in a ContentTask, etc).

Differential Revision: https://phabricator.services.mozilla.com/D51442

--HG--
extra : moz-landing-system : lando
2019-11-05 21:52:43 +00:00
Andrew McCreight
634c8dd169 Bug 1591174 - Fix some references to nsIDOMWindow. r=bzbarsky
nsIDOMWindow is now an empty interface. There are two references to
nsIDOMWindow::openDialog in comments which needed to be updated. There
were also a few forward declarations of nsIDOMWindow that were unused.

Differential Revision: https://phabricator.services.mozilla.com/D51738

--HG--
extra : moz-landing-system : lando
2019-11-05 04:52:53 +00:00
Itiel
ca6ec82633 Bug 1575472 - Fix extension shortcuts error messages for RTL r=mstriemer
Differential Revision: https://phabricator.services.mozilla.com/D51523

--HG--
extra : moz-landing-system : lando
2019-11-04 18:22:07 +00:00
Gijs Kruitbosch
ea58459bc1 Bug 1545123 - move reading pluginreg and scanning for plugins to a background thread, r=handyman,mconley
Finally, let's move the actual IO away from the main thread.

This means there are now 3 ways of looking for plugins:
1. looking for changes from ReloadPlugins. This runs the PluginFinder runnable
   on the main thread.
2. loading plugins from LoadPlugins. This will:
   a) first check prefs and report the flash plugin based on that information,
      if the prefs indicate it exists (using the callback provided by
      nsPluginHost).
   b) then hopefully dispatch to a background thread, where it will read
      pluginreg.dat, scan the appropriate folders on disk, and see if
      anything changed. Once done, it sets mFinishedFinding to true and
      re-dispatches itself to the main thread.
   c) then on the main thread, it reports any changes to nsPluginHost.
3. if dispatching in 2(b) fails, we will run steps (b) and (c) on the main
   thread.

Note: if ReloadPlugins is called, we intiially do (1), but if we find
changes, we clear out the set of known plugins and then run LoadPlugins
again (meaning we go through 2 (or 3 if 2(b) fails)). This is how
reloading plugins worked prior to my changes and I've attempted not to
change it.

In order for this to work, there are some other changes in this commit:

- the sandbox prefs are being read "early" and cached for flash vs
  "everything else". We can't access prefs on non-main threads without
  using StaticPrefs, which doesn't seem worth it here.
- some of the plugin tag classes are moved to threadsafe refcounting.
  This is a bit unfortunate, but because they're instantiated on a non-
  mainthread, and then later used on the main thread, despite the
  fact that the architecture means nothing tries to touch them from
  more than one thread at once, without threadsafe refcounting we hit
  asserts in debug mode if we add references to them back on the main thread.
- we add shutdown blocking for pluginfinding. We don't really want to
  be halfway through finding plugins and then trying to shut them down,
  or re-instantiating plugins after they've been unloaded.
- we keep a reference to the "pending" pluginfinder instance while
  doing lookups away from the main thread (ie (2)), to avoid re-entrancy or
  trying to write to pluginreg while we're reading it somewhere else,
  etc. If there's an attempt to do more plugin finding while this is
  ongoing, we flip mDoReloadOnceFindingFinished and do a reload once
  our initial lookups are complete.

Depends on D48331

Differential Revision: https://phabricator.services.mozilla.com/D48332

--HG--
extra : moz-landing-system : lando
2019-11-02 22:35:04 +00:00
Ciure Andrei
fdfd0105e6 Backed out 5 changesets (bug 1545123) for causing nsPluginTags.cpp build bustages CLOSED TREE
Backed out changeset 91313cceae8c (bug 1545123)
Backed out changeset d91549e68229 (bug 1545123)
Backed out changeset 269d89e09fbb (bug 1545123)
Backed out changeset a139ee115519 (bug 1545123)
Backed out changeset eb454f238f45 (bug 1545123)
2019-11-02 14:00:38 +02:00
Gijs Kruitbosch
dc78268f2e Bug 1545123 - move reading pluginreg and scanning for plugins to a background thread, r=handyman,mconley
Finally, let's move the actual IO away from the main thread.

This means there are now 3 ways of looking for plugins:
1. looking for changes from ReloadPlugins. This runs the PluginFinder runnable
   on the main thread.
2. loading plugins from LoadPlugins. This will:
   a) first check prefs and report the flash plugin based on that information,
      if the prefs indicate it exists (using the callback provided by
      nsPluginHost).
   b) then hopefully dispatch to a background thread, where it will read
      pluginreg.dat, scan the appropriate folders on disk, and see if
      anything changed. Once done, it sets mFinishedFinding to true and
      re-dispatches itself to the main thread.
   c) then on the main thread, it reports any changes to nsPluginHost.
3. if dispatching in 2(b) fails, we will run steps (b) and (c) on the main
   thread.

Note: if ReloadPlugins is called, we intiially do (1), but if we find
changes, we clear out the set of known plugins and then run LoadPlugins
again (meaning we go through 2 (or 3 if 2(b) fails)). This is how
reloading plugins worked prior to my changes and I've attempted not to
change it.

In order for this to work, there are some other changes in this commit:

- the sandbox prefs are being read "early" and cached for flash vs
  "everything else". We can't access prefs on non-main threads without
  using StaticPrefs, which doesn't seem worth it here.
- some of the plugin tag classes are moved to threadsafe refcounting.
  This is a bit unfortunate, but because they're instantiated on a non-
  mainthread, and then later used on the main thread, despite the
  fact that the architecture means nothing tries to touch them from
  more than one thread at once, without threadsafe refcounting we hit
  asserts in debug mode if we add references to them back on the main thread.
- we add shutdown blocking for pluginfinding. We don't really want to
  be halfway through finding plugins and then trying to shut them down,
  or re-instantiating plugins after they've been unloaded.
- we keep a reference to the "pending" pluginfinder instance while
  doing lookups away from the main thread (ie (2)), to avoid re-entrancy or
  trying to write to pluginreg while we're reading it somewhere else,
  etc. If there's an attempt to do more plugin finding while this is
  ongoing, we flip mDoReloadOnceFindingFinished and do a reload once
  our initial lookups are complete.

Depends on D48331

Differential Revision: https://phabricator.services.mozilla.com/D48332

--HG--
extra : moz-landing-system : lando
2019-10-30 15:53:15 +00:00
Mark Striemer
966031d6f8 Bug 1525175 - Part 3: Move system message bars into HTML views r=rpl,fluent-reviewers,flod
Differential Revision: https://phabricator.services.mozilla.com/D47804

--HG--
extra : moz-landing-system : lando
2019-11-01 16:01:38 +00:00
Mark Striemer
2fa34a861c Bug 1525175 - Part 2: Position panel-list elements based on triggering event r=rpl
Differential Revision: https://phabricator.services.mozilla.com/D46228

--HG--
extra : moz-landing-system : lando
2019-11-01 16:01:31 +00:00
Mark Striemer
d9f5739109 Bug 1525175 - Part 1: Convert about:addons header to HTML r=rpl,fluent-reviewers,flod
Differential Revision: https://phabricator.services.mozilla.com/D43610

--HG--
rename : toolkit/mozapps/extensions/test/browser/browser_bug567127.js => toolkit/mozapps/extensions/test/browser/browser_page_options_install_addon.js
rename : toolkit/mozapps/extensions/test/browser/browser_bug570760.js => toolkit/mozapps/extensions/test/browser/browser_search_bar_focus.js
extra : moz-landing-system : lando
2019-11-01 16:26:32 +00:00
Gijs Kruitbosch
02792a426f Bug 1592600 - fix prefs link in about:addons to ignore hashes/fragments as well as right clicks, r=mstriemer
Differential Revision: https://phabricator.services.mozilla.com/D51286

--HG--
extra : moz-landing-system : lando
2019-11-01 17:46:09 +00:00
Neil Deakin
01f6409a03 Bug 1590752, remove now unneeded content.js framescript, r=mconley
Differential Revision: https://phabricator.services.mozilla.com/D50585

--HG--
extra : moz-landing-system : lando
2019-10-31 10:11:52 +00:00
Andrew McCreight
07dc2afa5b Bug 1586393, part 2 - Fix BrowserTestUtils.addContentEventListener() with Fission. r=mconley
The current implementation of addContentEventListener() is centered
around the message manager. When any message manager goes away, it
cleans up everything, which does not work when Fission is enabled and
we do a cross-process navigation.

My new implementation instead uses window actors. Message manager
shared state is used to store the set of expected event listeners. New
windows, after the function is called for the first time in a test,
will get listeners added properly. Of windows that exist at the first
time the function is called in a test, only windows associated with
the BC of the browser that is passed in will get added, which is a
disadvantage relative to the current setup. That could probably be
fixed.

We auto remove at the end of the test, not when any message manager is
torn down, so there's never a need to disable auto removal.

Differential Revision: https://phabricator.services.mozilla.com/D48777

--HG--
extra : moz-landing-system : lando
2019-10-29 21:29:02 +00:00
Sean Feng
74eaf3ce20 Bug 1592083 - Convert certList to raw array for nsITransportSecurityInfo r=keeler,Ehsan,kershaw
This patch converts the certList attribute of nsITransportSecurityInfo
from nsIX509CertList to Array<nsIx509Cert>

Differential Revision: https://phabricator.services.mozilla.com/D48745

--HG--
extra : moz-landing-system : lando
2019-10-29 17:20:07 +00:00
Tomislav Jovanovic
c9669e07c3 Bug 1591736 - Fix AddonManagerWebAPI::IsAPIEnabled in out-of-process iframes r=mixedpuppy
Differential Revision: https://phabricator.services.mozilla.com/D50713

--HG--
extra : moz-landing-system : lando
2019-10-28 21:51:30 +00:00
Luca Greco
e55ba5638c Bug 1586973 - Fix typo in Telemetry assertEvents filter parameter used by browser_interaction_telemetry.js. r=mixedpuppy
Differential Revision: https://phabricator.services.mozilla.com/D50841

--HG--
extra : moz-landing-system : lando
2019-10-28 19:58:59 +00:00
Paul Zuehlcke
c462a0fcba Bug 1422056 - Updated tests to account for permission manager OA stripping. r=johannh
Differential Revision: https://phabricator.services.mozilla.com/D48665

--HG--
extra : moz-landing-system : lando
2019-10-24 14:19:57 +00:00
Aaron Klotz
4aa92ef8e6 Bug 1485057: Fix makensis.mk to allow helper.exe to build incrementally; r=mshal
Differential Revision: https://phabricator.services.mozilla.com/D16919

--HG--
extra : moz-landing-system : lando
2019-10-24 23:49:56 +00:00
Cosmin Sabou
c734bcf655 Bug 1590136 - Disable browser_block_fullscreen_prompt.js on mac debug for frequent failures. r=egao
Differential Revision: https://phabricator.services.mozilla.com/D50385

--HG--
extra : moz-landing-system : lando
2019-10-24 01:23:25 +00:00
Shane Caraveo
ef6d2edce8 Bug 1581852 handle incognito checkbox for consecutive installs r=rpl
Differential Revision: https://phabricator.services.mozilla.com/D49669

--HG--
extra : moz-landing-system : lando
2019-10-23 21:38:56 +00:00
Tomislav Jovanovic
6224294d28 Bug 1589885 - Fix two xpinstall/browser_badargs* tests with fission r=mixedpuppy
Differential Revision: https://phabricator.services.mozilla.com/D49831

--HG--
extra : moz-landing-system : lando
2019-10-21 23:00:45 +00:00
shindli
e951c7608b Backed out changeset bfee70929e1a (bug 1589885) for causing linting failure in /builds/worker/checkouts/gecko/toolkit/mozapps/extensions/test/xpinstall/browser_localfile2.js CLOSED TREE 2019-10-22 00:48:25 +03:00
Tomislav Jovanovic
0713623dcf Bug 1589885 - Fix two xpinstall/browser_badargs* tests with fission r=mixedpuppy
Differential Revision: https://phabricator.services.mozilla.com/D49831

--HG--
extra : moz-landing-system : lando
2019-10-21 18:10:16 +00:00
Mihai Alexandru Michis
44e67f1a7f Backed out changeset 11e5baee978e (bug 1580315) for issues related to certList. CLOSED TREE 2019-10-21 23:50:35 +03:00