Index: third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js |
diff --git a/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js b/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js |
index 09967447427a68af5723c9cc030d61dbc35fe1f7..a874d5a1f3dd0688fb35aaa46a33f9a11b46268a 100644 |
--- a/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js |
+++ b/third_party/WebKit/Source/devtools/front_end/sources/CallStackSidebarPane.js |
@@ -425,7 +425,7 @@ WebInspector.CallStackSidebarPane.prototype = { |
{ |
if (event.altKey || event.shiftKey || event.metaKey || event.ctrlKey) |
return; |
- if (event.keyIdentifier === "Up" && this._selectPreviousCallFrameOnStack() || event.keyIdentifier === "Down" && this._selectNextCallFrameOnStack()) |
+ if (event.key === "ArrowUp" && this._selectPreviousCallFrameOnStack() || event.key === "ArrowDown" && this._selectNextCallFrameOnStack()) |
event.consume(true); |
}, |