X-Git-Url: http://git.webkit.org/?p=WebKit-https.git;a=blobdiff_plain;f=WebCore%2FChangeLog;h=9051f4d7c86fc28d3ac0453dc974f85ac6dfb386;hp=28dafea039e67167845c45cc8723f1791b9973d3;hb=e1be5333c7eb8c1c5f7383f17f8954537af11e6e;hpb=8dd6601ba6d663917840affc3919830051f10d39;ds=sidebyside diff --git a/WebCore/ChangeLog b/WebCore/ChangeLog index 28dafea..9051f4d 100644 --- a/WebCore/ChangeLog +++ b/WebCore/ChangeLog @@ -1,5 +1,21 @@ 2008-04-04 Timothy Hatcher + Restore the user entered text when clearing the auto-completion. + This is important when the user typed text that is a different + case than the completion. This has no affect on the Console, since + it matches completions case-sensitively. This is used in the up-coming + Database Query view for words like "SELECT" and "INSERT". + + Reviewed by Adam Roben. + + * page/inspector/TextPrompt.js: + (WebInspector.TextPrompt.prototype.clearAutoComplete): Restore the user typed + text in the original DOM range that complete() saved away. + (WebInspector.TextPrompt.prototype.complete): Store away the fullWordRange + and it's text content so clearAutoComplete can restore it. + +2008-04-04 Timothy Hatcher + Don't trim whitespace when looking for the current match, this prevents tabbing through matches in the up-coming Database Query view.