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

665073 Коммитов

Автор SHA1 Сообщение Дата
Masayuki Nakano b0606032ba Bug 1572375 - part 2: Split `TextEditRules::WillInsert()` r=m_kato
`TextEditRules::WillInsert()` is not used with initial purpose since
`HTMLEditor` always works with `HTMLEditRules` and its `WillDoAction()`
always handles `EditSubAction::eInsertElement`.

Additionally, its name is too generic since it does non-related 3 things.

One is checking whether the editor is readonly or disabled.  However, this
may not be necessary since its callers may have already checked it or
just ignored the result.  So, this should be check by each caller.

Next one is masking password if auto-masking is enabled.  This is `TextEditor`
specific feature so that this patch moves the code into
`TextEditor::MaybeDoAutoPasswordMasking()`.

Final one is removing empty `<br>` element for empty editor if there is.
This is common feature so that this patch moves this code into
`EditorBase::EnsureNoPaddingBRElementForEmptyEditor()`.

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

--HG--
extra : moz-landing-system : lando
2019-08-09 08:25:37 +00:00
Masayuki Nakano b25f8b0e06 Bug 1572375 - part 1: Move `TextEditRules::mPaddingBRElementForEmptyEditor` to `EditorBase` r=m_kato
`TextEditRules::mPaddingBRElementForEmptyEditor` are used by both `TextEditor`
and `HTMLEditor`.  Therefore, it should be in `EditorBase`.

This patch makes `TextEditRules` and `HTMLEditRules` directly access the
private member of `EditorBase` temporarily.  It'll be fixed by the following
patches.

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

--HG--
extra : moz-landing-system : lando
2019-08-09 07:03:29 +00:00
Nick Alexander 8e0d872e6e Bug 1542004 - Add `android-javadoc` lint. r=agi
This also applies the error listener just to the Javadoc tasks
(previously, it applied to the `apiGenerate*` tasks as well, 'cuz they
inherit from `Javadoc`).

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

--HG--
extra : moz-landing-system : lando
2019-08-13 01:45:03 +00:00
Glenn Watson d34d735320 Bug 1572646 - Detect and optimize picture cache tiles that are solid colors. r=kvark
With this patch, tiles that are covered only by the opaque backdrop
primitive are detected and noted as solid colors.

Solid color tiles save memory and performance, because:
 - No texture slice is allocated as a render target for them.
 - No need to rasterize this tile.
 - Drawing the tile is done with the faster rectangle shader.

This already saves performance and GPU memory on quite a few
real world sites (esp. when running at 4k). However, the main
benefit of this will be once we enable picture caching on
multiple content slices and the UI layer. When this occurs, it's
important to avoid allocating tile buffers for all the solid
rectangle tiles that the UI layer typically contains.

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

--HG--
extra : moz-landing-system : lando
2019-08-12 21:59:58 +00:00
Narcis Beleuzu 043721cdd8 Backed out changeset 0836c998795b (bug 1573106) for wpt failures on accumulation-per-property.html . CLOSED TREE 2019-08-13 05:18:44 +03:00
Micah Tigley 1ddabaa2d4 Bug 1570308 - make legend understandable to screen readers r=fluent-reviewers,mtigley,flod,MarcoZ
Differential Revision: https://phabricator.services.mozilla.com/D41437

--HG--
extra : moz-landing-system : lando
2019-08-12 20:44:30 +00:00
Steve Fink e1bc970332 Bug 1572065 - Avoid assertion when OOMing with test mark queue, r=jonco
Differential Revision: https://phabricator.services.mozilla.com/D41460

--HG--
extra : moz-landing-system : lando
2019-08-10 07:44:04 +00:00
Steve Fink a1032d4fd8 Bug 1570161 - do not attempt to mark things gray if they cannot be marked gray r=jonco
Differential Revision: https://phabricator.services.mozilla.com/D41468

--HG--
extra : moz-landing-system : lando
2019-08-10 07:48:51 +00:00
Dhyey Thakore 8a60021cf3 Bug 1571780 - Inline previews are sorted column wise, r=davidwalsh
Differential Revision: https://phabricator.services.mozilla.com/D41407

