Commit Graph

679090 Commits

Author SHA1 Message Date
John Dai
de2c2a249a Bug 1552313 - Implement element.attachInternals; r=smaug,edgar
ElementInternals class is empty-for-now.

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

--HG--
extra : moz-landing-system : lando
2019-11-12 11:27:55 +00:00
John Dai
790ed5a490 Bug 1552313 - Implement disableShadow; r=smaug,edgar
Differential Revision: https://phabricator.services.mozilla.com/D52157

--HG--
extra : moz-landing-system : lando
2019-11-12 11:27:52 +00:00
John Dai
128e81de25 Bug 1552313 - Implement custom element disabledFeatures and disableInternals; r=smaug,edgar
- Introduce `dom.webcomponents.elementInternals.enabled` for custom element's elementInternals.
- Implement disabledFeatures static field and disableInternals.
- Refactor get observedAttributes sequence.

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

--HG--
extra : moz-landing-system : lando
2019-11-12 11:27:45 +00:00
Andreas Pehrson
e8e03f5a05 Bug 1594466 - Don't rewrite mimeType if fully defined. r=bryce
Prior to this patch the mimetype was rewritten per the printf format
"%s; codecs=%s" also when codecs were defined in the constrained mime type.

The latter '%s' would be the codecs string from the mime type parser, which
would have dropped any quotation marks surrounding the string.
Hence 'codecs="vp8, opus"' would be considered supported (quotation marks
included), but when selecting mime type in start(), it would be rewritten
with quotation marks dropped. Thus looking like 'codecs=vp8,' which is not
supported.

This patch removes the rewrite step when the mime type is fully defined with
codecs, so that the quotation marks are left in place as given to the
constructor.

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

--HG--
extra : moz-landing-system : lando
2019-11-12 10:30:16 +00:00
Andreas Pehrson
f866cb76ac Bug 1594466 - Add crashtest. r=bryce
Differential Revision: https://phabricator.services.mozilla.com/D52519

--HG--
extra : moz-landing-system : lando
2019-11-12 10:30:03 +00:00
J.C. Jones
3167ebf65d Bug 1592007 - land NSS dc9552c2aa77 UPGRADE_NSS_RELEASE, r=kjacobs
2019-11-04  Marcus Burghardt  <mburghardt@mozilla.com>

	* lib/pk11wrap/pk11cert.c:
	Bug 1590495 - Crash in PK11_MakeCertFromHandle->pk11_fastCert. r=jcj

	Fixed controls to avoid crashes caused by slots possibly without a
	token in pk11_fastCert. Also, improved arguments controls in
	PK11_MakeCertFromHandle.

	[dc9552c2aa77] [tip]

2019-11-01  Franziskus Kiefer  <franziskuskiefer@gmail.com>

	* gtests/pk11_gtest/manifest.mn,
	gtests/pk11_gtest/pk11_des_unittest.cc,
	gtests/pk11_gtest/pk11_gtest.gyp, lib/softoken/pkcs11c.c:
	Bug 1591742 - check des iv length and add test for it, r=jcj,kjacobs

	Summary: Let's make sure the DES IV has the length we expect it to
	have.

	Bug #: 1591742

	[35857ae98190]

2019-11-01  Dana Keeler  <dkeeler@mozilla.com>

	* gtests/mozpkix_gtest/pkixcheck_CheckKeyUsage_tests.cpp, lib/mozpkix
	/test-lib/pkixtestnss.cpp, tests/gtests/gtests.sh:
	Bug 1588567 - enable mozilla::pkix gtests in NSS r=jcj

	[27a29997f598]

2019-11-01  Deian Stefan  <deian@cs.ucsd.edu>

	* lib/softoken/pkcs11c.c:
	Bug 1591315 - Update NSC_Decrypt length in constant time r=kjacobs

	Update NSC_Decrypt length in constant time

	[7f578a829b29]

2019-11-01  Kai Engert  <kaie@kuix.de>

	* automation/taskcluster/graph/src/queue.js:
	Bug 1562671 - Limit Master Password KDF iterations for NSS
	continuous integration tests. r=mt
	[c8b490583b86]

	* lib/softoken/lgglue.c, lib/softoken/sftkdb.c, lib/softoken/sftkdb.h,
	lib/softoken/sftkdbti.h, lib/softoken/sftkpwd.c:
	Bug 1562671 - Add environment variables to control Master Password
	KDF iteration count. Disable iteration count for legacy DBM storage
	by default. r=rrelyea
	[ced91a705aa3]

