Title: [89787] trunk/Source/WebCore
- Revision
- 89787
- Author
- [email protected]
- Date
- 2011-06-26 23:40:47 -0700 (Sun, 26 Jun 2011)
Log Message
2011-06-26 Yury Semikhatsky <[email protected]>
Reviewed by Pavel Feldman.
Web Inspector: REGRESSION Scripts panel sidebar pane context menu has no "Remove breakpoint" item
https://bugs.webkit.org/show_bug.cgi?id=63421
Show generic sidebar menu only if no pane-specific menu has been shown.
* inspector/front-end/ScriptsPanel.js:
(WebInspector.ScriptsPanel):
Modified Paths
Diff
Modified: trunk/Source/WebCore/ChangeLog (89786 => 89787)
--- trunk/Source/WebCore/ChangeLog 2011-06-27 06:39:01 UTC (rev 89786)
+++ trunk/Source/WebCore/ChangeLog 2011-06-27 06:40:47 UTC (rev 89787)
@@ -1,3 +1,15 @@
+2011-06-26 Yury Semikhatsky <[email protected]>
+
+ Reviewed by Pavel Feldman.
+
+ Web Inspector: REGRESSION Scripts panel sidebar pane context menu has no "Remove breakpoint" item
+ https://bugs.webkit.org/show_bug.cgi?id=63421
+
+ Show generic sidebar menu only if no pane-specific menu has been shown.
+
+ * inspector/front-end/ScriptsPanel.js:
+ (WebInspector.ScriptsPanel):
+
2011-06-26 Adam Barth <[email protected]>
Build fix for clang. Apparently clang doesn't want us to use the std
Modified: trunk/Source/WebCore/inspector/front-end/ScriptsPanel.js (89786 => 89787)
--- trunk/Source/WebCore/inspector/front-end/ScriptsPanel.js 2011-06-27 06:39:01 UTC (rev 89786)
+++ trunk/Source/WebCore/inspector/front-end/ScriptsPanel.js 2011-06-27 06:40:47 UTC (rev 89787)
@@ -107,7 +107,7 @@
}
if (Preferences.canInspectWorkers && WebInspector.workerManager)
- this.sidebarElement.addEventListener("contextmenu", this._contextMenu.bind(this), true);
+ this.sidebarElement.addEventListener("contextmenu", this._contextMenu.bind(this), false);
if (Preferences.canInspectWorkers && WebInspector.workerManager && WebInspector.settings.workerInspectionEnabled) {
WorkerAgent.setWorkerInspectionEnabled(true);
this.sidebarPanes.workerList = new WebInspector.WorkerListSidebarPane(WebInspector.workerManager);
_______________________________________________
webkit-changes mailing list
[email protected]
http://lists.webkit.org/mailman/listinfo.cgi/webkit-changes