Closed
Bug 166531
Opened 23 years ago
Closed 23 years ago
Enter key does not work on input type="image"
Categories
(Core :: DOM: Core & HTML, defect)
Tracking
()
VERIFIED
DUPLICATE
of bug 150232
People
(Reporter: naku, Assigned: alexsavulov)
Details
I can't submit a form with the 'enter' key if there is two or more input
type="text" in the form.
Sample code: (doesn't work)
<form action="login.php" method="get">
<input type="text" name="field1">
<input type="text" name="field2">
<input type="image" src="image.gif">
</form>
(works)
<form action="login.php" method="get">
<input type="text" name="field1">
<input type="image" src="image.gif">
</form>
I'm focusing on field1 and then pressing "enter"
Tested on 1.1 (win32) and 1.0 (linux)
Comment 1•23 years ago
|
||
WFM (2002090108, WinNT)
Reporter :
- Take a look at bug 150232 and check if that description matches your bug.
- Bug 150232 is marked fixed, therefore download a more recent (trunk) build and
see if it truly works?
*** This bug has been marked as a duplicate of 150232 ***
Status: UNCONFIRMED → RESOLVED
Closed: 23 years ago
Resolution: --- → DUPLICATE
Updated•6 years ago
|
Component: HTML: Form Submission → DOM: Core & HTML
You need to log in
before you can comment on or make changes to this bug.
Description
•