Bug 170553 - [GTK] Misplaced right click menu on web page due to deprecated gtk_menu_popup()
Summary: [GTK] Misplaced right click menu on web page due to deprecated gtk_menu_popup()
Status: RESOLVED FIXED
Alias: None
Product: WebKit
Classification: Unclassified
Component: WebKitGTK (show other bugs)
Version: WebKit Nightly Build
Hardware: Unspecified Unspecified
: P2 Normal
Assignee: Adrian Perez
URL:
Keywords:
Depends on:
Blocks: GTK4 210651
  Show dependency treegraph
 
Reported: 2017-04-06 10:38 PDT by Volker Sobek
Modified: 2020-05-01 11:23 PDT (History)
14 users (show)

See Also:


Attachments
Patch (6.39 KB, patch)
2017-04-06 13:12 PDT, Adrian Perez
no flags Details | Formatted Diff | Diff
Patch (6.40 KB, patch)
2017-04-06 15:17 PDT, Adrian Perez
no flags Details | Formatted Diff | Diff
popup menu without patch (104.81 KB, image/png)
2017-04-06 17:38 PDT, Volker Sobek
no flags Details
popup menu with patch (102.81 KB, image/png)
2017-04-06 17:39 PDT, Volker Sobek
no flags Details
Popup menu with new patch version on X11 (119.49 KB, image/png)
2017-04-07 07:24 PDT, Adrian Perez
no flags Details
Patch (7.00 KB, patch)
2017-04-07 07:56 PDT, Adrian Perez
no flags Details | Formatted Diff | Diff
Patch (7.00 KB, patch)
2017-04-07 08:36 PDT, Adrian Perez
no flags Details | Formatted Diff | Diff
Patch (8.56 KB, patch)
2017-04-10 09:47 PDT, Adrian Perez
no flags Details | Formatted Diff | Diff
Patch (4.08 KB, patch)
2018-05-28 04:17 PDT, Adrian Perez
no flags Details | Formatted Diff | Diff
Patch (10.47 KB, patch)
2020-04-16 15:57 PDT, Adrian Perez
no flags Details | Formatted Diff | Diff
Screenshot of new context menu based on GtkPopoverMenu (72.90 KB, image/png)
2020-04-16 16:02 PDT, Adrian Perez
no flags Details
Patch (25.13 KB, patch)
2020-04-27 14:51 PDT, Adrian Perez
no flags Details | Formatted Diff | Diff
Patch (24.93 KB, patch)
2020-04-27 14:59 PDT, Adrian Perez
no flags Details | Formatted Diff | Diff
Patch for landing (26.10 KB, patch)
2020-04-29 02:25 PDT, Adrian Perez
no flags Details | Formatted Diff | Diff
sample r260888 (90.26 KB, image/png)
2020-04-30 10:22 PDT, Jim Mason
no flags Details
sample r260889 (88.56 KB, image/png)
2020-04-30 10:23 PDT, Jim Mason
no flags Details
sample r260937 (90.37 KB, image/png)
2020-04-30 10:41 PDT, Jim Mason
no flags Details

Note You need to log in before you can comment on or make changes to this bug.
Description Volker Sobek 2017-04-06 10:38:59 PDT
The right-click menu in a web page can be misplaced (away from the pointer) with two monitors on Wayland. Apparently this is caused by the use of the deprecated gtk_menu_popup() function. As of gtk 3.22 gtk_menu_popup_at_pointer() should be used instead [0].

[0] https://developer.gnome.org/gtk3/stable/GtkMenu.html#gtk-menu-popup
Comment 1 Adrian Perez 2017-04-06 11:46:09 PDT
The same goes for gtk_menu_popup_for_device(), which we are also using
and it has been deprecated as well.
Comment 2 Adrian Perez 2017-04-06 13:12:35 PDT
Created attachment 306416 [details]
Patch
Comment 3 Adrian Perez 2017-04-06 13:21:43 PDT
I have still pending check the patch once the build I am doing finishes,
but I think it should be correct.