--HG--
extra : moz-landing-system : lando
2019-08-12 14:39:48 +00:00
Tim Nguyen 94906f648b Bug 1571451 - Make about:logins work when restoring with different tab focused. r=MattN
Differential Revision: https://phabricator.services.mozilla.com/D41642

--HG--
extra : moz-landing-system : lando
2019-08-12 21:40:37 +00:00
Mike Hommey a4e51ec9ee Bug 1572381 - Use the same tooltool manifest for webrender as for other tasks using vs2017. r=nalexander
It turns out this task doesn't use cmake or ninja (anymore?).

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

--HG--
extra : moz-landing-system : lando
2019-08-12 16:13:15 +00:00
Omkar Konaraddi 3f798259d8 Bug 1573308 - Close urlbar view after hiding contextual tip r=adw
Differential Revision: https://phabricator.services.mozilla.com/D41649

--HG--
extra : moz-landing-system : lando
2019-08-12 22:20:39 +00:00
James Teh a316be03d1 Bug 1567377: Correct a11y semantics for address bar. r=dao
For accessibility, the address bar is now exposed as a parent combo box which contains the input and the results list.
The combo box role on urlbarView-body-inner is no longer needed and has therefore been removed.
This means screen readers no longer report an extraneous combo box whenever the results list is opened.

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

--HG--
extra : moz-landing-system : lando
2019-08-12 14:06:27 +00:00
Liang-Heng Chen 8b7336bdae Bug 1573109 - use string pref to avoid overflow; r=johannh
Differential Revision: https://phabricator.services.mozilla.com/D41532

--HG--
extra : moz-landing-system : lando
2019-08-12 19:52:02 +00:00
Shane Caraveo 4321e2c746 Bug 1376932 webrequest onHeadersReceived modification test r=robwu
Tests that onHeadersReceived can modify cached headers.

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

--HG--
extra : moz-landing-system : lando
2019-08-12 21:02:22 +00:00
Bastien Orivel 9c386d0de9 Bug 1573039 - Part 2: Revendor dependencies. r=emilio
Differential Revision: https://phabricator.services.mozilla.com/D41489

--HG--
rename : third_party/rust/image/src/hdr/hdr_decoder.rs => third_party/rust/image/src/hdr/decoder.rs
rename : third_party/rust/image/src/hdr/hdr_encoder.rs => third_party/rust/image/src/hdr/encoder.rs
extra : moz-landing-system : lando
2019-08-12 12:39:47 +00:00
Bastien Orivel 4665febab6 Bug 1573039 - Part 1: Update image to 0.22. r=emilio
Differential Revision: https://phabricator.services.mozilla.com/D41488

--HG--
extra : moz-landing-system : lando
2019-08-12 20:22:06 +00:00
Ehsan Akhgari da187aab70 Bug 1560741 - Part 2: Remove the now unneeded PERMISSION_REQUEST_THIRD_PARTY_ORIGIN telemetry probe; r=johannh
Differential Revision: https://phabricator.services.mozilla.com/D41306

--HG--
extra : moz-landing-system : lando
2019-08-12 21:39:05 +00:00
Ehsan Akhgari 64cd489087 Bug 1560741 - Part 1: Disallow notification permission requests from cross-origin iframes; r=johannh
Differential Revision: https://phabricator.services.mozilla.com/D41305

--HG--
extra : moz-landing-system : lando
2019-08-12 21:38:58 +00:00
Emilio Cobos Álvarez 7e441e1dd8 Bug 1573106 - Use shortest serialization for computed text-emphasis-style too. r=boris
Differential Revision: https://phabricator.services.mozilla.com/D41513

--HG--
extra : moz-landing-system : lando
2019-08-12 21:31:52 +00:00
Haik Aftandilian ecc3193420 Bug 1564434 - MT_safe_localtime generates incorrect value in sandboxed content process r=handyman
Allow access to timezone data files from the content/flash/GMP/utility sandbox.

Remove unneeded regex providing access to ^/private/tmp/KSInstallAction\. files.

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

--HG--
extra : moz-landing-system : lando
2019-08-12 21:36:03 +00:00
harry bb7b264fe5 Bug 1551240 - Remove quantumbar handling from tests. r=adw
Differential Revision: https://phabricator.services.mozilla.com/D41623

