Closed
Bug 370264
Opened 18 years ago
Closed 15 years ago
Optgroup outside of select eats text and other tags
Categories
(Core :: DOM: HTML Parser, defect)
Tracking
()
RESOLVED
FIXED
People
(Reporter: martijn.martijn, Unassigned)
References
()
Details
(Keywords: testcase, Whiteboard: [fixed by the HTML5 parser])
See url, the page has this source:
<html><head>
</head>
<body>
<optgroup>optgroup</optgroup><br>
text
</body>
</html>
Current result for dom:
<html><head>
</head><body>
<form><select><optgroup></optgroup>
</select></form></body></html>
Expected result:
<html><head>
</head><body>
<form><select><optgroup>optgroup</optgroup>
</select></form><br>
text
</body></html>
..or something like that.
| Reporter | ||
Comment 1•18 years ago
|
||
Probably this is better:
<html><head>
</head><body>
<form><select><optgroup></optgroup>
</select></form>optgroup<br>
text
</body></html>
Updated•16 years ago
|
Assignee: mrbkap → nobody
Updated•15 years ago
|
Status: NEW → RESOLVED
Closed: 15 years ago
Resolution: --- → FIXED
Whiteboard: [fixed by the HTML5 parser]
You need to log in
before you can comment on or make changes to this bug.
Description
•