Closed
Bug 12025
Opened 25 years ago
Closed 25 years ago
Comments are handled incorrectly
Categories
(Core :: DOM: HTML Parser, defect, P3)
Tracking
()
People
(Reporter: russell, Assigned: rickg)
References
()
Details
`<!' begins a comments block
`--' begins and ends comments
'>' ends a comment block.
So the parser should parse the HTML in the above page as follows:
<! Begin a comment block
-- Begin a comment
Nothing inside this comment (other than a space)
-- End a comment
-- Begin a comment
>in<! Content of this comment
-- End a comment
-- Begin a comment
Nothing inside this comment (other than a space)
-- End a comment
> End the comment block.
Status: NEW → RESOLVED
Closed: 25 years ago
Resolution: --- → WORKSFORME
The parser is responding as it should according to how Navigator parsed
comments (this is what we call quirks mode). By the time we ship, we'll have a
non-quirks mode in which comments will be parsed according to W3C rules (the
code is in already).
Updated•25 years ago
|
Status: RESOLVED → VERIFIED
Comment 2•25 years ago
|
||
verified
[19990901]
Updated•25 years ago
|
Status: VERIFIED → REOPENED
Updated•25 years ago
|
Status: REOPENED → RESOLVED
Closed: 25 years ago → 25 years ago
Resolution: WORKSFORME → DUPLICATE
Updated•25 years ago
|
Status: RESOLVED → VERIFIED
Comment 4•25 years ago
|
||
Yup, dup.
Comment hidden (collapsed) |
You need to log in
before you can comment on or make changes to this bug.
Description
•