Closed
Bug 88464
Opened 23 years ago
Closed 23 years ago
Drop-down boxes fail to display on a particular page
Categories
(Core :: Layout: Form Controls, defect)
Tracking
()
People
(Reporter: r-mcdonald, Assigned: rods)
References
()
Details
Attachments
(1 file)
(deleted),
text/html
|
Details |
From Bugzilla Helper:
User-Agent: Mozilla/5.0 (Windows; U; WinNT4.0; en-US; rv:0.9.2) Gecko/20010628
BuildID: 2001062815
Some drop down lists on a form do not appear. The drop-down boxes are there but
the lists are blank. Other drop-down boxes on the same page do appear. I tried
to see if this is really a bug or a Dell problem but I'm not able to tell.
Reproducible: Always
Steps to Reproduce:
1.You get to the page above by going to www.dell.com, clicking on Education,
then Higher Education Institutions, then Workstations, then Customize It, then
the Workstation 530 table, first link (Intel Xeon).
2. Once at the page, some of the drop-down lists aren't there.
Expected Results: Should have rendered the drop-down boxes correctly (IE does,
for example).
Comment 1•23 years ago
|
||
Tested this on BuildID : 2001062903 win 2000
This has something to do with the code.
actual
======
Following is a part of the original code :-
** Dell Precision Workstation 530 **
<select Name="m_1">
<Option value="5T17_1374.16" />
<FONT face="arial, helvetica" size="2">Intel®Xeon™processor, 1.70GHz
[ Add $404.95 ] </FONT>
<Option value="5T15_1107.16" />
<FONT face="arial, helvetica" size="2">Intel®Xeon™processor, 1.50GHz
[ Add $137.95 ] </FONT>
<Option value="5T14_969.21" Selected="True" />
<FONT face="arial, helvetica" size="2">Intel®Xeon™processor,
1.40GHz</FONT>
</select>
The drop-down menu works fine if i re-write the above mentioned piece of code as
follows:-
<select Name="m_1">
<Option value="5T17_1374.16">
<FONT face="arial, helvetica" size="2">Intel®Xeon™processor, 1.70GHz[
Add $404.95 ]
</FONT>
</option>
<Option value="5T15_1107.16">
<FONT face="arial, helvetica" size="2">Intel®Xeon™processor, 1.50GHz[
Add $137.95 ]
</FONT>
</option>
<Option value="5T14_969.21" Selected="True">
<FONT face="arial, helvetica" size="2">Intel®Xeon™processor, 1.40GHz
</FONT>
</option>
</select>
U will notice that the difference in both these codes is the end option tag.
Please see the attached testcase.
Comment 2•23 years ago
|
||
Marking dupe.
*** This bug has been marked as a duplicate of 84633 ***
Status: UNCONFIRMED → RESOLVED
Closed: 23 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•