Closed
Bug 435043
Opened 18 years ago
Closed 15 years ago
SELECT with SIZE < 2 cancels ONDBLCLICK
Categories
(Firefox :: General, defect)
Tracking
()
RESOLVED
INCOMPLETE
People
(Reporter: finkel, Unassigned)
Details
(Whiteboard: [CLOSEME 2010-10-01])
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.8.1.14) Gecko/20080404 Firefox/2.0.0.14
If a SELECT item has a size less than 2 and has only one OPTION, the ONDBLCLICK function registered to the SELECT is not executed.
Reproducible: Always
Steps to Reproduce:
Consider:
<select ondblclick="alert('select 1');" size="1">
<option>o1</option>
</select>
<select ondblclick="alert('select 2');" size="2">
<option>o1</option>
</select>
Actual Results:
Only the second SELECT, which has a size > 1, will trigger the ONDBLCLICK
Expected Results:
The ONDBLCLICK should always be triggered, regardless of the SIZE or content of the SELECT.
| Reporter | ||
Updated•18 years ago
|
Summary: SELECT with only one OPTION cancels ONDBLCLICK if the SELECT SIZE = 0 → SELECT with SIZE < 2 cancels ONDBLCLICK
This was the subject of an earlier bug:
https://bugzilla.mozilla.org/show_bug.cgi?id=129430
Comment 2•15 years ago
|
||
Reporter, are you still seeing this issue with Firefox 3.6.9 or later in safe mode? If not, please close. These links can help you in your testing.
http://support.mozilla.com/kb/Safe+Mode
http://support.mozilla.com/kb/Managing+profiles
Whiteboard: [CLOSEME 2010-10-01]
Version: unspecified → 2.0 Branch
Comment 3•15 years ago
|
||
No reply, INCOMPLETE. Please retest with Firefox 3.6.10 or later and a new profile (http://support.mozilla.com/kb/Managing+profiles). If you continue to see this issue with the newest firefox and a new profile, then please comment on this bug.
Status: UNCONFIRMED → RESOLVED
Closed: 15 years ago
Resolution: --- → INCOMPLETE
You need to log in
before you can comment on or make changes to this bug.
Description
•