Commit Graph

633599 Commits

Author SHA1 Message Date
Shane Caraveo
2deab03293 Bug 1516704 incognito support in session api, r=rpl,mikedeboer
Differential Revision: https://phabricator.services.mozilla.com/D16921

--HG--
extra : moz-landing-system : lando
2019-01-29 20:18:36 +00:00
Brindusan Cristian
375d1a074a Backed out changeset d085f7afb20a (bug 1514680) for mochitest failures at test_importScripts_3rdparty.html.
--HG--
extra : rebase_source : ee47ae03f428320fe1dbf848f1b42f0aa11eee90
2019-01-29 22:12:47 +02:00
Dana Keeler
8b379cf5ab bug 1520347 - fold Family Safety TLS interception feature into enterprise/third-party roots feature r=jcj
The Family Safety TLS interception feature is seldom used and security-wise is
essentially equivalent to the enterprise or third-party roots feature. To
simplify future improvements, this patch folds them together by automatically
importing third-party roots if Firefox detects that the Family Safety TLS
interception feature has been enabled. This affects Windows 8.1 only. When
usage of Windows 8.1 is low enough, we will remove the feature altogether.

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

--HG--
extra : moz-landing-system : lando
2019-01-29 20:10:39 +00:00
Drew Willcoxon
bbe5c6a49c Bug 1522280 - Add autofill tests: controller tests. r=Standard8
Differential Revision: https://phabricator.services.mozilla.com/D17901

--HG--
extra : moz-landing-system : lando
2019-01-29 19:56:05 +00:00
Jared Wein
3746beaef1 Bug 1517410 - Don't show the unknown multiprocess status string while the page is loading. r=Gijs
Differential Revision: https://phabricator.services.mozilla.com/D17948

--HG--
extra : moz-landing-system : lando
2019-01-29 19:49:45 +00:00
Dzmitry Malyshau
1df57d7ca5 Bug 1431582 - WR support non-locally-rasterized split planes r=gw
Now that we no longer guarantee that a picture with perspective transform is rasterized in local space, we need to ensure that the shaders don't apply perspective correction to the texture coordinates twice.
For that to be the case, we pass an extra flag to the plane splitting shader, and un-do the perspective correction if it's not enabled.

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

--HG--
extra : moz-landing-system : lando
2019-01-29 19:34:55 +00:00
Drew Willcoxon
5c43b240ea Bug 1523483 - Remove duplicate test function test_autocomplete_enabled in test_UrlbarController_unit.js. r=mak
Differential Revision: https://phabricator.services.mozilla.com/D17898

--HG--
extra : moz-landing-system : lando
2019-01-29 19:31:15 +00:00
Michael Kaply
6f90f7c787 Bug 1523160 - Add descriptions for SSL policies r=Felipe,flod
Differential Revision: https://phabricator.services.mozilla.com/D17873

--HG--
extra : moz-landing-system : lando
2019-01-29 16:31:07 +00:00
Mark Banner
3a4a57f3fa Bug 1523593 - Pass arguments to check_cmd_output as simple arguments rather than a list. Bustage fix from bug 1523153. r=Gijs a=Aryx
Reviewers: Gijs

Reviewed By: Gijs

Subscribers: Gijs

Bug #: 1523593

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

