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

61954 Коммитов

Автор SHA1 Сообщение Дата
Erica Wright 405307fbc4 Bug 1529659 - Update top-level content blocking description to be more generic. r=flod
Differential Revision: https://phabricator.services.mozilla.com/D27961

--HG--
extra : moz-landing-system : lando
2019-04-18 06:55:15 +00:00
Mike Conley 11ea18a458 Bug 1527925 - Make browser_contextmenu.js work with or without Picture-in-Picture enabled by default. r=jaws
Differential Revision: https://phabricator.services.mozilla.com/D27952

--HG--
extra : moz-landing-system : lando
2019-04-18 03:26:12 +00:00
Mike Conley 4854def475 Bug 1545168 - Picture-in-Picture context menu item should be disabled on broken videos. r=jaws
For videos that break after alreading being in Picture-in-Picture, we keep the toggle enabled so
that the user can exit Picture-in-Picture.

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

--HG--
extra : moz-landing-system : lando
2019-04-18 03:26:14 +00:00
Chris H-C 968f4223d8 Bug 1544911 - Enable the 'prio' ping on Beta r=janerik
Differential Revision: https://phabricator.services.mozilla.com/D27799

--HG--
extra : moz-landing-system : lando
2019-04-17 22:21:01 +00:00
Johann Hofmann 786db8c42d Bug 1536454 - Part 5 - Add tests for permission prompt event telemetry. r=Ehsan
Differential Revision: https://phabricator.services.mozilla.com/D27907

--HG--
extra : moz-landing-system : lando
2019-04-18 13:43:38 +00:00
Johann Hofmann 6407007ebd Bug 1536454 - Part 4 - Add event telemetry for permission prompt studies. r=Ehsan
Differential Revision: https://phabricator.services.mozilla.com/D26945

--HG--
extra : moz-landing-system : lando
2019-04-18 13:43:29 +00:00
Johann Hofmann cdd6d741fd Bug 1536454 - Part 1 - Add userHadInteractedWithDocument and documentDOMContentLoadedTimestamp attributes to nsIContentPermissionPrompt. r=Ehsan
Differential Revision: https://phabricator.services.mozilla.com/D26942

--HG--
extra : moz-landing-system : lando
2019-04-18 13:43:05 +00:00
ffxbld 883df980b7 No Bug, mozilla-central repo-update HSTS HPKP blocklist remote-settings - a=repo-update r=RyanVM
Differential Revision: https://phabricator.services.mozilla.com/D28055

--HG--
extra : moz-landing-system : lando
2019-04-18 13:07:37 +00:00
Dão Gottwald 1d3f5d1c4c Bug 1544682 - Move the bottom border from #navigator-toolbox::after to #navigator-toolbox. r=ntim
Differential Revision: https://phabricator.services.mozilla.com/D27747

--HG--
extra : moz-landing-system : lando
2019-04-18 12:17:53 +00:00
Rob Wu 4a6f84f91d Bug 1544834 - Replace deprecated generics in test code r=evilpie
- `Array.map` becomes `Array.from`
- Array copying via `Array.slice` becomes `Array.from`.
- `Array.forEach` that did not rely on closures becomes `for`-`of` loops.
- Anything else: `Array.X` becomes `Array.prototype.X`.

Complex cases:

dom/bindings/test/TestInterfaceJS.js and
dom/bindings/test/test_exception_options_from_jsimplemented.html
use `Array.indexOf` to generate an error with a specific error message.
Switched to `Array.prototype.forEach` to generate the same error.

js/src/jit-test/tests/basic/exception-column-number.js
In this test `Array.indexOf()` is used to generate an error. Since the
exact message doesn't matter, I switched to `Array.from()`.

Intentionally not changed:

editor/libeditor/tests/browserscope/lib/richtext/richtext/js/range.js
Did not modify because this is 3rd-party code and the code uses
feature detection as a fall back when Array generics are not used.

testing/talos/talos/tests/dromaeo/lib/mootools.js
Did not modify because mootools adds the `Array.slice` method to the
`Array` object.

Not changed because they check the implementation of Array generics:
js/src/jit-test/tests/basic/arrayNatives.js
js/src/jit-test/tests/basic/bug563243.js
js/src/jit-test/tests/basic/bug618853.js
js/src/jit-test/tests/basic/bug830967.js
js/src/jit-test/tests/jaeger/recompile/bug656753.js
js/src/jit-test/tests/self-hosting/alternate-static-and-instance-array-extras.js
js/src/tests/non262/Array/generics.js
js/src/tests/non262/Array/regress-415540.js
js/src/tests/non262/extensions/regress-355497.js
js/src/tests/non262/extensions/typedarray-set-neutering.js

Depends on D27802

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

