Closed
Bug 167075
Opened 22 years ago
Closed 20 years ago
Nested Marquee tags not supported.
Categories
(Core :: DOM: HTML Parser, defect)
Core
DOM: HTML Parser
Tracking
()
RESOLVED
FIXED
People
(Reporter: erik, Assigned: martijn.martijn)
References
Details
(Keywords: compat, testcase)
Attachments
(2 files)
605 bytes,
text/html
|
Details | |
1.34 KB,
patch
|
bzbarsky
:
review+
bzbarsky
:
superreview+
|
Details | Diff | Splinter Review |
At one point Mozilla worked correct and allowed nested marquee elements. Now a
nested marquee closes the parent. This is incorrect.
<marquee>Top
<marquee>inner</marquee>
</marquee>
should create the following tree
marquee
#text
marque
#text
#text
but Mozilla incorrect creates the following tree
marquee
#text
marque
#text
Reporter | ||
Comment 1•22 years ago
|
||
Updated•22 years ago
|
OS: Windows XP → All
Hardware: PC → All
Comment 3•22 years ago
|
||
its not my bug, parser issue. But who cares about such cruft
Comment 4•22 years ago
|
||
Doron! How dare you! This could affect as many as three Chinese sites--clearly a
high priority for us.
Keywords: testcase
Comment 5•22 years ago
|
||
You can nest marquees?!
Reporter | ||
Comment 6•22 years ago
|
||
In IE? YES
In Mozilla? Not any more. This used to work back when I created the marquee xbl.
Now someone has changed the HTML parser to disable this.
I cannot wait until the world switches to XML so that anything that is valid in
the DTD will be presented in the way inteded. I cannot stand when a browser
does not follow the structure that was intended by the author.
Updated•22 years ago
|
Severity: normal → trivial
Assignee | ||
Comment 7•20 years ago
|
||
I think this was caused by the patch for bug 154173.
Assignee | ||
Comment 8•20 years ago
|
||
This seems to fix the bug in my build.
Assignee | ||
Updated•20 years ago
|
Attachment #154679 -
Flags: review?(bzbarsky)
Comment 9•20 years ago
|
||
Comment on attachment 154679 [details] [diff] [review]
patch
r+sr=bzbarsky.
Attachment #154679 -
Flags: superreview+
Attachment #154679 -
Flags: review?(bzbarsky)
Attachment #154679 -
Flags: review+
Updated•20 years ago
|
Assignee: doronr → m.wargers
You need to log in
before you can comment on or make changes to this bug.
Description
•