2019-11-01  Bob Relyea  <rrelyea@redhat.com>

	* lib/softoken/legacydb/keydb.c, lib/softoken/lgglue.c,
	lib/softoken/pkcs11.c, lib/softoken/sftkdb.c, lib/softoken/sftkdb.h,
	lib/softoken/sftkdbti.h, lib/softoken/sftkpwd.c:
	Bug 1562671 - Support higher iteration count for Master Password
	KDF. Bob Relyea's base patch. Requires the follow-up patch. r=kaie
	[6619bb43d746]

2019-10-28  Martin Thomson  <mt@lowentropy.net>

	* coreconf/Linux.mk, coreconf/WIN32.mk, coreconf/command.mk,
	coreconf/config.gypi, coreconf/rules.mk, lib/freebl/aes-armv8.c,
	lib/freebl/aes-x86.c, lib/freebl/config.mk, lib/freebl/freebl.gyp,
	lib/freebl/intel-aes.h, lib/freebl/intel-gcm-wrap.c,
	lib/freebl/rijndael.c, lib/freebl/rijndael.h, lib/ssl/config.mk,
	lib/ssl/ssl.gyp:
	Bug 1590972 - Use -std=c99 for all C code, r=jcj

	This switches to using -std=c99 for compiling all C code.
	Previously, we only enabled this option for lib/freebl and lib/ssl.

	For Linux, this means we need to define _DEFAULT_SOURCE to access
	some of the functions we use. On glibc 2.12 (our oldest supported
	version), we also need to define _BSD_SOURCE to access these
	functions.

	The only tricky part is dealing with partial C99 implementation in
	gcc 4.4. From what I've seen, the only problem is that - in that
	mode - it doesn't support nesting of unnamed fields:
	https://gcc.gnu.org/onlinedocs/gcc-4.4.7/gcc/Unnamed-Fields.html

	This also switches from -std=c++0x to -std=c++11 as the 0x variant,
	though identical in meaning, is deprecated.

	[dbba7db4b79d]

2019-10-30  Giulio Benetti  <giulio.benetti@benettiengineering.com>

	* lib/freebl/aes-armv8.c, lib/freebl/rijndael.c:
	Bug 1590676 - Fix build if arm doesn't support NEON r=kjacobs

	At the moment NSS assumes that ARM supports NEON extension but this
	is not true and leads to build failure on ARM without NEON
	extension. Add check to assure USE_HW_AES is not defined if ARM
	without NEON extension is used.
	[58f2471ace3b]

2019-10-30  Martin Thomson  <mt@lowentropy.net>

	* gtests/ssl_gtest/tls_agent.cc:
	Bug 1575411 - Disable EMS for tests, a=bustage
	[6e5f69781137]

2019-10-29  J.C. Jones  <jjones@mozilla.com>

	* gtests/ssl_gtest/tls_esni_unittest.cc:
	Bug 1590970 - Fix clang-format from
	e7956ee3ba1b6d05e3175bbcd795583fde867720 r=me
	[d1e43cb9f227]

2019-10-29  Giulio Benetti  <giulio.benetti@benettiengineering.com>

	* lib/ssl/tls13esni.c:
	Bug 1590678 - Remove -Wmaybe-uninitialized warning in tls13esni.c
	r=jcj
	[df5e9021809a]

2019-10-29  Martin Thomson  <martin.thomson@gmail.com>

	* lib/ssl/ssl.h, lib/ssl/sslsock.c:
	Bug 1575411 - Enable extended master secret by default,
	r=jcj,kjacobs

	See the bug for discussion about the implications of this.

	[d1c68498610d]

2019-10-29  Martin Thomson  <mt@lowentropy.net>

	* gtests/ssl_gtest/tls_esni_unittest.cc, lib/ssl/sslexp.h:
	Bug 1590970 - Stop using time() for ESNI tests, r=kjacobs

	Summary: The ESNI tests were using time() rather than PR_Now(), so
	they slipped the net when I went looking for bad time functions. Now
	they do the right thing again.

	What we were probably seeing in the intermittents was the case where
	we set the time for most of the SSL functions to PR_Now(), and that
	was just before a second rollover. Then, when time() was called, it
	returned t+1 so the ESNI keys that were being generated in the ESNI
	tests were given a notBefore time that was in the future relative to
	the time being given to the TLS stack. Had the ESNI keys generation
	been given time() - 1 for notBefore, as I have done here, this would
	never have turned up.

	Reviewers: kjacobs

	Tags: #secure-revision

	Bug #: 1590970

	[e7956ee3ba1b]

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

