- 23 Aug, 2019 32 commits
-
-
Michael Kaply authored
Differential Revision: https://phabricator.services.mozilla.com/D42942 --HG-- extra : moz-landing-system : lando
-
Gabriel Luong authored
Differential Revision: https://phabricator.services.mozilla.com/D43274 --HG-- extra : moz-landing-system : lando
-
Narcis Beleuzu authored
Differential Revision: https://phabricator.services.mozilla.com/D43176 --HG-- extra : moz-landing-system : lando
-
Edwin Gao authored
Changes: - when specifying `fail-if` condition for linux platform, narrow down the scope using Ubuntu version `16.04` since some tests are passing on Debian 10 Differential Revision: https://phabricator.services.mozilla.com/D43172 --HG-- extra : moz-landing-system : lando
-
Geoff Brown authored
Differential Revision: https://phabricator.services.mozilla.com/D43234 --HG-- extra : moz-landing-system : lando
-
Luca Greco authored
Bug 1572173 - AbuseReporter should send addon install source and method without pre-classification. r=mixedpuppy Differential Revision: https://phabricator.services.mozilla.com/D42834 --HG-- extra : moz-landing-system : lando
-
Kashav Madan authored
Differential Revision: https://phabricator.services.mozilla.com/D41763 --HG-- extra : moz-landing-system : lando
-
Kashav Madan authored
Bug 1562264 - Propagate remote/fission flags from parent to child for content window.open() calls, r=kmag Differential Revision: https://phabricator.services.mozilla.com/D40836 --HG-- extra : moz-landing-system : lando
-
Honza Bambas authored
Differential Revision: https://phabricator.services.mozilla.com/D42487 --HG-- extra : moz-landing-system : lando
-
Emily Toop authored
Bug 1572392 - Ensure TabSessions can be restored from state after returning from the background in GVE r=geckoview-reviewers,agi When returning from being backgrounded, GeckoView Example was trying to restore a `TabSession`, but only the underlying `GeckoSession` was being saved, resulting in a `ClassCastException` on restore. Differential Revision: https://phabricator.services.mozilla.com/D41754 --HG-- extra : moz-landing-system : lando
-
Coroiu Cristina authored
Backed out changeset 88247bb4d1e9 (bug 1575273) for xpcshell failures at browser/components/enterprisepolicies/tests/xpcshell/test_simple_pref_policies.js on a CLOSED TREE
-
Itiel authored
This remove reliance on isRtl (and thus hardcodes right and left directions) and removed redundant RTL/LTR CSS. Differential Revision: https://phabricator.services.mozilla.com/D42324 --HG-- extra : moz-landing-system : lando
-
Razvan Caliman authored
As discussed with @mbalfanz, we want to flip the pref so Inactive CSS is enabled and rides the trains. This will enable the feature on Firefox 70 Beta/DevEdition allowing us to collect early user feedback and issues. If all goes well during Beta/DevEdition, the feature will ride the trains to Release. If there is a major blocker, we will uplift a patch to disable the pref so it doesn't proceed to Release. Differential Revision: https://phabricator.services.mozilla.com/D43265 --HG-- extra : moz-landing-system : lando
-
Jon Coppeard authored
Bug 1575895 - Don't start GC slices due to malloc allocation if we're already collecting the zone r=sfink At some point we can think about triggering incremental slices here the way we do for the GC heap allocations but for now it's simplest to just not trigger any more slices if we're already allocating. Differential Revision: https://phabricator.services.mozilla.com/D43099 --HG-- extra : moz-landing-system : lando
-
Michael Kaply authored
Differential Revision: https://phabricator.services.mozilla.com/D42942 --HG-- extra : moz-landing-system : lando
-
Jon Coppeard authored
I missed changing this when I changed the threshold to be the incremental trigger rather than the non-incremental one. I'm not entirely sure we need this chech at all - I think it will only happen in the case where we've requested a non-incremental GC but the interrupt hasn't caused one to run yet. Differential Revision: https://phabricator.services.mozilla.com/D43035 --HG-- extra : moz-landing-system : lando
-
Jonathan Kew authored
Differential Revision: https://phabricator.services.mozilla.com/D43261 --HG-- extra : moz-landing-system : lando
-
Andrew Swan authored
Differential Revision: https://phabricator.services.mozilla.com/D40666 --HG-- rename : browser/extensions/fxmonitor/privileged/api.js => browser/components/fxmonitor/FirefoxMonitor.jsm rename : browser/extensions/fxmonitor/privileged/FirefoxMonitor.css => browser/components/fxmonitor/content/FirefoxMonitor.css rename : browser/extensions/fxmonitor/assets/monitor32.svg => browser/components/fxmonitor/content/monitor32.svg rename : browser/extensions/fxmonitor/moz.build => browser/components/fxmonitor/moz.build rename : browser/extensions/fxmonitor/test/browser/browser.ini => browser/components/fxmonitor/test/browser/browser.ini rename : browser/extensions/fxmonitor/test/browser/browser_fxmonitor_doorhanger.js => browser/components/fxmonitor/test/browser/browser_fxmonitor_doorhanger.js rename : browser/extensions/fxmonitor/locales/en-US/fxmonitor.properties => browser/locales/en-US/chrome/browser/fxmonitor.properties extra : moz-landing-system : lando
-
Csoregi Natalia authored
-
Csoregi Natalia authored
-
Ted Campbell authored
This was already transferring ownership to caller so use appropriate types instead. Depends on D43182 Differential Revision: https://phabricator.services.mozilla.com/D43183 --HG-- extra : moz-landing-system : lando
-
Ted Campbell authored
Move this record/replay-specific code out of the ScriptSource XDR code. Differential Revision: https://phabricator.services.mozilla.com/D43182 --HG-- extra : moz-landing-system : lando
-
Itiel authored
Reviewers: ntim Reviewed By: ntim Bug #: 1574340 Differential Revision: https://phabricator.services.mozilla.com/D42690 --HG-- extra : rebase_source : 19d54170ab2b50c30b108b6b5e2f1132464d6ea0 extra : histedit_source : b0c49ed9cfdc774b91517dec89705799879d17f9
-
Belén Albeza authored
- This creates a mock for fluent-l10n module, so we can use `l10n.getString()` in our code and test for it. - This patch also removes unused files `test/fixtures/l10n.js` and `test/fixtures/PluralForm.js` In order to double check the mock works, these two lines can be added to any test: ``` const { l10n } = require("devtools/client/application/src/modules/l10n"); expect(l10n.getString("foo")).toBe("foo"); ``` Differential Revision: https://phabricator.services.mozilla.com/D43050 --HG-- rename : devtools/client/application/test/components/fixtures/l10n.js => devtools/client/application/test/components/fixtures/fluent-l10n.js extra : moz-landing-system : lando
-
Jorg K authored
Bug 1575183 - Skip two subtests of test_extension_storage_actor.js when run in non-oop extension mode. r=rpl
-
Will Hawkins authored
Reviewers: squib, mstange, gregtatum Reviewed By: squib, gregtatum Subscribers: julienw, Fallen, reviewbot, mixedpuppy, mstange Bug #: 1551313 Differential Revision: https://phabricator.services.mozilla.com/D39796 --HG-- extra : rebase_source : e7e0b41b2a4c6f7228f3d6c19ede1fe2e4e42343 extra : histedit_source : 55daf5b19e4f262f522339b5b00ee31130abbf1b
-
Csoregi Natalia authored
-
Masayuki Nakano authored
`HTMLEditRules::GetPromotedPoint()` does too many things. Therefore, this patch splits it to 3 methods. One is for specific `EditSubAction` values, that's the first block in `GetPromotedPoint()`. It's named as `GetWhiteSpaceEndPoint()`. Next one is for expanding start of the range to start of its line. It's named as `GetCurrentHardLineStartPoint()`. The last one is for expanding end of the range to end of its line. It's named as `GetCurrentHardLineEndPoint()`. Differential Revision: https://phabricator.services.mozilla.com/D42791 --HG-- extra : moz-landing-system : lando
-
Nihanth Subramanya authored
Bug 1575798 - Use .notFound instead of :not([hidden]) in selector for showing "Blocking" section. r=timhuang Differential Revision: https://phabricator.services.mozilla.com/D43257 --HG-- extra : moz-landing-system : lando
-
Nihanth Subramanya authored
Bug 1575812 - Treat "blocked" category items as "allowed" when there is a site exception. r=timhuang Differential Revision: https://phabricator.services.mozilla.com/D43255 --HG-- extra : moz-landing-system : lando
-
Jan Varga authored
Bug 1563023 - Part 4: Get rid of custom usage tracking in LS by using client usage tracked by QM; r=asuth This patch gets rid of gUsages in LSNG. This provides better consistency and makes it easier to cache quota info on disk. The patch also fixes some edge cases when usage was not adjusted correctly after a failed file or database operation. Differential Revision: https://phabricator.services.mozilla.com/D38229 --HG-- extra : moz-landing-system : lando
-
Gautham Velchuru authored
Differential Revision: https://phabricator.services.mozilla.com/D35616 --HG-- extra : moz-landing-system : lando
-
- 22 Aug, 2019 1 commit
-
-
Paul Zuehlcke authored
Differential Revision: https://phabricator.services.mozilla.com/D42829 --HG-- extra : moz-landing-system : lando
-
- 23 Aug, 2019 5 commits
-
-
Emilio Cobos Álvarez authored
Bug 1561882 - Make sure to dispatch input and change consistently even if the first causes us to get uninited. r=mconley,Gijs Differential Revision: https://phabricator.services.mozilla.com/D43061 --HG-- extra : moz-landing-system : lando
-
Masayuki Nakano authored
Bug 1574852 - part 16: Move `HTMLEditRules::BustUpInlinesAtRangeEndpoints()` to `HTMLEditor` r=m_kato Differential Revision: https://phabricator.services.mozilla.com/D42787 --HG-- extra : moz-landing-system : lando
-
Olli Pettay authored
Bug 1575606, browser_trackingUI_pbmode_exceptions.js' tests should wait for windows to close, r=johannh Differential Revision: https://phabricator.services.mozilla.com/D42917 --HG-- extra : moz-landing-system : lando
-
Marian Raiciof authored
The alert_on values from the test INI were not being passed into the test settings json via manifest.py, this patch will fix this. Differential Revision: https://phabricator.services.mozilla.com/D43049 --HG-- extra : moz-landing-system : lando
-
Mirko Brodesser authored
Bug 1575584: prevent reading uninitialized variable in `TextEditor::ComputeValueInternal`. r=masayuki The fix here is to first check `NS_FAILED(rv)`, because if that's the case, `cancel` wasn't necessarily set to a value. As best practice I initialized `cancel` and `handled` with default values. Differential Revision: https://phabricator.services.mozilla.com/D43071 --HG-- extra : moz-landing-system : lando
-
- 22 Aug, 2019 2 commits
-
-
Emilio Cobos Álvarez authored
Some of it was dead code, another was inlining a not very useful function (and in one case redundant, since EnsureInitialized() happened right after Refresh()). Differential Revision: https://phabricator.services.mozilla.com/D43042 --HG-- extra : moz-landing-system : lando
-
Mihai Alexandru Michis authored
-