Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(246)

Unified Diff: Source/WebCore/inspector/front-end/treeoutline.js

Issue 9956025: Merge 112677 - Web Inspector: ScriptsNavigator scripts selection/focus polish. (Closed) Base URL: http://svn.webkit.org/repository/webkit/branches/chromium/1084/
Patch Set: Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « Source/WebCore/inspector/front-end/ScriptsPanel.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/WebCore/inspector/front-end/treeoutline.js
===================================================================
--- Source/WebCore/inspector/front-end/treeoutline.js (revision 112683)
+++ Source/WebCore/inspector/front-end/treeoutline.js (working copy)
@@ -409,6 +409,9 @@
} else if (isEnterKey(event)) {
if (this.selectedTreeElement.onenter)
handled = this.selectedTreeElement.onenter();
+ } else if (event.keyCode === WebInspector.KeyboardShortcut.Keys.Space.code) {
+ if (this.selectedTreeElement.onspace)
+ handled = this.selectedTreeElement.onspace();
}
if (nextSelectedElement) {
« no previous file with comments | « Source/WebCore/inspector/front-end/ScriptsPanel.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698