--HG--
extra : moz-landing-system : lando
2019-11-08 22:00:40 +00:00
J.C. Jones
cbfe5fd32a Bug 1594559 - Set env var NSS_MAX_MP_PBE_ITERATION_COUNT for tests r=jmaher
Differential Revision: https://phabricator.services.mozilla.com/D52212

--HG--
extra : moz-landing-system : lando
2019-11-12 15:40:24 +00:00
Andreea Pavel
cc7af15029 Backed out changeset 38f7b7e307b3 (bug 1594438) for causing high load on linux and windows hardware test machines on a CLOSED TREE 2019-11-12 17:00:27 +02:00
Sylvestre Ledru
d932e6b836 Bug 1562642 - add missing license in taskcluster r=dustin
Depends on D52579

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

--HG--
extra : moz-landing-system : lando
2019-11-11 22:16:37 +00:00
Sylvestre Ledru
d2eabf8906 Bug 1562642 - add missing license in xpcom/ r=froydnj
Differential Revision: https://phabricator.services.mozilla.com/D52579

--HG--
extra : moz-landing-system : lando
2019-11-11 21:44:32 +00:00
Dragana Damjanovic
ca29276ed9 Bug 1595271 - Display Http3 in about:networking. r=valentin,fluent-reviewers,flod,smaug
Differential Revision: https://phabricator.services.mozilla.com/D52529

--HG--
extra : moz-landing-system : lando
2019-11-12 08:27:38 +00:00
Thomas Nguyen
17a6860942 Bug 1591113 - Remove support for third-party vibrate r=baku,snorp
Differential Revision: https://phabricator.services.mozilla.com/D52531

--HG--
extra : moz-landing-system : lando
2019-11-12 08:42:02 +00:00
Sebastian Streich
4829a03b44 Bug 1595541 - enable test_same_site_cookies_laxByDefault with fission r=ckerschb
Differential Revision: https://phabricator.services.mozilla.com/D52552

--HG--
extra : moz-landing-system : lando
2019-11-12 07:50:25 +00:00
Tom Tung
1479bb0a2c Bug 1592204 - P2 - Ignore the unknown files in repositories; r=janv
Differential Revision: https://phabricator.services.mozilla.com/D51872

--HG--
extra : moz-landing-system : lando
2019-11-12 07:52:14 +00:00
Tom Tung
b98464a5ca Bug 1592204 - P1 - Ignore the unknown files in origin directories; r=asuth,janv
Differential Revision: https://phabricator.services.mozilla.com/D51669

--HG--
extra : moz-landing-system : lando
2019-11-11 13:50:03 +00:00
Landry Breuil
7b56d0cc5b Bug 1587116 - only include sys/auxv.h on platforms where it might exist r=glandium
Differential Revision: https://phabricator.services.mozilla.com/D51803

--HG--
extra : moz-landing-system : lando
2019-11-12 07:10:12 +00:00
Oana Pop Rus
c089620aaf Backed out 2 changesets (bug 1593736) for Spidermonkey failure in Simulator-arm.cpp
Backed out changeset 6f894c71dabe (bug 1593736)
Backed out changeset 4d1dc9dc93be (bug 1593736)
2019-11-12 07:36:15 +02:00
Ryan Hunt
cb659e4406 Bug 1593736 - Rename ArgType_Double to ArgType_Float64. r=lth
Also shuffle constants and add a comment for clarity.

Depends on D52177

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

--HG--
extra : moz-landing-system : lando
2019-11-08 08:26:45 +00:00
Ryan Hunt
e09e8f5c82 Bug 1593736 - Give ArgType_General pointer semantics in Wasm builtin code. r=lth
After examining bug 1591047, I believe we should have added an Int32 type instead of changing the semantics of ArgType_General to be Int32. The reason is that the existing code assumes ArgType_General is pointer sized, and changing this is scary for all the existing uses. (e.g. simulator, MacroAssembler::appendSignatureType)