--HG--
extra : rebase_source : 8e6098c9a53a2dbb8411c645b24cd045537ce42b
extra : amend_source : ef98541406c0bb72e920a1df6c28fe3272fcacb6
2019-01-29 15:42:05 +02:00
Sebastian Hengst
d81a4f309c Bug 1519596: Follow-up: Update PerTestCoverageUtils import in executormarionette.py. a=merge 2019-01-29 14:16:32 +02:00
Sebastian Hengst
85a09a9114 Bug 1519596: Follow-up: Removes Services import because it's a redeclaration. a=merge 2019-01-29 14:13:17 +02:00
Sebastian Hengst
bce7497e86 Bug 1514594: Follow-up: Remove unused imports merged from autoland. a=eslint-fix 2019-01-29 12:32:57 +02:00
Cosmin Sabou
599a15d354 Merge mozilla-inbound to mozilla-central. a=merge 2019-01-29 12:01:56 +02:00
Cosmin Sabou
c07aaf12f1 Merge autoland to mozilla-central. a=merge 2019-01-29 11:19:53 +02:00
Andrea Marchesini
79ddbe6541 Bug 1522265 - Moving malware, phishing and blocked URIs to features - part 4 - Phishing Protection, r=dimi
--HG--
rename : netwerk/url-classifier/UrlClassifierFeatureNoChannel.cpp => netwerk/url-classifier/UrlClassifierFeaturePhishingProtection.cpp
rename : netwerk/url-classifier/UrlClassifierFeatureNoChannel.h => netwerk/url-classifier/UrlClassifierFeaturePhishingProtection.h
2019-01-29 10:11:34 +01:00
Andrea Marchesini
4e02fc2bf6 Bug 1522265 - Moving malware, phishing and blocked URIs to features - part 3 - DBService updated, r=dimi 2019-01-29 10:11:34 +01:00
Andrea Marchesini
c48bfd063c Bug 1522265 - Moving malware, phishing and blocked URIs to features - part 2 - factory updated, r=dimi 2019-01-29 10:11:33 +01:00
Andrea Marchesini
2e4e28b9e5 Bug 1522265 - Moving malware, phishing and blocked URIs to features - part 1 - feature no channel, r=dimi 2019-01-29 10:11:33 +01:00
Masayuki Nakano
015f67628e Bug 1466208 - part 1: Create stack class to handle events in PresShell r=smaug
PresShell::HandleEvent() and PresShell::HandleEventInternal() are too big.
Additionally, we have a lot of methods used only by them.  So, if we'll
split those big methods, PresShell will have a lot of small methods which
are not grouped as a part of event handling.  That's too bad because some
of them may depend on the calling order, etc.

So, for grouping them, PresShell should create a stack class instance to handle
each event.  Then, we can store shared information in it only while we're
handling an event.

This patch creates PresShell::EventHandler and PresShell methods become
wrappers of the stack class, but this patch does not change any logic in the
code, i.e., just reorganizing existing methods.

Note that HandleEventWithTarget() and HandleEventInternal() need to take
WidgetEvent rather than WidgetGUIEvent.  Additionally, some other methods
require WidgetGUIEvent to refer WidgetGUIEvent::mWidget.  Therefore, this
patch does not make the new class store the event as a member.

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

