Closed
Bug 164481
Opened 23 years ago
Closed 22 years ago
Fix gecko to correctly call preventDefault on form element events
Categories
(Camino Graveyard :: Page Layout, defect)
Tracking
(Not tracked)
RESOLVED
FIXED
Chimera0.6
People
(Reporter: sfraser_bugs, Assigned: Brade)
Details
Attachments
(1 file)
I often see this while browsing/using forms (haven't got a test case, but it's
quite common):
2002-08-24 22:26:33.340 Navigator[393] *** -[ChildView insertNewline:]: selector
not recognized
2002-08-24 22:26:33.341 Navigator[393] *** NSTimer ignoring exception
'NSInvalidArgumentException' (reason '*** -[ChildView insertNewline:]: selector
not recognized') that raised during posting of timer with target 3975110 and
selector 'insertNewline:'
We should probably fix this. 'insertNewline' is an NSResponder selector.
| Assignee | ||
Updated•23 years ago
|
Status: NEW → ASSIGNED
Target Milestone: --- → Chimera0.6
| Assignee | ||
Comment 1•23 years ago
|
||
including current behavior in summary
Summary: -[ChildView insertNewline:]: selector not recognized exceptions → beep when pressing return to submit form [was: -[ChildView insertNewline:]: selector not recognized exceptions]
| Reporter | ||
Comment 2•23 years ago
|
||
I fixed this yesterday.
Status: ASSIGNED → RESOLVED
Closed: 23 years ago
Resolution: --- → FIXED
| Assignee | ||
Comment 3•23 years ago
|
||
reopening this bug to fix the underlying problem (and not simply masking it)
Status: RESOLVED → REOPENED
Resolution: FIXED → ---
| Assignee | ||
Comment 4•23 years ago
|
||
note: there may be other cases where we need to do this; these are the ones I
could trigger and see that we needed to mark the event
These things were tested:
key focus on
return link
space radio button
space checkbox
return button (default submit button and other button)
up/down list
pageUp/Dn list
Home/End list
return radio button
return list (already working correctly?)
escape list (already working correctly?)
| Assignee | ||
Comment 5•23 years ago
|
||
mozilla bug for trunk is covered with bug 172174
Status: REOPENED → ASSIGNED
| Reporter | ||
Comment 6•23 years ago
|
||
cc bryner for event stuff.
Comment 7•23 years ago
|
||
I don't get it, why would chimera need this when no other embedding clients need
this? This seems like the wrong thing to do IMO...
Cc:ing jkeiser who has worked on the form event code before...
| Reporter | ||
Comment 8•23 years ago
|
||
> I don't get it, why would chimera need this when no other embedding clients need
> this?
Because of the way the cocoa widget code handles events. It first passes them
into gecko. If gecko says that it doesn't handle them, it then calls cocoa
methods that try to match the key combo with system-defined shortcuts (e.g.
Command-left -> moveToBeginningOfLine, Return -> insertNewline). If the key
combo is matched to a shortcut, but there is no implementation of the shortcut,
then cocoa beeps.
So these changes are needed so that gecko does not lie about whether it handled
the event.
Comment 9•23 years ago
|
||
Comment on attachment 101428 [details] [diff] [review]
chimera patch for preventing default (or consuming event)
r=jkeiser for Chimera branch ... I think this misses events but as brade points
out we can catch that on trunk.
Attachment #101428 -
Flags: review+
| Reporter | ||
Comment 10•23 years ago
|
||
Adjust summary, since the original problem is fixed.
Summary: beep when pressing return to submit form [was: -[ChildView insertNewline:]: selector not recognized exceptions] → Fix gecko to correctly call preventDefault on form element events
Comment 11•22 years ago
|
||
Please update.
| Assignee | ||
Comment 12•22 years ago
|
||
resolving as fixed
Status: ASSIGNED → RESOLVED
Closed: 23 years ago → 22 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•