Bug 195878 "Open Link ..." in context menu does not work if "This Frame" submenu was opened r=jag sr=bz a=asa

This commit is contained in:
neil%parkwaycc.co.uk 2006-07-29 05:41:50 +00:00
Родитель 0caa6de425
Коммит 9385a21139
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -43,8 +43,8 @@
hidden/shown upon display, based on what the user has clicked-on.
-->
<popup id="contentAreaContextMenu"
onpopupshowing="gContextMenu = new nsContextMenu( this ); return gContextMenu.shouldDisplay;"
onpopuphiding="gContextMenu = null;">
onpopupshowing="if (event.target != this) return true; gContextMenu = new nsContextMenu( this ); return gContextMenu.shouldDisplay;"
onpopuphiding="if (event.target == this) gContextMenu = null;">
<menuitem id="popupwindow-reject"
label="&popupWindowRejectCmd.label;"
accesskey="&popupWindowRejectCmd.accesskey;"