* Adds ArgType_Int32
* Changes ArgType_General -> ArgType_Int32, ArgType_Pointer -> ArgType_General for ABIFunctionTypes introduced in bug 1591047 (which are only used for Wasm instance calls).
* ToMirType(ArgType_General) -> MIRType::Pointer (should only affect wasm)
* ToMirType(ArgType_Int32) -> MIRType::Int32 (should only affect wasm)

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

--HG--
extra : moz-landing-system : lando
2019-11-08 08:37:20 +00:00
Doug Thayer
c36e1fb750 Bug 1565902 - Test the impact of removing startup dll readahead r=glandium
We haven't tested this in recent times, and it would be good to understand
what the impact is looking at telemetry measures of startup in Nightly.
This doesn't rip out everything, but we will need to do that if we
determine that the readahead has a neutral / negative effect.

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

--HG--
extra : moz-landing-system : lando
2019-11-12 04:00:00 +00:00
Drew Willcoxon
477a15204a Bug 1568595 - [Nudges] Implement an experiment API to check whether a notification is being displayed in Firefox r=mak,mixedpuppy
This sets up a `browser.experiments.urlbar` WebExtension Experiment API and adds a function called `isBrowserShowingNotification`. To recap, for the nudges experiment, we want to open the urlbar view automatically in some cases to show a nudge, but only if the browser isn't already showing a notification.

There are a few things to point out about this patch.

What counts as a notification is a little fuzzy. I chose: the tracking protection doorhanger, site identity doorhanger, app menu notifications, notification box (info bar), page action panels, and toolbar button panels. The last two aren't really notifications, but they're panels similar to doorhanger notifications. I also count the urlbar view as a notification since we don't want to show a nudge if the urlbar view is already open. I didn't bother with tab-modal dialogs since none of the pages we want to show nudges on will have them. I didn't bother with app-modal dialogs since the user can't interact with the browser until they're dismissed.

I chose `browser.experiments.urlbar` as the namespace, which we previously used in the top-sites experiment. There was also discussion of `browser.experiments.app` (bug 1579933), but I think we should keep all our urlbar experiment-related APIs in a urlbar namespace even when they aren't actually related to the urlbar. It's not a big deal though.

Shane recommends that we land tests for our experiment APIs in mozilla-central even though they won't ship in mozilla-central, at least for APIs that will be used in more than one version of Firefox. I think that's also a good idea for APIs we reuse in multiple experiments. It may not be necessary in this case since I'm not sure how broadly useful this notification API is, so I'm open to removing it and keeping it only in the experiment's GitHub repo. But I found that this was actually a nice way to develop and test this patch. Also, if we keep our experiment APIs in mozilla-central this way, we may not need a separate GitHub repo for them, or at most it'll just be a copy of this browser/components/urlbar/tests/ext directory.

As mentioned, I made a new ext tests directory. I think we should keep these files separate from the normal tests.

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

--HG--
extra : moz-landing-system : lando
2019-11-12 02:55:15 +00:00
Boris Chiou
746b9cb867 Bug 1594949 - Fix assertion of gfx::Path when changing offset-path on some svg frames. r=heycam
1. Use Nothing() for motion path in IncrementScaleResytleCountIfNeeded.
   Since motion path only produces 2d translate and 2d rotate, so it
   shouldn't have any impact on BaseMatrix::ScaleFactors(). We use
   Nothing() to avoid any redundant calculation.
2. Drop SVGTextFrame::DidSetComputedStyle() because
   nsFrame::DidSetComputedStyle() should have handled
   ScheduleReflowSVGNonDisplayText well.
3. Let nsSVGForeignObjectFrame::DidSetComputedStyle() call
   their parents' DidSetComputedStyle. This makes sure we update the frame
   properly.

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

--HG--
extra : moz-landing-system : lando
2019-11-11 23:31:23 +00:00
Matt Woodrow
fea5e94ae8 Bug 1589270 - Part 3: Convert nsExternalHelperApp to use BrowsingContext instead of nsIInterfaceRequestor. r=bzbarsky
This also converts MaybeCloseWindowHelper, and results in the window close operations being always run in the parent (even without DocumentChannel).

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

--HG--
extra : moz-landing-system : lando
2019-11-08 04:35:05 +00:00
Matt Woodrow
aa0bf8a233 Bug 1589270 - Part 2: Remove support for handling the Refresh header while processing a download. r=bzbarsky
Differential Revision: https://phabricator.services.mozilla.com/D49527