--HG--
extra : moz-landing-system : lando
2019-08-12 20:51:06 +00:00
Tim Nguyen f8163ec624 Bug 1572547 - Make about:logins notification bar button point to the right page. r=MattN
Differential Revision: https://phabricator.services.mozilla.com/D41644

--HG--
extra : moz-landing-system : lando
2019-08-12 21:35:55 +00:00
Mihai Alexandru Michis e97c3c8e83 Merge mozilla-central to autoland. a=merge CLOSED TREE 2019-08-13 00:58:51 +03:00
Mihai Alexandru Michis 83d134b73c Merge inbound to mozilla-central. a=merge 2019-08-13 00:53:10 +03:00
Brindusan Cristian 29eb45c017 Backed out 2 changesets (bug 1560741) for mochitest failures at test_permission_isHandlingUserInput.xul. CLOSED TREE
Backed out changeset c08aa2078829 (bug 1560741)
Backed out changeset 9dc1d39d2786 (bug 1560741)
2019-08-13 00:23:59 +03:00
Bob Clary 084747dfb5 Bug 1572563 - [mozdevice 3.0.5] - sync file system after modifications, r=jmaher.
Depends on D41570

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

--HG--
extra : moz-landing-system : lando
2019-08-12 19:57:01 +00:00
Cosmin Sabou 5264922d4e Bug 1429950 - Disable test_headless_screenshot.html on linux !e10s. r=Ehsan
Differential Revision: https://phabricator.services.mozilla.com/D41474

--HG--
extra : moz-landing-system : lando
2019-08-12 16:25:11 +00:00
rsbrans 7cc1352f45 Bug 1557222 - Remove AppCacheInsecure deprecated operation r=Ehsan
Differential Revision: https://phabricator.services.mozilla.com/D41462

--HG--
extra : moz-landing-system : lando
2019-08-12 16:26:44 +00:00
Bob Clary 6f8bdebafe Bug 1572563 - [mozdevice 3.0.5] - Continue to use echo adb_returncode=0 hack for emulators regardless of Android version, r=jmaher.
Depends on D41395

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

--HG--
extra : moz-landing-system : lando
2019-08-12 15:38:43 +00:00
Bob Clary a2f6a21c82 Bug 1572563 - [mozdevice 3.0.5] - repeatedly attempt to detect ls through execution to determine which instance is available, r=gbrown,jmaher.
***

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

--HG--
extra : moz-landing-system : lando
2019-08-12 15:32:45 +00:00
Bob Clary 88ded63ad8 Bug 1572563 - [mozdevice 3.0.5] - work around intermittent test path failures on emulators, r=jmaher.
Differential Revision: https://phabricator.services.mozilla.com/D41394

--HG--
extra : moz-landing-system : lando
2019-08-12 20:06:19 +00:00
Mike Conley bffea54155 Bug 1563500 - Avoid accessing bogus reftest gBrowser in SessionStore.onMayChangeProcess. r=nika
Differential Revision: https://phabricator.services.mozilla.com/D40322

--HG--
extra : moz-landing-system : lando
2019-08-12 20:09:21 +00:00
Dylan Roeh 5debf9550f Bug 1573251 - Add missing @returns in ContentBlocking. r=geckoview-reviewers,agi
Differential Revision: https://phabricator.services.mozilla.com/D41628

--HG--
extra : moz-landing-system : lando
2019-08-12 20:04:11 +00:00
Kris Taeleman ca9677ba54 Bug 1573255 - Add a comment to explain the bounds of blobs. r=jrmuizel
Steal Alexis' comment about blob bounds.

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

--HG--
extra : moz-landing-system : lando
2019-08-12 20:10:18 +00:00
Nick Alexander 3ee28a80a5 Bug 1570764 - Include MOZ_SOURCE_* fields in GeckoView POM files. r=agi
Differential Revision: https://phabricator.services.mozilla.com/D40306

--HG--
extra : moz-landing-system : lando
2019-08-12 20:12:08 +00:00
Nihanth Subramanya c895227b77 Bug 1572528 - Update cookies subview test. r=johannh
Differential Revision: https://phabricator.services.mozilla.com/D41568

