- Jun 06, 2017
-
-
Emilio Cobos Álvarez authored
MozReview-Commit-ID: C7i5uv60tQD
-
Alex Chronopoulos authored
MozReview-Commit-ID: Atfjf1iu48k --HG-- extra : rebase_source : 18704da62dd2428f85bd430b551b4567424cfdc6
-
- May 29, 2017
-
-
Julian Descottes authored
MozReview-Commit-ID: 2ZoAU1pRxzx --HG-- extra : rebase_source : 10551df8d5aa69f523d9b4e4387299b9e6e8b7e1
-
Julian Descottes authored
Some APIs and methods still used by the addon sdk are not worth exposing or migrating to mozilla-central given that this is only intended for release 56 (after that, legacy extensions will no longer be supported). For those APIs, we create a simple wrapper in DevToolsShim and moved the implementation to framework/devtools MozReview-Commit-ID: 8LiiptqO0NI --HG-- extra : rebase_source : 357b503532fed7933a6690418b846c70350c59b9
-
- Jun 02, 2017
-
-
Masatoshi Kimura authored
Bug 1326738 - Check for user-disabled images as well as broken images to determine if the broken icon should be displayed. r=tnikkel MozReview-Commit-ID: CseLBP8aI75 --HG-- extra : rebase_source : 0f34cc82b1089bf339417e0b7de77d2865c3cc8b
-
- May 15, 2017
-
-
Luke Chang authored
Bug 1364818 - [Form Autofill] popup won't apply to an auto-focused input until it's refocused. r=MattN MozReview-Commit-ID: H3CZEFzAJm6 --HG-- extra : rebase_source : 9b00296a179f1c4004e245357fbaad94b6c8c541
-
- Jun 05, 2017
-
-
Jean-Yves Avenard authored
MozReview-Commit-ID: 4eAHAuBqOtK --HG-- extra : rebase_source : 855ace96b31fd8404efad8c0d00fc85a58b5753f
-
- Jun 06, 2017
-
-
Sebastian Hengst authored
-
Sebastian Hengst authored
MozReview-Commit-ID: BDyuSdNALvH
-
Ethan Lin authored
Bug 1370155 - Remove fullscreen mode in basic compositor video test to prevent intermittent problem. r=jmaher
-
Delphine Lebédel authored
MozReview-Commit-ID: IO5vS3uzj6g --HG-- extra : rebase_source : 8ca77acd02c6cdb9f5cce9e43dcd5428a3ca2b07
-
Servo VCS Sync authored
-
Bobby Holley authored
servo: Merge #17179 - shrink Rule and store all heap-allocated selector data inline (from bholley:one_selector_allocation); r=emilio https://bugzilla.mozilla.org/show_bug.cgi?id=1370107 Source-Repo: https://github.com/servo/servo Source-Revision: 74ea8ce3ed6aa3d7edfe05924f196ccbe57daed6 --HG-- extra : subtree_source : https%3A//hg.mozilla.org/projects/converted-servo-linear extra : subtree_revision : a8c3994ae54b1775686552f549605a7fc2ba5646
-
- Jun 05, 2017
-
-
Gabriele Svelto authored
Bug 1370215 - Add the AsyncShutdownTimeout and ShutdownProgress annotations to the crash ping sent via the crashreporter client; r=ted This also removes the TelemetrySessionId field from the whitelist because that field is already manually stripped and moved into the ping's root node. Putting it in the whitelist is redundant. MozReview-Commit-ID: B3WAyCSHoyR --HG-- extra : rebase_source : 9729399a1e1c45cf1646498379d68684985134ce
-
- Jun 02, 2017
-
-
Nicholas Nethercote authored
ProfilerStackFrameRAII and ProfilerStackFrameDynamicRAII are very similar; the latter lets a dynamic string be specified as well (and lacks the MOZ_GUARD_OBJECT stuff, for no good reason). This patch does the following. - Removes ProfilerStackFrameDynamicRAII, and adds a dynamic string to ProfilerStackFrameRAII. It also reorders the constructor's arguments to match the field ordering of ProfileEntry. There aren't many usage sites so these changes don't affect many places. - With that done, there is only a single callsite for each of profiler_call_enter() and profiler_call_exit(), so the patch also inlines and removes them.
-
Nicholas Nethercote authored
These annotations aren't doing anything useful. The important thing with the PseudoStack is that, during pushes, the stack pointer incrementing happens after the new entry is written, and this is ensured by the stack pointer being Atomic. The patch also improves the comments on PseudoStack. --HG-- extra : rebase_source : 100f8a5e4b750c15fac66175550c4c284a141f16
-
- Jun 06, 2017
-
-
Wes Kocher authored
MozReview-Commit-ID: EiG9icZCZ3x
-
Wes Kocher authored
MozReview-Commit-ID: Cb3YlCdVhQr
-
Ryan VanderMeulen authored
--HG-- extra : rebase_source : 3ed4d5a41898ead386f8a75b0d2f7be1899cf767
-
- Jun 05, 2017
-
-
Shu-yu Guo authored
Bug 1353356 - Add rematerialized frames to the table on JitActivation after rematerialization succeeds. (r=jandem)
-
Nick Fitzgerald authored
There are a bunch of invalid Cargo.toml files that some python stuff uses for testing, but these cause errors out of cargo when we point to one of the SM source tarballs as a git dependency. Easiest workaround is to not include any non-SpiderMonkey Cargo.toml files in the source tarballs.
-
Wes Kocher authored
MozReview-Commit-ID: 1wLiG2Sq3g
-
Stephen A Pohl authored
Bug 1367487: Change bundle name (CFBundleName) of content process on OSX/macOS to differentiate it from the Firefox bundle name. r=mstange,ted
-
Ben Kelly authored
-
Ben Kelly authored
Bug 1370025 P4 Use FiringId validity in TimeoutManager::Timeouts::Insert() and ::ResetTimersForThrottleReduction(). r=ehsan
-
Ben Kelly authored
-
Ben Kelly authored
-
Ben Kelly authored
-
Gabriel Luong authored
-
Andrew Sutherland authored
--HG-- extra : rebase_source : e7c27185c671f8d2eae81ddfc66318c7fe1a1a31
-
Andrew Sutherland authored
Bug 1286530 made TCPSocket ChromeOnly, eliminating both the dom.mozTCPSocket.enabled preference check as well as the "tcp-socket" permission check. The API is now always exposed in chrome contexts. This patch removes the leftover (and confusing) dead code. Renamed and why: - test_tcpsocket_enabled_no_perm.html renamed to test_tcpsocket_not_exposed_to_content.html because it's now just a question of content never seeing the API. Removed tests and why: - test_tcpsocket_enabled_with_perm.html used to be a standalone verification of our permission check. We have no permission check now and both test_tcpsocket_jsm.html and test_tcpsocket_client_and_server_basics.html serve as tests that we affirmatively expose the API and there are no "late" failure (such as a secondary check in the parent). - test_tcpsocket_default_permissions.html duplicated what (now) test_tcpsocket_not_exposed_to_content.html accomplishes. It tried to use the API and expect an exception. This is just superstition in a WebIDL. (TCPSocket was not originally WebIDL-y.) --HG-- rename : dom/network/tests/test_tcpsocket_enabled_no_perm.html => dom/network/tests/test_tcpsocket_not_exposed_to_content.html extra : rebase_source : d2231ed3b0fb00541cc266569c2a7908a4074f9c
-
- Jun 04, 2017
-
-
Andrew Sutherland authored
The use of add_task.js was ever only intended to be temporary until bug 1078657 landed. --HG-- extra : rebase_source : d9570859b35691002cf7f4642603f6730ddab7ad
-
- Jun 05, 2017
-
-
James Willcox authored
MozReview-Commit-ID: L0FkAGriChD
-
- Jun 02, 2017
-
-
Gerald Squelart authored
MozReview-Commit-ID: A8mtz2fJd71 --HG-- extra : rebase_source : 81949d559c5482951ed9186c92d0759dd4a6b3b0
-
Gerald Squelart authored
This hint will inform readers if caching is discouraged (e.g., for SourceBufferResource) or recommmended (e.g., for MediaCache-backed ChannelMediaResource). MozReview-Commit-ID: 7hopNS0s5tE --HG-- extra : rebase_source : 681646cc904229e8513adb148baa085254508049
-
- Jun 03, 2017
-
-
Ricky Chien authored
MozReview-Commit-ID: 3Tjc8ARhZuz --HG-- extra : rebase_source : 1c8f9a319e9f43866e6e6418619efc89b3250389
-
- Jun 01, 2017
-
-
Iaroslav (yarik) Sheptykin authored
MozReview-Commit-ID: APuclfFyJri --HG-- extra : rebase_source : 599942110a813d954983f961dd9da06045b6a6a5
-
- Jun 02, 2017
-
-
Henrik Skupin authored
Update dependencies for mozrunner (0.4) and mozprofile (0.3) to stop setting default preferences by mozrunner. This will also allow to overwrite all preferences now via the moz:firefoxOptions capability. MozReview-Commit-ID: IU0oKzRnnfG --HG-- extra : rebase_source : 7f8946f7e22af9beebaddc52c78d549ddc898c87
-
- Jun 05, 2017
-
-
Michael Ratcliffe authored
MozReview-Commit-ID: 7oZQbmMYlla --HG-- rename : devtools/client/storage/test/browser_storage_basic_usercontextid.js => devtools/client/storage/test/browser_storage_basic_usercontextid_1.js extra : rebase_source : d04ca1a18b8f5c2f56e8b8b755d408f9263f3a84
-
Scott Wu authored
MozReview-Commit-ID: D729DVbZw9I --HG-- extra : rebase_source : ef1adc4a610fb2305deff45e4e8e27f133b19115
-