- Jul 11, 2019
-
-
Mike Hommey authored
Somehow bug 1346025 moved it to third_party/python but... it's not third party code. Differential Revision: https://phabricator.services.mozilla.com/D37364 --HG-- rename : third_party/python/gdbpp/gdbpp/__init__.py => python/gdbpp/gdbpp/__init__.py rename : third_party/python/gdbpp/gdbpp/enumset.py => python/gdbpp/gdbpp/enumset.py rename : third_party/python/gdbpp/gdbpp/linkedlist.py => python/gdbpp/gdbpp/linkedlist.py rename : third_party/python/gdbpp/gdbpp/owningthread.py => python/gdbpp/gdbpp/owningthread.py rename : third_party/python/gdbpp/gdbpp/smartptr.py => python/gdbpp/gdbpp/smartptr.py rename : third_party/python/gdbpp/gdbpp/string.py => python/gdbpp/gdbpp/string.py rename : third_party/python/gdbpp/gdbpp/tarray.py => python/gdbpp/gdbpp/tarray.py rename : third_party/python/gdbpp/gdbpp/thashtable.py => python/gdbpp/gdbpp/thashtable.py extra : moz-landing-system : lando
-
Ricky Rosario authored
This needs to land together or right around when the `whatsnew-panel` branch is merged and exported. Differential Revision: https://phabricator.services.mozilla.com/D37320 --HG-- extra : moz-landing-system : lando
-
Ed Lee authored
Differential Revision: https://phabricator.services.mozilla.com/D37761 --HG-- extra : moz-landing-system : lando
-
Andrei Oprea authored
Differential Revision: https://phabricator.services.mozilla.com/D37403 --HG-- extra : moz-landing-system : lando
-
Bogdan Tara authored
Backed out changeset 81f121f3a7cb (bug 1557096) for ES lint failure on GeckoViewContent.jsm CLOSED TREE
-
Mike Hommey authored
Differential Revision: https://phabricator.services.mozilla.com/D37685 --HG-- extra : moz-landing-system : lando
-
Alexandre Poirot authored
Differential Revision: https://phabricator.services.mozilla.com/D36792 --HG-- extra : moz-landing-system : lando
-
Alexandre Poirot authored
Bug 1563692 - Move all CDP's JSON packet handling to Connection. r=remote-protocol-reviewers,jdescottes,ato This helps sharing a single implementation of how the JSON objects are read and written from/to the WebSocket connection. Also, by delegating the command calls to the Session via `Session.execute` and expecting a promise with a resolution or rejection, we make error handling of command calls clearer and unified. Differential Revision: https://phabricator.services.mozilla.com/D37046 --HG-- extra : moz-landing-system : lando
-
- Jul 10, 2019
-
-
Eric Rahm authored
Differential Revision: https://phabricator.services.mozilla.com/D37510 --HG-- extra : moz-landing-system : lando
-
Eric Rahm authored
Bug 1564643 - Update to latest mp4parse that fixes rust 1.37 deprecation errors. r!kinetik r=kinetik Differential Revision: https://phabricator.services.mozilla.com/D37511 --HG-- extra : moz-landing-system : lando
-
- Jul 11, 2019
-
-
dleblanccyr authored
Differential Revision: https://phabricator.services.mozilla.com/D36674 --HG-- extra : moz-landing-system : lando
-
Agi Sferro authored
Differential Revision: https://phabricator.services.mozilla.com/D37753 --HG-- extra : moz-landing-system : lando
-
Mike Shal authored
Similar to bug 1552672, very rarely is_zipfile() can return True on a tarfile if the tarfile happens to contain a magic four byte sequence at the right location in the file. By checking for is_zipfile() first, we try to unzip the tar file and then fail. Instead we can call is_tarfile() first, which is more robust, and call is_zipfile() last. Differential Revision: https://phabricator.services.mozilla.com/D37765 --HG-- extra : moz-landing-system : lando
-
Michael Froman authored
Differential Revision: https://phabricator.services.mozilla.com/D37619 --HG-- extra : moz-landing-system : lando
-
harry authored
Bug 1561901 - Implement smart highlighting for search suggestions by adding a UrlbarUtils.HIGHLIGHT enum. r=dao Differential Revision: https://phabricator.services.mozilla.com/D36922 --HG-- extra : moz-landing-system : lando
-
Emilio Cobos Álvarez authored
Inheriting block-size is just plain wrong in presence of calc or percentages. The layout without these rules also matches other browsers, so I see no reason not to do this. Differential Revision: https://phabricator.services.mozilla.com/D37746 --HG-- extra : moz-landing-system : lando
-
Agi Sferro authored
Differential Revision: https://phabricator.services.mozilla.com/D37754 --HG-- extra : moz-landing-system : lando
-
Micah Tigley authored
Differential Revision: https://phabricator.services.mozilla.com/D37004 --HG-- extra : moz-landing-system : lando
-
Shane Caraveo authored
700K extension reloads! This minimizes tests to using the necessary extensions as well as avoiding reloads of extensions while the search config tests are run. Local machine can now run a single search config test file in under 2 minutes. This was impossible before. Differential Revision: https://phabricator.services.mozilla.com/D35104 --HG-- extra : moz-landing-system : lando
-
Shane Caraveo authored
This provides a set of promises that the searchservice resolves once the search engine has been configured Differential Revision: https://phabricator.services.mozilla.com/D33660 --HG-- extra : moz-landing-system : lando
-
Alvina Waseem authored
Bug 1557096 - Add ContentDelegate.onKill() to differentiate between content process crashes and kills. r=geckoview-reviewers,agi,snorp Differential Revision: https://phabricator.services.mozilla.com/D35874 --HG-- extra : moz-landing-system : lando
-
Tooru Fujisawa authored
Bug 1563489 - Part 1: Add BinASTParserPerTokenizer::finish{Eager,Lazy}Function and remove BinASTParserPerTokenizer::buildFunction. r=Yoric,mgaudet Differential Revision: https://phabricator.services.mozilla.com/D36931 --HG-- extra : moz-landing-system : lando
-
Tooru Fujisawa authored
Differential Revision: https://phabricator.services.mozilla.com/D36930 --HG-- extra : moz-landing-system : lando
-
Emilio Cobos Álvarez authored
Looks like some users use it, and it's not too much effort to support. This is somewhat simpler, and IMO better than what existed before bug 1514655 because: * It doesn't regress bidi rendering when the pref is disabled (before, the pref would prevent plaintext.css from applying altogether). * It's consistent with the way view-source docs work. * It doesn't use non-standard stylesheet APIs to toggle the stylesheet (bug 1260720). Differential Revision: https://phabricator.services.mozilla.com/D37742 --HG-- extra : moz-landing-system : lando
-
Jason Laster authored
Differential Revision: https://phabricator.services.mozilla.com/D37496 --HG-- extra : moz-landing-system : lando
-
Jan Andre Ikenmeyer authored
Differential Revision: https://phabricator.services.mozilla.com/D37672 --HG-- extra : moz-landing-system : lando
-
Bogdan Tara authored
Backed out changeset 93cfc2131ea5 (bug 1497203) for config/tests/test_mozbuild_reading.py related build bustages CLOSED TREE
-
Alexandre Poirot authored
ChromeUtils.import still support a second argument as it used to do when it was Components.utils.import. But this is deprecated and we should instead always use the returned value. Differential Revision: https://phabricator.services.mozilla.com/D37708 --HG-- extra : moz-landing-system : lando
-
Jonathan Kew authored
Bug 1565234 - Remove redundant override that exactly matches the base class implementation, and make GetFontFamilyList non-virtual. r=lsalzman Differential Revision: https://phabricator.services.mozilla.com/D37731 --HG-- extra : moz-landing-system : lando
-
Tom Prince authored
This only uses cross-platform tools, so switch to running these on linux, which cuts the runtime down from ~20m to ~3m. Differential Revision: https://phabricator.services.mozilla.com/D1080 --HG-- extra : moz-landing-system : lando
-
Tom Prince authored
This matches the version that exists in mozilla-build (see Bug 1501403). Differential Revision: https://phabricator.services.mozilla.com/D26413 --HG-- extra : moz-landing-system : lando
-
Tom Prince authored
This also switches it to use the generic toolchain build image, as it is no longer being used exclusively by mingw builds. Differential Revision: https://phabricator.services.mozilla.com/D24230 --HG-- extra : moz-landing-system : lando
-
Tom Prince authored
Differential Revision: https://phabricator.services.mozilla.com/D24229 --HG-- extra : moz-landing-system : lando
-
Tom Prince authored
Since the taskgraph knows the mar-channel-id to use, pass it explicitly to the partial tasks, rather than extracting the channel from a MAR. Differential Revision: https://phabricator.services.mozilla.com/D37482 --HG-- extra : moz-landing-system : lando
-
Tom Prince authored
Rather than relying on the mar-channel-id set in the `mar` binary, set the channel explicitly from taskcluster. This allows us to re-use the `mar` binary between builds/channels. Differential Revision: https://phabricator.services.mozilla.com/D37481 --HG-- extra : moz-landing-system : lando
-
Tom Prince authored
Taskgraph needs to know the correct mar-channel, so allow it to pass it into the build, rather than keying off the update-channel in configure. This will allow using a `mar` binary that doesn't have the mar-channel configured in. Differential Revision: https://phabricator.services.mozilla.com/D37480 --HG-- extra : moz-landing-system : lando
-
Ehsan Akhgari authored
Storage principal is the principal used for the storage area of a document, as well as when trying to communicate to other same-origin document instances. Right now the default is for the storage principal to be equal to the node principal for all documents, but in the dynamic FPI feature (bug 1549587) the storage principal for third-party documents will have a member of its origin attributes set to the eTLD+1 of the domain of the top-level document in order to 'partition' third-party data across top-level documents from different sites. This patch moves the devtools storage actor to use the storage principal so that when dynamic FPI is enabled, devtools uses the correct principal. Differential Revision: https://phabricator.services.mozilla.com/D37664 --HG-- extra : moz-landing-system : lando
-
Vikas Prasad Mahato authored
Bug 1541278 - Markup View's background flash effect: use yellow from Box Model shift-hover highlight. r=mtigley Differential Revision: https://phabricator.services.mozilla.com/D32864 --HG-- extra : moz-landing-system : lando
-
Bogdan Tara authored
Backed out changeset f5d458cf80ae (bug 1555628) for ES lint failure on WebSocketsPanel.js CLOSED TREE
-
Bogdan Tara authored
-