Home | History | Annotate | Download | only in front-end

Lines Matching refs:Keys

389                 const commandLineAPI = ["dir", "dirxml", "keys", "values", "profile", "profileEnd", "monitorEvents", "unmonitorEvents", "inspect", "copy", "clear"];
394 this._reportCompletions(bestMatchOnly, completionsReadyCallback, dotNotation, bracketNotation, prefix, Object.keys(propertyNames));
500 var keys = WebInspector.isMac() ? [ shortcutK.name, shortcutL.name ] : [ shortcutL.name ];
501 section.addAlternateKeys(keys, WebInspector.UIString("Clear Console"));
503 keys = [
504 shortcut.shortcutToString(shortcut.Keys.Tab),
505 shortcut.shortcutToString(shortcut.Keys.Tab, shortcut.Modifiers.Shift)
507 section.addRelatedKeys(keys, WebInspector.UIString("Next/previous suggestion"));
508 section.addKey(shortcut.shortcutToString(shortcut.Keys.Right), WebInspector.UIString("Accept suggestion"));
509 keys = [
510 shortcut.shortcutToString(shortcut.Keys.Down),
511 shortcut.shortcutToString(shortcut.Keys.Up)
513 section.addRelatedKeys(keys, WebInspector.UIString("Next/previous line"));
514 keys = [
519 section.addRelatedKeys(keys, WebInspector.UIString("Next/previous command"));
520 section.addKey(shortcut.shortcutToString(shortcut.Keys.Enter), WebInspector.UIString("Execute command"));