--HG--
extra : moz-landing-system : lando
2019-08-12 20:09:20 +00:00
Nihanth Subramanya 07a625aea2 Bug 1572528 - [Protections Panel] Update category item subviews. r=johannh
Differential Revision: https://phabricator.services.mozilla.com/D41271

--HG--
extra : moz-landing-system : lando
2019-08-12 20:09:13 +00:00
Ehsan Akhgari 55cafaf74a Bug 1516047 - Apply a very large timeout to browser_blockingMessaging.js to allow it to pass on Windows 10 x64 CCov debug test machines
Differential Revision: https://phabricator.services.mozilla.com/D41627

--HG--
extra : moz-landing-system : lando
2019-08-12 19:54:25 +00:00
Omkar Konaraddi 59721c8468 Bug 1559501 - Implement icon support through setContextualTip r=adw,mixedpuppy
Differential Revision: https://phabricator.services.mozilla.com/D39820

--HG--
extra : moz-landing-system : lando
2019-08-12 19:43:42 +00:00
Ehsan Akhgari 6f54e8e054 Bug 1560741 - Part 2: Remove the now unneeded PERMISSION_REQUEST_THIRD_PARTY_ORIGIN telemetry probe; r=johannh
Differential Revision: https://phabricator.services.mozilla.com/D41306

--HG--
extra : moz-landing-system : lando
2019-08-12 19:34:43 +00:00
Ehsan Akhgari e4baf25054 Bug 1560741 - Part 1: Disallow notification permission requests from cross-origin iframes; r=johannh
Differential Revision: https://phabricator.services.mozilla.com/D41305

--HG--
extra : moz-landing-system : lando
2019-08-12 19:34:35 +00:00
preyunk 22701dce01 Bug 455086 - Set up windows file associations for .SVG. r=mhowell
MANUAL PUSH: This is mhowell manually combining a new contributor's patch stack.

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

--HG--
extra : source : 7219965f391ab9b548ea0e9305ef5acafd2640d5
extra : amend_source : 9a7c03a5e8a7c6a2ec7ca005cda08336846ec977
2019-08-10 14:41:16 -07:00
Justin Wood 8499bb9be6 Bug 1566298 - Block explicit scheduling for the release in balrog on AMO langpack pushing. r=mtabara
This was due to conversation between myself and :ritu as relman over, documented
at https://bugzilla.mozilla.org/show_bug.cgi?id=1566298#c6

Depends on D37832

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

--HG--
extra : moz-landing-system : lando
2019-08-09 18:53:51 +00:00
Justin Wood 936a0f0b4d Bug 1566298 - Add beetmover everywhere for langpacks r=mtabara
Sign language packs via Autograph instead of AMO.

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

--HG--
extra : moz-landing-system : lando
2019-08-09 18:53:51 +00:00
Justin Wood 66ce6749b1 Bug 1566298 - Temporarily disable langpack beetmover. r=mtabara
Sign language packs via Autograph instead of AMO.

This patch's main goal is to help ease diffs between other parts of this set.

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

--HG--
extra : moz-landing-system : lando
2019-08-09 18:53:51 +00:00
Justin Wood b3493133fe Bug 1566298 - Actually sign langpacks via autograph r=mtabara
Sign language packs via Autograph instead of AMO.

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

--HG--
extra : moz-landing-system : lando
2019-08-09 18:53:50 +00:00
Justin Wood fb385bddd2 Bug 1566298 - Rename release-sign-and-push-langpacks to remove references to sign. r=mtabara
Sign language packs via Autograph instead of AMO.

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

--HG--
rename : taskcluster/ci/release-sign-and-push-langpacks/kind.yml => taskcluster/ci/release-push-langpacks/kind.yml
extra : moz-landing-system : lando
2019-08-09 18:53:50 +00:00
Narcis Beleuzu 8df7891fe5 Backed out changeset a432a8f794b4 (bug 1570764) for toolchain bustages on build.gradle . CLOSED TREE 2019-08-12 22:15:22 +03:00
mandy cheang 09055a1aae Bug 1568197 - load JSMs lazily in ActivityStream.jsm and OnboardingMessageProvider.jsm. r=mconley
Differential Revision: https://phabricator.services.mozilla.com/D40461

--HG--
extra : moz-landing-system : lando
2019-08-12 19:03:31 +00:00