--HG--
extra : moz-landing-system : lando
2019-04-17 19:03:19 +00:00
Rob Wu 1af4c55c01 Bug 1544834 - Replace non-test uses of deprecated Array generics r=evilpie,dao
- `Array.forEach` becomes for-of loop or `array.forEach`.
- `Array.slice(a)` or `Array.slice(a, 0)` becomes `Array.from(a)`.
- `Array.map` becomes `Array.from`
- `Array` copy + concatenation becomes Array literal + spread syntax.
- All other `Array.X(a, ...)` become `Array.prototype.X.call` or `Array.from(a).X(...)`

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

--HG--
extra : moz-landing-system : lando
2019-04-17 19:03:17 +00:00
Brian Grinstead 381332c51e Bug 1544051 - Part 3 - Scripted change to remove references to AddTask.js r=ahal
This was generated with the script at https://bug1544051.bmoattachments.org/attachment.cgi?id=9058672

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

--HG--
extra : moz-landing-system : lando
2019-04-18 16:51:01 +00:00
Brian Grinstead 7ab932d712 Bug 1544051 - Part 2 - Remove some references to AddTask.js that aren't caught by the script in part 3 r=ahal
Differential Revision: https://phabricator.services.mozilla.com/D27760

--HG--
extra : moz-landing-system : lando
2019-04-18 16:50:39 +00:00
Christian Holler a15a27b2f0 Bug 1544400 - Update fuzzing builds to Clang 8 and use gold. r=froydnj
Differential Revision: https://phabricator.services.mozilla.com/D27701

--HG--
extra : moz-landing-system : lando
2019-04-18 08:28:29 +00:00
Marco Bonardo 9aece3ca7b Bug 1534738 - Title and url in RTL mode are not properly overflowing in Quantum Bar. r=dao
Moves the mask to the url and title elements, uses a flex layout to ensure
elements properly overflow, and fixes alignments and paddings because the new
layout would be more compact. rows are slightly taller than before, but they were
smaller than the legacy bar, so in the end we should be good.

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

--HG--
extra : moz-landing-system : lando
2019-04-18 08:29:18 +00:00
Dorel Luca f5a2c905f4 Backed out 2 changesets (bug 1519502, bug 1528268) for Crashtest failures in toolkit/content/tests/chrome/test_popupincontent.xul. CLOSED TREE
Backed out changeset 904cc7903feb (bug 1519502)
Backed out changeset f8770d7eebd1 (bug 1528268)
2019-04-18 18:26:41 +03:00
Gurzau Raul b2185e6c29 Backed out 4 changesets (bug 1527925, bug 1545168, bug 1539567) for failing at /actions/test_media.html on a CLOSED TREE.
Backed out changeset a55e5c83e32e (bug 1527925)
Backed out changeset 45d19d0692b2 (bug 1539567)
Backed out changeset d418d95454eb (bug 1527925)
Backed out changeset a37009048470 (bug 1545168)
2019-04-18 05:09:03 +03:00
Mike Conley 1f1ede50e0 Bug 1527925 - Make browser_contextmenu.js work with or without Picture-in-Picture enabled by default. r=jaws
Depends on D27951

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

--HG--
extra : moz-landing-system : lando
2019-04-17 20:10:47 +00:00
Mike Conley 34a2267f54 Bug 1545168 - Picture-in-Picture context menu item should be disabled on broken videos. r=jaws
For videos that break after alreading being in Picture-in-Picture, we keep the toggle enabled so
that the user can exit Picture-in-Picture.

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

--HG--
extra : moz-landing-system : lando
2019-04-17 19:25:28 +00:00
Thomas Wisniewski 90ba7f941b Bug 1545081 - Give the about:compat overrides for bug 1177298 unique ids so they can be properly disabled in the UI; r=denschub
Give the about:compat overrides for bug 1177298 unique ids so they can be properly disabled in the UI

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

--HG--
extra : moz-landing-system : lando
2019-04-17 17:03:36 +00:00
Barret Rennie 46fd11fd0d Bug 1536170 - Replace Async.jankYielder r=tcsc,markh,eoger
`Async.jankYielder` is known to, unfortunately, cause jank by creating a lot of
immediately resolved promises that must be then GCed. For a collection of 50
items, it will create 50 promises and 49 of them will immediately resolve.

Instead of `Async.jankYielder`, we now have `Async.yieldState`, which simply
keeps track of whether or not the caller should yield to the event loop. Two
higher level looping constructs are built on top of it:

* `Async.yieldingIterator`, which has been rewritten to not create extraneous
  promises; and
* `Async.yieldingForEach`, which is a replacement for awaiting
  `Async.jankYielder` in a loop. Instead, it accepts the loop body as a
  function.

