Closed
Bug 2447
Opened 26 years ago
Closed 25 years ago
Parsing html
Categories
(Core :: DOM: HTML Parser, defect, P2)
Tracking
()
M7
People
(Reporter: michael.j.lowe, Assigned: rickg)
References
Details
Following html parses diffently than both IE and NSC 4.5:
<html>
<B>
<FONT SIZE=2 COLOR="#0000ff">
<P>T</B>
</FONT>
he</P>
</html>
*** Bug 2433 has been marked as a duplicate of this bug. ***
This is incorrect markup. Neither the <b> tag nor the <font> tag can contain a
<p> tag. This isn't a bug that needs to be fixed, although it could be an added
feature for handling erroneous markup. I'm lowering the severity and priority.
Reporter | ||
Updated•26 years ago
|
Severity: enhancement → normal
Priority: P4 → P2
Reporter | ||
Comment 5•26 years ago
|
||
As a user browsing the web a don't care whether this is valid html - I just want
pages which have been using this to layout as they were intended. If it works
in the last releases of both the major browsers and not in Nglayout, then this
is clearly a backwards compatability bug. Bumping the priority back up.
*** Bug 2906 has been marked as a duplicate of this bug. ***
*** Bug 3015 has been marked as a duplicate of this bug. ***
Comment 9•26 years ago
|
||
per leger, assigning QA contacts to all open bugs without QA contacts according
to list at http://bugzilla.mozilla.org/describecomponents.cgi?product=Browser
Updated•26 years ago
|
QA Contact: 3847 → 4141
Comment 10•26 years ago
|
||
reassigning qa contact to gem
Comment 11•25 years ago
|
||
This bug is the cause of the font issues on news.com. Basically what needs to
happen is the font tag should not be ended by anything except a closing font
tag. The problem with news.com is essentially this:
<p>
<font size="+3">
Some text.
</p>
<p>
Some text.
</p>
The second paragraph is not rendered in the former's font.
Status: ASSIGNED → RESOLVED
Closed: 25 years ago
Resolution: --- → DUPLICATE
Target Milestone: M6 → M7
Assignee | ||
Comment 12•25 years ago
|
||
*** This bug has been marked as a duplicate of 991 ***
Comment 13•25 years ago
|
||
Attempting to steal gem's HTMLParser bugs all at once. Changing QAContact to
janc.
Updated•25 years ago
|
Status: RESOLVED → VERIFIED
You need to log in
before you can comment on or make changes to this bug.
Description
•