Граф коммитов

70671 Коммитов

Автор SHA1 Сообщение Дата
Nika Layzell 2f8013d4a9 Bug 1589517 - Part 2: Add initialBrowsingContextGroupId to sameProcessAsFrameLoader callers, r=mconley,smacleod
This attribute, when combined with the remoteType attribute, should subsume all
callers of sameProcessAsFrameLoader, and also support selecting the same process
as an out-of-process iframe.

Differential Revision: https://phabricator.services.mozilla.com/D85651
2020-08-06 17:01:08 +00:00
Harry Twyford c090486c48 Bug 1655485 - Exit search mode if update2 pref is flipped. r=adw
Differential Revision: https://phabricator.services.mozilla.com/D85904
2020-08-06 14:37:19 +00:00
Thomas Wisniewski 5b26ec0846 Bug 1656863 - ensure that about:compat and shims both get a chance to process messages; r=denschub,webcompat-reviewers
Differential Revision: https://phabricator.services.mozilla.com/D86096
2020-08-06 14:52:16 +00:00
Dão Gottwald 9c2586877c Bug 1653933 - Send attribution requests for default top sites. r=mikedeboer
Differential Revision: https://phabricator.services.mozilla.com/D85841
2020-08-06 15:22:23 +00:00
Doug Thayer a1b6d9f742 Bug 1654063 - Collect time between OS and browser start r=mconley
See bug for more details. In short, we don't know whether Firefox is typically
opened early in a user's session after starting the OS or not. This could be
helpful information for, say, deciding if we want to build a "warm up" service.

Differential Revision: https://phabricator.services.mozilla.com/D84238
2020-08-06 15:21:03 +00:00
Adam Roach [:abr] fc1ec50ce9 Bug 1656355: Move histogram counting to CreditCards r=zbraniecki
Differential Revision: https://phabricator.services.mozilla.com/D86129
2020-08-06 13:11:21 +00:00
Dale Harvey ff9dc1c764 Bug 1650883 - Remove hardcoded aliases, replace with webextension keywords r=Standard8,thecount
Differential Revision: https://phabricator.services.mozilla.com/D85345
2020-08-06 12:10:53 +00:00
Dale Harvey e27206c34b Bug 1650881 - Support multiple aliases in webextensions r=Standard8,mixedpuppy
Differential Revision: https://phabricator.services.mozilla.com/D84921
2020-08-06 12:10:30 +00:00
Marco Bonardo f3fa511bd6 Bug 1657211 - Search history is not saved when one-off buttons are picked in the Address Bar. r=adw
Differential Revision: https://phabricator.services.mozilla.com/D86004
2020-08-06 12:51:30 +00:00
Luca Greco 335c638616 Bug 1570478 - Prevent browser_ext_devtools_network.js from failing intermittently due to late RDP requests. r=Honza
A late getEventTimings RDP request is being cancelled while we are exiting the test case and we have already closed the devtools toolbox.

The related network request is very likely unrelated to the scenario being tested (I suspect it may be an HTTP request triggered by some
privileged code and being automatically added to the webconsole panel, it is not unlikely that we are not explicitly checking if the http
requests logged in the webconsole are actually related to the extension that the devtools toolbox is targeting).

In the meantime, the attached patch is adding to the PromiseTestUtils's "global allow list" the rejections for any late RDP request
that may still be pending while the test is exiting.

Differential Revision: https://phabricator.services.mozilla.com/D86000
2020-08-05 15:38:26 +00:00
Cosmin Sabou 5839aca91c Backed out changeset 7b46f9754641 (bug 1587653) for bc failures browser_protections_lockwise.js. 2020-08-06 07:59:52 +03:00
Matthew Noorenberghe f158fda60e Bug 1587653 - Include breached logins in about:protections without a Monitor account and if PP is logged in. r=ewright
Also separate the Lockwise/Monitor data collection to map to the cards

Differential Revision: https://phabricator.services.mozilla.com/D85642
2020-08-06 01:17:28 +00:00
Punam Dahiya b3f73b88e1 Bug 1656631 - Multistage about:welcome - Make static sites in import screen as default experience r=emcminn
Differential Revision: https://phabricator.services.mozilla.com/D86040
2020-08-05 19:15:53 +00:00
Butkovits Atila bb41ad63da Backed out changeset 6faa35a6346f (bug 1655485) browser_searchModeIndicator.js. CLOSED TREE 2020-08-06 00:27:11 +03:00
Harry Twyford 52146366d5 Bug 1655485 - Exit search mode if update2 pref is flipped. r=adw
Differential Revision: https://phabricator.services.mozilla.com/D85904
2020-08-05 18:10:49 +00:00
Harry Twyford 649526b7fe Bug 1647893 - Enter search mode with default engine on Accel+K. r=adw
Differential Revision: https://phabricator.services.mozilla.com/D85914
2020-08-05 19:17:54 +00:00
Robert Helmer 76b9df0d37 Bug 1646203 - add support for default hidden studies for Pioneer r=sfoster
Differential Revision: https://phabricator.services.mozilla.com/D84858
2020-08-05 20:00:20 +00:00
Butkovits Atila a24ad1c55b Backed out changeset 6d39aab86966 (bug 1633710) for failure at test_disabled_hosts.js. CLOSED TREE 2020-08-05 22:19:30 +03:00
Drew Willcoxon 2d1682945a Bug 1655902 - Fix intermittent failure in browser/components/search/test/browser/browser_oneOffContextMenu_setDefault.js. r=harry
The test intermittently fails because sometimes `tooltiptext` is not set when
the engine has an alias. For engines with aliases, we set l10n attributes on
their button elements instead of setting `tooltiptext` directly.

