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) { |