Commit Graph

194 Commits

Author SHA1 Message Date
Leeya
23b26e9421 Bug 1742889 - Rewrite consumers of whereToOpenLink to use BrowserUtils.whereToOpenLink. r=Gijs,search-reviewers,places-reviewers,firefox-desktop-core-reviewers ,home-newtab-reviewers,reusable-components-reviewers,hjones,nbarrett
Differential Revision: https://phabricator.services.mozilla.com/D208680
2024-05-03 19:05:59 +00:00
Marco Bonardo
6e1c1d304a Bug 1848715 - Untrim address bar value on user interaction. r=dao,tabbrowser-reviewers
Untrim the address bar value when the user starts manipulating it.
This doesn't untrim on focus, because that would break double-click to select
word, and drag-select. In the future we'll evaluate untrim on focus, but we'll
need additional platform support to replicate that functionality.
The behavior is currently controlled by the feature-gate preference
`browser.urlbar.untrimOnUserInteraction.featureGate`.

Original patch by Marc Seibert.

Differential Revision: https://phabricator.services.mozilla.com/D206135
2024-04-24 17:01:48 +00:00
Dale Harvey
5f9ad2e51c Bug 1871206 - Implement secondary actions for the urlbar. r=mak,settings-reviewers
Differential Revision: https://phabricator.services.mozilla.com/D203381
2024-04-23 11:33:33 +00:00
Drew Willcoxon
ea5c333253 Bug 1892732 - Fix the urlbar help command for results that don't define a help URL. r=daleharvey
When UrlbarView [handles the help command for a result](https://searchfox.org/mozilla-central/rev/863aef60f9fa1536884252ad90cad1d8ee9d8a41/browser/components/urlbar/UrlbarView.sys.mjs#3471-3476), first it determines the
result's help URL. If `result.payload.helpUrl` is defined it uses that, and
otherwise it falls back to generating a default help URL. Either way, then it
sets `menuitem.dataset.url` to the help URL and calls `input.pickResult()`.

Before bug 1883378, `pickResult()` would similarly first check
`result.payload.helpUrl` and then fall back to `menuitem.dataset.url` when
determining the help URL to load. Bug 1883378 changed this behavior so that it
only checks `result.payload.helpUrl`. That means we break any provider that
implements the help command but doesn't define a help URL on its results, like
Yelp and MDN.

One way to fix this would be to make sure providers that implement the help
command always define a help URL on their results. I don't like that idea
because it's nice for providers to be able to rely on a default help URL that's
defined elsewhere.

Another fix would be to always use `menuitem.dataset.url` in `pickResult()` and
don't check `result.payload.helpUrl` at all. That would work for result menu
items, but it wouldn't work for other elements like buttons that don't go
through the result-menu-command path. I don't know if we currently have any such
paths but I don't want to break something else.

So instead I think we should just go back to the status quo before bug 1883378:
First check `result.payload.helpUrl` if the command is help, and then fall back
to `menuitem.dataset.url`.

Differential Revision: https://phabricator.services.mozilla.com/D208197
2024-04-22 23:51:24 +00:00
Marco Bonardo
ba6b343c0c Bug 1889894 - Change UlrbarInput::_setValue options to an object. r=dao
Differential Revision: https://phabricator.services.mozilla.com/D206767
2024-04-08 14:52:51 +00:00
Dale Harvey
3394af4940 Bug 1886140 - Fix undefined queryContext in paste-and-go. r=adw
Differential Revision: https://phabricator.services.mozilla.com/D206202
2024-04-07 17:32:02 +00:00
Emilio Cobos Álvarez
9eb098cd7c Bug 1889463 - Prevent flickering with the previous patch. r=dao,desktop-theme-reviewers
The toolbar height includes the top border now. It's not what we want
anyways:

 * In some cases its usage was completely redundant (we can use the
   default static position).

 * In other cases what we want is the urlbar-container height, which
   doesn't include that border. I confirmed this looks good in compact
   mode (which was the reason for introducing this in bug 1580248).

So simplify the code a tiny bit and fix the flickering that got the
original version reverted.

Differential Revision: https://phabricator.services.mozilla.com/D206596
2024-04-04 10:21:27 +00:00
Karandeep
9af5d8493e Bug 1880498 - Modify the abandonment event, to also happen in case of a switch tab. r=mak
Differential Revision: https://phabricator.services.mozilla.com/D202238
2024-03-13 14:08:06 +00:00
Mark Banner
afdbce2ec3 Bug 1884623 - Update more jsm references in production code and docs in browser/. r=mossop,extension-reviewers,omc-reviewers,migration-reviewers,robwu,mconley,aminomancer
Differential Revision: https://phabricator.services.mozilla.com/D204182
2024-03-11 15:26:28 +00:00
Marco Bonardo
36ad633e1e Bug 1883845 - Switch to tab entries in Top Sites (zero prefix) don't support cross container search. r=jteow
Differential Revision: https://phabricator.services.mozilla.com/D203730
2024-03-09 12:05:44 +00:00
Dale Harvey
c23a69bf50 Bug 1883378 - Dont record pressing help menu item as a search. r=adw
Differential Revision: https://phabricator.services.mozilla.com/D203535
2024-03-06 23:49:29 +00:00
Dave Townsend
98ed146e46 Bug 1864896: Autofix unused function arguments (browser/components/urlbar). r=mak
Differential Revision: https://phabricator.services.mozilla.com/D202954
2024-03-03 09:09:09 +00:00
Marco Bonardo
adbeacbb4a Bug 1880069 - Switch-to-tab result sometimes appears twice with wrong container. r=jteow
The InputHistory (adaptive) provider is not properly reporting the open tab
userContextId, thus the Muxer is unable to dedupe results properly.
This cleans up the query a little bit avoiding numeric indices and fields that
are unused later.

Differential Revision: https://phabricator.services.mozilla.com/D203012
2024-03-01 12:23:49 +00:00
Daisuke Akatsuka
25ace7ed62 Bug 1882677: Change 'Learn more' menu to 'Manage' for weather suggestion r=adw,fluent-reviewers,bolsson
Differential Revision: https://phabricator.services.mozilla.com/D203075
2024-03-01 04:18:35 +00:00
Marco Bonardo
f0bd48ca5b Bug 1876743 - Enable cross-container Tab Search in Nightly. r=mseibert
Fixes code to properly run tests with the feature enabled.
Fixes code not considering payload.userContextId is set to -1 for private
windows.
Fixes a bug in the _openTabs Map where multiple open tabs to the same url are
not properly counted.

Differential Revision: https://phabricator.services.mozilla.com/D200036
2024-02-07 09:29:32 +00:00
Marc Seibert
485a2c91f5 Bug 1855717 - Copy also from hidden results.r=adw
Differential Revision: https://phabricator.services.mozilla.com/D198240
2024-01-29 18:28:32 +00:00
Dale Harvey
a6bc2baf74 Bug 1841762 - Ensure onEngagement has queryContext defined. r=mak
Differential Revision: https://phabricator.services.mozilla.com/D197265
2024-01-18 17:52:58 +00:00
Mark Banner
e2e80f646d Bug 1864821 - Replace PromiseUtils.defer() with Promise.withResolvers() in system modules. r=Gijs,perftest-reviewers,necko-reviewers,extension-reviewers,application-update-reviewers,fxview-reviewers,sync-reviewers,sessionstore-reviewers,reusable-components-reviewers,rpl,jesup,hjones,kshampur,skhamis,nalexander,sclements
Differential Revision: https://phabricator.services.mozilla.com/D197489
2024-01-05 09:22:34 +00:00
Daisuke Akatsuka
19a1b03db3 Bug 1853044: Open page with edited value by user regardless of selected result r=adw
Differential Revision: https://phabricator.services.mozilla.com/D196908
2023-12-25 01:19:25 +00:00
Mark Banner
86b8e0fb97 Bug 1868749 - Remove search engine send attribution request. r=search-reviewers,daleharvey
Differential Revision: https://phabricator.services.mozilla.com/D195758
2023-12-18 12:01:34 +00:00
Marco Bonardo
fe296cb095 Bug 1863797 - Frequent failures in browser_schemeless.js due to UrlbarView.selectedElement removed from DOM. r=adw
#selectedElement may end up pointing to disconnected nodes. And so the public
.selectedElement getter.
This is how it was happening: a first call to onQueryResults adds and selects a
heuristic result. Then a second call to onQueryResults brings a new heuristic
result that requires new content (not compatible with the previous one), so the
old heuristic is emptied out, and new DOM is generated.
Because the code in onQueryResults relies on .selectedElement, at the second
invokation it thinks the selection is still valid, and doesn't select the new
heuristic. In reality .selectedElement at that time is pointing to a removed
DOM node.
The patch introduces a #rawSelectedElement and converts #selectedElement
into a getter.

Plus some minor logging improvements, and removing unused #mainContainer property.

Differential Revision: https://phabricator.services.mozilla.com/D195779
2023-12-13 10:05:26 +00:00
Benjamin VanderSloot
24f33e0e84 Bug 1525943 - Show identity section for web controlled about:blank. r=Gijs
Differential Revision: https://phabricator.services.mozilla.com/D193804
2023-11-30 18:32:48 +00:00
Dale Harvey
5c52093b54 Bug 1797488 - Ensure switchtotab loads URL in a tab if record is missing. r=mak
Differential Revision: https://phabricator.services.mozilla.com/D194170
2023-11-28 06:33:56 +00:00
Marc Seibert
300545756c Bug 1657237 - Address Bar flashes punycode when loading page.r=mak
Differential Revision: https://phabricator.services.mozilla.com/D192696
2023-11-20 17:11:23 +00:00
Cristian Tuns
7b79c3c251 Backed out changeset 09cf9c007215 (bug 1657237) for causing bc failures in browser_enter.js CLOSED TREE 2023-11-10 06:24:46 -05:00
Marc Seibert
e621f5f210 Bug 1657237 - Address Bar flashes punycode when loading page.r=mak
Differential Revision: https://phabricator.services.mozilla.com/D192696
2023-11-10 09:51:36 +00:00
Daisuke Akatsuka
e090e2be40 Bug 1830732: If there is a loading page in _blank target, copy its URL r=adw
Differential Revision: https://phabricator.services.mozilla.com/D191825
2023-10-26 00:22:00 +00:00
Abhishek Madan
cba9a32a71 Bug 1853998 - Updated UI to always show Copy without Site Tracking. r=pbz,anti-tracking-reviewers,dao
Differential Revision: https://phabricator.services.mozilla.com/D188626
2023-10-19 15:05:04 +00:00
Norisz Fay
f636085f1f Backed out 2 changesets (bug 1853998, bug 1842581) for causing bc failures on browser_contextmenu.js
Backed out changeset ecb00efc209a (bug 1842581)
Backed out changeset 9c4eed63d7c0 (bug 1853998)
2023-10-17 19:02:06 +03:00
Abhishek Madan
1b81445563 Bug 1853998 - Updated UI to always show Copy without Site Tracking. r=pbz,anti-tracking-reviewers,dao
Differential Revision: https://phabricator.services.mozilla.com/D188626
2023-10-17 14:16:07 +00:00
Marc Seibert
f02f36a981 Bug 1853418 - Urlbar Test Utils Preparation.r=dao
Differential Revision: https://phabricator.services.mozilla.com/D191171
2023-10-17 12:19:47 +00:00
Narcis Beleuzu
a9acd29277 Backed out changeset 444db85796e2 (bug 1853418) for bc failure on browser_closePanelOnClick.js . CLOSED TREE 2023-10-17 01:00:51 +03:00
Marc Seibert
cba6737181 Bug 1853418 - Prepare Urlbar Tests.r=dao
Differential Revision: https://phabricator.services.mozilla.com/D190554
2023-10-16 16:42:29 +00:00
Drew Willcoxon
148a53ad56 Bug 1827966 - Part 4: Remove resultMenu pref and support for dismiss and help buttons. r=dao,fluent-reviewers,desktop-theme-reviewers
Depends on D190894, D190846

Differential Revision: https://phabricator.services.mozilla.com/D190895
2023-10-13 21:52:07 +00:00
Marc Seibert
d102db072b Bug 1479858 - Added option for UrlBar search open tabs to ignore userContextId.r=mak,dao
Oiriginal patch author: Paresh Malalur <atararx@gmail.com>

Differential Revision: https://phabricator.services.mozilla.com/D187465
2023-10-13 08:48:46 +00:00
Norisz Fay
36e5c4f496 Backed out changeset 1c43d6be9b10 (bug 1853418) for causing bc failures on browser_closePanelOnClick.js CLOSED TREE 2023-10-12 18:20:51 +03:00
Marc Seibert
252f83f5b0 Bug 1853418 - Prepare Urlbar Tests.r=dao
Differential Revision: https://phabricator.services.mozilla.com/D190554
2023-10-12 11:10:36 +00:00
Butkovits Atila
62f1dc61e3 Backed out 2 changesets (bug 1853998, bug 1842581) for causing failures at browser_strip_on_share_link.js. CLOSED TREE
Backed out changeset 666a5cee0716 (bug 1842581)
Backed out changeset 0c698bf2cec5 (bug 1853998)
2023-10-12 08:35:28 +03:00
Abhishek Madan
29927136c8 Bug 1853998 - Updated UI to always show Copy without Site Tracking. r=pbz,anti-tracking-reviewers,dao
Differential Revision: https://phabricator.services.mozilla.com/D188626
2023-10-12 01:27:47 +00:00
Frederik Braun
27df2c1e32 Bug 1812192 - Address bar should mark navigations that were schemeless r=mak,Gijs,tabbrowser-reviewers
Differential Revision: https://phabricator.services.mozilla.com/D179794
2023-10-11 17:49:42 +00:00
Cristian Tuns
941bce3197 Backed out 6 changesets (bug 1812192) for causing browser_schemeless.js failures. CLOSED TREE
Backed out changeset 3d07a92324d0 (bug 1812192)
Backed out changeset 9c2a1ff6c90d (bug 1812192)
Backed out changeset fa6784f8b0f4 (bug 1812192)
Backed out changeset 0f39aba7e4d5 (bug 1812192)
Backed out changeset ef7219327a10 (bug 1812192)
Backed out changeset 9833b559342e (bug 1812192)
2023-10-10 10:02:25 -04:00
Frederik Braun
202b4b7441 Bug 1812192 - Address bar should mark navigations that were schemeless r=mak,Gijs,tabbrowser-reviewers
Differential Revision: https://phabricator.services.mozilla.com/D179794
2023-10-10 08:42:59 +00:00
Marc Seibert
5fc5f53f97 Bug 1845710 - [UrlbarView] Add LRM to URLs with the protocol trimmed in the results pane.r=mak
Differential Revision: https://phabricator.services.mozilla.com/D186124
2023-09-26 15:00:54 +00:00
Dão Gottwald
dbfff57b2c Bug 1853954 - Rename actionoverride to action-override and make it a standard boolean attribute. r=adw
Differential Revision: https://phabricator.services.mozilla.com/D188606
2023-09-20 07:45:01 +00:00
Daisuke Akatsuka
f21d94cded Bug 1850902: Remove browser.fixup.alternate.enabled pref and its code path r=jteow,mak
Differential Revision: https://phabricator.services.mozilla.com/D187237
2023-09-10 22:33:27 +00:00
Daisuke Akatsuka
3f4dba67c3 Bug 1637408: Append the protocol when copying if the urlbar value is autofilled r=adw
Differential Revision: https://phabricator.services.mozilla.com/D187364
2023-09-05 23:40:06 +00:00
Marc Seibert
3b6cce5a81 Bug 1848271 - Editing suggested URL is broken.r=dao
Differential Revision: https://phabricator.services.mozilla.com/D185985
2023-08-14 11:09:41 +00:00
Marc Seibert
3b461e98a2 Bug 1067293 - Omit "https://".r=dao
Differential Revision: https://phabricator.services.mozilla.com/D184933
2023-08-09 22:27:21 +00:00
Marc Seibert
398f67d307 Bug 1846261 - Editing autocompleted domains in URL bar is broken.r=mak
Differential Revision: https://phabricator.services.mozilla.com/D185051
2023-08-09 09:54:52 +00:00
Cristian Tuns
064737db44 Backed out changeset e99b30fd0931 (bug 1067293) for causing bc failures in browser_preferences_usage.js CLOSED TREE 2023-08-08 20:40:06 -04:00