--HG--
extra : moz-landing-system : lando
2019-11-08 03:01:03 +00:00
Matt Woodrow
3f876da3c7 Bug 1589270 - Part 1: Allow passing a specific status when disconnecting the child side, but only pass it to nsDocumentOpenInfo, not the load group. r=bzbarsky
Differential Revision: https://phabricator.services.mozilla.com/D49526

--HG--
extra : moz-landing-system : lando
2019-11-11 21:02:46 +00:00
Rob Lemley
ea5ca4b650 Bug 1593891 - Allow running periodic-updates that do not trigger a build. r=sfraser
When these land for Thunderbird, I set the keyword to prevent a build manually.
periodic_file_updates.sh supports that with "-d", but the runme.sh wrapper
does not have a mechanism to set it.
This patch follows the environment variable precedent used for the other
script parameters.

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

--HG--
extra : moz-landing-system : lando
2019-11-07 09:39:30 +00:00
Matthew Noorenberghe
c627121b9c Bug 1595339 - Don't fill/autocomplete checking account type=password fields on www.dmv.ca.gov. r=sfoster
I confirmed that `element.matches("#bankRoutingNo, #validateBankRoutingNo, #bankAcctNo, #validateBankAcctNo")` is true for each of the inputs in the test page.

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

--HG--
extra : moz-landing-system : lando
2019-11-12 00:31:57 +00:00
Oana Pop Rus
8719db1dde Backed out 2 changesets (bug 1591925) for reftest failures on flexbox-min-bsize-keywords-vert-1.html
Backed out changeset eb9d579fe07c (bug 1591925)
Backed out changeset 7d0f795c10a4 (bug 1591925)
2019-11-12 02:33:57 +02:00
Kris Maglione
683ac9e167 Bug 1595597: Part 2 - Make test_postMessage_override Fission-compatible. r=mccr8
Differential Revision: https://phabricator.services.mozilla.com/D52572

--HG--
extra : moz-landing-system : lando
2019-11-11 23:21:00 +00:00
Kris Maglione
a6a6b903d0 Bug 1595597: Part 1 - Make test_postMessage_origin Fission-compatible. r=mccr8
This test currently relies on the assumption that cross-origin postMessage
operations complete in one spin of the event loop, which is not a valid
assumption under Fission. This patch updates it to perform a second
postMessage round-trip after sending the test message to ensure that the first
round trip has had time to complete.

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

--HG--
extra : moz-landing-system : lando
2019-11-11 23:20:53 +00:00
alaskanemily
3b0c4a1869 Bug 1591925 - Add reftests for select elements in zero-height flex containers r=dholbert
Differential Revision: https://phabricator.services.mozilla.com/D52402

--HG--
extra : moz-landing-system : lando
2019-11-11 22:48:39 +00:00
alaskanemily
847cb4d965 Bug 1591925 - When resolving min-size:auto on the main axis of flex items, treat overflow:-moz-hidden-unscrollable the same as overflow:visible. r=dholbert
Differential Revision: https://phabricator.services.mozilla.com/D52401

--HG--
extra : moz-landing-system : lando
2019-11-11 22:48:31 +00:00
Jonathan Kew
e84b2037c0 Bug 1595617 - Remove 'virtual' from a couple of gfxFontEntry methods that don't need to be overridden. r=lsalzman
Differential Revision: https://phabricator.services.mozilla.com/D52587

--HG--
extra : moz-landing-system : lando
2019-11-11 21:39:45 +00:00
Jeff Walden
33e593f012 Bug 1594640 - Implement a new jit/FlushICache.h header, delegating to architecture-specific headers, to expose js::jit::FlushICache in a single location. r=jandem
Differential Revision: https://phabricator.services.mozilla.com/D52122

--HG--
extra : moz-landing-system : lando
2019-11-11 22:10:22 +00:00
Jan-Ivar Bruaroey
94286593e7 Bug 1586057 - Avoid stepping on docShells of unrelated docs in MediaManager device stopping code. r=bzbarsky,pehrsons
Differential Revision: https://phabricator.services.mozilla.com/D52427