At first I thought that the l10n machinery is setting `tooltiptext` asyncly so
that it's sometimes not set when the test checks for it. So I added a
`waitForCondition` in [this try push](https://treeherder.mozilla.org/#/jobs?repo=try&revision=049b44c1bb97e1e8bc11dc464a57ca4b85781246&selectedTaskRun=GXE1b3XAQeaPI7ExPDwQXg.0).
But there was still one failure out of 11 runs. This time the `waitForCondition`
timed out. So there seems to be something more going on. (I also added a check
for the l10n attributes before the `waitForCondition` call, and that check
passed.)

This patch just has the check for the l10n attributes without the `tooltiptext`
check when the engine has an alias. I don't think it's worth spending more
cycles on this.

Differential Revision: https://phabricator.services.mozilla.com/D85958
2020-08-05 17:37:48 +00:00
Drew Willcoxon 28aa9a4f9f Bug 1657291 - Replace UrlbarPrefsObserver with an ordered list of weak observers internal to UrlbarPrefs. r=harry
Differential Revision: https://phabricator.services.mozilla.com/D85971
2020-08-05 17:40:02 +00:00
Sebastian Streich a7595921ed Bug 1633710 - Move display-(spec/prepath/host) to nsIPrincipal r=geckoview-reviewers,snorp
Differential Revision: https://phabricator.services.mozilla.com/D82913
2020-08-05 16:52:12 +00:00
ssengupta 8c53cb9efb Bug 1619953 - P10 - Test `browser_privatebrowsing_blobUrl.js` modified to pass on win32 r=mccr8
Instead of creating a new (non-private) window, the first existing window is used. Mime type added during blob creation. Other minor adjustments made.

Differential Revision: https://phabricator.services.mozilla.com/D85139
2020-08-05 17:05:36 +00:00
ssengupta f0b105c90e Bug 1619953 - P9 - Test `browser_ContentSearch.js` disabled for linux64debug when fission not enabled r=baku
This is done because the test always suffers from shutdown leaks after the changes in Bug 1619953, which make the stream acquired during the test asynchronous.

Differential Revision: https://phabricator.services.mozilla.com/D81861
2020-08-05 17:06:09 +00:00
ssengupta 6198ecf772 Bug 1619953 - P8 - Test `browser_blob-channelname.js` converted to xpcshell-test and updated to work with asynchronous input streams r=baku,necko-reviewers
Differential Revision: https://phabricator.services.mozilla.com/D81783
2020-08-05 17:06:11 +00:00
emcminn be831956a5 Bug 1649301 - Privacy page, with optimized media files r=pdahiya
Differential Revision: https://phabricator.services.mozilla.com/D83541
2020-08-05 16:19:49 +00:00
Erica Wright 70a8a87c2d Bug 1650468 - Protections dashboard accepts entrypoint param r=prathiksha
Differential Revision: https://phabricator.services.mozilla.com/D82240
2020-08-05 16:25:57 +00:00
Harry Twyford 8a1aa7048d Bug 1656005 - Clear input and invalidate pageproxystate if search mode is entered with a valid pageproxystate. r=adw
Differential Revision: https://phabricator.services.mozilla.com/D85892
2020-08-05 15:29:35 +00:00
Gijs Kruitbosch 2783349ab6 Bug 1645619 - stop using the default URL bar placeholder string after customize mode by using fluent all the time, r=Standard8,fluent-reviewers,flod
The original issue this patch addresses is what happens when exiting customize
mode: the reinsertion of the urlbar (customize mode wraps it in a container)
causes fluent to re-run as there's a DOM mutation, which causes the default
placeholder to be re-translated. This caused issues because we were using
.properties to translate the string that included the engine name, and
fluent for the "default" placeholder string.

This patch fixes the issue by always using fluent, and using a hardcoded
'unknown' placeholder to deal with the case where there is no known engine.

Differential Revision: https://phabricator.services.mozilla.com/D85769
2020-08-05 13:33:17 +00:00
Chris H-C 5a005b7b24 Bug 1656680 - Allow aboutGlean.ftl to be unreferenced r=Gijs
But only on not-nightly or android builds.

Differential Revision: https://phabricator.services.mozilla.com/D85926
2020-08-04 21:21:26 +00:00
Tom Schuster 4711a353c1 Bug 1547595 - Work around brokeness in GTK with CRLF copying. r=stransky,jhorak
This makes us put the copied string as-is into the clipboard, exclusively for the type:
text/plain;charset=utf-8

When pasting strings into Firefox, `\r` might still be converted to `\n`. So disable
part of the test in browser_removeUnsafeProtocolsFromURLBarPaste.js.

Differential Revision: https://phabricator.services.mozilla.com/D82224
2020-08-05 09:26:03 +00:00
Drew Willcoxon 591e526c82 Bug 1657140 - Don't show one-offs under Search Tips when update 2 is enabled. r=harry
Differential Revision: https://phabricator.services.mozilla.com/D85942
2020-08-05 06:08:21 +00:00
Mike Conley 22de1f0d2a Bug 1655078 - Make the 'Stop Sharing' button in the WebRTC indicator stop all screen sharing streams. r=pbz
Differential Revision: https://phabricator.services.mozilla.com/D85414
2020-08-05 03:38:19 +00:00
Mike Conley 3143e581af Bug 1656274 - Add a probe to record when users cause the WebRTC sharing indicator to open. r=pbz,data-review=chutten
Differential Revision: https://phabricator.services.mozilla.com/D85422
2020-08-04 22:37:39 +00:00
Gijs Kruitbosch 88eef896a5 Bug 333811 - send referrer info for favicons and obey the referrer policy when doing so, r=mossop
Differential Revision: https://phabricator.services.mozilla.com/D85798
2020-08-04 22:19:52 +00:00
Mike Hommey b489f22c61 Bug 1652374 - Replace --enable-gold with --enable-linker=gold in in-tree mozconfigs. r=dmajor
This allows to use --enable-linker=lld without a conflict (because
--enable-linker=gold overrides that, contrary to --enable-gold, who
creates a conflict via imply_option).

Differential Revision: https://phabricator.services.mozilla.com/D85804
2020-08-04 02:25:49 +00:00
Bogdan Tara c517528c86 Backed out changeset 33eb26623d7e (bug 1655078) for browser_stop_sharing_button.js failures CLOSED TREE 2020-08-05 01:00:42 +03:00
Zibi Braniecki cf14df96e7 Bug 1656355 - Add a histogram indicating how many times each stored card has been filled. r=abr
Differential Revision: https://phabricator.services.mozilla.com/D85794
2020-08-04 21:33:30 +00:00
Zibi Braniecki 36e7f4821b Bug 1656344 - Add a telemetry scalar on number of credit card forms sections detected/submitted in a session. r=abr
Differential Revision: https://phabricator.services.mozilla.com/D85471
2020-08-04 21:33:30 +00:00
Zibi Braniecki 83f3629c3b Bug 1653672 - Record when a user changes a card type after the card type is prepopulated. r=abr
Differential Revision: https://phabricator.services.mozilla.com/D85207
2020-08-04 21:33:07 +00:00
Zibi Braniecki b441e686f0 Bug 1352330 - Credit Card Telemetry for number of fields detected/autofilled/modified. r=abr
Differential Revision: https://phabricator.services.mozilla.com/D85206
2020-08-04 21:32:37 +00:00
Zibi Braniecki cbea910374 Bug 990203 - Add profile count telemetry for Credit Card A/B testing. r=abr
Differential Revision: https://phabricator.services.mozilla.com/D85095
2020-08-04 21:32:22 +00:00
Neil Deakin 9d7e84034a Bug 1656102, remove unneeded message manager workaround from WebRTCChild.jsm, r=jib
Differential Revision: https://phabricator.services.mozilla.com/D85348
2020-07-31 20:20:25 +00:00
Mike Conley ae15a943ed Bug 1655078 - Make the 'Stop Sharing' button in the WebRTC indicator stop all screen sharing streams. r=pbz
Differential Revision: https://phabricator.services.mozilla.com/D85414
2020-08-04 20:50:19 +00:00
Jim Mathies 34e21b4154 Bug 1656575 - Enable Credit Card Autofill in Firefox 81 for rollout. r=zbraniecki
Differential Revision: https://phabricator.services.mozilla.com/D85880
2020-08-04 20:26:54 +00:00
Jared Wein 8588d86c96 Bug 1649250 - Display the experimental features in sorted alphabetical ordering. r=mstriemer,preferences-reviewers
Differential Revision: https://phabricator.services.mozilla.com/D81649
2020-08-04 20:17:06 +00:00
Tom Prince 0fe74d5a31 Bug 1653171: Run windows L10n repacks on linux; r=Callek
Differential Revision: https://phabricator.services.mozilla.com/D85894
2020-08-04 18:47:55 +00:00
Anny Gakhokidze 2d1151529c Bug 1654922 - Part 1: Remove DocumentChannel pref usage from tests and document navigation code, r=mattwoodrow
Differential Revision: https://phabricator.services.mozilla.com/D85483
2020-08-01 16:36:12 +00:00
Jonathan Kew 7e5e4c7638 Bug 1653354 - Make the WebExtensions API tabs.saveAsPDF work via the Cocoa printing code on macOS. r=jwatt,extension-reviewers,zombie
Differential Revision: https://phabricator.services.mozilla.com/D85891
2020-08-04 16:58:20 +00:00
Sebastian Streich bf58055b03 Bug 1633710 - Move uri.spec calls to nsIPrincipal r=necko-reviewers,geckoview-reviewers,preferences-reviewers,ckerschb,ntim,snorp,valentin
Differential Revision: https://phabricator.services.mozilla.com/D82911
2020-08-04 11:10:41 +00:00
Luca Greco f5fc6a6274 Bug 1654842 - webNavigation.getAllFrames/getFrame should resolve to null when called on discarded tabs. r=mixedpuppy
Differential Revision: https://phabricator.services.mozilla.com/D85622
2020-08-03 22:01:52 +00:00
Ingrid Buh 04b146ee84 Bug 1639826 - Fix hover effects on link texts in the protection panel. r=prathiksha,nhnt11
Differential Revision: https://phabricator.services.mozilla.com/D85755
2020-08-04 10:29:38 +00:00
Adam Roach [:abr] 24bf86bc78 Bug 1654388: Part 1: Track doorhanger interaction r=zbraniecki
Differential Revision: https://phabricator.services.mozilla.com/D85633
2020-08-03 23:30:49 +00:00
Dave Townsend 978d7798fe Bug 1647443: When downloading app updates instruct the add-ons manager to download langpack updates. r=mhowell
At the start of patch download call the add-ons manager to start the langpack
update process. Defer signalling that staging is complete (or download is
complete in the event that we aren't staging) until the language packs are
staged or enough time has passed that we can assume that something has gone
wrong with the language pack update.

Differential Revision: https://phabricator.services.mozilla.com/D81607
2020-08-03 21:16:22 +00:00
Michael Kaply 0bb3e30ab3 Bug 1655857 - Add ability to cleanup policies. r=emalysz
Differential Revision: https://phabricator.services.mozilla.com/D85210
2020-07-30 18:45:56 +00:00
Itiel 5c490f26a5 Bug 1326404 - Force URL in hiding status panel to be LTR. r=dao
Differential Revision: https://phabricator.services.mozilla.com/D85688
2020-08-03 15:37:16 +00:00
Jed Davis 32848c3a4f Bug 1651869 - Fix the browser_startup_mainthreadio allow lists for the non-sandboxed case on Linux. r=Gijs
Differential Revision: https://phabricator.services.mozilla.com/D84607
2020-08-03 15:08:18 +00:00
Mihai Alexandru Michis 46a5bbf9c1 Bug 1651277 - Disable browser_basic_endtoend.js on linux asan. r=jmaher
Differential Revision: https://phabricator.services.mozilla.com/D85669
2020-08-03 14:36:17 +00:00
James Teh 4d72cfea5c Bug 1549932: browser_PanelMultiView_keyboard.js: Use the correct event when waiting for a browser to load. r=Gijs
Also, handle the case where readyState is "complete" but the URL is wrong.

Differential Revision: https://phabricator.services.mozilla.com/D85709
2020-08-03 13:19:17 +00:00
Marco Bonardo 20a4a34ffd Bug 1653436 - Some urlbar providers should check whether the query was canceled in isActive. r=adw
Differential Revision: https://phabricator.services.mozilla.com/D85579
2020-08-02 11:59:42 +00:00
Mihai Alexandru Michis bc6cf9dde8 Bug 1652383 - Disable manifest typo fix. a=fix 2020-08-02 01:44:57 +03:00
Andreea Pavel 1533da5c0a Bug 1652383 - disable browser_bug559991.js on linux64 debug and win webrender r=jmaher
Differential Revision: https://phabricator.services.mozilla.com/D85658
2020-08-01 11:28:29 +00:00
Mark Striemer cad50e18a2 Bug 1649202 - Part 1: Include a print preview in modal print dialog r=emalysz
Differential Revision: https://phabricator.services.mozilla.com/D84838
2020-08-01 15:14:37 +00:00
Mark Striemer 56fbbc35a0 Bug 1648868 - Part 2: Move modal print UI into a tab modal r=Gijs
This should be migrated to TabDialogBox (bug 1650795) when it's ready in bug 1653317.

Differential Revision: https://phabricator.services.mozilla.com/D84244
2020-08-01 15:13:51 +00:00
Mike Hommey 78233b678f Bug 1654994 - Stop setting up makecab for the build. r=firefox-build-system-reviewers,rstewart
Now that it is not actually used anywhere during the build.

Differential Revision: https://phabricator.services.mozilla.com/D85253
2020-07-31 10:01:53 +00:00
Jeremy Ir 20235b390f Bug 1531609 part 1 - Rename overflow:-moz-hidden-unscrollable to overflow:clip. r=emilio
Differential Revision: https://phabricator.services.mozilla.com/D73716
2020-08-01 01:56:58 +00:00
Dan Mosedale 9c37db93a5 Bug 1655825 - Remove "Use system theme" text from about:welcome, r=pdahiya,fluent-reviewers,flod
Differential Revision: https://phabricator.services.mozilla.com/D85351
2020-08-01 01:16:50 +00:00
Andreea Pavel 742a9ce46c Backed out 6 changesets (bug 1653392, bug 1648868, bug 1649202) for breaking bc at browser_modal_print.js on a CLOSED TREE
Backed out changeset e6f8429bae89 (bug 1649202)
Backed out changeset 5360afed1eba (bug 1649202)
Backed out changeset d3b3387338f8 (bug 1649202)
Backed out changeset 98b1c160e065 (bug 1653392)
Backed out changeset 5c984392950a (bug 1648868)
Backed out changeset fa8732ebff70 (bug 1648868)
2020-08-01 02:25:16 +03:00
Mark Striemer e6d2ab46b8 Bug 1649202 - Part 1: Include a print preview in modal print dialog r=emalysz
Differential Revision: https://phabricator.services.mozilla.com/D84838
2020-07-31 19:58:29 +00:00
Mark Striemer 5655ce5053 Bug 1648868 - Part 2: Move modal print UI into a tab modal r=Gijs
This should be migrated to TabDialogBox (bug 1650795) when it's ready in bug 1653317.

Differential Revision: https://phabricator.services.mozilla.com/D84244
2020-07-31 19:57:46 +00:00
Butkovits Atila cc95b93cba Backed out 3 changesets (bug 1635473, bug 1531609) for reftest failures. CLOSED TREE
Backed out changeset 1e7b32808be8 (bug 1531609)
Backed out changeset e64a61869cdb (bug 1531609)
Backed out changeset 6da37d7f6dd3 (bug 1635473)
2020-07-31 23:56:54 +03:00
Jeremy Ir 92b8f0f77a Bug 1531609 part 1 - Rename overflow:-moz-hidden-unscrollable to overflow:clip. r=emilio
Differential Revision: https://phabricator.services.mozilla.com/D73716
2020-07-31 16:40:48 +00:00
Dorel Luca 88828e1dc0 Backed out 2 changesets (bug 1654192) for Talos failures in \xulstore\data.safe.bin. CLOSED TREE
Backed out changeset bad6faf26935 (bug 1654192)
Backed out changeset 6657944c0b63 (bug 1654192)
2020-07-31 19:39:01 +03:00
Luca Greco 8de6c706ec Bug 1653530 - Add an explicit regression test to ensure that a content script can successfully use window.open in a private tab. r=robwu
Differential Revision: https://phabricator.services.mozilla.com/D85584
2020-07-31 15:10:32 +00:00
Dão Gottwald f2b7bb9a31 Bug 1653934 - Support %YYYYMMDDHH% tag in default top site URLs. r=mikedeboer
Differential Revision: https://phabricator.services.mozilla.com/D85590
2020-07-31 14:24:08 +00:00
Sonia Singla 541bda618d Bug 1656011 - Enable remaining ESLint rules on browser/base/content/test/*.xhtml and browser/components/places/*.xhtml r=Standard8
Differential Revision: https://phabricator.services.mozilla.com/D85388
2020-07-31 13:27:52 +00:00
Asif Youssuff ccf1654f72 Bug 1553945 - Added a keyboard shortcut to show history on macOS r=mak,fluent-reviewers,flod
Differential Revision: https://phabricator.services.mozilla.com/D84897
2020-07-30 08:54:56 +00:00
Victor Porof 36be5b2aaa Bug 1654192 - Part 2: Update xulstore to use RKV in safe mode, r=nanj
Differential Revision: https://phabricator.services.mozilla.com/D85315
2020-07-31 10:41:33 +00:00
Dorel Luca 0226b8feef Backed out 6 changesets (bug 1654994) for build bustage on fuzzy builds. DONTBUILD
Backed out changeset cd3e1074b785 (bug 1654994)
Backed out changeset 45ee50e76d61 (bug 1654994)
Backed out changeset 77f1b667baec (bug 1654994)
Backed out changeset 9fca8b0bf8c1 (bug 1654994)
Backed out changeset 7131943d8db9 (bug 1654994)
Backed out changeset 435b90f6ca70 (bug 1654994)
2020-07-31 12:36:14 +03:00
Punam Dahiya 128c5750ea Bug 1650852 - Support locale specific default top sites inside multistage about:welcome r=Mardak
Differential Revision: https://phabricator.services.mozilla.com/D84777
2020-07-30 23:41:06 +00:00
Mike Hommey 7c3abd4633 Bug 1654994 - Stop setting up makecab for the build. r=firefox-build-system-reviewers,rstewart
Now that it is not actually used anywhere during the build.

Differential Revision: https://phabricator.services.mozilla.com/D85253
2020-07-29 15:32:36 +00:00
Geoff Brown 2d76cc9c6f Bug 1647187 - Update test browser_creditCard_doorhanger.js; r=MattN
Minor test change to keep browser_creditCard_doorhanger.js passing with Object.is
comparisons.

Differential Revision: https://phabricator.services.mozilla.com/D85402
2020-07-30 18:50:27 +00:00
Tim Giles b00293dd89 Bug 1618899 - Prevent Enter/Return key from activating hidden buttons in exceptions dialog. r=preferences-reviewers,ntim,MattN,bdanforth
Differential Revision: https://phabricator.services.mozilla.com/D84994
2020-07-30 21:00:58 +00:00
Zibi Braniecki fbee9129e1 Bug 1656334 - Enable event collection for creditcard category of events. r=jmathies
Differential Revision: https://phabricator.services.mozilla.com/D85465
2020-07-30 20:47:02 +00:00
Mike Hommey 8fdf2cb6ce Bug 1655921 - Stop running `make check` in valgrind builds. r=froydnj
This has the side effect of not initializing fontconfig before the
valgrind test itself runs, which changes the code path leading to
`FcConfigAddDirList`, which eventually leads to suppressed leaks.
Those leaks are then not discarded because the caller doesn't match what
is in the suppression file anymore, so we remove the caller.

Differential Revision: https://phabricator.services.mozilla.com/D85353
2020-07-30 20:27:14 +00:00
Bogdan Tara 7bb955b1ad Backed out 3 changesets (bug 1647187) for browser_resources_network_events.js failures CLOSED TREE
Backed out changeset 8aec19091f93 (bug 1647187)
Backed out changeset 61f435541932 (bug 1647187)
Backed out changeset 50edc5736947 (bug 1647187)
2020-07-30 21:46:17 +03:00
Geoff Brown 8ee92110f5 Bug 1647187 - Update test browser_creditCard_doorhanger.js; r=MattN
Minor test change to keep browser_creditCard_doorhanger.js passing with Object.is
comparisons.

Differential Revision: https://phabricator.services.mozilla.com/D85402
2020-07-30 17:17:52 +00:00
Drew Willcoxon b7916828ff Bug 1647896 - Add local search mode one-offs for history, bookmarks, and tabs. r=harry,fluent-reviewers,flod
Differential Revision: https://phabricator.services.mozilla.com/D85237
2020-07-30 16:12:46 +00:00
Mark Banner c8578acd2d Bug 1656007 - Move URLBAR_SELECTED_RESULT_TYPES to UrlbarUtils since it is not used in BrowserUsageTelemetry. r=mak
Differential Revision: https://phabricator.services.mozilla.com/D85302
2020-07-30 14:27:50 +00:00
Mark Banner 7b5f150a6a Bug 1656007 - Move URLBAR_SELECTED_RESULT_METHODS to UrlbarTestUtils as it is only used in tests. r=mak
Differential Revision: https://phabricator.services.mozilla.com/D85301
2020-07-30 15:04:20 +00:00
Andrei Oprea a439d088f5 Bug 1655452 - Snippet error state redirects to wrong retry scene r=k88hudson
Differential Revision: https://phabricator.services.mozilla.com/D85132
2020-07-30 14:17:12 +00:00
Yura Zenevich c894b69ce1 Bug 1648161 - use accessible highlighter instead of xul-accessible highlighter in browser toolbox. Remove xul-accessible highlighter altogether. r=ochameau
Differential Revision: https://phabricator.services.mozilla.com/D80005
2020-07-30 13:59:36 +00:00
Dão Gottwald e59131518d Bug 1655946 - Add X-Target-URL header to top site attribution requests. r=mikedeboer
Differential Revision: https://phabricator.services.mozilla.com/D85272
2020-07-30 11:39:08 +00:00
Mihai Alexandru Michis 61a9f32e6c Backed out changeset e29d13db9888 (bug 1654258) for causing failures in browser_all_files_referenced.js
CLOSED TREE
2020-07-30 11:11:55 +03:00
Christoph Kerschbaumer 656413d780 Bug 1654258: Package all activity-stream css files and load them using the internal chrome: protocol. r=mconley,k88hudson
Differential Revision: https://phabricator.services.mozilla.com/D85022
2020-07-30 06:06:54 +00:00
Molly Howell 272f16a911 Bug 1654913 - Remove Maintenance Service UpdateLogs directory during uninstall. r=agashlin
Since bug 1510494, when the maintenance service is used, we create update log
and status files inside the service directory and then move them into the
regular update directory when finished. However, the directory those temp
files are stored in did not get added to the uninstallers, so it doesn't
get removed as it should.

This patch has two parts. First, the Firefox uninstaller now removes any log
files created for the installation it's uninstalling (there is only one
directory and the files for different installation are differentiated by name).
Second, the maintenace service uninstaller, when it gets run by the uninstaller
for the last copy of Firefox on the system, removes the UpdateLogs directory
itself, provided it is empty, which is should be at that point since all
installations have been removed and have cleaned up their own files.

Differential Revision: https://phabricator.services.mozilla.com/D85074
2020-07-29 23:35:48 +00:00
Csoregi Natalia 46ae0786e4 Backed out changeset f00da8ba6160 (bug 1647896) for urlbar failures. CLOSED TREE 2020-07-30 02:19:20 +03:00
Drew Willcoxon 33b61e1ce5 Bug 1647896 - Add local search mode one-offs for history, bookmarks, and tabs. r=harry,fluent-reviewers,flod
Differential Revision: https://phabricator.services.mozilla.com/D85237
2020-07-29 22:11:21 +00:00
Abdoulaye Oumar Ly b22b1e8b15 Bug 1655200 - Make sure that every muted tab in browser_multiselect_tabs_mute_unmute.js file is added to the set of muted tabs. r=dao
Differential Revision: https://phabricator.services.mozilla.com/D85046
2020-07-29 21:39:22 +00:00
Agi Sferro 3767fc3e36 Bug 1654856 - Move ext-android to json. r=robwu,owlish
Differential Revision: https://phabricator.services.mozilla.com/D84739
2020-07-29 21:44:09 +00:00
Noemi Erli 5cebe61c77 Backed out changeset 4ed7b13fb7a5 (bug 1633710) for causing failures in browser_amosigned_url.js CLOSED TREE 2020-07-29 22:34:42 +03:00
Sebastian Streich ea482d8e73 Bug 1633710 - Move uri.spec calls to nsIPrincipal r=necko-reviewers,geckoview-reviewers,preferences-reviewers,ckerschb,ntim,snorp,valentin
Differential Revision: https://phabricator.services.mozilla.com/D82911
2020-07-29 17:33:10 +00:00
Sebastian Hengst 3059a76c59 Bug 1549985 - Disable browser_tabCloseSpacer.js on Windows debug-ish platforms (for frequent failures). r=jmaher DONTBUILD
Differential Revision: https://phabricator.services.mozilla.com/D85241
2020-07-29 15:04:52 +00:00
James Teh 41dccd5b35 Bug 1572608: browser_PanelMultiView_keyboard.js: If embedded documents aren't loaded yet, wait for them to load before trying to interact with them. r=mconley
Differential Revision: https://phabricator.services.mozilla.com/D84937
2020-07-29 12:10:35 +00:00
Sebastian Streich fb1d1dc1df Bug 1558394 - Pass the TriggeringSandboxFlags to nsILoadinfo r=ckerschb,smaug,necko-reviewers,valentin
Add triggering Sandbox flags to loadinfo
***
Pass triggering Flags into Loadinfo

***
Fix triggeringSandboxflags passing

Differential Revision: https://phabricator.services.mozilla.com/D69588
2020-07-29 11:43:23 +00:00
Sonia Singla 66fbd11f99 Bug 1655400 - Enable ESLint rule no-setter-return for all of places. r=Standard8
Differential Revision: https://phabricator.services.mozilla.com/D85021
2020-07-29 11:19:09 +00:00
Christian Holler f6063473ab Bug 1655742 - Package gtests for fuzzing-debug build. r=truber
Differential Revision: https://phabricator.services.mozilla.com/D85153
2020-07-28 17:47:56 +00:00
Marco Bonardo 44646a6eb5 Bug 1655693 - In case of score match, autofill should prefer https. r=adw
Differential Revision: https://phabricator.services.mozilla.com/D85183
2020-07-29 08:56:11 +00:00
Dcoder99 faef0a6577 Bug 1651008 - Gives meaningful menus create error message. r=robwu
Differential Revision: https://phabricator.services.mozilla.com/D85024
2020-07-29 02:58:43 +00:00
Thomas Wisniewski b5d0a86ee0 Bug 1637329 - add support for shimming resources blocking by tracking protection to webcompat built-in addon; r=dimi,robwu,webcompat-reviewers,denschub,miketaylr
Differential Revision: https://phabricator.services.mozilla.com/D77724
2020-07-28 23:54:58 +00:00
Dorel Luca 3bb90f375c Backed out changeset c093db737948 (bug 1572608) for Browser-chrome failures in customizableui/test/browser_PanelMultiView_keyboard.js. CLOSED TREE 2020-07-29 03:13:32 +03:00
Michael Kaply 44ccffe5c8 Bug 1655575 - Add enterprise policy for xr permission. r=emalysz
Differential Revision: https://phabricator.services.mozilla.com/D85200
2020-07-28 21:19:06 +00:00
James Teh 62055031fe Bug 1572608: browser_PanelMultiView_keyboard.js: If embedded documents aren't loaded yet, wait for them to load before trying to interact with them. r=mconley
Differential Revision: https://phabricator.services.mozilla.com/D84937
2020-07-28 21:42:03 +00:00
emcminn b55269e9e4 Bug 1653315 - Convert theme buttons to radio buttons r=pdahiya,MarcoZ
Differential Revision: https://phabricator.services.mozilla.com/D83852
2020-07-28 20:33:55 +00:00
Cosmin Sabou 896ae5aad5 Backed out changeset 9808122e5ba5 (bug 1654260) for bc failures on browser_all_files_referenced.js. CLOSED TREE 2020-07-28 22:21:14 +03:00
Christoph Kerschbaumer 47dad98770 Bug 1654260: Package all formautofill css files and load them using the internal chrome: protocol. r=MattN
Differential Revision: https://phabricator.services.mozilla.com/D85023
2020-07-28 17:13:17 +00:00
Drew Willcoxon 311fa7e378 Bug 1655672 - Fix l10n for one-off tooltips with aliases. r=harry,fluent-reviewers,flod
Differential Revision: https://phabricator.services.mozilla.com/D85125
2020-07-28 15:33:01 +00:00
Cosmin Sabou dfae9139fa Backed out changeset e49050b442ab (bug 1654260) for bc failures browser_all_files_referenced.js. CLOSED TREE 2020-07-28 20:10:37 +03:00
Coroiu Cristina 5d0115a2df Backed out changeset 1b5b325e7ff4 (bug 1653315) for bc failures at browser/components/newtab/test/browser/browser_aboutwelcome_multistage.js on a CLOSED TREE 2020-07-28 19:56:11 +03:00
Christoph Kerschbaumer a23ccb8273 Bug 1654260: Package all formautofill css files and load them using the internal chrome: protocol. r=MattN
Differential Revision: https://phabricator.services.mozilla.com/D85023
2020-07-28 15:43:57 +00:00
Emma Malysz 2240c91de0 Bug 1655381, ensure we use the correct window's view cache template to display correct firefox account info r=sfoster
Differential Revision: https://phabricator.services.mozilla.com/D85043
2020-07-28 15:19:29 +00:00
emcminn 0ef0a01f92 Bug 1653315 - Convert theme buttons to radio buttons r=MarcoZ
Differential Revision: https://phabricator.services.mozilla.com/D83852
2020-07-28 04:46:59 +00:00
Marco Bonardo 4326222700 Bug 1655363 - Autofill is wrongly fixing up origins in certain cases. r=adw
A poorly thought fixup SQL condition was stripping "www." from the origin in any
case, but when the search string contained "www.".
This ended up stripping too often, for example when typing "w" and matching
against "www.mozilla.org".
Instead, the query should strip "www." from the origin only if it doesn't start
with the search string.

Differential Revision: https://phabricator.services.mozilla.com/D85006
2020-07-27 23:16:00 +00:00
Scott 715fffb251 Bug 1629483 - Newtab card opacity lines overlap fix r=gvn
Differential Revision: https://phabricator.services.mozilla.com/D85034
2020-07-27 21:21:36 +00:00
Lina Cambridge fa09436f2b Bug 1635662 - Manage the ecosystem client ID in telemetry. r=chutten
This commit adds a new ecosystem client ID to `ClientID.jsm`. It's
handled the same way as a regular telemetry client ID, in that it's a
random UUID that's persisted to disk, and reset together with the
client ID. Unlike the main client ID, we don't cache it in prefs.

Additionally:

* `setClientID` has been renamed to `setCanaryClientIDs`, and
  automatically sets the main and ecosystem client IDs to the canary
  (known) ID. It's no longer possible to set either client ID to a
  specific value, but only test code did this.
* `resetClientID` has been renamed to `removeClientIDs`, and clears
  both client IDs. It no longer returns the new ID; instead, consumers
  should call `getClientID` or `getEcosystemClientID` after.
* The ecosystem client ID is included in the `deletion-ping`.

Differential Revision: https://phabricator.services.mozilla.com/D84233
2020-07-28 01:39:11 +00:00
Drew Willcoxon 8c11ad7677 Bug 1654439 - Part 2: Factor out some urlbar-specific things from SearchOneOffs into UrlbarSearchOneOffs. r=harry
The base class retains the `popup` property, and now the `view` property is
entirely in the subclass. I defined some new methods so that the subclass can
easily customize behavior for a view that's not a popup. I used the name "view"
in these method names to refer to a generic view/panel. I didn't rename `popup`
`view` because the base class still assumes that `popup` is a `menupopup`.

We could/should probably get rid of the "compact" concept and instead specialize
the behavior even further in the subclass, but for simplicity's sake I left that
for now.

Depends on D84784

Differential Revision: https://phabricator.services.mozilla.com/D84785
2020-07-28 02:55:41 +00:00
Drew Willcoxon 99378dda74 Bug 1654439 - Part 1: Move search-one-offs.js into a jsm, add UrlbarSearchOneOffs.jsm. r=harry
This moves search-one-offs.js into a jsm without making any substantive changes,
adds a new subclass in UrlbarSearchOneOffs.jsm, and uses `UrlbarSearchOneOffs`
in `UrlbarView` instead of the base `SearchOneOffs` class. `UrlbarSearchOneOffs`
will be fleshed out in part 2.

Differential Revision: https://phabricator.services.mozilla.com/D84784
2020-07-28 02:54:37 +00:00
Zibi Braniecki 11395cf9ff Bug 1654167 - Add preferences telemetry for Credit Card A/B testing. r=abr
Differential Revision: https://phabricator.services.mozilla.com/D84293
2020-07-28 00:29:50 +00:00
Zibi Braniecki 48beff740e Bug 1653083 - Add doorhanger telemetry for Credit Card A/B testing. r=abr
Differential Revision: https://phabricator.services.mozilla.com/D83723
2020-07-27 22:43:26 +00:00
Adam Roach [:abr] ab461dd2a4 Bug 1653162: Add telemetry reporting for autofill events. r=zbraniecki
Differential Revision: https://phabricator.services.mozilla.com/D83733
2020-07-27 17:33:41 +00:00
Morgan Reschenberg daf0b1d1dc Bug 1654672: Remove logging for nonexistant zoom scalar. r=Jamie
Differential Revision: https://phabricator.services.mozilla.com/D85089
2020-07-28 00:03:50 +00:00
Narcis Beleuzu d2ab5ee1a5 Backed out 2 changesets (bug 1654439) for lint failure on SearchOneOffs.jsm . CLOSED TREE
Backed out changeset c03e14b7c430 (bug 1654439)
Backed out changeset 51b575b0d605 (bug 1654439)
2020-07-28 03:35:15 +03:00
Joel Maher 2f2dc70492 Bug 1654553 - fix browser chrome tests to support Object.is instead of ==. r=gbrown,preferences-reviewers,Gijs,rpl
fix browser chrome tests to support Object.is instead of ==

Differential Revision: https://phabricator.services.mozilla.com/D84539
2020-07-27 17:02:35 +00:00
Drew Willcoxon b9137c3138 Bug 1654439 - Part 2: Factor out some urlbar-specific things from SearchOneOffs into UrlbarSearchOneOffs. r=harry
The base class retains the `popup` property, and now the `view` property is
entirely in the subclass. I defined some new methods so that the subclass can
easily customize behavior for a view that's not a popup. I used the name "view"
in these method names to refer to a generic view/panel. I didn't rename `popup`
`view` because the base class still assumes that `popup` is a `menupopup`.

We could/should probably get rid of the "compact" concept and instead specialize
the behavior even further in the subclass, but for simplicity's sake I left that
for now.

Depends on D84784

Differential Revision: https://phabricator.services.mozilla.com/D84785
2020-07-27 15:17:35 +00:00
Drew Willcoxon 97c020d1fc Bug 1654439 - Part 1: Move search-one-offs.js into a jsm, add UrlbarSearchOneOffs.jsm. r=harry
This moves search-one-offs.js into a jsm without making any substantive changes,
adds a new subclass in UrlbarSearchOneOffs.jsm, and uses `UrlbarSearchOneOffs`
in `UrlbarView` instead of the base `SearchOneOffs` class. `UrlbarSearchOneOffs`
will be fleshed out in part 2.

Differential Revision: https://phabricator.services.mozilla.com/D84784
2020-07-27 14:55:41 +00:00
Brindusan Cristian 5fd82d4d7d Merge mozilla-central to autoland on a CLOSED TREE 2020-07-27 23:34:59 +03:00
Brindusan Cristian 2d3cb7b452 Merge autoland to mozilla-central. a=merge 2020-07-27 23:31:20 +03:00
Mozilla Releng Treescript e0a22e8714 Update configs. IGNORE BROKEN CHANGESETS CLOSED TREE NO BUG a=release ba=release 2020-07-27 17:45:43 +00:00
Mark Banner 10cbdaa642 Bug 1620537 - Fix more ESLint issues raised after upgrading to ESlint 7. r=mossop
There's two issues being fixed here - the first is that no-unused-vars now reports against the last instance of the unused variable. The second is no-dupe-else-if is now on by default.

Depends on D84816

Differential Revision: https://phabricator.services.mozilla.com/D84818
2020-07-24 21:31:24 +00:00
Csoregi Natalia aa44a640ec Backed out changeset bb8a399944a5 (bug 1635662) for failures on test_client_id.js. CLOSED TREE 2020-07-25 01:47:11 +03:00
Noemi Erli 20a8201c14 Backed out changeset 4e38530aaba0 (bug 1653162) for causing failures in test_autofillFormFields.js CLOSED TREE 2020-07-25 00:57:53 +03:00
Adam Roach [:abr] bb0f28cfe0 Bug 1653162: Add telemetry reporting for autofill events. r=zbraniecki
Differential Revision: https://phabricator.services.mozilla.com/D83733
2020-07-24 20:53:11 +00:00
Lina Cambridge 308c0763a7 Bug 1635662 - Manage the ecosystem client ID in telemetry. r=chutten
This commit adds a new ecosystem client ID to `ClientID.jsm`. It's
handled the same way as a regular telemetry client ID, in that it's a
random UUID that's persisted to disk, and reset together with the
client ID. Unlike the main client ID, we don't cache it in prefs.

Additionally:

* `setClientID` has been renamed to `setCanaryClientIDs`, and
  automatically sets the main and ecosystem client IDs to the canary
  (known) ID. It's no longer possible to set either client ID to a
  specific value, but only test code did this.
* `resetClientID` has been renamed to `removeClientIDs`, and clears
  both client IDs. It no longer returns the new ID; instead, consumers
  should call `getClientID` or `getEcosystemClientID` after.
* The ecosystem client ID is included in the `deletion-ping`.

Differential Revision: https://phabricator.services.mozilla.com/D84233
2020-07-24 20:35:58 +00:00
Nihanth Subramanya bb8f770917 Bug 1654520 - Concat the networkID to the clientID and SHA256 the result before including in telemetry. r=mossop
Differential Revision: https://phabricator.services.mozilla.com/D84859
2020-07-24 20:23:33 +00:00
Nihanth Subramanya dc37cc06de Bug 1654520 - [DoH] Debounce heuristics; Include networkID and captiveState in heuristics telemetry event. r=dragana
Differential Revision: https://phabricator.services.mozilla.com/D84648
2020-07-24 20:23:33 +00:00
Nihanth Subramanya ee4d71191c Bug 1654714 - [DoH] Group heuristics results into three categories to reduce extra key count in telemetry. r=Gijs,tdsmith
Differential Revision: https://phabricator.services.mozilla.com/D84719
2020-07-24 20:22:25 +00:00
Andrei Oprea b705cbc95d Bug 1654802 - Add support for header urls in send to device snippet r=pdahiya
Differential Revision: https://phabricator.services.mozilla.com/D84709
2020-07-24 17:06:58 +00:00
Noemi Erli 8f9b354ff9 Backed out 2 changesets (bug 1653392, bug 1648868) for causing failures in browser_modal_print.js CLOSED TREE
Backed out changeset 7fac5bd02bb3 (bug 1653392)
Backed out changeset 9f8b675f0f6b (bug 1648868)
2020-07-24 20:38:06 +03:00
Dão Gottwald cfa8eb9c8b Bug 1653932 - Add pref for top site defaults from remote settings. r=mikedeboer
Differential Revision: https://phabricator.services.mozilla.com/D84532
2020-07-24 16:41:04 +00:00
Mark Striemer c30a3a2200 Bug 1648868 - Move modal print UI into a tab modal r=Gijs
This gets the print UI into a tab modal but does so by abusing
SubDialog. This should be migrated to TabDialogBox in bug 1653317.

Differential Revision: https://phabricator.services.mozilla.com/D84244
2020-07-24 15:53:36 +00:00
Andrei Oprea 08df665966 Bug 1644743 - Consolidate Targeting evaluation across Normandy, Experiment Manager and ASRouter r=k88hudson,mythmon,janerik
Differential Revision: https://phabricator.services.mozilla.com/D79967
2020-07-24 15:24:41 +00:00
Mark Banner 231954fd25 Bug 1652832 - Add new search engines locales and updated icons for gmx distributions. r=mkaply
Differential Revision: https://phabricator.services.mozilla.com/D84601
2020-07-24 16:03:08 +00:00
Andreea Pavel e8ade27fb1 Backed out changeset bdedb095df0f (bug 1653932) for failing Screenshots.jsm on a CLOSED TREE 2020-07-24 19:02:05 +03:00
Mike Conley caa4a47fad Bug 1654266 - Make sure the 'Stop Sharing' button in the WebRTC indicator only stops displays, and not mic/camera streams. r=pbz
Differential Revision: https://phabricator.services.mozilla.com/D84574
2020-07-24 15:14:17 +00:00
Mike Conley ec79b797d6 Bug 1641274 - Default some browser.startup boolean scalars to false instead of undefined. r=Gijs
Differential Revision: https://phabricator.services.mozilla.com/D84744
2020-07-23 23:44:44 +00:00
Coroiu Cristina c8b6c9f554 Backed out changeset 47420937d6b1 (bug 1644743) for browser-chrome failures at browser/base/content/test/static/browser_all_files_referenced.js on a CLOSED TREE 2020-07-24 17:42:56 +03:00
Dão Gottwald ab5f6e6216 Bug 1653932 - Add pref for top site defaults from remote settings. r=mikedeboer
Differential Revision: https://phabricator.services.mozilla.com/D84532
2020-07-24 14:13:08 +00:00
Andrei Oprea bb5054fefb Bug 1644743 - Consolidate Targeting evaluation across Normandy, Experiment Manager and ASRouter r=k88hudson,mythmon,janerik
Differential Revision: https://phabricator.services.mozilla.com/D79967
2020-07-24 12:12:10 +00:00
Sebastian Hengst ca9407d143 Bug 1279821 - Skip browser_windowStateContainer.js with fission and either debug or Windows. r=kashav DONTBUILD
Test got enabled for these configs in bug 1653674.

Differential Revision: https://phabricator.services.mozilla.com/D84669
2020-07-24 12:11:33 +00:00
Andreea Pavel 737bacd5f2 Backed out changeset f7bb83828578 (bug 1639826) for failing bc at browser_protectionsUI.js on a CLOSED TREE 2020-07-24 15:25:59 +03:00
Marco Bonardo 48d23c80d5 Bug 1654316 - Autofill is not properly considering bookmarked status of origins. r=adw
The old query was picking a random bookmarked status out of the pages in an origin,
depending on the physical position of the origin rows in the table.
The new query uses window functions to partition the data by origin, so it can
query origins just once and sum www and non-www origin's frecency scores before
comparing to the autofill threshold.

Differential Revision: https://phabricator.services.mozilla.com/D84657
2020-07-24 12:01:15 +00:00
Ingrid Buh 132ea835ae Bug 1639826 - Fix hover effects on link texts in the protection panel. r=prathiksha
Differential Revision: https://phabricator.services.mozilla.com/D81309
2020-07-24 10:30:07 +00:00
Kenrick ad72d219c9 Bug 1587372 - Fix missing render after saving without any changes in about:logins. r=MattN
Differential Revision: https://phabricator.services.mozilla.com/D82368
2020-07-24 04:21:35 +00:00
Gijs Kruitbosch eabaeb4c02 Bug 1652613 - record whether the user switched away from the tab while it was hung, r=mconley
Differential Revision: https://phabricator.services.mozilla.com/D84343
2020-07-24 00:55:34 +00:00
Gijs Kruitbosch 02d23145dc Bug 1652613 - record a telemetry event when we show the slow script notification warning, r=mconley
Differential Revision: https://phabricator.services.mozilla.com/D83922
2020-07-24 00:50:12 +00:00
Tracy Walker acc03ec147 Bug 1654348 - Remove obsolete browser_<enginename>.js tests r=Standard8
Differential Revision: https://phabricator.services.mozilla.com/D84569
2020-07-23 21:16:48 +00:00
Dorel Luca 54d5f1c9ed Backed out 4 changesets (bug 1652613) for Browser-chrome failures in browser/browser_ProcessHangNotifications.js. CLOSED TREE
Backed out changeset 76b5a5d243d1 (bug 1652613)
Backed out changeset 6f98c9b01920 (bug 1652613)
Backed out changeset 1255237ce2e7 (bug 1652613)
Backed out changeset bdf59854c900 (bug 1652613)
2020-07-24 02:58:22 +03:00
Mihai Alexandru Michis 862a49c505 Bug 1456284 - Disable browser_insecure_form.js on macos for causing permafailures. a=fix
CLOSED TREE
2020-07-24 01:32:57 +03:00
Gijs Kruitbosch e609c52743 Bug 1652613 - record whether the user switched away from the tab while it was hung, r=mconley
Differential Revision: https://phabricator.services.mozilla.com/D84343
2020-07-22 22:28:05 +00:00
Gijs Kruitbosch f5fc88e2ae Bug 1652613 - record a telemetry event when we show the slow script notification warning, r=mconley
Differential Revision: https://phabricator.services.mozilla.com/D83922
2020-07-22 22:28:31 +00:00
Harry Twyford bc3ea4aef4 Bug 1647915 - Restrict queryContext to search mode when visual indicator is visible. r=mak
Differential Revision: https://phabricator.services.mozilla.com/D83855
2020-07-23 20:01:32 +00:00
Harry Twyford e0a1235a88 Bug 1653643 - Implement different visual state for the Urlbar search mode indicator when the Urlbar is collapsed. r=mak
Differential Revision: https://phabricator.services.mozilla.com/D84433
2020-07-23 14:11:10 +00:00
Harry Twyford 458e073f03 Bug 1647888 - Implement visual indicator in the Urlbar for aliased engine. r=dao,mak
Differential Revision: https://phabricator.services.mozilla.com/D83854
2020-07-23 18:41:32 +00:00
Dorel Luca 9192793141 Backed out 2 changesets (bug 1643578) for Browser-chrome failures in browser_navigate_home_focuses_addressbar.js. CLOSED TREE
Backed out changeset e87edc47ce49 (bug 1643578)
Backed out changeset 5a1183eb9107 (bug 1643578)
2020-07-23 22:34:57 +03:00
harsh 371e10380d Bug 1640665 - Use `inBackground` parameter of duplicateTab in duplicateTabIn. r=robwu
Differential Revision: https://phabricator.services.mozilla.com/D84236
2020-07-23 17:52:09 +00:00
Kashav Madan 32271075ed Bug 1643578 - Test that extension as home page focuses address bar r=pbone
Depends on D83754

Differential Revision: https://phabricator.services.mozilla.com/D83755
2020-07-23 17:36:35 +00:00
Paul Bone bc9d572a64 Bug 1643578 - Test that navigating to a http home page doesn't focus the address bar r=kashav
Differential Revision: https://phabricator.services.mozilla.com/D83754
2020-07-22 22:33:54 +00:00
Dale Harvey ff0efe0e64 Bug 1627548 - Update Activity Stream to use new Region.jsm API r=thecount
Differential Revision: https://phabricator.services.mozilla.com/D77051
2020-07-23 13:38:30 +00:00
Harry Twyford 7f2225ec09 Bug 1653436 - Clear _autofillResult more reliably. r=mak
Differential Revision: https://phabricator.services.mozilla.com/D84716
2020-07-23 15:33:37 +00:00
emcminn ffb2d03581 Bug 1654393 - Updated "onboarding.ftl" to more closely match spec, and add "Alpenglow" theme string r=pdahiya,fluent-reviewers,flod
Differential Revision: https://phabricator.services.mozilla.com/D84537
2020-07-22 20:27:34 +00:00
Jim Mathies 2cb953ef94 Bug 1626055 - Disable address autofill auto-saving until we deal with duplicate addresses. r=MattN
Tie address capture to a new temporary pref, and update some tests to enable it so the test keep running.

Differential Revision: https://phabricator.services.mozilla.com/D83961
2020-07-21 05:58:30 +00:00
Jim Mathies da9ed0a51f Bug 1425884 - Enable browser_creditCard_doorhanger.js. r=zbraniecki
Enable this credit card autofill test. Passing on all platforms.

Differential Revision: https://phabricator.services.mozilla.com/D83983
2020-07-17 17:54:14 +00:00
Jim Mathies e53e7cccd4 Bug 1456284 - Enable browser_insecure_form.js. r=zbraniecki
Credit autofill is now working better, and this test is passing on all platforms.

Differential Revision: https://phabricator.services.mozilla.com/D83986
2020-07-17 17:54:39 +00:00
Mark Banner ff5c602cf4 Bug 1654246 - When cloning search engines for preferences, clone the hidden property as well to ensure restore default engines works correctly. r=daleharvey,preferences-reviewers,ntim
Differential Revision: https://phabricator.services.mozilla.com/D84520
2020-07-23 12:04:04 +00:00
Francesco Lodolo (:flod) f42aa82585 Bug 1654528 - Update comments for brand names in Fluent files r=Pike
Differential Revision: https://phabricator.services.mozilla.com/D84497
2020-07-23 09:31:52 +00:00
Matthew Noorenberghe 7ff7f91d0f Bug 1654604 - Hold CSV Import to Nightly for Fx80. r=severin,fluent-reviewers,flod
Differential Revision: https://phabricator.services.mozilla.com/D84619
2020-07-23 06:32:30 +00:00
Matthew Noorenberghe 7c3a6d2696 Bug 1653432 - Don't wait on AboutLoginsUtilsReady to populate the SUMO URL. r=severin
Differential Revision: https://phabricator.services.mozilla.com/D84618
2020-07-23 03:57:21 +00:00
Jonathan Watt b7e932192e Bug 1652270. Convert nsFrameLoader::Print to return a Promise. r=farre,remote-protocol-reviewers,marionette-reviewers,jgraham,whimboo,mixedpuppy
(Instead of requiring callers to pass an nsIWebProgressListener.)

Differential Revision: https://phabricator.services.mozilla.com/D83249
2020-07-22 23:17:45 +00:00
Erica Wright fbd52a9c65 Bug 1655044 - Replace FPN Logo. r=prathiksha
Differential Revision: https://phabricator.services.mozilla.com/D84996
2020-07-27 18:35:46 +00:00
Itiel bc725721c5 Bug 1653958 - Fix the search tooltip position on the "Default zoom" menulist. r=preferences-reviewers,ntim
Differential Revision: https://phabricator.services.mozilla.com/D84960
2020-07-27 11:38:48 +00:00
Andrei Oprea 7e6bdb7722 Bug 1649538 - Add new Snippets template for Send to Device r=k88hudson
Differential Revision: https://phabricator.services.mozilla.com/D83135
2020-07-22 20:56:31 +00:00
Robert Helmer ddbad8ba46 Bug 1653098 - pre-enrollment consent dialog for Pioneer v2 r=mstriemer
Differential Revision: https://phabricator.services.mozilla.com/D83893
2020-07-22 21:15:44 +00:00
emcminn 8519acb03f Bug 1653322 - Converted import topsites "disclaimer" tooltip to a footer r=pdahiya,fluent-reviewers,MarcoZ,flod
Differential Revision: https://phabricator.services.mozilla.com/D84025
2020-07-22 19:54:14 +00:00
Jonathan Almeida [:jonalmeida] e9a6ea525b Bug 1607092 - Add new quote from Book of Mozilla for GeckoView r=geckoview-reviewers,Pike,agi
Differential Revision: https://phabricator.services.mozilla.com/D80575
2020-07-07 02:22:07 +00:00
Neil Deakin 0cae4293b6 Bug 1654127, move webrtc and about home cache handling out of ContentObservers.js framescript, r=mconley
Differential Revision: https://phabricator.services.mozilla.com/D84277
2020-07-22 10:14:26 +00:00
Matthew Noorenberghe 3b1e0dde32 Bug 1653798 - Add Primary Password SUMO link and text about the name change. r=preferences-reviewers,fluent-reviewers,flod,ntim
`forms-primary-pw-former-name = {""}` is used when this term didn't change for a locale.

Differential Revision: https://phabricator.services.mozilla.com/D84291
2020-07-22 07:16:29 +00:00
Narcis Beleuzu 6a99a110b2 Backed out changeset 01f3ce4e1942 (bug 1649538) for newtab failures on SubmitFormSnippet.scss . CLOSED TREE 2020-07-22 21:11:14 +03:00
Narcis Beleuzu 687f235fbc Backed out changeset f95c19e45ab2 (bug 1652270) for reftest failures on test-text.html . CLOSED TREE 2020-07-22 20:36:53 +03:00
Tim Huang 26fd85af70 Bug 1647825 - Part 2: Report the XFO and CSP: frame-ancestors error through the telemetry event. r=ckerschb,chutten,nhnt11
After user ticks the checkbox of allowing error reporting, we will
report the error through the telemetry event. The event includes the
error type, XFO policy, CSP policy, the frame uri and the top-level uri.

Differential Revision: https://phabricator.services.mozilla.com/D82332
2020-07-22 15:12:38 +00:00
Tim Huang 748ddb821d Bug 1647825 - Part 1: Add the UI for enable reporting XFO and CSP:frame-ancestors error. r=ckerschb,nhnt11
This patch adds the UI for allowing users to enable reporting XFO error.
The reporting UI will be displayed in the error page if the error is a
XFO error.

Differential Revision: https://phabricator.services.mozilla.com/D82331
2020-07-22 15:12:38 +00:00
Ksenia Berezina eab4e2c6da Bug 1654555 - Import v13.0.1 webcompat addon sources. r=webcompat-reviewers,miketaylr
Differential Revision: https://phabricator.services.mozilla.com/D84544
2020-07-22 16:33:52 +00:00