Closed
Bug 231034
Opened 21 years ago
Closed 21 years ago
Tab doesn't scroll though address list
Categories
(MailNews Core :: Composition, defect)
MailNews Core
Composition
Tracking
(Not tracked)
VERIFIED
FIXED
mozilla1.7alpha
People
(Reporter: neil, Assigned: mscott)
Details
(Keywords: regression)
Attachments
(1 file, 1 obsolete file)
867 bytes,
patch
|
mscott
:
review+
Bienvenu
:
superreview+
|
Details | Diff | Splinter Review |
Steps to reproduce problem:
1. Compose a message with more than 4 recipients
2. Try to tab through the list of recipients
Expected results: address list scrolls to allow you to tab through
Actual results: tabbing jumps to subject after the 4th recipient
Additional information: back tabbing still scrolls correctly
Comment 1•21 years ago
|
||
xref bug 216212.
Assignee | ||
Comment 2•21 years ago
|
||
9 is really the value of KeyEvent.DOM_VK_TAB so my KeyEvent.DOM_VK_TAB case
statement caused us to never hit the original case.
The fix is to just fold the call to awTabFromRecipient up into the switch for
KeyEvent.DOM_VK_TAB / KeyEvent.DOM_VK_RETURN.
Assignee | ||
Updated•21 years ago
|
Attachment #140183 -
Flags: review?(neil.parkwaycc.co.uk)
Assignee | ||
Updated•21 years ago
|
Status: NEW → ASSIGNED
Target Milestone: --- → mozilla1.7alpha
Reporter | ||
Comment 3•21 years ago
|
||
Comment on attachment 140183 [details] [diff] [review]
the fix
r=me if you delete the { on line 855 instead of adding } after the break;
Attachment #140183 -
Flags: review?(neil.parkwaycc.co.uk) → review+
Assignee | ||
Comment 4•21 years ago
|
||
Attachment #140183 -
Attachment is obsolete: true
Assignee | ||
Comment 5•21 years ago
|
||
Comment on attachment 140245 [details] [diff] [review]
updated patch with neil's comments
moving forward the r, requesting sr.
Attachment #140245 -
Flags: superreview?(bienvenu)
Attachment #140245 -
Flags: review+
Updated•21 years ago
|
Attachment #140245 -
Flags: superreview?(bienvenu) → superreview+
Assignee | ||
Comment 6•21 years ago
|
||
fixed
Status: ASSIGNED → RESOLVED
Closed: 21 years ago
Resolution: --- → FIXED
Reporter | ||
Comment 7•21 years ago
|
||
Comment on attachment 140245 [details] [diff] [review]
updated patch with neil's comments
Sigh, the only difference between these patches was the indentation of the
else...
Assignee | ||
Comment 8•21 years ago
|
||
maybe the diff is wrong I removed the braces around the case statement like you
asked.
Assignee | ||
Comment 9•21 years ago
|
||
*sigh* I didn't save the changes in my editor before I generated the diff.
I'll check it in again :)
Reporter | ||
Comment 10•21 years ago
|
||
Yeah, I've done that and wondered why my bugs don't get fixed ;-)
Comment 11•21 years ago
|
||
Fix works great, Neil; verifying.
How about putting the same logic into a fix for bug 216212?
Status: RESOLVED → VERIFIED
Updated•20 years ago
|
Product: MailNews → Core
Updated•16 years ago
|
Product: Core → MailNews Core
You need to log in
before you can comment on or make changes to this bug.
Description
•