--HG--
extra : moz-landing-system : lando
2019-11-11 21:56:15 +00:00
Jon Coppeard
b439b62977 Bug 1595500 - Create reftest sandboxes on demand since they are often not required r=jmaher
Differential Revision: https://phabricator.services.mozilla.com/D52543

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

--HG--
extra : moz-landing-system : lando
2019-11-11 10:37:53 +00:00
iantonga
436f2a7aa5 Bug 1592623 - Removed an useless namespace alias r=sylvestre
Differential Revision: https://phabricator.services.mozilla.com/D52490

--HG--
extra : moz-landing-system : lando
2019-11-11 21:33:40 +00:00
André Bargull
f00e7769c3 Bug 1595533 - Part 2: Use JSOP_UNPICK for inc/dec in PropOpEmitter.cpp. r=arai
Depends on D52549

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

--HG--
extra : moz-landing-system : lando
2019-11-11 20:32:11 +00:00
André Bargull
366e47a9f9 Bug 1595533 - Part 1: Replace JSOP_PICK sequence in ElemOpEmitter with a single JSOP_UNPICK. r=arai
Differential Revision: https://phabricator.services.mozilla.com/D52549

--HG--
extra : moz-landing-system : lando
2019-11-11 16:53:33 +00:00
Brendan Dahl
4c40b6b72a Bug 1595252 - Add look and feel defines for headless gtk. r=smaug
Default values taken from my Ubuntu desktop.

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

--HG--
extra : moz-landing-system : lando
2019-11-11 11:04:31 +00:00
Valentin Gosu
d1ae9bf1e6 Bug 1567346 - Prevent stack overflow in TRRService::IsTRRBlacklisted r=JuniorHsu
Differential Revision: https://phabricator.services.mozilla.com/D50248

--HG--
extra : moz-landing-system : lando
2019-11-11 21:11:18 +00:00
Dorel Luca
9afadd1cdd Backed out changeset 6384318223b4 (bug 1588218) for Linting failure on mobile/android/geckoview/src/main/java/org/mozilla/gecko/GeckoAppShell.java. CLOSED TREE 2019-11-11 23:16:27 +02:00
Valentin Gosu
f4d8a78639 Bug 1588218 - Expose DNS suffix list (Android) r=michal,snorp
Differential Revision: https://phabricator.services.mozilla.com/D51561

--HG--
extra : moz-landing-system : lando
2019-11-11 20:51:42 +00:00
Karl Tomlinson
142c229418 bug 1590965 clear GtkClipboard on nsIClipboard::EmptyClipboard r=stransky
This notifies GTK that the data is no longer available for clipboard_get_cb(),
so that GTK will no longer advertise nor attempt to store the data.

The clipboard is not cleared immediately before it is set in case that might
trigger a system clipboard manager to take ownership of the selection, which
could lead to gtk_clipboard_set_with_data() failing to take ownership back due
to an older timestamp.

This also fixes a GtkTargetList leak.

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

--HG--
extra : moz-landing-system : lando
2019-11-11 11:24:56 +00:00
Junior Hsu
4c5a1fa1cb Bug 1595284 - enable document channel for response process selection, r=valentin
Differential Revision: https://phabricator.services.mozilla.com/D52569

--HG--
extra : moz-landing-system : lando
2019-11-11 20:26:39 +00:00
Dorel Luca
036252f803 Backed out changeset 0c672cce8019 (bug 1594035) for Browser-chrome failures in browser/components/tests/browser/browser_urlbar_matchBuckets_migration60.js. CLOSED TREE 2019-11-11 22:34:24 +02:00
Byron Campen [:bwc]
17a768072b Bug 1592993: Remove this crash expectation. r=jib
Differential Revision: https://phabricator.services.mozilla.com/D52246

--HG--
extra : moz-landing-system : lando
2019-11-08 23:42:26 +00:00
Byron Campen [:bwc]
9ca86a07ce Bug 1588588: Make this compile when webrtc is disabled. r=ng
Differential Revision: https://phabricator.services.mozilla.com/D50245

--HG--
extra : moz-landing-system : lando
2019-11-08 03:32:33 +00:00
Byron Campen [:bwc]
dfcceee2ab Bug 1588588: Stop expecting this ChromeOnly member to be (erroneously!) exposed to JS. r=jib
Differential Revision: https://phabricator.services.mozilla.com/D50114

--HG--
extra : moz-landing-system : lando
2019-11-07 23:07:18 +00:00