I am not 100% sure about the call to gtk_menu_popup_at_rect(), so I am
uploading it for early review. My understanding of the GTK+ documentation
is that:

 - The passed GdkRectangle is the top-left coordinates where the menu
   is shown to be shown, relative to the webview, and the size.

 - The gravity parameter for the rectangle anchor is NORTH_WEST because
   that's the (x,y) position calculated for the top-left corner of the
   rectangle.

 - The gravity parameter for the reference point of the reference widget
   (in this case the webview) does not matter because the menu is a popup
   menu (GDK_WINDOW_TYPE_HINT_POPUP_MENU), which does not get “attached”
   to the reference widget.

   (In contrast, if this were a menu for a menubar, the top-left of the
    popup would be attached to the bottom-left of the item clicked — but
    that would be a GDK_WINDOW_TYPE_HINT_MENU.)

The rest of changes are straightforward, and the new code path is even
simpler than the old one, which is still used for GTK+ <3.22
Comment 4 Michael Catanzaro 2017-04-06 13:34:51 PDT
Comment on attachment 306416 [details]
Patch

LGTM. Volker, can you test it to make sure it works please?
Comment 5 Adrian Perez 2017-04-06 15:17:03 PDT
Created attachment 306432 [details]
Patch
Comment 6 Adrian Perez 2017-04-06 15:18:00 PDT
(In reply to Adrian Perez from comment #5)
> Created attachment 306432 [details]
> Patch

This version now builds. There was a couple of mistakes in the
previous version of the patch.
Comment 7 Volker Sobek 2017-04-06 17:38:47 PDT
Created attachment 306444 [details]
popup menu without patch
Comment 8 Volker Sobek 2017-04-06 17:39:21 PDT
Created attachment 306445 [details]
popup menu with patch
Comment 9 Volker Sobek 2017-04-06 17:50:41 PDT
I forgot to mention the context menu is OK with that patch. Only the popup menus are still off, as can be seen in the pictures.
Comment 10 Adrian Perez 2017-04-07 01:32:43 PDT
(In reply to Volker Sobek from comment #9)
> I forgot to mention the context menu is OK with that patch. Only the popup
> menus are still off, as can be seen in the pictures.

Thanks for attaching the images and testing out the patch. I didn't have
time to try the patch yesterday, and today I have just tried it myself
indeed I get the same as you.

I have to debug the calculation for the coordinates and size of the
GdkRectangle and the other parameters passed to gtk_menu_poup_at_rect().

At least the contextual menus are already working fine. This is an issue
that had been annoying me as well when using a Wayland session, but somehow
I didn't stop to try and fix it before. So nice that you reported the issue
and pointed towards the solution!
Comment 11 Adrian Perez 2017-04-07 07:24:31 PDT
Created attachment 306500 [details]
Popup menu with new patch version on X11

I got this working fine in X11! It works both with 1x scaling
(normal screens) and 2x scaling (HiDPI screens). I'm going to
test it under Wayland as well, but I am quite confident that
it will work because the new version of the patch leaves all
the position calculation to GTK+ and removes usage of the
non-trivial positioning code we had to calculate where to
place the popup menu.
Comment 12 Michael Catanzaro 2017-04-07 07:55:10 PDT
Comment on attachment 306432 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=306432&action=review

Please do test under Wayland before committing.

> Source/WebKit2/UIProcess/gtk/WebPopupMenuProxyGtk.cpp:127
> +    const GdkRectangle position = { menuPosition.x(), menuPosition.y(),  requisition.width, requisition.height };

Got an extra space (two spaces) before requisition.width here

> Source/WebKit2/UIProcess/gtk/WebPopupMenuProxyGtk.cpp:128
> +    gtk_menu_popup_at_rect(GTK_MENU(m_popup), gtk_widget_get_window(m_webView) , &position, GDK_GRAVITY_NORTH_WEST, GDK_GRAVITY_NORTH_WEST, event);

Got an extra space before the comma here
Comment 13 Adrian Perez 2017-04-07 07:56:28 PDT
Created attachment 306502 [details]
Patch
Comment 14 Adrian Perez 2017-04-07 08:03:53 PDT
(In reply to Michael Catanzaro from comment #12)
> Comment on attachment 306432 [details]
> Patch
> 
> View in context:
> https://bugs.webkit.org/attachment.cgi?id=306432&action=review
> 
> Please do test under Wayland before committing.

I just did, and it works just fine.

Leaving the calculations to GTK+ was indeed was a good move, and
I am happy to not have to use our own code to position the popup
anymore :-)

> > Source/WebKit2/UIProcess/gtk/WebPopupMenuProxyGtk.cpp:127
> > +    const GdkRectangle position = { menuPosition.x(), menuPosition.y(),  requisition.width, requisition.height };
> 
> Got an extra space (two spaces) before requisition.width here

In the latest version of the patch “requisition” is not used anymore.

> > Source/WebKit2/UIProcess/gtk/WebPopupMenuProxyGtk.cpp:128
> > +    gtk_menu_popup_at_rect(GTK_MENU(m_popup), gtk_widget_get_window(m_webView) , &position, GDK_GRAVITY_NORTH_WEST, GDK_GRAVITY_NORTH_WEST, event);
> 
> Got an extra space before the comma here

ACK, will fix.
Comment 15 Adrian Perez 2017-04-07 08:36:01 PDT
Created attachment 306505 [details]
Patch
Comment 16 Adrian Perez 2017-04-07 08:54:18 PDT
(In reply to Adrian Perez from comment #15)
> Created attachment 306505 [details]
> Patch

This version works fine, but when popping up the menu it, the previously
selected item does not appear below the mouse pointer when popping it up.
I think changing the gravity of the menu to GDK_GRAVITY_WEST will try to
center the menu. I'll see if that's enough to get the active item below
the mouse, though it could be that some of the tricky positioning code
that iterates over the menu children is needed — I'll try my best to
re-enable as little as possible from that.
Comment 17 Volker Sobek 2017-04-07 09:32:19 PDT
(In reply to Adrian Perez from comment #16)
> (In reply to Adrian Perez from comment #15)
> > Created attachment 306505 [details]
> > Patch
> 
> This version works fine, but when popping up the menu it, the previously
> selected item does not appear below the mouse pointer when popping it up.
> I think changing the gravity of the menu to GDK_GRAVITY_WEST will try to
> center the menu. I'll see if that's enough to get the active item below
> the mouse, though it could be that some of the tricky positioning code
> that iterates over the menu children is needed — I'll try my best to
> re-enable as little as possible from that.
Why is this desirable in the first place? What is the objective/benefit to the user of doing this? I never understood the idea behind it, it rather always seemed like something is broken and made the menu prone to accidentally selecting something wrong, at least for me. If the user doesn't want to change the item after opening the menu, they can just release the press (as it is now) as the previously selected item will continue to be selected.


The patch works correctly in all cases here, did quite some testing, Wayland and X. Tested with a patched webkitgtk-2.16.1.
Comment 18 Adrian Perez 2017-04-10 05:26:03 PDT
(In reply to Volker Sobek from comment #17)
> (In reply to Adrian Perez from comment #16)
> > (In reply to Adrian Perez from comment #15)
> > > Created attachment 306505 [details]
> > > Patch
> > 
> > This version works fine, but when popping up the menu it, the previously
> > selected item does not appear below the mouse pointer when popping it up.
> > I think changing the gravity of the menu to GDK_GRAVITY_WEST will try to
> > center the menu. I'll see if that's enough to get the active item below
> > the mouse, though it could be that some of the tricky positioning code
> > that iterates over the menu children is needed — I'll try my best to
> > re-enable as little as possible from that.
>
> Why is this desirable in the first place? What is the objective/benefit to
> the user of doing this? [...]

WebKitGTK+ tries to behave as much as possible like the rest of the GTK+
toolkit. In GTK+ when a combo box is clicked, when the popup menu appears
it has the currently selected item below the mouse pointer. We try to do
that as well for consistency.

> [...] I never understood the idea behind it, it rather always seemed
> like something is broken and made the menu prone to accidentally
> selecting something wrong, at least for me. If the user doesn't want
> to change the item after opening the menu, they can just release the
> press (as it is now) as the previously selected item will continue to be
> selected.

This is something that I personally agree with. I do not like much how
combo boxes behave in GTK+ — but that's how they are, so we should try
behave as closely to the combo box popup menus from the toolkit, for the
sake of consistency ;-)
 
> The patch works correctly in all cases here, did quite some testing, Wayland
> and X. Tested with a patched webkitgtk-2.16.1.

Thanks *a lot* for testing. I have only tried building from “master” and
it's useful to know that it would be also fine if we wanted to apply the
patch in a point release.
Comment 19 Adrian Perez 2017-04-10 09:47:47 PDT
Created attachment 306694 [details]
Patch
Comment 20 Adrian Perez 2017-04-10 09:50:10 PDT
(In reply to Adrian Perez from comment #19)
> Created attachment 306694 [details]
> Patch

This version of the patch also makes the popup appear with the
active item centered below the mouse. (Well, not always, but at
least it behaves the same as the existing code which is still
used for GTK+ older than 3.22.0)

So I think this should be the version to land.
Comment 21 WebKit Commit Bot 2017-04-10 11:06:35 PDT
Comment on attachment 306694 [details]
Patch

Clearing flags on attachment: 306694

Committed r215190: <http://trac.webkit.org/changeset/215190>
Comment 22 WebKit Commit Bot 2017-04-10 11:06:37 PDT
All reviewed patches have been landed.  Closing bug.
Comment 23 Michael Catanzaro 2017-06-25 12:56:17 PDT
Reverted r215190 for reason:

Broke product select element on GNOME Bugzilla

Committed r218798: <http://trac.webkit.org/changeset/218798>
Comment 24 Adrian Perez 2018-05-28 04:03:22 PDT
Today I stumbled upon this issue reported to the Sway Wayland
compositor, which seems might be related to this WebKitGTK+ bug:

  https://github.com/swaywm/sway/issues/1922

That one is about the Web view context menu not appearing when
in fullscreen, which I think would be fixed by the part of the
reverted patch that made changes to “WebContextMenuProxyGtk.cpp”.
I think we can split that part of the patch and land it, because
it won't affect the popups for <select> elements which were broken
by the patch version that was reverted. I'll split that part of
the patch into a new bug for landing.
Comment 25 Adrian Perez 2018-05-28 04:05:15 PDT
(In reply to Adrian Perez from comment #24)
> [...] I'll split that part of the patch into a new bug for landing.

Or, better: land the Web view context menu for this bug (which is
originally about the context menu after all) and split out the part
about the Web popup menus to a separate bug.
Comment 26 Adrian Perez 2018-05-28 04:17:16 PDT
Created attachment 341451 [details]
Patch

Patch fixing only the context menus (as per bug title+description).
Comment 27 Adrian Perez 2018-05-28 08:16:07 PDT
Comment on attachment 341451 [details]
Patch

With this patch applied, trying to open the menu using the keyboard
(for example with the dedicated context menu that some keyboards have)
results in the following errors:

(MiniBrowser:26141): Gtk-WARNING **: no trigger event for menu popup
(MiniBrowser:26141): Gtk-CRITICAL **: gtk_menu_popup_at_rect: assertion 'GDK_IS_WINDOW (rect_window)' failed

Let's not land this yet, I'll try to figure out what to do in that case.
Comment 28 Adrian Perez 2020-04-16 15:57:52 PDT
Created attachment 396713 [details]
Patch
Comment 29 EWS Watchlist 2020-04-16 15:58:35 PDT
Thanks for the patch. If this patch contains new public API please make sure it follows the guidelines for new WebKit2 GTK+ API. See http://trac.webkit.org/wiki/WebKitGTK/AddingNewWebKit2API
Comment 30 Adrian Perez 2020-04-16 16:02:16 PDT
Created attachment 396714 [details]
Screenshot of new context menu based on GtkPopoverMenu
Comment 31 Adrian Perez 2020-04-27 14:51:15 PDT
Created attachment 397745 [details]
Patch
Comment 32 Adrian Perez 2020-04-27 14:59:07 PDT
Created attachment 397748 [details]
Patch

This should fix the WPE build
Comment 33 Carlos Garcia Campos 2020-04-28 05:46:29 PDT
Comment on attachment 397748 [details]
Patch

View in context: https://bugs.webkit.org/attachment.cgi?id=397748&action=review

> Source/WebCore/ChangeLog:8
> +        * platform/gtk/GtkVersioning.h: Add replacements for GtkPopover functions which are no longet available in GTK4.

We should add GtkVersioning.h as an exception to be skipped by the style checker. It can be done in a separate patch.

> Source/WebKit/UIProcess/API/gtk/WebKitWebViewBase.cpp:1662
> +static void activeContextMenuUnmapped(GtkWidget* widget, WebKitWebViewBase* webViewBase)

I would rename this as Closed since this is no longer unmap callback.

> Tools/TestWebKitAPI/Tests/WebKitGtk/TestContextMenu.cpp:31
> +    WTF::Function<bool(GtkWidget*)> predicate;

You don't need WTF::

> Tools/TestWebKitAPI/Tests/WebKitGtk/TestContextMenu.cpp:32
> +    WTF::Vector<GtkWidget*> result { };

Ditto, nor the initialization.
Comment 34 Adrian Perez 2020-04-29 02:25:53 PDT
Created attachment 397947 [details]
Patch for landing
Comment 35 EWS 2020-04-29 03:06:59 PDT
Committed r260889: <https://trac.webkit.org/changeset/260889>

All reviewed patches have been landed. Closing bug and clearing flags on attachment 397947 [details].
Comment 36 Carlos Alberto Lopez Perez 2020-04-29 13:14:42 PDT
(In reply to EWS from comment #35)
> Committed r260889: <https://trac.webkit.org/changeset/260889>
> 
> All reviewed patches have been landed. Closing bug and clearing flags on
> attachment 397947 [details].

This has caused GTK API Failures:

/webkit/WebKitWebView/populate-menu: **
ERROR:../../Tools/TestWebKitAPI/Tests/WebKitGtk/TestContextMenu.cpp:703:void testContextMenuPopulateMenu(ContextMenuCustomTest *, gconstpointer): 'test->m_activated' should be TRUE
Aborted
Comment 37 Adrian Perez 2020-04-29 13:32:48 PDT
(In reply to Carlos Alberto Lopez Perez from comment #36)
> (In reply to EWS from comment #35)
> > Committed r260889: <https://trac.webkit.org/changeset/260889>
> > 
> > All reviewed patches have been landed. Closing bug and clearing flags on
> > attachment 397947 [details].
> 
> This has caused GTK API Failures:
> 
> /webkit/WebKitWebView/populate-menu: **
> ERROR:../../Tools/TestWebKitAPI/Tests/WebKitGtk/TestContextMenu.cpp:703:void
> testContextMenuPopulateMenu(ContextMenuCustomTest *, gconstpointer):
> 'test->m_activated' should be TRUE
> Aborted

Mmh, I made sure tests passed locally before submitting, could it be an
issue which shows only in the JHBuild environment? I'll try and take a
look ¬_¬
Comment 38 Adrian Perez 2020-04-29 13:39:20 PDT
(In reply to Adrian Perez from comment #37)
> (In reply to Carlos Alberto Lopez Perez from comment #36)
> > (In reply to EWS from comment #35)
> > > Committed r260889: <https://trac.webkit.org/changeset/260889>
> > > 
> > > All reviewed patches have been landed. Closing bug and clearing flags on
> > > attachment 397947 [details].
> > 
> > This has caused GTK API Failures:
> > 
> > /webkit/WebKitWebView/populate-menu: **
> > ERROR:../../Tools/TestWebKitAPI/Tests/WebKitGtk/TestContextMenu.cpp:703:void
> > testContextMenuPopulateMenu(ContextMenuCustomTest *, gconstpointer):
> > 'test->m_activated' should be TRUE
> > Aborted
> 
> Mmh, I made sure tests passed locally before submitting, could it be an
> issue which shows only in the JHBuild environment? I'll try and take a
> look ¬_¬

Okay, I managed to reproduce this locally and it's puzzling because I have
no idea what could have changed between earlier and now… hopefully it's not
timing-related.
Comment 39 Adrian Perez 2020-04-29 13:51:52 PDT
(In reply to Adrian Perez from comment #38)
> (In reply to Adrian Perez from comment #37)
> > (In reply to Carlos Alberto Lopez Perez from comment #36)
> > > (In reply to EWS from comment #35)
> > > > Committed r260889: <https://trac.webkit.org/changeset/260889>
> > > > 
> > > > All reviewed patches have been landed. Closing bug and clearing flags on
> > > > attachment 397947 [details].
> > > 
> > > This has caused GTK API Failures:
> > > 
> > > /webkit/WebKitWebView/populate-menu: **
> > > ERROR:../../Tools/TestWebKitAPI/Tests/WebKitGtk/TestContextMenu.cpp:703:void
> > > testContextMenuPopulateMenu(ContextMenuCustomTest *, gconstpointer):
> > > 'test->m_activated' should be TRUE
> > > Aborted
> > 
> > Mmh, I made sure tests passed locally before submitting, could it be an
> > issue which shows only in the JHBuild environment? I'll try and take a
> > look ¬_¬
> 
> Okay, I managed to reproduce this locally and it's puzzling because I have
> no idea what could have changed between earlier and now… hopefully it's not
> timing-related.

I have already an idea of what is the cause, and opened bug #211203 to
handle fixing the regression. Thanks for the heads up!
Comment 40 Jim Mason 2020-04-30 10:22:03 PDT
(In reply to EWS from comment #35)
> Committed r260889: <https://trac.webkit.org/changeset/260889>
> 
> All reviewed patches have been landed. Closing bug and clearing flags on
> attachment 397947 [details].
For me under GTK 3.24.11 / X11, r260889 breaks the right-click context popup in a couple ways.  First, it has a nipple on top (like a dropdown menu) where before it was a rectangle as expected.

More problemmatic, all of the menu items in the popup are disabled.  I am uploading a couple screenshots, 'sample r260888.png' (working) and 'sample r260889.png' (broken).
Comment 41 Jim Mason 2020-04-30 10:22:57 PDT
Created attachment 398061 [details]
sample r260888
Comment 42 Jim Mason 2020-04-30 10:23:44 PDT
Created attachment 398062 [details]
sample r260889
Comment 43 Jim Mason 2020-04-30 10:41:34 PDT
Created attachment 398064 [details]
sample r260937

(In reply to Jim Mason from comment #40)
> (In reply to EWS from comment #35)
> > Committed r260889: <https://trac.webkit.org/changeset/260889>
> > 
> > All reviewed patches have been landed. Closing bug and clearing flags on
> > attachment 397947 [details].
> For me under GTK 3.24.11 / X11, r260889 breaks the right-click context popup
> in a couple ways.  First, it has a nipple on top (like a dropdown menu)
> where before it was a rectangle as expected.
> 
> More problemmatic, all of the menu items in the popup are disabled.  I am
> uploading a couple screenshots, 'sample r260888.png' (working) and 'sample
> r260889.png' (broken).

Trying a later build, the disabled menu items have been fixed but the nipple is still there.  Screenshot attached.
Comment 44 Adrian Perez 2020-04-30 14:42:39 PDT
(In reply to Jim Mason from comment #43)
> Created attachment 398064 [details]
> sample r260937
> 
> (In reply to Jim Mason from comment #40)
> > (In reply to EWS from comment #35)
> > > Committed r260889: <https://trac.webkit.org/changeset/260889>
> > > 
> > > All reviewed patches have been landed. Closing bug and clearing flags on
> > > attachment 397947 [details].
> >
> > For me under GTK 3.24.11 / X11, r260889 breaks the right-click context popup
> > in a couple ways.  First, it has a nipple on top (like a dropdown menu)
> > where before it was a rectangle as expected.

This is because now we are using a GtkPopoverMenu, which has an arrow by
default pointing to location where the menu was opened. In GTK4 the context
menus don't have the arrow enabled, and we may do the same for WebKitGTK's
context menus, see bug #211241 for that.
 
> > More problemmatic, all of the menu items in the popup are disabled.  I am
> > uploading a couple screenshots, 'sample r260888.png' (working) and 'sample
> > r260889.png' (broken).
> 
> Trying a later build, the disabled menu items have been fixed but the nipple
> is still there.  Screenshot attached.

This we noticed a bit after the patch landed, and has been fixed with the
patch for bug #211203.

Thanks for taking your time to report the issues nevertheless!
Comment 45 Adrian Perez 2020-04-30 16:01:07 PDT
(In reply to Carlos Garcia Campos from comment #33)
> Comment on attachment 397748 [details]
> Patch
> 
> View in context:
> https://bugs.webkit.org/attachment.cgi?id=397748&action=review
> 
> > Source/WebCore/ChangeLog:8
> > +        * platform/gtk/GtkVersioning.h: Add replacements for GtkPopover functions which are no longet available in GTK4.
> 
> We should add GtkVersioning.h as an exception to be skipped by the style
> checker. It can be done in a separate patch.

Done, the patch for this is in bug #211262
Comment 46 Jim Mason 2020-05-01 11:23:14 PDT
Right-click selection of menu items has been affected as well.

See Bug 211294