Closed
Bug 304977
Opened 19 years ago
Closed 19 years ago
Rendring engine appends a space to the value of a SELECT OPTION in a form when an "=" sign has a space between it and the value in quotes
Categories
(Firefox :: General, defect)
Tracking
()
RESOLVED
DUPLICATE
of bug 154120
People
(Reporter: joeygreen, Unassigned)
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko/20050716 Firefox/1.0.6 Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.7.10) Gecko/20050716 Firefox/1.0.6 Example <option value= "1">bug one</option> would be rendered as <option value=" 1">bug one</option> Reproducible: Always Steps to Reproduce: 1. Create a Select box 2. Create an option for that select box 3. Put a space between the = and the quoted value of the option 4. View the source of the test page in Firefox 5. Notice the space that is preappended to your option value Actual Results: <option value= "1">bug one</option> would be rendered as <option value=" 1">bug one</option> Expected Results: <option value= "1">bug one</option> Should be rendered as <option value = "1">bug one</option>
Comment 1•19 years ago
|
||
*** This bug has been marked as a duplicate of 154120 ***
Status: UNCONFIRMED → RESOLVED
Closed: 19 years ago
Resolution: --- → DUPLICATE
You need to log in
before you can comment on or make changes to this bug.
Description
•