- 31 May, 2019 40 commits
-
-
Robert Strong authored
Also fixes an indentation issue in browser_whats_new_page.js Differential Revision: https://phabricator.services.mozilla.com/D33248 --HG-- extra : moz-landing-system : lando
-
Nathan Froyd authored
We would like to switch to using cross-language LTO on all of our platforms, and we need to use a beta version of Rust on Mac to do that. Differential Revision: https://phabricator.services.mozilla.com/D33316 --HG-- extra : moz-landing-system : lando
-
Nathan Froyd authored
When we're lowering extra types (e.g. array element types) and we find that we haven't already lowered the type, we say that the new type is going to live at the end of the `types` array. But we don't append a new type (i.e. filling in the entry) until after we call `lower_type`, which means that some other call to `lower_extra_type` might find that *its* new type will live at the same position we "allocated" higher up on the stack. We don't appear to run into this issue, as the only nested array types are things like `Array<Array<uint8>>`, and `uint8` is guaranteed to already have been lowered. But if people start doing more complicated things, we're bound to run into this sooner or later. Differential Revision: https://phabricator.services.mozilla.com/D33299 --HG-- extra : moz-landing-system : lando
-
Dão Gottwald authored
Differential Revision: https://phabricator.services.mozilla.com/D33272 --HG-- extra : moz-landing-system : lando
-
Martin Stransky authored
Differential Revision: https://phabricator.services.mozilla.com/D33251 --HG-- extra : moz-landing-system : lando
-
Honza Bambas authored
Bug 1545421 - New nsresult error codes for 407, 502 and 504 http response codes returned by proxies + test, r=dragana Differential Revision: https://phabricator.services.mozilla.com/D32817 --HG-- extra : moz-landing-system : lando
-
Martin Stransky authored
When transparent popup window is rendered clear window background to clear visual artifacts and bold shadows over the popup. Differential Revision: https://phabricator.services.mozilla.com/D33155 --HG-- extra : moz-landing-system : lando
-
Sebastian Hengst authored
-
Sebastian Hengst authored
-
Sebastian Hengst authored
-
Dave Townsend authored
Bug 1555117: Ignore attempts to reset the profile when a new profile had to be created for the install. r=froydnj Since bug 1518587 when a command line argument or environment variable requests a profile refresh but no existing profile is selected we would just exit thinking that there is some problem here. But it turns out that the installer sometimes passes this argument when it doesn't know that the new install will not use the existing profiles. So instead we just ignore attempts to refresh when we create a new profile. To do this we just have to remove the checks that bail out and continue to create the new profile, nsAppRunner will see that a new profile has been created and cancel the attempted refresh anyway: https://searchfox.org/mozilla-central/rev/ddb81c7a43ffada1f6cb4200c4f625e50e44dcf3/toolkit/xre/nsAppRunner.cpp#2021 Differential Revision: https://phabricator.services.mozilla.com/D32891 --HG-- extra : moz-landing-system : lando
-
Ashley Hauck authored
Differential Revision: https://phabricator.services.mozilla.com/D33300 --HG-- extra : moz-landing-system : lando
-
Jon Coppeard authored
Bug 1555729 - Improve CallbackObject::CallbackPreserveColor comments to warn about use of Reset() r=bzbarsky? Differential Revision: https://phabricator.services.mozilla.com/D33263 --HG-- extra : moz-landing-system : lando
-
Razvan Maries authored
-
Razvan Maries authored
-
Ehsan Akhgari authored
Also fix a few issues in the tests such as not setting the dom.storage.next_gen pref consistently. Differential Revision: https://phabricator.services.mozilla.com/D33210 --HG-- extra : moz-landing-system : lando
-
Jason Laster authored
Differential Revision: https://phabricator.services.mozilla.com/D32379 --HG-- extra : moz-landing-system : lando
-
Brian Grinstead authored
Differential Revision: https://phabricator.services.mozilla.com/D33049 --HG-- extra : moz-landing-system : lando
-
YUKI "Piro" Hiroshi authored
Differential Revision: https://phabricator.services.mozilla.com/D33132 --HG-- extra : moz-landing-system : lando
-
Johann Hofmann authored
Differential Revision: https://phabricator.services.mozilla.com/D32759 --HG-- extra : moz-landing-system : lando
-
Tom Tung authored
Bug 1546892 - Update the comment for the fix and add an assertion to ensure all cases have been caught; r=asuth It turns out that the temporary fix for bug 1528690 might be the right way to do. Based on the recent crash reports, the mResultCode for the Transaction object wasn't an NS_OK and the crashing operation hasn't updated the failure to that yet. So, the right way to do here is that we should abort the operation on the connection thread. Differential Revision: https://phabricator.services.mozilla.com/D32004 --HG-- extra : moz-landing-system : lando
-
Mark Banner authored
Differential Revision: https://phabricator.services.mozilla.com/D33157 --HG-- extra : moz-landing-system : lando
-
Andrew Halberstadt authored
This allows users to set TASKGRAPH_OPTIMIZE_STRATEGIES to a python_path.find_object string. E.g: TASKGRAPH_OPTIMIZE_STRATEGIES="module:strategies" ./mach taskgraph optimized This opens the door to swap in external strategies at runtime and will be used for back testing experimental strategies. Differential Revision: https://phabricator.services.mozilla.com/D33203 --HG-- extra : moz-landing-system : lando
-
Jorg K authored
Bug 1550945 - Follow-up to part 2, M-C: Move hook in nsNetUtil::NS_NewURI(). r=valentin a=Aryx DONTBUILD NPOTB
-
Boris Zbarsky authored
The removal of the second CSP check is fixing a regression introduced in bug 965637. See https://github.com/whatwg/html/issues/4651#issuecomment-495050351 for details. We may want to re-introduce that check depending on the outcome of that issue, but if so we should do that only if the target document's principal subsumes our triggering principal. This commit will not allow bookmarklets to access subresources that CSP blocks, but will at least allow them to run. Differential Revision: https://phabricator.services.mozilla.com/D33047 --HG-- extra : moz-landing-system : lando
-
Greg Tatum authored
Differential Revision: https://phabricator.services.mozilla.com/D31663 --HG-- extra : moz-landing-system : lando
-
Greg Tatum authored
This commit takes the popup, and wires it up the button using the CustomizableUI interface. It is integrated with the DevTools initialization code. Differential Revision: https://phabricator.services.mozilla.com/D31629 --HG-- extra : moz-landing-system : lando
-
Greg Tatum authored
The performance profiler pop-up menu wants to be near DevTools, but work without the complete DevTools initialization. This patch ensure that any calls to lazyRequireGetter properly initialize the provider. Differential Revision: https://phabricator.services.mozilla.com/D31628 --HG-- extra : moz-landing-system : lando
-
Greg Tatum authored
This commit represents the changes needed to convert the existing Gecko Profiler Add-on code to work outside of the WebExtensions environment. A following commit will actually wire it into the rest of the browser. Differential Revision: https://phabricator.services.mozilla.com/D31627 --HG-- extra : moz-landing-system : lando
-
Greg Tatum authored
This bug's first commit will be a non-working revision. These files are taken from: https://github.com/firefox-devtools/Gecko-Profiler-Addon/commit/68d5de9c9ff64096181bc1a45098d6c205172faa Differential Revision: https://phabricator.services.mozilla.com/D31547 --HG-- extra : moz-landing-system : lando
-
Dorel Luca authored
-
Dorel Luca authored
Backed out changeset 17a2436c527e (bug 1555876) for Geckoview related to mozilla::dom::IDBFactory. CLOSED TREE
-
Chris H-C authored
Bug 1555798 - Test that registering and recording dynamic events and scalars together does not crash. r=Dexter Depends on D33274 Differential Revision: https://phabricator.services.mozilla.com/D33275 --HG-- extra : moz-landing-system : lando
-
Chris H-C authored
References to ScalarInfo objects are stable for all scalars registered at compile-time, but not for those registered at runtime. Differential Revision: https://phabricator.services.mozilla.com/D33274 --HG-- extra : moz-landing-system : lando
-
Anca Manu authored
Differential Revision: https://phabricator.services.mozilla.com/D28833 --HG-- extra : moz-landing-system : lando
-
Alexander Surkov authored
Differential Revision: https://phabricator.services.mozilla.com/D33266 --HG-- extra : moz-landing-system : lando
-
Johan Lorenzo authored
Differential Revision: https://phabricator.services.mozilla.com/D32844 --HG-- extra : moz-landing-system : lando
-
violet authored
Differential Revision: https://phabricator.services.mozilla.com/D33246 --HG-- extra : moz-landing-system : lando
-
Andrew Swan authored
These selectors were using the direct child combinator which broke when toolbarbutton switched away from XBL. Differential Revision: https://phabricator.services.mozilla.com/D32919 --HG-- extra : moz-landing-system : lando
-
Barret Rennie authored
Bug 1551735 - Clearly document the case of the RendererOGL receiving a new WebRenderCompositionRecorder while it has one r=kats Differential Revision: https://phabricator.services.mozilla.com/D32356 --HG-- extra : moz-landing-system : lando
-