Title: [135297] branches/chromium/1312/Source/WebCore/inspector/front-end/ObjectPropertiesSection.js
Revision
135297
Author
[email protected]
Date
2012-11-20 10:42:21 -0800 (Tue, 20 Nov 2012)

Log Message

Merge 134595 - Web Inspector: context menu on ObjectPropertyTreeElement's values is masked by the section.
https://bugs.webkit.org/show_bug.cgi?id=102212

Reviewed by Vsevolod Vlasov.

* inspector/front-end/ObjectPropertiesSection.js:
(WebInspector.ObjectPropertiesSection.prototype.enableContextMenu):

[email protected]
BUG=161156
Review URL: https://chromiumcodereview.appspot.com/11416111

Modified Paths

Diff

Modified: branches/chromium/1312/Source/WebCore/inspector/front-end/ObjectPropertiesSection.js (135296 => 135297)


--- branches/chromium/1312/Source/WebCore/inspector/front-end/ObjectPropertiesSection.js	2012-11-20 18:40:36 UTC (rev 135296)
+++ branches/chromium/1312/Source/WebCore/inspector/front-end/ObjectPropertiesSection.js	2012-11-20 18:42:21 UTC (rev 135297)
@@ -53,7 +53,7 @@
 WebInspector.ObjectPropertiesSection.prototype = {
     enableContextMenu: function()
     {
-        this.element.addEventListener("contextmenu", this._contextMenuEventFired.bind(this), true);
+        this.element.addEventListener("contextmenu", this._contextMenuEventFired.bind(this), false);
     },
 
     _contextMenuEventFired: function(event)
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo/webkit-changes

Reply via email to