Each of these can share an instance of an `Async.yieldState`, which allows an
object with multiple loops to yield every N iterations overall, instead of
every N iterations of each loop, which keeps the behaviour of using one
`Async.jankYielders` in multiple places.

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

--HG--
extra : moz-landing-system : lando
2019-04-17 03:00:35 +00:00
Thomas Wisniewski 6b2784ab70 Bug 1541019 - have 'more information' links in about:compat always open in a new tab; r=miketaylr
have 'more information' links in about:compat always open in a new tab

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

--HG--
extra : moz-landing-system : lando
2019-04-17 20:24:12 +00:00
Luke Crouch 241edb5fa9 contextualIdentity: add gray color and fence icon (Bug 1532746); r=jkt,flod
Adds a gray color and fence icon for Containers. This is originally from
Facebook Container: https://addons.mozilla.org/firefox/addon/facebook-container/

User Research showed a strong affinity for the fence icon as an indicator of
the kind of "boundary" protection that Containers provide.
https://docs.google.com/spreadsheets/d/1bnqjcWTV893RESMPJzAXOrDN0juN_Z0-EE93Mvn3Z5g/edit#gid=0

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

--HG--
extra : moz-landing-system : lando
2019-04-17 16:43:30 +00:00
Brian Grinstead d48d388df2 Bug 1519502 - Convert menu bindings to a Custom Element r=surkov
Differential Revision: https://phabricator.services.mozilla.com/D19593

--HG--
extra : moz-landing-system : lando
2019-04-17 15:56:41 +00:00
Brian Grinstead fffaa7e5a8 Bug 1528268 - Make initializeAttributeInheritance and incremental attribute changes do less work r=aswan
This provides a flipped data structure based on the provided inheritedAttributes,
which looks like:

Object<selector, attrs_to_inherit_comma_separated>

To one that looks like:

Object<attr, Array<Array<selector, attr_to_inherit>>

This should improve performance because:

1) We only fetch element at connectedCallback that actually will have attributes inherited.
2) When an attribute changes we can quickly inherit only that one.

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

--HG--
extra : moz-landing-system : lando
2019-04-17 18:48:46 +00:00
Thomas Wisniewski f21778c900 Bug 1541418 - use pointer:fine vs coarse/none to decide whether to show the mobile or desktop UX for about:copmat, rather than min-width media queries; r=denschub
use pointer:fine vs coarse/none to decide whether to show the mobile or desktop UX for about:compat, rather than min-width media queries

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

--HG--
extra : moz-landing-system : lando
2019-04-17 19:09:04 +00:00
Myk Melez d275493272 Bug 1515094 - minimally convert notificationstore to kvstore r=asuth,lina
Differential Revision: https://phabricator.services.mozilla.com/D13568

--HG--
extra : moz-landing-system : lando
2019-04-17 17:30:20 +00:00
Tom Prince 81a3474484 Bug 1536665: Add whats-new-page to balrog blob on beta; r=nthomas
Differential Revision: https://phabricator.services.mozilla.com/D27577

--HG--
extra : moz-landing-system : lando
2019-04-17 11:49:32 +00:00
Mark Banner 0cd1778285 Bug 1545124 - Disable add-on manager logging for some tests. r=aswan
Differential Revision: https://phabricator.services.mozilla.com/D27917

--HG--
extra : moz-landing-system : lando
2019-04-17 15:48:07 +00:00
Drew Willcoxon 607920f718 Bug 1524550 - Remove UrlbarQueryContext's lastKey property. r=mak
This assumes that the current direction in bug 1522278 is the one we want, which it's looking like it is.

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

--HG--
extra : moz-landing-system : lando
2019-04-17 15:19:23 +00:00
Drew Willcoxon 1bc115e695 Bug 1522278 - Use nsIEditActionListener to detect when the user deletes autofilled substrings. r=mak
Differential Revision: https://phabricator.services.mozilla.com/D27637

--HG--
extra : moz-landing-system : lando
2019-04-17 15:19:23 +00:00
Erica Wright fff8471d84 Bug 1544746 - Cookies label in Strict mode now reflects the state of cookie behavior. r=johannh
Differential Revision: https://phabricator.services.mozilla.com/D27733

--HG--
extra : moz-landing-system : lando
2019-04-16 21:21:39 +00:00
Erica Wright d302c30583 Bug 1545074 - Future-proof the strict category expectations. r=johannh
Differential Revision: https://phabricator.services.mozilla.com/D27906

--HG--
extra : moz-landing-system : lando
2019-04-17 16:39:31 +00:00
Eugen Sawin 2b31482114 Bug 1501108 - [4.0] Add empty origin attribute values to fix desktop tests. r=baku
Differential Revision: https://phabricator.services.mozilla.com/D27811

