Closed
Bug 8629
Opened 25 years ago
Closed 25 years ago
[NATIVE-WIDGET]When select tag has multiple attribute, should draw list box
Categories
(Core :: Layout: Form Controls, defect, P3)
Core
Layout: Form Controls
Tracking
()
VERIFIED
WONTFIX
M15
People
(Reporter: cpratt, Assigned: rods)
References
()
Details
(Whiteboard: [TESTCASE] elentar@pacbell.net)
Attachments
(1 file)
(deleted),
text/html
|
Details |
build id: June 21, 1999 M6 builds
platforms tested against: Mac OS 8.6, Windows NT 4 SP 5
The above URL has a very simple text case. Behavior differs in seamonkey from
legacy Netscape browsers in that in 4.x browsers, the mere presence of the
multiple attribute displays the list of options as a list box and not a drop-down
menu. This behavior is preferable to the current seamonkey behavior as it makes
it possible to select multiple items; the current seamonkey behavior apparently
makes that impossible.
According to the DTD, "visual user agents are not required to present a select
element as a list box; they may use any other mechanism, such as a drop-down
menu" - I read this as list boxes being the default visual presentation of select
elements, with drop-down menus as another option available if the UA so chooses.
In this case, we really should do a list box in this one case instead of a menu
to improve the user experience.
Sample HTML:
<form action="mailto:Kligor.T@gee.whiz.com">
<select multiple>
<option>Assam
<option>Darjeeling
<option>Keemun
<option>Sencha
<option>Yunnan
</select>
</form>
Updated•25 years ago
|
Assignee: beard → karnaze
Component: Compositor → HTML Form Controls
Comment 1•25 years ago
|
||
This is a forms issue.
Updated•25 years ago
|
Whiteboard: [MAKINGTEST] elentar@pacbell.net
Comment 2•25 years ago
|
||
Updated•25 years ago
|
Whiteboard: [MAKINGTEST] elentar@pacbell.net → [TESTCASE] elentar@pacbell.net
Comment 3•25 years ago
|
||
[TESTCASE]
When correctly implemented, the SELECT MULTIPLE tag should allow the user to
select multiple items, whether through a listbox or a variation of the dropdown
menu, or whatever. See attachment (#914) for testcase.
Updated•25 years ago
|
Assignee: karnaze → kmcclusk
Comment 4•25 years ago
|
||
Reassigning to Kevin.
Updated•25 years ago
|
Status: NEW → ASSIGNED
Target Milestone: M15
Comment 5•25 years ago
|
||
This has been fixed for gfx-rendered selects in the July 21, 1999 2:55PM build.
I'm marking it as [NATIVE-WIDGET] and moving it to M15.
Updated•25 years ago
|
Summary: When select tag has multiple attribute, should draw list box → [NATIVE-WIDGET]When select tag has multiple attribute, should draw list box
Comment 6•25 years ago
|
||
Marking as Native widget issue, since it works with gfx-selects.
Comment 7•25 years ago
|
||
What should happen when you use javascript/dom to set the MULTIPLE
attribute dynamically?? IE switches layout from list to drop down and back.
<FORM>
<SELECT ID=oSelect MULTIPLE SIZE="3">
<OPTION>Item 1</OPTION>
<OPTION>Item 2</OPTION>
<OPTION>Item 3</OPTION>
</SELECT>
:
<BUTTON
onclick="document.getElementById('oSelect').multiple=false">One</BUTTON>
<BUTTON
onclick="document.getElementById('oSelect').multiple=true">Many</BUTTON>
</FORM>
Updated•25 years ago
|
Assignee: kmcclusk → rods
Status: ASSIGNED → NEW
Comment 8•25 years ago
|
||
Rod, here is something to check the gfx render combo box against.
Assignee | ||
Comment 9•25 years ago
|
||
Yes, this is a bug. I don't think it is worth fixing is it? Kevin, what do you
think?
Assignee | ||
Updated•25 years ago
|
Status: NEW → RESOLVED
Closed: 25 years ago
Resolution: --- → WONTFIX
Updated•25 years ago
|
Status: RESOLVED → VERIFIED
Comment 10•25 years ago
|
||
Based on rod's comments, marking as verified wont fix.
You need to log in
before you can comment on or make changes to this bug.
Description
•