- 14 Sep, 2020 1 commit
-
-
Magnus Melin authored
Differential Revision: https://phabricator.services.mozilla.com/D90082
-
- 03 Nov, 2020 1 commit
-
-
Ryan VanderMeulen authored
-
- 30 Oct, 2020 2 commits
-
-
Henri Sivonen authored
Differential Revision: https://phabricator.services.mozilla.com/D94974
-
valenting authored
Differential Revision: https://phabricator.services.mozilla.com/D91117
-
- 21 Oct, 2020 1 commit
-
-
Michael Kaply authored
Differential Revision: https://phabricator.services.mozilla.com/D94340
-
- 06 Oct, 2020 2 commits
-
-
Kershaw Chang authored
The root cause in this bug is that the connection info used by `SpdyConnectTransaction` is the same instance as the connection info in `nsHttpTransaction`, so we should clone it and let `SpdyConnectTransaction` use the cloned one. Differential Revision: https://phabricator.services.mozilla.com/D89801
-
Lee Salzman authored
Differential Revision: https://phabricator.services.mozilla.com/D92476
-
- 28 Sep, 2020 1 commit
-
-
Toshihito Kikuchi authored
Our telemetry data showed `WinUtils::GetNSWindowPtr` returned nullptr when constructing `TaskbarTabPreview`. We can't find a way to make such a situation, but these crashes tell us we should not assume `GetNSWindowPtr` always returns a valid pointer. A proposed fix is to change the return value of `GetWindowHook()` from a reference to a pointer so that the caller can decide what to do when nullptr is returned. Differential Revision: https://phabricator.services.mozilla.com/D91471
-
- 02 Nov, 2020 1 commit
-
-
ffxbld authored
Differential Revision: https://phabricator.services.mozilla.com/D95519
-
- 27 Oct, 2020 2 commits
-
-
Byron Campen [:bwc] authored
Differential Revision: https://phabricator.services.mozilla.com/D94156
-
Byron Campen [:bwc] authored
Bug 1657739: Only init WebRtcAec callbacks once, and ensure that they are initted before WebRtcAec_CreateAec returns. r=padenot, a=tjr Differential Revision: https://phabricator.services.mozilla.com/D94155
-
- 16 Jul, 2020 1 commit
-
-
Sebastian Streich authored
Differential Revision: https://phabricator.services.mozilla.com/D83533
-
- 24 Oct, 2020 1 commit
-
-
Steve Fink authored
Differential Revision: https://phabricator.services.mozilla.com/D91663
-
- 23 Oct, 2020 4 commits
-
-
Markus Stange authored
This matches the native appearance more closely. Differential Revision: https://phabricator.services.mozilla.com/D94610
-
Henri Sivonen authored
Differential Revision: https://phabricator.services.mozilla.com/D93482
-
Henri Sivonen authored
Differential Revision: https://phabricator.services.mozilla.com/D93478
-
Henri Sivonen authored
Bug 1666300 part 1 - Remove attributes from descendants when setting sanitized style. r=smaug, a=tjr Differential Revision: https://phabricator.services.mozilla.com/D93215
-
- 16 Sep, 2020 1 commit
-
-
Justin Wood authored
Differential Revision: https://phabricator.services.mozilla.com/D73498
-
- 17 Oct, 2020 2 commits
-
-
Haik Aftandilian authored
For Big Sur toolbar search fields, don't return YES from _isToolbarMode(). And adjust the search field border for better spacing after the search icon. Differential Revision: https://phabricator.services.mozilla.com/D93705
-
Haik Aftandilian authored
Draw toolbar button segment backgrounds manually on Big Sur to workaround a problem where they are filled with the toolbar gradient. Differential Revision: https://phabricator.services.mozilla.com/D93578
-
- 08 Oct, 2020 1 commit
-
-
Simon Giesecke authored
Bug 1653276 - Ensure that IndexedDB operations are cancelled when nsGlobalWindowInner::FreeInnerObjects is called. r=#dom-workers-and-storage-reviewers,janv, a=jcristau Uplifted patch to esr78. Differential Revision: https://phabricator.services.mozilla.com/D94816
-
- 29 Oct, 2020 1 commit
-
-
ffxbld authored
Differential Revision: https://phabricator.services.mozilla.com/D95149
-
- 21 Oct, 2020 1 commit
-
-
valenting authored
Bug 1671479 - Hold mutex when calling TransportSecurityInfo::Get/SetSucceededCertChain r=keeler,necko-reviewers,kershaw a=tjr Differential Revision: https://phabricator.services.mozilla.com/D93744
-
- 14 Oct, 2020 1 commit
-
-
Michael Kaply authored
Bug 1664834 - Add signon., general.*Scroll to allowed policy preferences prefixes. r=Gijs, a=jcristau Differential Revision: https://phabricator.services.mozilla.com/D92823
-
- 09 Oct, 2020 2 commits
-
-
Michael Kaply authored
Differential Revision: https://phabricator.services.mozilla.com/D93007
-
Michael Kaply authored
Differential Revision: https://phabricator.services.mozilla.com/D92826
-
- 24 Sep, 2020 1 commit
-
-
James Teh authored
Bug 1666720: AccessibleHandler: When refreshing the cache, fetch into a temporary struct rather than into the live cache to avoid problems triggered by COM re-entry. r=MarcoZ, a=jcristau Differential Revision: https://phabricator.services.mozilla.com/D91218
-
- 26 Oct, 2020 1 commit
-
-
ffxbld authored
Differential Revision: https://phabricator.services.mozilla.com/D94732
-
- 08 Sep, 2020 1 commit
-
-
Emilio Cobos Álvarez authored
Bug 1663715 - Update syn and proc-macro2 so that Firefox can build on Rust nightly again. r=froydnj, a=RyanVM Generated with: cargo update -p syn --precise 1.0.40 ./mach vendor rust Rust issue: https://github.com/rust-lang/rust/issues/76482 Differential Revision: https://phabricator.services.mozilla.com/D89473
-
- 14 Oct, 2020 1 commit
-
-
Henri Sivonen authored
Differential Revision: https://phabricator.services.mozilla.com/D92936
-
- 21 Oct, 2020 2 commits
-
-
Jon Coppeard authored
Depends on D93654 Differential Revision: https://phabricator.services.mozilla.com/D94270
-
Jon Coppeard authored
Bug 1670358 - Don't use realloc for shrinking nsTArrays and similar when RelocationStrategy::allowRealloc is false. r=sg, a=tjr My original patch handled the grow case but not the shrink case. When the current and new allocation sizes are in different size classes jemalloc's realloc will move the allocation when shrinking, not just truncate the existing one. Differential Revision: https://phabricator.services.mozilla.com/D93654
-
- 20 Oct, 2020 1 commit
-
-
Werner Lemberg authored
This is CVE-2020-15999. * src/sfnt/pngshim.c (Load_SBit_Png): Test bitmap size earlier. Differential Revision: https://phabricator.services.mozilla.com/D94153
-
- 22 Oct, 2020 2 commits
-
-
Joel Maher authored
run osx on t-osx-1014 Test Plan: https://treeherder.mozilla.org/#/jobs?repo=try&revision=d4cc50a65a7d95b1c324f7a719e79ededee0102d Differential Revision: https://phabricator.services.mozilla.com/D94458
-
ffxbld authored
Differential Revision: https://phabricator.services.mozilla.com/D94447
-
- 20 Oct, 2020 2 commits
-
-
Aki Sasaki authored
Differential Revision: https://phabricator.services.mozilla.com/D94185
-
Mozilla Releng Treescript authored
No bug - Tagging 35408d78e4eed57838117d7a38e9a6b2b0bd3420 with FIREFOX_78_4_0esr_RELEASE a=release CLOSED TREE DONTBUILD
-
- 19 Oct, 2020 2 commits
-
-
Mozilla Releng Treescript authored
-
ffxbld authored
Differential Revision: https://phabricator.services.mozilla.com/D94007
-
- 14 Oct, 2020 1 commit
-
-
Mozilla Releng Treescript authored
No bug - Tagging 35408d78e4eed57838117d7a38e9a6b2b0bd3420 with FIREFOX_78_4_0esr_BUILD2 a=release CLOSED TREE DONTBUILD
-