Everywhere: Replace miscellaneous references to the chrome process

This commit is contained in:
Timothy Flynn 2025-03-15 17:20:05 -04:00 committed by Tim Flynn
parent d94bb99c50
commit 3af63bc5a3
Notes: github-actions[bot] 2025-03-15 23:58:25 +00:00
10 changed files with 36 additions and 32 deletions

View file

@ -82,7 +82,7 @@ void HTMLAnchorElement::activation_behavior(Web::DOM::Event const& event)
return;
// AD-HOC: Do not activate the element for clicks with the ctrl/cmd modifier present. This lets
// the chrome open the link in a new tab.
// the browser process open the link in a new tab.
if (is<UIEvents::MouseEvent>(event)) {
auto const& mouse_event = static_cast<UIEvents::MouseEvent const&>(event);
if (mouse_event.platform_ctrl_key())