--HG--
extra : moz-landing-system : lando
2019-01-29 06:04:05 +00:00
Randell Jesup
0df3232aca Bug 1523333: add setTimeout/Interval profiler markers for all uses r=mstange 2019-01-28 23:52:35 -05:00
Lee Salzman
56444ece80 Bug 1512010 - snap text positions without device transform in local raster space. r=gw 2019-01-28 22:23:00 -05:00
Andreea Pavel
17e98b396a Backed out changeset d5549e46baed (bug 1489405) as it was just a temporary commit a=backout 2019-01-29 05:17:19 +02:00
Kris Maglione
4f0a4ba33f Bug 1514594: Follow-up: Fix more Mac bustage in the same script. r=bustage 2019-01-28 19:14:34 -08:00
Kris Maglione
68225e25a5 Bug 1514594: Follow-up: Fix damp talos tests. r=bustage
--HG--
extra : rebase_source : 7a73f8ba9f5d28728b550e41c43e0f64adf88466
2019-01-28 18:28:06 -08:00
Jason Laster
5f1d658b76 Bug 1523386 - Update debugger frontend (release 121). r=dwalsh 2019-01-28 21:01:17 -05:00
Brian Hackett
4ff11b64ac Bug 1523386 - [release 121] Use flow in src/components tests (#7815). r=dwalsh 2019-01-28 21:01:16 -05:00
Brian Hackett
6a108618ac Bug 1523386 - [release 121] [tests] Add flow types to remaining src/utils unit tests. (#7809). r=dwalsh 2019-01-28 21:01:15 -05:00
Nicolas Chevobbe
f16d70465a Bug 1523386 - [release 121] Fix Frames.css hover/focus (#7805). r=dwalsh 2019-01-28 21:01:15 -05:00
Brian Hackett
00a47abe41 Bug 1523386 - [release 121] Refactor src/utils/pause unit tests. (#7798). r=dwalsh 2019-01-28 21:01:14 -05:00
Shivam Singhal
5f46269771 Bug 1523386 - [release 121] remove --icon-size CSS variable (#7801). r=dwalsh 2019-01-28 21:01:13 -05:00
Jaril
476cb1d183 Bug 1523386 - [release 121] corrected selectors for pane toggle buttons (#7802). r=dwalsh 2019-01-28 21:01:12 -05:00
Jason Laster
c39344de02 Bug 1523386 - [release 121] [DebugLine] line is not cleared (#7779). r=dwalsh 2019-01-28 21:01:11 -05:00
Anshul
0d6e63e879 Bug 1523386 - [release 121] strict flow and remove some unused code in project search (#7669). r=dwalsh 2019-01-28 21:01:10 -05:00
Aayush Joglekar
9376828bbe Bug 1523386 - [release 121] Fixes Line Highlight Bug (#7768). r=dwalsh 2019-01-28 21:01:09 -05:00
Brian Hackett
2fdfcfa4f3 Bug 1523386 - [release 121] [Workers] Fix a couple bugs with windowless worker debugging. (#7776). r=dwalsh 2019-01-28 21:01:08 -05:00
derek-li
2de0ebc766 Bug 1523386 - [release 121] [XHR Breakpoints] Clicking text toggles breakpoint (#7766). r=dwalsh 2019-01-28 21:01:07 -05:00
Pradeep Gangwar
4b7f197296 Bug 1523386 - [release 121] Change max-width boundaries for verticalLayoutBreakpoint (#7781). r=dwalsh 2019-01-28 21:01:06 -05:00
David Walsh
a55e596bf4 Bug 1523386 - [release 121] [Evaluations] Use jsterm directly for console logging (#7753). r=dwalsh 2019-01-28 21:01:06 -05:00
R.Ganesh
ebd3447d1f Bug 1523386 - [release 121] Remove sanitize inputs (#7767). r=dwalsh 2019-01-28 21:01:05 -05:00
Jason Laster
d6ea402092 Bug 1523386 - [release 121] [flow] Fix types with firefox commands (#7751). r=dwalsh 2019-01-28 21:01:04 -05:00
Konrad Kruk
c2bb783f96 Bug 1523386 - [release 121] Respect enable extenstions setting in Sources and QuickOpenModal (#7705). r=dwalsh 2019-01-28 21:01:02 -05:00
Brian Hackett
5f0bf41d9d Bug 1523386 - [release 121] Distinguish between condition and log value in breakpoints (#7749). r=dwalsh 2019-01-28 21:01:01 -05:00
Hubert Boma Manilla
6ba3f76565 Bug 1523386 - [release 121] put log points behind a flag (#7761). r=dwalsh 2019-01-28 21:01:00 -05:00
Jason Laster
55a9ccfec2 Bug 1523386 - [release 121] Update editor context menus (#7719). r=dwalsh 2019-01-28 21:00:59 -05:00
Kris Maglione
1d42d81c07 Bug 1514594: Follow-up: Fix pageloader talos tests. r=bustage 2019-01-28 17:51:05 -08:00
Kris Maglione
65d4fdd47b Bug 1514594: Follow-up: Fix merge bustage in another test. r=bustage 2019-01-28 17:31:01 -08:00
Kris Maglione
678976229b Bug 1514594: Follow-up: Fix Mac merge bustage. r=bustage 2019-01-28 17:27:32 -08:00
Kris Maglione
48936b7fa4 Bug 1514594: Follow-up: Fix ESLint bustage on merge from autoland. r=bustage 2019-01-28 17:19:37 -08:00
Kris Maglione
21610fa4cc Bug 1514594: Follow-up: Fix merge bustage in test. r=bustage 2019-01-28 17:15:36 -08:00
Sebastian Hengst
b78e4e8667 Merge mozilla-central to mozilla-inbound
--HG--
rename : browser/components/urlbar/tests/legacy/browser_urlbar_search_no_speculative_connect_with_client_cert.js => browser/components/urlbar/tests/browser/browser_urlbar_speculative_connect_not_with_client_cert.js
2019-01-29 02:55:55 +02:00