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

sort by:
Revision Author Date Message Commit Date
8e3301a Bug 1297446 - Shimwaiver for l10n. r=billm a=lizzard --HG-- extra : source : 6a32c1e67f222930df2fc7f0b1806c365af3187b extra : intermediate-source : 8fd9e2518fc2730431cca774b377ed5f7bf577fe 31 August 2016, 08:59:28 UTC
70097db Bug 1051567 - Make sure we resend file descriptors for the first chunk of a message. r=billm a=lizzard Check if the buffers iterator was never consumed. This is a regression introduced when converting ipc to use BufferList in bug 1262671. MozReview-Commit-ID: LWAoVlI5CKJ --HG-- extra : source : acb978a84753654b4deca915b12504f1c0c27fd0 extra : intermediate-source : 6c81e14892719ff017d92f61dff2f41f57b764e0 30 August 2016, 10:26:59 UTC
5e5325e Bug 1298505 - CSP: Update StripURIForReporting to rely on NS_SecurityCompareURIs. r=dveditz a=lizzard --HG-- extra : source : f17ae97cb65e28d54a3601e2e879d18fdee8d0bd extra : intermediate-source : b0726c0c5d3000060985db919150ccd991c879b5 27 August 2016, 06:30:43 UTC
7313cbd Bug 1294536 KeyboardLayout::InitNativeKey() shouldn't initialize NativeKey with WM_CHAR whose wParam isn't a printable character r=m_kato a=lizzard KeyboardEvent::InitNativeKey() should initialize NativeKey if it's created for handling an orphan WM_CHAR message, however, if it the charCode isn't a printable character such as 0x0D for Enter key, it shouldn't refer it because focused editor shouldn't handle keyboard event as inputting the non-printable character. MozReview-Commit-ID: FwTdGqhPEld --HG-- extra : source : 9a5808908b11dedb2413096ce1d2d24623014229 extra : intermediate-source : 97c87f3e3854a925376ceab268e37df796cd574d 22 August 2016, 05:23:59 UTC
f4fcb0c Bug 1299256 - Fix performance issues when stripping comments from large locale files. r=rpl, a=gchang MozReview-Commit-ID: H7IfBnQ4KnO --HG-- extra : source : 21ec43d33e0c2ac8049355c506282ce076625578 30 August 2016, 19:24:23 UTC
7755c83 Bug 1293308 - System font setting respected by location bar but ignored by location bar's autocomplete drop-down list. r=mak, a=gchang MozReview-Commit-ID: ID6qXdbsNck --HG-- extra : source : f32e2e8eb298f2e7ef2e541ac0c57dbb59a88b3a extra : intermediate-source : ca23401297492d3ccc01f237158c22582aed9f66 25 August 2016, 02:46:46 UTC
7ca682b Bug 1282746. r=Waldo, a=gchang --HG-- extra : source : fcfbc324f3897f214e75c66935ba0bbbab82d2da 16 August 2016, 13:28:26 UTC
1de7861 Bug 1265249 - Fix painting of drag selections that contain multiple ranges. r=Bas, a=gchang --HG-- extra : source : 07322a610cf811ce8b9a6b76f8b731af1f30d9d7 26 June 2016, 15:34:48 UTC
472ac35 Bug 1299018 - Report late frames as dropped instead of presented. r=kikuo, a=gchang MozReview-Commit-ID: FYHMGqUHjoL --HG-- extra : transplant_source : %9E%CF%C5hd%BA%88d%7D%FA%DE%8A%97t%D1%13%2A6On 30 August 2016, 03:39:27 UTC
18ce2b2 Bug 1262702 - Avoid racing with initial shutdown in test_service_worker_lifetime.html. r=kitcambridge, a=test-only --HG-- extra : source : 31b100c982b54fe53a548b57e10f67240bc6a011 extra : intermediate-source : 145d2272fe844b59a4b07d836273e0cef8bf31dd 30 August 2016, 17:04:27 UTC
8988105 Backed out changeset dc5f81f5bf67 (bug 1269036) for causing Linux timeouts in test_HighPriority.html and subsequent tests. 01 September 2016, 15:27:14 UTC
331b206 Bug 1287316 - Release assert or deal with empty arrays. r=mstange, a=lizzard --HG-- extra : source : e0acf6746962e2c6921d53cf5023f16ca424c12d extra : intermediate-source : 7521a722866717c7bc4665c3a1f5d3882f52dc05 30 August 2016, 22:38:30 UTC
c7f6af8 Bug 1295622 - Don't crash the content process if a memory report fails. r=njn, a=lizzard --HG-- extra : source : c9df0314cff2c3034c396b21a875b8fd80a712c2 extra : intermediate-source : d632eadae7e364e18124a2aab0936cf333850702 27 August 2016, 01:29:00 UTC
fcf20b4 Bug 1297951 - Add Sylaps to whitelist. r=jesup, a=lizzard --HG-- extra : source : f18100fdf2aee6704a5183741d737bd376efdf13 extra : intermediate-source : 9f9819fd9c3046b729d76448fa67493372cd9bbf 29 August 2016, 16:01:25 UTC
0d7385b Bug 1290825 - Reject various things that aren't user-action pseudo classes when they follow pseudo-elements. r=bz, a=lizzard The existing code, from bug 922669, in ParsePseudoSelector that allows things to come after a pseudo-element requires that the first character after the pseudo-element be a colon. However, this doesn't forbid things like ::-moz-color-swatch:hover#foo, which need to be errors in ParseSelector; those tests are added here. Furthermore, the error-checking in ParsePseudoSelector doesn't prevent the pseudo-element from being followed by a :not() or by an additional pseudo-element; to fix that this patch moves the error tests out of the pseudo-class condition and also has it test !isPseudoClass. Without the patch, the tests produced the following failures: TEST-UNEXPECTED-FAIL | layout/style/test/test_selectors.html | selector ::-moz-color-swatch:not(.foo) was a parser error - got "1402", expected "auto" TEST-UNEXPECTED-FAIL | layout/style/test/test_selectors.html | selector '::-moz-color-swatch:not(.foo)' plus EOF is parse error followed by a crash due to: Assertion failure: !(IsPseudoElement() && (mIDList || mAttrList)) (If pseudo-elements can have id or attribute selectors after them, specificity calculation must be updated), at /home/dbaron/builds/ssd/mozilla-central/mozilla/layout/style/StyleRule.cpp:503 in CalcWeightWithoutNegations from the "::-moz-color-swatch:hover#foo" test. With that test commented out (and still without the code changes), there is instead an additional pair of failures from the following test: TEST-UNEXPECTED-FAIL | layout/style/test/test_selectors.html | selector .foo::after:not(.bar) ~ h3 was a parser error - got "1406", expected "auto" TEST-UNEXPECTED-FAIL | layout/style/test/test_selectors.html | selector '.foo::after:not(.bar) ~ h3' plus EOF is parse error along with a failure due to an unexpected assertion: ###!!! ASSERTION: Shouldn't have negations: '!selector->mNegations', file /home/dbaron/builds/ssd/mozilla-central/mozilla/layout/style/nsCSSRuleProcessor.cpp, function AddRule, line 3415 With the patch, the tests pass. MozReview-Commit-ID: KxAFSQtPVhu --HG-- extra : source : 4ccc68de45278a1f881e24e74759f15e3379bb86 extra : intermediate-source : 25ca86f29088fae3ac4b8aa48a83a6a1f99bb7c8 29 August 2016, 18:43:30 UTC
437146c Bug 1296678 - Uninitialised value use in nsDisplayBackgroundImage::IsNonEmptyFixedImage. r=botond. a=lizzard --HG-- extra : source : 137be83b273c2e9dfc3a2d710f22f3ee152baea0 extra : intermediate-source : 42711ffd066bd25cc831e82411809c8084b50101 26 August 2016, 07:20:58 UTC
5688703 Bug 1292593 - Add missing border to autocomplete popups. r=gijs a=lizzard --HG-- extra : source : c819e284a13937fc955c2efb6da7fdf9c5bb8b88 30 August 2016, 16:38:15 UTC
417018e Bug 1294161 - Add operator== overloads for comparing HandlRefPtrs to their raw Handles. r=bholley a=lizzard MozReview-Commit-ID: jTQZXyNbqM --HG-- extra : source : 906c1f635c43ca24c685c7d1343d58eb0e4b0baf extra : intermediate-source : aaa878146a67eb7af1d07652e79f913a92339971 26 August 2016, 06:02:45 UTC
68a292c Bug 1286490: Handle IPC timeout exceptions during elevated updates on OSX. r=mstange a=lizzard --HG-- extra : source : 7034b14c71ba4cfa4ffa1e4160d449e0e816d734 30 August 2016, 17:09:50 UTC
79c55df Bug 1292602 - Set notification client before launching Gecko to avoid crash on notification. r=sebastian, a=lizzard Gecko could potentially send notifications via ShowAlertNotification (or any related method). It's possible for this to happen very soon after launching Gecko, so we need to set the GeckoAppShell's notificationClient before launching Gecko to ensure that it can handle notifications (this also avoids the associated crash - we could try to do null-checks instead, but that would result in dropped notifications, which doesn't seem useful). MozReview-Commit-ID: 5MG8bBnt12M --HG-- extra : source : 6c9ce18c54e727baaae3a140e919394f0c0ba78e extra : intermediate-source : 1990fae00dfa8256bc6255be0c3e054635c3416b 19 August 2016, 16:51:37 UTC
4faca6f Bug 1293476 - Decouple URI_SAFE_TO_LOAD_IN_SECURE_CONTEXT and MAKE_LINKABLE. r=dveditz, a=gchang MozReview-Commit-ID: FZEemKDafEg --HG-- extra : source : 2031351aaad91af6de7d332f05af8c135d243054 15 August 2016, 08:22:59 UTC
0823382 Bug 1269036 - Never call PBrowserChild::Send__delete__ in content process. r=smaug a=lizzard Automatically destroy TabParent if *aResult is not NS_OK or *aWindowIsNew is false. We should never call PBrowserChild::Send__delete__ directly in content process because the parent side needs to do some cleanup first. In this case if OpenWindowWithTabParent failed but the TabParent has been associated with a nsFrameLoader we could crash on trying to destroy a already destroyed TabParent. MozReview-Commit-ID: E2KFn6yA1Fm --HG-- extra : source : 7f1978918cb165cebd15024ba0b365f10f7cb2e5 extra : intermediate-source : 1b935d2bbf0b7dc4d58dd176e28f06bb177b558e 24 August 2016, 10:49:42 UTC
9e7b0ed Bug 1286627 - Check for undefined shell service before dereferencing it in the ShellService proxy. Linux builds that disable gio do not have the shell service defined and the proxy was throwing. r=Gijs a=lizzard MozReview-Commit-ID: 1wWcEfWFP2c --HG-- extra : source : a759a1704791bd3de6462d4153f02c7844e786b6 extra : intermediate-source : c66cc1b3d2273988fc49f14ca70464302248cb6a 23 August 2016, 00:34:49 UTC
b4b3666 Bug 1296411 - Correctly transform the adapter position to a cursor position when accessing the history cursor for getItemId. r=sebastian a=lizzard Because of the smart folders and section headers, the adapter position needs to be appropriately adjusted when trying to access the corresponding cursor item. MozReview-Commit-ID: n3FvcsYJ5T --HG-- extra : source : 22e53906eff8acd67682b6e1d5f96cb5d29b8761 extra : intermediate-source : 02876d17a0b794ac7c2959a763a92960463d92b0 18 August 2016, 20:06:38 UTC
2b84a09 Bug 1291768 - Avoid SIGSEGV trying to read ELF headers of libraries with a non-null base virtual address. r=froydnj, a=lizzard --HG-- extra : source : b9eeff3c5d370b1952422624af510e5a3dabfee3 extra : intermediate-source : 1954ae1ff39c60de190c744337259b12d83c01d5 17 August 2016, 22:16:40 UTC
6e30c2b Bug 1298401 - Ensure that eNone scroll update types from the APZC don't prevent eUserAction scroll updates from getting sent. r=tnikkel a=lizzard MozReview-Commit-ID: 7b9QN8knQUM 26 August 2016, 14:55:22 UTC
8490a44 Bug 1295552 - restart ice ctx needs stun/turn/dns setup to match original ctx. r=drno a=lizzard MozReview-Commit-ID: H8o3gEnFfzQ 18 August 2016, 22:29:49 UTC
655fce4 Bug 1299247 - Increase e10s activation on the release channel to 100% of eligible users. r=mconley a=sylvestre MozReview-Commit-ID: Aba1iQjfoLY 31 August 2016, 14:44:24 UTC
80ba895 Bug 1241019 - Skip browser_webconsole_output_dom_elements_03.js on e10s due to frequent failures. a=test-only --HG-- extra : source : 0f4d2ef453c82d2499564402c0c3666ac834b5d8 extra : intermediate-source : 33cc5c04357816d99c089dcbafc9f9a842eb8353 30 August 2016, 23:48:53 UTC
d617ffd Bug 1273475 - Use release assertions for PSM->NSS shutdown. r=ttaubert, a=lizzard Update the prior patch to use MOZ_RELEASE_ASSERT so that we cleanly crash if there's still an error somewhere in this logic, instead of deadlocking on beta (but crashing on aurora). MozReview-Commit-ID: InttEcC55Dn 30 August 2016, 23:33:32 UTC
f5fa1a7 Bug 1273475 - Fix deadlock and potential crash when PSM shuts down NSS. r=ttaubert, r=jcj, a=lizzard This fixes two issues: 1. nsNSSShutDownList::evaporateAllNSSResources could deadlock by acquiring sListLock and then the singleton's mNSSActivityStateLock in nsNSSActivityState::restrictActivityToCurrentThread. 2. Calling UnloadLoadableRoots before nsNSSShutDownList::evaporateAllNSSResources could result in removing modules that were still in use, causing assertion failures and potential crashes. MozReview-Commit-ID: 8ZgZTVw7sWh 30 August 2016, 23:22:30 UTC
525e743 Bug 1297534 - Revert the blocklist introduced to fix the startup crash in nsPrefBranch::GetIntPref (Websense Endpoint). r=aklotz, a=ritu MozReview-Commit-ID: EMkHwgvwLyt --HG-- extra : source : 8bcfd9dda91cd024bdebba5c599b8710e55ee829 extra : intermediate-source : 84ebfedf75a1c23bbcb83a2f9e85997a329853d0 23 August 2016, 22:03:00 UTC
6c58a82 Bug 1297750 - Uplift a couple of PDF Viewer UI regression fixes to Firefox 49. r=yury, a=lizzard This patch uplifts the following PRs: 1. #7463 - Add back moz-specific fullscreen support code for ´MOZCENTRAL` builds (bug 1268749, PR 7273 follow-up) 2. #7458 - Consolidate updating of various Toolbar state (e.g. page and scale) in one method in PDFViewerApplication 3. #7485 - Ensure that we don't reset the current page view if the user inputs an invalid page number (PR 7289 follow-up) Without these patches, the following things will *not* work in the PDF Viewer in Firefox 49: 1. The Presentation Mode will be completely disabled. 2. The Previous/Next (and First/Last Page) buttons will not be initialized correctly when the viewer loads. 3. The viewer will not behave correctly if the user accidentally enters a non-existent Page Number in the UI. 24 August 2016, 17:56:33 UTC
bf98258 Bug 1298084 - Manually tick the refresh driver to ensure the interrupted reflow happens when we want it to. r=tnikkel a=test-only MozReview-Commit-ID: 2q9hdZPjrPt --HG-- extra : source : a163da3582e35a2e58d844fc23c28193149891ee 29 August 2016, 20:22:57 UTC
f8bf5b2 Bug 1284742 - Replace profile directory traversal with a generated directory tree in dom/filesystem/test/test_basic.html. r=mystor, a=test-only MozReview-Commit-ID: HSX9i5KDDEj --HG-- extra : source : 4330a90be8b026c1c1d3e25e6a1447ae5e0117dc extra : intermediate-source : 5e9947ac9881a64256dd518ec8352f206fd0e68a 02 August 2016, 19:48:13 UTC
eaa3f00 Bug 1134307 - Access the title of the loaded page by using ctx.tab2Browser.contentTitle in browser_bug592641.js to avoid CPOW usage. r=mconley, a=test-only --HG-- extra : source : 89ea6ea538883f80edf5c908fff2b38541e49d77 extra : intermediate-source : da952731c13a02a15cddb4d2971a1500f9a46000 26 August 2016, 13:59:00 UTC
2861998 Bug 1283704 - Use .goBack() instead of contentWindow.history.back() to avoid CPOW usage in browser_bug812562.js. r=mconley, a=test-only --HG-- extra : source : 4406e97ee4e59308ea362de45a9bd0d7574ed902 extra : intermediate-source : d594e43c1011e2041da94b9efc60cf36200b2bcc 25 August 2016, 01:10:00 UTC
f97ff99 Bug 1256929 - Fix ESLint error in test-bug_923281_test2.js. r=linclark, a=test-only --HG-- extra : source : 1692da30eb05a8eeda6bd27bc5dcb9eac13319d7 extra : intermediate-source : 85f2a3c9618d2d7fd0961ddd2b9036f600a37324 10 August 2016, 23:07:00 UTC
8257e1d Bug 1290179 - Automatically update SHA1 bouncer aliases r=jlund a=release DONTBUILD MozReview-Commit-ID: AjpCcXLu08N --HG-- extra : source : 64b21c1e7b9282639554a62dc1d20319188e4c4f 30 August 2016, 16:50:52 UTC
ee9aff0 Bug 1271330 - Avoid homepage overrides in the default profile; r=davehunt,whimboo a=testonly MozReview-Commit-ID: 6vQ5C2x7pEB --HG-- extra : source : 1c39b57bd2044e48a00f5a116ce2566aec1d6c73 extra : intermediate-source : 97238d31562d70a6e1270ffd4869f2880efeb1a8 26 August 2016, 17:33:46 UTC
3f1e91f 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 : rebase_source : 9a5aae28523e061d93218a99408da68797f0a435 extra : intermediate-source : 3ab8087d6442cb205e1eafae625a842062a8ae73 extra : source : b406ebdeebd2d448b15f01ea8d1aa1040f41c0bd 08 August 2016, 03:56:38 UTC
e5613c5 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 : rebase_source : 505ab9a9306515b4f21381b64c35d16265962baa extra : intermediate-source : 59249959e5918499c190bea0f9984bd32a617caa extra : source : 8cc5eea320fbd6a3e0b5e89bf19c7e398c1a3513 08 August 2016, 03:49:51 UTC
d7006b8 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 : rebase_source : d67824a90edbd5eeffd2f97dfd01e10755656d17 extra : intermediate-source : b6a0e932239c9fae2ac8913a18487b2e410d0661 extra : source : 95ecfed6808e4e8509011ac0c8a210cc347b3b4e 05 August 2016, 06:03:01 UTC
facf85b 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 : rebase_source : 35f9e466f7dda8b7bc515420283a40ab8b7be753 extra : intermediate-source : 54443c52eafe3847f0d3cf5539489a43dafd4152 extra : source : c0aa02955756575b9b79e2064c952f803ec3a037 05 August 2016, 06:01:03 UTC
0b8983f 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 : rebase_source : 1d03363557f08320238c1cd4a8a64381a62922e8 extra : intermediate-source : 4cc53d8de37e440f782b856d5f91328c9424ba3c extra : source : 8563ff06f0d5d57049e9aa24dc539293841121ce 05 August 2016, 04:52:44 UTC
b965c61 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 : rebase_source : 4dd6b9796b9ba32790310795713501a8779e9d6f extra : intermediate-source : cfb0fd8665b89157d54f7ad802a0382a2736242c extra : source : fbe63241a709b0dff5bfcaf3461fa2f2994bfd29 05 August 2016, 04:51:15 UTC
1746b31 Bug 1298208 - add bug number and notification emails for migrator probes, removing them from exception whitelist. r=mattn a=lizzard MozReview-Commit-ID: A5kUiutYX0l --HG-- extra : rebase_source : bd994aae6bf3a76613d95f13c362e201014b2504 extra : intermediate-source : dbc0dacf6086051d5a1c49dc77dd4187d63017c9 extra : source : f1c8f78cd6f6e49a5f67b37567888473b898cb90 26 August 2016, 20:06:14 UTC
b7f8b81 Bug 1298208 - FX_MIGRATION_HOMEPAGE_IMPORTED probe is (incorrectly) always true. r=mattn a=lizzard MozReview-Commit-ID: 6wZUeRTKExw --HG-- extra : rebase_source : 04b8b82d162e2998cf2f2a4302d432d08461023b extra : intermediate-source : 75befca046474e961a228e8f83c6bb683474b26f extra : source : 65e93bfe39e501e15ab1d044d35b92c3ca7ada4e 26 August 2016, 22:20:48 UTC
27031a4 Bug 1296988 - Update libnestegg. r=rillian a=lizzard --HG-- extra : rebase_source : 6861f277e827a5bb0bfac090921cccec9c069e8d extra : intermediate-source : 95e4e1f78ae623c5884b4f2401ad5447e4639467 extra : source : 84b4b7e346b8101ae63c3f7497f99bef8be66e23 25 August 2016, 01:49:22 UTC
f6433e2 Bug 1296793 - Don't assume that layer flattening was 100% successful and treat all layers as opaque. r=tnikkel a=lizzard --HG-- extra : rebase_source : afe02476e3ecadcb473111e22eca66f497248257 extra : intermediate-source : 6689f78513ada4f803665c2aa7609714ed070042 extra : source : 90a4db6c929deff452cf420e819b6a7325af328d 25 August 2016, 02:25:57 UTC
6afbac1 Bug 1288434 - fix buildbot props in mark release as shipped. r=rail a=release DONTBUILD MozReview-Commit-ID: ICEezfZDuO6 --HG-- extra : source : 8ca77a9ae536d9593fbb7899b2ba5eaa13abf0a7 30 August 2016, 16:58:07 UTC
b664f61 No bug - Tagging 68d24e6f784c7e375cf6c84c5c92496464d4f7e0 with FIREFOX_49_0b8_BUILD1, FIREFOX_49_0b8_RELEASE a=release CLOSED TREE 30 August 2016, 15:30:30 UTC
702ca65 Automatic version bump. CLOSED TREE NO BUG a=release 30 August 2016, 15:30:27 UTC
caa343a Bug 1295160 - Changing access key of Containers menu item to B as C was currently in use. r=baku, a=lizzard, l10n=ritu MozReview-Commit-ID: 1XbOxWMYR49 --HG-- extra : source : f2f5aa2263c12b7686614af8b2c8a34d7f1f7ccf extra : intermediate-source : d560a3e332dd38246c2b624a1c1d36c0a4a8d196 15 August 2016, 15:55:44 UTC
90c66f1 Bug 1287397 - Fix wave chunk size overflow. r=cpearce, a=lizzard MozReview-Commit-ID: Dg1OT13urxe --HG-- extra : source : 7545a33148f1b87ed695ed67ee880f0c36817e7d extra : intermediate-source : 4cb3737983b122768aaf7bbff06d540f1783d303 09 August 2016, 01:34:58 UTC
0123e84 Bug 1297934. Enforce the invariant that every display item class has a different display item type for nsDisplayFocusRing. r=mattwoodrow a=lizzard --HG-- extra : source : ff8a0cac29b2dc7634531b03133f97e1c1460818 26 August 2016, 23:02:49 UTC
c3dc806 Bug 1294730 - Send distribution referrers to Adjust. r=rnewman a=lizzard --HG-- extra : source : 4124f3349865847168c3b3db3b4d690e1b4e0214 26 August 2016, 14:26:42 UTC
46426be Bug 1296087: Improve getter cache r=nbp a=lizzard --HG-- extra : source : abe23b9940e2ef286940318311f3ed69194262a1 17 August 2016, 20:53:08 UTC
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
back to top