--HG--
extra : moz-landing-system : lando
2019-04-17 13:03:47 +00:00
Tim Nguyen 8007739b0a Bug 1544114 - Make about:policies integrate better with dark mode support. r=dao
Differential Revision: https://phabricator.services.mozilla.com/D27741

--HG--
extra : moz-landing-system : lando
2019-04-17 09:18:15 +00:00
Tim Nguyen 0987d5d4e2 Bug 1544887 - Fix some in-content page icon colors in dark mode. r=dao
Differential Revision: https://phabricator.services.mozilla.com/D27774

--HG--
extra : moz-landing-system : lando
2019-04-17 09:19:35 +00:00
Syeda Asra Arshia Qadri aaa3bfa63b Bug 1477875: _getErrorMessageFromCode in NetErrorContent.jsm doesn't handle e.g. NSPR errors well. r=johannh
Differential Revision: https://phabricator.services.mozilla.com/D27331

--HG--
extra : moz-landing-system : lando
2019-04-16 20:40:27 +00:00
Mike Hommey 1cdf383210 Bug 1543956 - Use a fixed mozconfig for linux64-aarch64 builds. r=mshal
Differential Revision: https://phabricator.services.mozilla.com/D27631

--HG--
rename : browser/config/mozconfigs/linux64-aarch64/nightly => browser/config/mozconfigs/linux64-aarch64/opt
extra : moz-landing-system : lando
2019-04-17 05:33:24 +00:00
Nika Layzell 50a5699074 Bug 1539163 - Part 2: Support changing the process of subframes, r=qdot
When a remote type mismatch is found for a subframe, this patch checks if
fission is enabled for that window. If it is, it triggers a process switch,
continuing the load in a new process.

With this patch, subframes will only change process when navigating to a HTML
subframe, and not when navigating to a non-HTML subframe. That will be fixed in
a follow-up. This patch also does not change the remote type selection logic,
so only very limited types of remote iframes are supported.

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

--HG--
extra : moz-landing-system : lando
2019-04-17 00:53:32 +00:00
Nika Layzell f7ae25cb52 Bug 1542791 - Part 2: Add a [F] marker to fission-enabled tabs, r=mconley
This should make it easier to tell whether a particular window is
fission-enabled as testing with fission enabled improves.

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

--HG--
extra : moz-landing-system : lando
2019-04-17 00:53:30 +00:00
Nika Layzell 40f96bcf80 Bug 1542791 - Part 1: Support enabling out-of-process iframes with per-frame granularity, r=mconley
This code builds on top of the E10S "remote tabs" configuration system to add a
system for specifying that remote subframes should be used. Fission can be
enabled for a window by including the "fission" flag in options when opening
the window.

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

--HG--
extra : moz-landing-system : lando
2019-04-17 00:53:22 +00:00
Mike de Boer 5d842c0354 Bug 1518545 - Remove the superfluous 'engine-current' Search Service observer topic in favour of 'engine-default'. r=daleharvey
Differential Revision: https://phabricator.services.mozilla.com/D27857

--HG--
rename : toolkit/components/places/tests/unifiedcomplete/test_search_engine_current.js => toolkit/components/places/tests/unifiedcomplete/test_search_engine_default.js
extra : moz-landing-system : lando
2019-04-17 09:45:24 +00:00
Tim Nguyen 96166afa3b Bug 1544904 - Fix privacy section colors in dark mode. r=johannh
Differential Revision: https://phabricator.services.mozilla.com/D27853

--HG--
extra : moz-landing-system : lando
2019-04-17 07:57:24 +00:00
Tim Nguyen 6858302e06 Bug 1545029 - Flip 'browser.in-content.dark-mode' on by default in Nightly builds. r=dao
Differential Revision: https://phabricator.services.mozilla.com/D27862

--HG--
extra : moz-landing-system : lando
2019-04-17 09:03:32 +00:00
Brindusan Cristian 19b5d2e16c Merge mozilla-central to autoland. a=merge CLOSED TREE 2019-04-17 12:49:37 +03:00
Brindusan Cristian c6ac17dea1 Merge autoland to mozilla-central. a=merge 2019-04-17 12:35:29 +03:00
Noemi Erli e88fd5b7cc Merge autoland to mozilla-central. a=merge 2019-04-17 01:01:20 +03:00
Dale Harvey ec391f3454 Bug 1544077 - Remove unused recordSearchURLTelemetry idl definition. r=Standard8
Differential Revision: https://phabricator.services.mozilla.com/D27725

--HG--
extra : moz-landing-system : lando
2019-04-16 15:50:50 +00:00
Andreea Pavel 01c6764830 Merge autoland to mozilla-central. a=merge 2019-04-16 18:42:17 +03:00
Andreea Pavel 44093e9402 Backed out changeset 252732b54408 (bug 1544562) for causing bug 1544625 a=backout 2019-04-16 18:40:50 +03:00