summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/Source/devtools/front_end/ui/TextPrompt.js
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/WebKit/Source/devtools/front_end/ui/TextPrompt.js')
-rw-r--r--third_party/WebKit/Source/devtools/front_end/ui/TextPrompt.js3
1 files changed, 3 insertions, 0 deletions
diff --git a/third_party/WebKit/Source/devtools/front_end/ui/TextPrompt.js b/third_party/WebKit/Source/devtools/front_end/ui/TextPrompt.js
index 06bdb2a..f882cfd 100644
--- a/third_party/WebKit/Source/devtools/front_end/ui/TextPrompt.js
+++ b/third_party/WebKit/Source/devtools/front_end/ui/TextPrompt.js
@@ -285,6 +285,9 @@ WebInspector.TextPrompt.prototype = {
delete this._needUpdateAutocomplete;
switch (event.keyIdentifier) {
+ case "U+0009": // Tab
+ handled = this.tabKeyPressed(event);
+ break;
case "Left":
case "Home":
this._removeSuggestionAids();