WebKit Bugzilla
New
Browse
Log In
×
Sign in with GitHub
or
Remember my login
Create Account
·
Forgot Password
Forgotten password account recovery
RESOLVED FIXED
37582
Web Inspector: Console: Shift-Tab does not cycle autocompletions in the reverse order
https://bugs.webkit.org/show_bug.cgi?id=37582
Summary
Web Inspector: Console: Shift-Tab does not cycle autocompletions in the rever...
Alexander Pavlov (apavlov)
Reported
2010-04-14 09:41:38 PDT
When Shift is depressed, Tab cycles autocompletion suggestions in the forward direction rather than reverse.
Attachments
[PATCH] Suggested solution
(3.00 KB, patch)
2010-04-14 09:57 PDT
,
Alexander Pavlov (apavlov)
no flags
Details
Formatted Diff
Diff
View All
Add attachment
proposed patch, testcase, etc.
Alexander Pavlov (apavlov)
Comment 1
2010-04-14 09:57:31 PDT
Created
attachment 53340
[details]
[PATCH] Suggested solution
Joseph Pecoraro
Comment 2
2010-04-14 10:27:32 PDT
Looks good! I just noticed this was missing the other day, glad to see you add it =) [Collision: I agree with Tim's r+]
> + var nextIndex = foundIndex + (reverse ? -1 : 1);
I haven't seen a case where we use (null + #) but this works fine in JavaScript and the code is pretty clean here.
> + this.complete(false, event.shiftKey);
Is just event.shiftKey enough? Do you feel that we should say something stronger like this: event.shiftKey && !event.ctrlKey && !event.metaKey TextMate for example allows Shift+Esc to go back through a list but not Shift+Ctrl+Esc or Shift+Alt+Esc. Apparently Safari / OS X captures these combinations and handles other actions, but it could be possible that other platforms would let such a combination through. Either way, I think this is unlikely to occur, but something to think about.
WebKit Commit Bot
Comment 3
2010-04-14 11:42:20 PDT
Comment on
attachment 53340
[details]
[PATCH] Suggested solution Clearing flags on attachment: 53340 Committed
r57592
: <
http://trac.webkit.org/changeset/57592
>
WebKit Commit Bot
Comment 4
2010-04-14 11:42:26 PDT
All reviewed patches have been landed. Closing bug.
Note
You need to
log in
before you can comment on or make changes to this bug.
Top of Page
Format For Printing
XML
Clone This Bug