- Jul 11, 2022
-
-
Tooru Fujisawa authored
`Services` object is created in the loader's shared global, and it is defined on all globals without OMIT_COMPONENTS_OBJECT. Differential Revision: https://phabricator.services.mozilla.com/D150890
-
Ben Hearsum authored
Bug 1778463: Firefox is pinned to the taskbar even though the "On my taskbar" checkbox is unchecked r=mhowell The problem here ended up being that we lose the value of `AddTaskBarSC` once ExecCodeSegement is called -- which we do anytime we try to set ourselves as the default if the installer was run elevated. Differential Revision: https://phabricator.services.mozilla.com/D151291
-
Tiaan Louw authored
Check for a text input or editable host first, because they always set the used style to 'contain' (The spec actually requires 'contain', but we implement the 'contain' behavior as a flavor of 'text') https://drafts.csswg.org/css-ui-4/#content-selection Differential Revision: https://phabricator.services.mozilla.com/D149731
-
Andrew Osmond authored
This patch turns on FontFaceSet in workers and OffscreenCanvas on workers and the main thread in nightly only. Differential Revision: https://phabricator.services.mozilla.com/D151409
-
Pranshu Agrawal authored
Differential Revision: https://phabricator.services.mozilla.com/D151438
-
Bogdan Szekely authored
Backed out changeset e587c9bc5b83 (bug 1778921) Backed out changeset 04fa88f59192 (bug 1778921)
-
Bogdan Szekely authored
-
Bogdan Szekely authored
-
Matthew Gregan authored
Bug 1778921 - Vendor update of libopus to upstream revision 24398751. r=media-playback-reviewers,alwu Depends on D151462 Differential Revision: https://phabricator.services.mozilla.com/D151463
-
Matthew Gregan authored
Bug 1778921 - Update libopus build config to prepare for next update. r=media-playback-reviewers,alwu Differential Revision: https://phabricator.services.mozilla.com/D151462
-
Yoshi Cheng-Hao Huang authored
For the print preview documents, they are cloned from the original document in Document::CreateStaticClone[1]. But the cloned document isn't attched to any nsIContentViewer yet so it won't have any global object. The document is attached to the nsIContentViewer later when the cloning is done[2]. Also, the script elements from the cloned document are also cloned from the original document, so they won't be processed in the cloned document. Therefore we simply bail out if the module loader isn't initialized yet. [1]: https://searchfox.org/mozilla-central/rev/3e1a721bce1da3ae04675539b39a4e95b25a046d/dom/base/Document.cpp#13240 [2]: https://searchfox.org/mozilla-central/rev/3e1a721bce1da3ae04675539b39a4e95b25a046d/dom/base/Document.cpp#13295 Differential Revision: https://phabricator.services.mozilla.com/D151105
-
Julian Descottes authored
Bug 1767679 - [devtools] Wait for element to be ready in browser_rules_colorpicker-and-image-tooltip_01.js r=Honza No conclusive results on try. Waiting for the property container to be ready should at least help invsestigate if we get more failures Differential Revision: https://phabricator.services.mozilla.com/D151425
-
Olli Pettay authored
Since https://github.com/w3c/FileAPI/issues/43 is still open, it is unclear how body.type should work. The current wpts expect some behavior which isn't in the specifications. So, since the situation is very messy in the specifications, the patch is doing a spot fix for boundary handling. It is ugly, but shouldn't change other behavior. Differential Revision: https://phabricator.services.mozilla.com/D150018
-
Dale Harvey authored
Differential Revision: https://phabricator.services.mozilla.com/D151436
-
Neil Deakin authored
Bug 968104, paste unformatted shortcut (shift+ctrl/cmd+v) should work in plain text contexts, such as input and textarea, r=masayuki Differential Revision: https://phabricator.services.mozilla.com/D150806
-
Ziran Sun authored
Differential Revision: https://phabricator.services.mozilla.com/D151231
-
Alexandre Poirot authored
Bug 1778274 - [devtools] Track performance of the debugger in the browser toolbox r=perftest-reviewers,jdescottes,sparky Differential Revision: https://phabricator.services.mozilla.com/D151113
-
Mozilla Releng Treescript authored
es-AR -> 66bf4063df33aeb109eb6ce1c58f6ce5ee3569f1 es-ES -> 942edb9eb6258fb266669c6a1024a0cfea53613d pt-PT -> efb08c45e99c6d70e2edf1a7844c3fd13a120620 vi -> ca58af7628b8771312a6fab74d5c06c798dce473
-
Masayuki Nakano authored
Bug 1778091 - Make `HTMLEditor` move invisible `<br>` element into the empty inline element after splitting a paragraph at end r=m_kato In Yahoo! Mail, the paragraph has `<br>` after `<span>` element which has `background-color`. In this case, Gecko creates the following DOM tree after splitting the paragraph: ``` <div><span>foo</span></div><div><span></span><br></div> ``` Then, the empty `<span>` in the right paragraph will be removed by the post-processing. However, in this case, the inline element is required for preserving the style continued from the previous paragraph. In this case, we should move the `<br>` element into the `<span>` to make it non-empty and avoid it to be removed. This is compatible with Chrome. Differential Revision: https://phabricator.services.mozilla.com/D151345
-
Julian Seward authored
When reading Dwarf unwind info, `CallFrameInfo::State::DoInstruction` is called once per CFI instruction. At both call sites, the call is driven by a simple loop. Because each call doesn't do much work, the call overhead is quite high, and there are huge numbers of CFI instructions to be processed. This patch moves the loop into its own method `DoInstructions`, and adds annotations in the hope of getting `DoInstruction` inlined into the loop. On an Intel Core i5 1135G7 at circa 4 GHz, this reduces the Dwarf read time from 0.27 seconds (after bugs 1754932, 1777540 and 1777949 have landed) to 0.26 seconds. Not much of a win, but on the other hand, the insn count falls from 3906 million to 3640 million, which seems like a worthwhile win for what is a trivial change. Differential Revision: https://phabricator.services.mozilla.com/D151262
-
smolnar authored
Backed out changeset 457c6c1a18e3 (bug 1763570) for causing layout/forms/test/test_bug644542.html CLOSED TREE
-
Makoto Kato authored
When setting focus to input element, Gecko sets focused element to central via `zoomToFocusedInput`. So when we receives `focusin` event, content may be scrolled and zoomed. To pass correct element rectangle, we have to wait until it is completed. Fennec added `PanZoom:StateChange` event to listen APZ state. So GV should use same way. Differential Revision: https://phabricator.services.mozilla.com/D150453
-
Thomas Wisniewski authored
Bug 1778125 - update the SmartBlock Branch shim to accept a callback as the last argument of the init method regardless of number of arguments; r=ksenia,webcompat-reviewers Differential Revision: https://phabricator.services.mozilla.com/D151412
-
- Jul 10, 2022
-
-
Hiroyuki Ikezoe authored
Bug 1778257 - Set layout.css.scroll-snap.proximity-threshold to 100 on scroll-snap-initial-layout-000.html. r=botond Differential Revision: https://phabricator.services.mozilla.com/D151098
-
Hiroyuki Ikezoe authored
Bug 1768746 - Resolve scroll-snap-align with the targe element's writing mode if the size is larger than the snapport. r=botond Differential Revision: https://phabricator.services.mozilla.com/D151096
-
Barret Rennie authored
Bug 1776477 - Stop using NimbusFeature.isEnabled for tcpPreferences r=timhuang,preferences-reviewers,Gijs Differential Revision: https://phabricator.services.mozilla.com/D150689
-
Mozilla Releng Treescript authored
hr -> f6e5bbfdbe8200d5212ea4d97e61ee9375beadee sk -> 6a35270f9850915c884389a73b19a98d263367d5 tg -> bfbfda9732bd44427f407747d3ddd5056a921332 zh-CN -> 3db761adab185f578b4dc5f145228c2a8e26d26e
-
Emilio Cobos Álvarez authored
If we're using the theme accent then we should _not_ use the standin. Differential Revision: https://phabricator.services.mozilla.com/D151442
-
Barret Rennie authored
Differential Revision: https://phabricator.services.mozilla.com/D150688
-
Csoregi Natalia authored
-
Mozilla Releng Treescript authored
de -> c4119382468956f426de7ae67db8fd8427c0c68d it -> 83829ea070d72aa3c7739a853fc02006ee2edfa3 tg -> 7957a73acff72552ce3c9c05b0ffd4f1757bbea7
-
Cristian Tuns authored
Backed out 3 changesets (bug 1772941) for causing mochitest failures on browser_clientAuth_connection.js CLOSED TREE Backed out changeset d9e8272834ff (bug 1772941) Backed out changeset a21807ba8d7d (bug 1772941) Backed out changeset 768f96a2bb5b (bug 1772941)
-
criss authored
Backed out changeset e64335287775 (bug 1772943) for causing mochitest failures on browser_disco_taar_telemetry.js. CLOSED TREE
-
Barret Rennie authored
Differential Revision: https://phabricator.services.mozilla.com/D148967
-
Barret Rennie authored
Differential Revision: https://phabricator.services.mozilla.com/D150687
-
- Jul 09, 2022
-
-
Barret Rennie authored
Differential Revision: https://phabricator.services.mozilla.com/D151440
-
Barret Rennie authored
Differential Revision: https://phabricator.services.mozilla.com/D151439
-
Barret Rennie authored
Differential Revision: https://phabricator.services.mozilla.com/D149303
-
Barret Rennie authored
Differential Revision: https://phabricator.services.mozilla.com/D150686
-
Razvan Cojocaru authored
Differential Revision: https://phabricator.services.mozilla.com/D150496
-