Changeset 46515 in webkit


Ignore:
Timestamp:
Jul 28, 2009 9:40:17 PM (15 years ago)
Author:
pfeldman@chromium.org
Message:

2009-07-28 Pavel Feldman <pfeldman@chromium.org>

Reviewed by Timothy Hatcher.

WebInspector: Accept autocomplete on 'End' key pressed.

https://bugs.webkit.org/show_bug.cgi?id=27447.

  • inspector/front-end/TextPrompt.js: (WebInspector.TextPrompt.prototype.handleKeyEvent):
Location:
trunk/WebCore
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/WebCore/ChangeLog

    r46514 r46515  
     12009-07-28  Pavel Feldman  <pfeldman@chromium.org>
     2
     3        Reviewed by Timothy Hatcher.
     4
     5        WebInspector: Accept autocomplete on 'End' key pressed.
     6
     7        https://bugs.webkit.org/show_bug.cgi?id=27447.
     8
     9        * inspector/front-end/TextPrompt.js:
     10        (WebInspector.TextPrompt.prototype.handleKeyEvent):
     11
    1122009-07-28  Laszlo Gombos  <laszlo.1.gombos@nokia.com>
    213
  • trunk/WebCore/inspector/front-end/TextPrompt.js

    r45784 r46515  
    6767                break;
    6868            case "Right":
     69            case "End":
    6970                if (!this.acceptAutoComplete())
    7071                    this.autoCompleteSoon();
Note: See TracChangeset for help on using the changeset viewer.