https://github.com/mozilla/gecko-dev

sort by:
Revision Author Date Message Commit Date
21a2a86 Bug 1295853 - Only enable Widevine on whitelisted Tier-1 build targets. r=glandium a=lizzard MozReview-Commit-ID: 52lrV3aEEVe --HG-- extra : source : decbfdf108545127550ca82b4270100fa16b76a5 extra : intermediate-source : 57dd530675399cb159844ceb53ce514fc129f8ed 17 August 2016, 09:40:43 UTC
0303b1d Bug 1297099 - Change LoadManagerSingleton WeakPtr to RefPtr. r=jesup a=lizzard --HG-- extra : source : 521e476f0c714ff4e92c7220e81b40e56972f58c 25 August 2016, 14:04:58 UTC
3bfa735 Bug 1287721 - Keep strong pointers for nodes in the invalidation list of a document accessible. r=smaug a=lizzard --HG-- extra : source : bf6c0c4ad16c76cc56b3164576c720fc1811f5e7 25 August 2016, 02:16:45 UTC
eb938e8 Bug 1297370 - Provide security flag for channel within snapshotlist. r=gijs a=lizzard --HG-- extra : source : dab0693cae68fd5da764f311b20383d905435b1c 23 August 2016, 13:42:14 UTC
9f42a7b Bug 1297051 - Test CSPRO should not block mixed content. r=dveditz a=testonly --HG-- extra : source : dc9031025f0890f36e49c4d5b9dc0651ff278df7 24 August 2016, 07:24:20 UTC
ef68263 Bug 1297051 - CSPRO should not block mixed content. r=dveditz a=lizzard --HG-- extra : source : acb05a7c5ee7183ac013196c91106c5b6b246930 24 August 2016, 07:24:55 UTC
26ccbf5 No bug, Automated blocklist update from host bld-linux64-spot-422 - a=blocklist-update 27 August 2016, 10:14:34 UTC
d494fb0 Bug 1294753: encode all available audio on each cycle instead of one 'packet' r=rillian a=lizzard Also fixes some accesses to mEndOfStream outside the monitor MozReview-Commit-ID: 8Bw7GPzECB5 18 August 2016, 04:31:11 UTC
9a4ce31 Bug 1288434 - Add task to mark release as shipped. r=rail a=release DONTBUILD MozReview-Commit-ID: 9NBQK4BcDUe --HG-- extra : source : 2199b0d2d4f3ff19e72f0a27b03e2822b4a03978 26 August 2016, 09:47:18 UTC
484fc0b No bug - Tagging b44c72b85a800d9c6e719579d480bb2c3a87a753 with FIREFOX_49_0b7_BUILD1, FIREFOX_49_0b7_RELEASE a=release CLOSED TREE 26 August 2016, 14:17:34 UTC
bfd3541 Automatic version bump. CLOSED TREE NO BUG a=release 26 August 2016, 14:17:30 UTC
6c90039 Bug 1255737 - Fix add override annotation to fix static analysis bustage. a=bustage 25 August 2016, 20:26:51 UTC
a5806b5 Bug 1255737 - Don't set a shutdown timer if we don't have a shutdown ticket. r=pehrsons, a=lizzard --HG-- extra : source : 7ebc6b4df6644e25652ec1f513eae36ec13e3be8 extra : amend_source : febc1db78adae96d0b6cc837137b10561a377638 extra : histedit_source : 18afbb6edc9abea45b05a22cafb34286b1f8df17 24 August 2016, 16:24:17 UTC
d253c03 Backed out changeset ab7b68014a1e (bug 1255737) because it's superceded by a newer patch. --HG-- extra : histedit_source : 28e627d1db8d67693e82a4269270965f3c9853ec 25 August 2016, 19:47:20 UTC
f91daf2 Bug 1280290 - Split test up to fix intermittent docshell leak. r=jmaher, a=test-only MozReview-Commit-ID: 6uX62eVcWSj --HG-- extra : source : fbceeb3c83556751eca3fa3e72c396743e231efc extra : intermediate-source : 0e4499ae0f81b2fe9e349f66934f7a2bfbf04035 18 August 2016, 00:54:15 UTC
1c95a44 Bug 1292781 - Add a test. r=tnikkel, a=lizzard MozReview-Commit-ID: f0UvsKMwAL --HG-- extra : source : df8d6a12b605745eead88fca245a6d8c99bf2cba extra : intermediate-source : c0cb39e5174697d693a1e3e006ff429ef7b6bca8 24 August 2016, 13:15:42 UTC
cbf90d8 Bug 1292781 - Send scroll-position-restore updates to APZ, but don't allow them to clobber user scrolls. r=tnikkel, a=lizzard Previously we weren't sending scroll position updates with origin nsGkAtoms::restore over to the APZ at all, on the assumption that they should never clobber an APZ scroll offset. However, there are scenarios where that is not true. In particular, during a frame reconstruction, a layers update may be sent to the compositor between the time a scrollframe has RestoreState() called on it, and the time the scrollframe has ScrollToRestoredPosition() called on it. The layers update that happens during this interval (correctly) sends a scroll position of (0,0), and forces the APZ to scroll to that position. This is necessary to prevent APZ from remaining at an invalid scroll offset while the frame is still being rebuilt. However, once ScrollToRestoredPosition() is called and the old scroll offset is restored, that restored scroll position needs to get sent to the APZ in order to have it properly restore to the original scroll position. In order to do this, the main thread must flag the metrics with a scroll offset update. Since the user may have scrolled concurrently in the compositor from the (0,0) position, we also need to check for that case in the APZ code and avoid restoring the scroll position. This is equivalent to the corresponding main-thread code in ScrollToRestoredPosition(). MozReview-Commit-ID: LxRapVSrsJ3 --HG-- extra : source : 72d0178222e5ebc711d5769cb14b69760b04156c extra : intermediate-source : 23cb9f2e57ff1f6f0f947b8657f874ade8baed84 24 August 2016, 13:15:29 UTC
b629bdd Bug 1286179 - For APZ repaint requests that are triggered by main-thread updates, don't attempt to re-scroll the main thread. r=tnikkel, a=lizzard Avoiding these re-scrolls prevents APZ repaint requests from clobbering the main-thread scroll position (which may have changed in the meantime) in some cases. See https://bugzilla.mozilla.org/show_bug.cgi?id=1286179#c8 for an example of a scenario where this re-scroll is problematic. MozReview-Commit-ID: 7he2A2sygji --HG-- extra : source : 7f7fdb1304736fd09ea40124789c7ad480e32b9d extra : intermediate-source : 7a83abda0b0893deb402638ed6ddbae18c491dfb 18 August 2016, 21:00:42 UTC
77ae50a Bug 1286179 - Update an existing test to catch this new instance of the bug. r=tnikkel, a=lizzard MozReview-Commit-ID: 90ian6KN91C --HG-- extra : source : 60b4b2b76e0c7625ea75a58aa4327c30dec3f79e extra : intermediate-source : f5dd9aec59ef3ffc40975f4974ade1ec6820f963 18 August 2016, 21:00:38 UTC
8e7e2b1 Bug 1289906 - Part 2: Add more generic telemetry for undo reasons. r=bsmedberg, r=markh, a=lizzard MozReview-Commit-ID: 1wwLdY2iumV --HG-- extra : source : ee6808c347afdf6a341bdc8992fe297764546daf 20 August 2016, 13:15:12 UTC
74ee720 Bug 1289906 - Part 1: Use an observer to know when the user signs into sync after an undo. r=markh, a=lizzard MozReview-Commit-ID: BPjUVvYdsRG --HG-- extra : source : 0fe247649cf4fccc9bb86ea1b3896ee451c2d32b 22 August 2016, 11:39:39 UTC
748eaf3 Bug 1292500 - Notify WebrtcUI when video capturing is paused/resumed. r=gcp, a=lizzard MozReview-Commit-ID: UkJVR7zCbI --HG-- extra : source : fd2938bd35dee332fb9928a504cec80136911c87 extra : intermediate-source : e29cdbb036abf01b465dcbae14d6252feb115102 23 August 2016, 10:36:17 UTC
efd3f22 Bug 1289231 - Remove notification after it's been displayed for 3 days. r=dolske, a=lizzard MozReview-Commit-ID: CFARPDu3FnI --HG-- extra : source : 656a6b1bdec9749882809999daa4cdc740e7054a 25 August 2016, 18:00:31 UTC
ce2faa8 Bug 1289231 - Show 'undo' notification bar. r=dolske, a=lizzard MozReview-Commit-ID: 1qy7GUSaowb --HG-- extra : source : 468ca2351fe24b9244915e7d2ffde07810849f64 20 August 2016, 11:15:02 UTC
aa65c74 Bug 1289436 - Add telemetry for the length of time we take to import data. r=jaws, r=bsmedberg, a=lizzard MozReview-Commit-ID: CkbHJVRucr5 --HG-- extra : source : 3b0f290f1326950d6753fd5709f3b6c7d3542ea5 extra : intermediate-source : c2aa582a598090ba22e6fd0a6550a06bdc316161 26 July 2016, 17:05:08 UTC
e14b528 Bug 1296078 - Avoid passing nsCString objects to %s format string codes. r=gerald, a=lizzard --HG-- extra : source : 7d3bc3efebe0730a8f8d560ca5c07eb2501d74ad extra : intermediate-source : 45689e52b2e6d1a0988cb3eeafe2b6e2f4654b38 19 August 2016, 03:44:51 UTC
87da906 Bug 1079874 - Define device configuration in inflated resources. r=sebastian, a=lizzard See the added code comments for motivations. Note that this is a speculative patch - I was unable to reproduce the crash and thus do not know if it fixes it, however, I did test that the appropriate toolbar configuration is created on vanilla Android for phone & tablet. MozReview-Commit-ID: 2v1Ix8X68LH --HG-- extra : source : 5af54ccbe317f7e4ba192b2960f7f7cb758f9001 01 June 2016, 21:49:29 UTC
ef92758 Bug 1297798 - Pref off cubeb full_duplex audio on windows for Fx49. rs=jesup, a=lizzard MozReview-Commit-ID: Kgo5q8R5qnw 24 August 2016, 19:59:41 UTC
55fe9f0 Bug 1295894 - Show localized strings for browserAction/pageAction title. r=kmag, a=gchang MozReview-Commit-ID: 1SMd3cnUOH4 --HG-- extra : source : 5aea87afc510f2b64c9ca3617fd27b78af95f4af extra : intermediate-source : 5eb305dd00ae7a6f949727e7a1c82d11e5310f21 17 August 2016, 06:39:33 UTC
efb29f6 Bug 1295732 - Update system add-on spec to reflect override behavior of updates. r=mkelly, a=NPOTB MozReview-Commit-ID: GNSMwBxFN2Z --HG-- extra : source : 5e90d3459e8cfdc07a3572e7ddda86c70c80528c extra : intermediate-source : fa1adee0fb582bc6ae5542047d09b02a37e2a6f9 19 August 2016, 01:33:08 UTC
caff67d Bug 1284564 - Correct update behavior section of system add-on spec. r=mkelly, a=NPOTB MozReview-Commit-ID: JtncY5gvcN7 --HG-- extra : source : 4b1f7a028b0edd2901b77725e3dc7d3807af86f8 05 July 2016, 16:59:22 UTC
c43652a Bug 1295732 - Allow system add-ons updates to override defaults per addon ID. r=aswan, a=lizzard --HG-- extra : source : 295ba38f59c87aa0ece0a187e403e71adcf5c9b7 25 August 2016, 14:14:00 UTC
4897709 Bug 1289229 - Disable automigration undo if people create/change bookmarks/logins. r=mak, a=lizzard MozReview-Commit-ID: DAoNV9H71Yv --HG-- extra : source : 80afb86a5a171430c5d687f7fd697d809505fda3 26 July 2016, 11:48:37 UTC
12e7aa3 Bug 1273043 - Add a missing null check to HttpChannelChild::DoOnStartRequest(). r=michal, a=gchang --HG-- extra : source : df35aa6dffb62d73cbc404094e2cf5ee147bf587 12 July 2016, 00:33:07 UTC
0be0c6e Bug 1283542 - Fix profile detection code in AutoMigrate to deal with profile objects instead of identifiers. r=Dolske, a=lizzard MozReview-Commit-ID: KHjsOsxwzb7 --HG-- extra : source : 4af575a99ef27674f3e36b02cb57967be0d66396 30 June 2016, 16:57:33 UTC
43e7af3 Bug 1283565 - Add telemetry to determine whether undo works and how often it's unavailable due to sync. r=dolske, data-r=bsmedberg, a=lizzard MozReview-Commit-ID: LwFrwbEQLtV --HG-- extra : source : adfe23aae513a339ef042d5ff4255500e452114a extra : amend_source : c0c1df7a0d4d9172386f151279db95f0b3dc3b8b 30 June 2016, 18:02:46 UTC
caecc15 Bug 1199678 - Recognize MS Edge in MigrationUtils.jsm for default browser detection. r=dolske, a=lizzard MozReview-Commit-ID: Bmuyv59fRAv --HG-- extra : source : 60999c6bc40ac97478bb216182d02cd857e3e206 29 June 2016, 18:37:48 UTC
8cb7651 Bug 1283267 - Save start time of automigration when we save the finished time, to ensure both actually get written to prefs. r=dolske, a=lizzard MozReview-Commit-ID: J4foRyWlJTv --HG-- extra : source : dbcd0b21370bacd2a59e724065a4b40e42b40b82 29 June 2016, 19:59:23 UTC
224eabe Bug 1271799 - Implement undo functionality in automigration code. r=mak, a=lizzard MozReview-Commit-ID: 28yvZyVimOx --HG-- extra : source : 101de7dd28aa446f0c23cc701647d6399ed7490b 20 June 2016, 11:12:28 UTC
b43ef1e Bug 1281602 - Rework automigration telemetry to use an enumerated histogram. r=bsmedberg, r=dolske, a=lizzard MozReview-Commit-ID: 37XarohGgMN --HG-- extra : source : e1af8a633527ae1c95bf0e630a75f9810be3995d 23 June 2016, 09:02:59 UTC
8418333 Bug 1271775 - Allow bypassing the initial migration dialog. r=jaws, a=lizzard MozReview-Commit-ID: LkhHl7ipGEb --HG-- extra : source : 63b15ddaadae76e75d262878926b37fc989e9a85 extra : histedit_source : 1c05c32882c7524b7c69e7a86acde3b0d9f8078d%2Cdbe3ea5907012f4f4f5488ddd982ae6573f21b73 10 June 2016, 09:11:51 UTC
804bc1a Bug 1290244 - Remove cairo image surface fallback due to threading issues. r=lsalzman, a=lizzard 25 August 2016, 17:25:03 UTC
8e835c7 Bug 1294677 - Check for large image sizes. r=jrmuizel, a=abillings --HG-- extra : source : a489ca380382afe2ec8592913d436fdc1958e7ff extra : intermediate-source : b0b52bebfd3dff0705f0efddc1d0827144eb1e21 25 August 2016, 02:14:02 UTC
8fb7378 Bug 1280645 - Remove debug logging statement in driver.js. r=automatedtester, a=test-only MozReview-Commit-ID: 4MgUCESlLl5 --HG-- extra : source : d649abd9461e13ca378e15d75f8d31eba9336a0d 17 June 2016, 14:56:45 UTC
74f8e41 Bug 1271374 - Cache-bust page URL. r=me, a=test-only MozReview-Commit-ID: FAdxwoxRLMA --HG-- extra : source : bd37925de22b1e4ff9f2c8ec5d82d0daed0e78aa extra : intermediate-source : f23d8ea54ced4980a8c375f41fce8afe5b2bdcab 24 August 2016, 01:00:58 UTC
28abc91 Bug 1296354 - Properly handle etags generated by multipart s3 uploads r=nthomas a=release DONTBUILD MozReview-Commit-ID: 5gmXDKZwlSC --HG-- extra : source : 90a6705c14cffd1f075aabb36bc9cd5fab9a8ca5 25 August 2016, 02:06:30 UTC
479e058 Backed out 7 changesets (bug 1128069) for wpt failures. Backed out changeset dcdb0d847056 (bug 1128069) Backed out changeset 3ab8087d6442 (bug 1128069) Backed out changeset 59249959e591 (bug 1128069) Backed out changeset b6a0e932239c (bug 1128069) Backed out changeset 54443c52eafe (bug 1128069) Backed out changeset 4cc53d8de37e (bug 1128069) Backed out changeset cfb0fd8665b8 (bug 1128069) 25 August 2016, 12:50:35 UTC
fba1093 Bug 1296907 - Fix 1px offset of private browsing to 'normal' browsing window. r=mstange, a=lizzard MozReview-Commit-ID: 2TkYag9o9Na --HG-- extra : source : e0bffa9456d64902a3d9a5c7a7b82c24ec721d8f extra : amend_source : f958721d2e77525d851e58419b4b394e5cd9b34e extra : intermediate-source : 30b1e0880c0f629c19f19b83576e6f5bd4f72a15 22 August 2016, 21:52:26 UTC
1981e2d Bug 1296524 - Don't add Skia to the allowable canvas types unless USE_SKIA is defined. r=mchang, a=gchang --HG-- extra : source : 0ed0fb296e50b8f3a8e4dae296a7ee6e841b1bb8 extra : intermediate-source : 1498a3c2f15c0631f883a70d4faa22d39c855750 22 August 2016, 17:50:48 UTC
6f77c55 Bug 1296453 - [MSE] P2. Clean up SourceBufferResource. r=gerald, a=lizzard The code was designed around the need for a MediaResource::Read which is no longer possible since bug 1190238 MozReview-Commit-ID: 7s76YWg93jS --HG-- extra : source : 13294e0b2e81ba0b52e6af7586ce9de3a06793e4 extra : intermediate-source : a453051db7bf33fde00a8ff2b68f1c08e6b72ee0 23 August 2016, 05:38:46 UTC
4196c5f Bug 1296453 - [MSE] P1. Fix eviction. r=gerald, a=lizzard The MP4 demuxer returns INT64_MAX when all data can be safely evicted from the MediaResource. Additionally, the MP4Demuxer will read the MediaResource using CacheReadAt. Eviction in the SourceBufferResource had a safeguard to ensure we would never evict data we hadn't read yet. This was done by keeping the position of the last data read in the mOffset member. CacheReadAt however doesn't update mOffset. As a result, no data was ever removed from the input buffer when using MP4. MozReview-Commit-ID: 2tAWzpMlOjG --HG-- extra : source : 6f87d2ddadafac5822030570eac63e56bc4e3775 extra : intermediate-source : fc33239f919a377fed3d9bd3185e14c25ab7d7c6 23 August 2016, 05:18:22 UTC
1fbe3a7 Bug 1293593 - Fix crash due to an Objective-C exception when calling getRed:green:blue:alpha on an NSColor instance with an incompatible NSColorSpace. r=mstange, a=sledru --HG-- extra : source : 66d066d5f608c969d486c310d297d2c7fac79aaa extra : intermediate-source : 41d9edca678070b9a830202c7fe9d60ca5c46c69 20 August 2016, 03:17:58 UTC
9477529 Bug 1292628 - Make sure our surface is good before locking it. r=mstange, a=ritu This should fix a crash in ssse3_fetch_bilinear_cover. --HG-- extra : source : 7249543cf71acbe21ab6306ce321f1207611cf5d extra : intermediate-source : 2da9027d1d97e238331057c80243184f5dafe22f 21 August 2016, 10:27:07 UTC
448d2ff Bug 1296642 - Avoid compiling {Read,Write}Sentinel calls in non-sentinel checking builds. r=billm, a=lizzard Pickle::{Read,Write}Sentinel were introduced as a way of catching problems with corrupted IPDL messages at the point of message serialization, rather than the point of use of the bad data. The checking itself is only done on debug or non-release builds, but the calls to the functions are compiled in regardless of whether checking is done. While LTO could plausibly optimize away all the calls, we don't have LTO on all of our platforms, particularly mobile. Therefore, we should move the non-checking versions of the calls inline, so the compiler can eliminate those calls entirely, even in non-LTO builds. --HG-- extra : source : 9140ec44d27bfafda3b226e11dbbfb36ff4e304e extra : amend_source : 637905ce1baa624ab2c1ed3f1843b8c5ad864384 extra : intermediate-source : 8a0abccd95639178abc9c36aebd9e0c7cf9ea5d5 20 August 2016, 01:22:28 UTC
795318d Bug 1287588 - Fix parameter ordering in embed tags. r=bsmedberg, a=gchang MozReview-Commit-ID: 75ferxsBTgs --HG-- extra : source : 1361e4b73c4b3d01e421669c0a8cad6e25c45bf4 extra : intermediate-source : ab917c9f7f7e9c8c9897e04ce5b1add02be6d722 18 August 2016, 17:19:33 UTC
cd2aa14 Bug 1275518 - Add null pointer check before accessing DatabaseInfo::mConnection. r=janv, a=gchang --HG-- extra : source : 075e2a3ab45c6c7ac32fc87081cb42ce0b9fa431 extra : intermediate-source : b41ad28f49b25f11c30b917dbeacfe8afae0b7a4 17 August 2016, 08:13:50 UTC
ec54f20 Bug 1221174 - Define the HiDPI version of Share's add-share-button for all themes. r=dolske, a=sledru MozReview-Commit-ID: DgNcIVERdx1 --HG-- extra : source : 5277c74e20357c8d1233bf6c1d0113de0fe5404f 16 August 2016, 19:44:15 UTC
1dc8da0 Bug 1294102 - Use the original height that is not affected by the top to decide the button style on OSX. r=mstange, a=gchang 13 August 2016, 06:34:57 UTC
3efbbdd Bug 1294439 - Mark add-ons as soft disabled even if they are app disabled. r=aswan, a=gchang MozReview-Commit-ID: FcPwk5YEtRT --HG-- extra : source : b4e9c7e20cf8d7adfb15df7cc4bc4fc84fccc8ba extra : intermediate-source : c12fc22f63b34294a11df81fd48600a09906fc01 11 August 2016, 17:57:39 UTC
a2d0015 Bug 1272332 - Allow dark gtk theme with environment variable. r=karlt, a=gchang --HG-- extra : source : f1cf1b0ff3086988d2bd91e1751deaf708fd3892 extra : intermediate-source : e2be3bbce44a9f118a1cfe17961fad25f0ffe8dd 05 August 2016, 13:21:00 UTC
e5682bf Bug 1128069 - [MSE] P7. Adjust webref expected results. r=gerald, a=lizzard MozReview-Commit-ID: GuCLiS2FfnS --HG-- extra : source : 4ce72936dad69b3f63846937a5ea67d217be003d extra : intermediate-source : c3efd7828d05bb960533675df49c43b8c63ca522 05 August 2016, 06:05:58 UTC
028a339 Bug 1128069 - [MSE] P6. Call NotifyDataArrived from MediaDecoder. r=gerald, a=lizzard Calling NotifyDataArrived from each sourcebuffer will cause multiple unnecessary NotifyDataArrived to the MediaFormatReader when it could only be done once. Additionally, it ensures that the media duration is updated prior to the reader actioning on the notification. Extra: mEnded is only ever accessed on the main thread, there's no need to make it atomic. MozReview-Commit-ID: IKq7IRBbWic --HG-- extra : source : b406ebdeebd2d448b15f01ea8d1aa1040f41c0bd extra : intermediate-source : 406d8567f67f084a7580e09af60d7f0166b3b4d4 08 August 2016, 03:56:38 UTC
b3a51a9 Bug 1128069 - [MSE] P5. Adjust currentTime to end position in MediaDecoder. r=jwwang, a=lizzard The duration in the MediaDecoder is the canonical. It has as such a more up to date value than the mirror. Under some circumstances, the MDSM may have reached the end of media playback before the duration mirror had time to update. So perform the currentTime adjustment in the MediaDecoder instead. MozReview-Commit-ID: 1RFr4mT5LpA --HG-- extra : source : 8cc5eea320fbd6a3e0b5e89bf19c7e398c1a3513 extra : intermediate-source : 5289599089085d1d7e8b8772f7616da483d8b002 08 August 2016, 03:49:51 UTC
e7d0b19 Bug 1128069 - [MSE] P4. Do not adjust duration to what data we may have been seen in the past. r=jwwang, a=lizzard With MediaSource, the duration is always known and exact. It is entirely possible that we have played data at some point, then removed that data and adjusted the duration. MozReview-Commit-ID: HZe2yXtQfIL --HG-- extra : source : 95ecfed6808e4e8509011ac0c8a210cc347b3b4e extra : intermediate-source : 1d21ee1349fc3faca03e2db4278728a50d496110 05 August 2016, 06:03:01 UTC
1f0af96 Bug 1128069 - Update webref MSE tests according to updated spec. r=gerald, a=lizzard See w3c/MSE Issue 19, 20 & 26. Changing the duration now can never call the range removal algorithm. An explicit call to remove must be used for range removal. This spec change performed the following: - Require remove() for all Range Removals MozReview-Commit-ID: 860PnQ9yrbc --HG-- extra : source : c0aa02955756575b9b79e2064c952f803ec3a037 extra : intermediate-source : 4db9c594a2a1346c47f78dd287d6e31200938c4f 05 August 2016, 06:01:03 UTC
9b20df0 Bug 1128069 - [MSE] P2. Change webref expectations now that the test is valid. r=jwwang, a=lizzard Test is failing on Linux Opt, see https://bugzilla.mozilla.org/show_bug.cgi?id=1128069 MozReview-Commit-ID: kaRQMtvEjN --HG-- extra : source : 8563ff06f0d5d57049e9aa24dc539293841121ce extra : intermediate-source : de5617e33f399f69b77d0dd4dfa400f3d6450e42 05 August 2016, 04:52:44 UTC
7203914 Bug 1128069 - Correct invalid test. r=jwwang, a=lizzard It is incorrect to assume that the seeking attribute will still be true once the seeking event handler gets to run. Seeking may have completed between the time the seeking event was queued and the time the seeking env is fired. MozReview-Commit-ID: CZFFotMyaIu --HG-- extra : source : fbe63241a709b0dff5bfcaf3461fa2f2994bfd29 extra : intermediate-source : 61c7711193eef45737235dda88eedf0432521d48 05 August 2016, 04:51:15 UTC
10646af Bug 1259872 - Don't cull all layers under an opaque layer that covers the container if that layer has a scrolled clip. r=mattwoodrow, a=ritu MozReview-Commit-ID: Abmm28HiLqR --HG-- rename : layout/reftests/async-scrolling/bg-fixed-child-no-culling-ref.html => layout/reftests/async-scrolling/bg-fixed-child-no-culling-1-ref.html rename : layout/reftests/async-scrolling/bg-fixed-child-no-culling.html => layout/reftests/async-scrolling/bg-fixed-child-no-culling-1.html extra : source : a008184ea135006842f13e75e879e56e60432dd0 extra : intermediate-source : 8194b6ebcb72d699420315234762ebea6b718de4 05 August 2016, 02:40:56 UTC
3133ad4 Bug 1274079 - Ensure that after dispatching beforeprint, we have still valid ContentViewer to print. r=bz, a=sledru --HG-- extra : source : 3dcece1fa22087cafa83b9c25b615d7a735e9205 extra : intermediate-source : b0b057f49fa609dd1295452759226aa6cc933034 02 August 2016, 18:41:51 UTC
30cd990 Bug 1272133 - Fix runtime error thrown when no shortcut is found for the target platform. r=kmag, a=gchang MozReview-Commit-ID: CzR64GL5mxn --HG-- extra : source : 47426821ace445d4c9fa24c4cffe3be9e1c6f3b1 25 July 2016, 18:18:12 UTC
86a1f3e Bug 1280743 - Put Widevine stuff under #ifdef MOZ_EME to make this file compile under --disable-eme. r=cpearce, a=lizzard --HG-- extra : source : 24999edead4ee8f1fa54c2820a436ba4b266b38b 21 June 2016, 11:23:29 UTC
1125074 Bug 1294095: Swap order of notifications on association failure r=bwc a=abillings Import of d1208ae from upstream git MozReview-Commit-ID: 3s0Gm7S9KlZ --HG-- extra : transplant_source : %A1Th%86e%22%7D%25nv%D6V%0Ew%7D%E8%FE%EA%0Cs 23 August 2016, 18:09:13 UTC
33052f4 Bug 1290548 - Unbranded add-on developer builds are updating to branded Firefox builds r=jlund DONTBUILD a=test-only 24 August 2016, 16:37:20 UTC
3945ae6 Bug 1297083: Don't insert audio for GetUserMedia N times if opened N times r=pehrsons a=gchang MozReview-Commit-ID: JUH4WBnNyUT --HG-- extra : transplant_source : %E9%DA%92%C7Zi3%14%3DC%FB%A5.W%CA%D2%A7%D9%24l 22 August 2016, 14:59:00 UTC
4e203e5 Bug 1296449, statically link mbsdiff.exe, like we do for mar.exe r=glandium a=sylvestre MozReview-Commit-ID: 8oedeUVoQr4 --HG-- extra : source : c01a9c030fd094e73d45bf88639fc320127b9a3e extra : intermediate-source : 4808dc6e844f73db06db0405114d9cb1884e7bf4 22 August 2016, 04:59:33 UTC
7307f0d Bug 1274042 - Remove unnecessary edge case handling for E10S mode in prompt tests. r=Dolske a=lizzard MozReview-Commit-ID: FKocwybNyib 12 August 2016, 16:45:44 UTC
2057226 Bug 1274042 - Fix checkbox for HTTP auth dialogs in e10s. r=Dolske a=lizzard MozReview-Commit-ID: CuOBJ9m0DMW 12 August 2016, 16:35:42 UTC
4434133 Bug 1294650 - Install shim 'qipcap' dlls into the Firefox folder to circumvent dll injection by the 3rd party Websense product. r=aklotz a=sylvestre CLOSED TREE MozReview-Commit-ID: 11qJbfim7Lm --HG-- extra : source : d332de44654828b81e2ad13ec2d7fe54eb8d2de9 extra : amend_source : 16ac164512a3df63f339417ab148c539c4db19b1 extra : intermediate-source : 55257aa20efc7b17d1ad5491ca0088ae66b62546 22 August 2016, 11:53:38 UTC
2b09f36 No bug - Tagging e6d6eb0ce3c42b4ebca91b1b1b64b716b2acb9fd with FIREFOX_49_0b6_BUILD1, FIREFOX_49_0b6_RELEASE a=release CLOSED TREE 23 August 2016, 15:00:18 UTC
4df44d4 Automatic version bump. CLOSED TREE NO BUG a=release 23 August 2016, 15:00:15 UTC
d8f16ff Bug 1255261 - Read current paragraph after pressing stop. r=jaws, a=lizzard We always had to make sure we were one paragraph back from where we wanted to start. That seems broken. I made it so that we start from the current paragraph. MozReview-Commit-ID: 4HMTdXcF644 --HG-- extra : source : 84b11aee0b433f8ca33c870804965f5f9e952261 18 August 2016, 14:15:00 UTC
b192715 Bug 1281040 - Make sure we detach from worker client when target is destroyed. r=jlongster, a=lizzard --HG-- extra : amend_source : 536763ed8addd6ad404c5af7550da6549fde33e3 22 August 2016, 18:12:28 UTC
dbda37d Bug 1277626 - Create test DXVA decoders on the main thread so that we can protect them with a crash guard. r=jya,dvander a=lizzard --HG-- extra : source : 6047635058edf8b297698f4b1bb182f0d00bf2f1 25 July 2016, 03:18:55 UTC
73c6c75 Bug 1292522 - Add test for bug 1292522 - the same domain host with different port numbers must be treated as the same domain. r=smaug a=lizzard --HG-- extra : source : af1ae450676a05584c4be462900552b4b07996c5 extra : intermediate-source : e6bbc936ae4ab1c5880c5ea3ad48839c748b5262 16 August 2016, 13:44:00 UTC
5446768 Bug 1292522 - Fix regression from bug 409885. r=smaug a=lizzard --HG-- extra : source : 06b37b01a0a593c5cadb315c0c6fc5dabbb57d33 extra : intermediate-source : b559173b179738169662cc2203d1831cd7ec9a7b 16 August 2016, 13:44:00 UTC
0bc79d6 Bug 1293985 part 2 - Make EnumerateSubDocuments resilient to adding/removing sub-documents. r=tn a=lizzard --HG-- extra : source : 0e93a5912b99393b3229ae1a76e82063c2cbfbfd extra : intermediate-source : 44330fe94f7b84c08273d659b6a77f408338c9eb 19 August 2016, 17:56:20 UTC
dfc41a9 Bug 1293985 part 1 - Hold a strong ref on aDocument. r=tn a=lizzard --HG-- extra : source : 0bd6f2742f7babe4c8f7a944be153bfdca693f6b extra : intermediate-source : ba8075cd3fb917e38d90669c29c97a683fbf8b21 19 August 2016, 17:56:20 UTC
fbb8d22 Bug 1288946 - Propagate the mParentFrame from the nested GetInsertionPrevSibling call -- it may be a continuation. r=heycam a=lizzard --HG-- extra : source : 5efdbc22fb511281da3ff3f73abe024769fd55e7 extra : intermediate-source : 938357e8d2546003e4dbb7a5158ca75ca48ac757 18 August 2016, 16:21:26 UTC
be707aa Bug 1294171 - Part 1. Treat unresolvable mask as no mask before support image mask. r=mstange a=lizzard MozReview-Commit-ID: 9f2k7NtpYuR --HG-- extra : source : 23fcd6d28628cc797d6ef905b392c78b93482122 extra : intermediate-source : 4998add2cdadd31a8a3c106a231731edd8216b52 18 August 2016, 03:24:28 UTC
3148c28 Bug 1291700 - Allow negotiate/ntml to work when in the 'Never remember history' mode. r=jduell a=lizzard --HG-- extra : source : 1c68bc94ea52f655495103cd97a6436d5724e5ab extra : intermediate-source : 28353c3a97ed6409a37f15d62b0be87ae37b91db 16 August 2016, 10:24:00 UTC
522d6dc Bug 1280666 - Expose velocity (speed) from StackScroller and use in APZC r=rbarker a=gchang 22 August 2016, 16:36:08 UTC
d27db69 Bug 1280666 - Use StackScroller from Chrome for fling animations r=rbarker a=gchang 22 August 2016, 16:36:02 UTC
c0c700a Bug 1280666 - Allow class annotations to set defaults for members when generating Java bindings r=jchen a=gchang 22 August 2016, 16:35:47 UTC
942f945 No bug, Automated blocklist update from host bld-linux64-spot-305 - a=blocklist-update 20 August 2016, 10:14:34 UTC
71f3285 Bug 1294649 - Don't show EME plugins in the plugin list that are disabled. r=spohl, a=lizzard I noticed that on Linux is you have 'Play DRM content' unchecked, and then open about:addons > plugins, and then check 'Play DRM content', that the Adobe CDM then appears in the about:addons > plugins list. This is because in GMPWrapper.onPrefEMEGlobalEnabledChanged() we're taking the branch that calls AddonManagerPrivate addon listeners. We're doing that because we're only checking the GMPWrapper.appDisabled on that branch, and so if EME is enabled, we'll go down that path for the Adobe CDM on Linux, even though the CDM itself isn't visible/supported on Linux. So we should instead only go down that path if EME is enabled, *and* if the GMP is not hidden. We can uninstall the GMP if it's hidden or EME is disabled, as there's not much point in keeping the plugin around if its disabled. This means toggling the 'Play DRM Content' checkbox doesn't make the Adobe CDM appear in the plugins list, and also if the Widevine CDM is explicitly disabled, it still appears in the plugins list if 'Play DRM Content' is checked, but it appears in a disabled state. As you'd expect. MozReview-Commit-ID: Fq10vnhiaKO --HG-- extra : source : 212d06d11b24ccf163c689233f382a5995aa9914 extra : intermediate-source : c43cb7e9ce93af133fe4eaee82699b1889d206d2 16 August 2016, 04:15:45 UTC
81e2e07 Bug 1294649 - Ensure 'Play DRM Content' is unchecked by default on Linux. r=gerald, a=lizzard The current UI for EME on Linux is confusing. We have the 'Play DRM Content' checkbox ticked, but the CDM disabled. It would be clearer if we just had the 'Play DRM Checkbox' unticked, and instead left the Widevine CDM enabled. Then we won't download and install the CDM until the 'Play DRM Content' checkbox is checked (which toggles media.eme.enabled). This also means that the Widevine CDM won't appear in the plugins list by default unless the 'Play DRM Checkbox' is checked. MozReview-Commit-ID: 7CeCe1DOWgM --HG-- extra : source : bca6f19b932088c6f2231906b5a2bba7d12442ee extra : intermediate-source : cf696b986483b2b58c760e0063c8260904c7fe8d 16 August 2016, 04:12:55 UTC
9265858 Bug 1286480 - [10.12] Widevine CDM always crashes on Amazon since upgrade to macOS Sierra. r=gcp, a=lizzard Allow /System/Library/PrivateFrameworks/ to be read from the from the plugin sandbox. --HG-- extra : source : 10e99226d8377dc87993983ffae5b2b05fd27ced extra : intermediate-source : 947cb99af8fef61905b281d29e86c9a216a9ddca 11 August 2016, 07:57:52 UTC
ec48d58 Bug 1294142 - Fix crash in TimeMarchesOn. r=jwwang, a=ritu 15 August 2016, 03:20:21 UTC
d62878c Bug 1292081 - Prevent reloading web pages twice when devtools are opened. r=jryans, a=lizzard --HG-- extra : source : 39fdb9c2017e96940075926234809cef0f8b5f1b extra : intermediate-source : c6110450ff8f25ee4ce5073a9a4a4cb48474ecd5 11 August 2016, 11:14:36 UTC
6f69266 Bug 1290318 - Listen to "cacheservice:empty-cache" to clear media cache. r=mayhemer, a=lizzard --HG-- extra : source : ae48669d6b0711b296c1a208bb1511584ab6be5c 17 August 2016, 02:51:38 UTC
back to top