Closed
Bug 3960
Opened 26 years ago
Closed 26 years ago
If a script is between the head and body, bgcolor breaks
Categories
(Core :: DOM: HTML Parser, defect, P3)
Tracking
()
VERIFIED
WORKSFORME
People
(Reporter: cpratt, Assigned: rickg)
References
()
Details
These two documents are the same - but noscript.html has a script stuck between
the head close tag and the open body tag. Consequently, noscript.html shows the
wrong background color (white instead of black as specified by the BGCOLOR tag
in the BODY).
Here's the source html:
noscript:
<html><head></head>
<BODY BGCOLOR="#000000" TEXT="#FFFFFF" onLoad="change(); bleepit()"></BODY>
</html>
script:
<html><HEAD></HEAD>
<SCRIPT LANGUAGE="JavaScript">
</SCRIPT>
<BODY BGCOLOR="#000000" TEXT="#FFFFFF" onLoad="change(); bleepit()"></BODY>
</html>
Status: NEW → RESOLVED
Closed: 26 years ago
Resolution: --- → WORKSFORME
Please retry. I think this is fixed as I am not able to reproduce the problem
with any combination of tags that you've provided.
You need to log in
before you can comment on or make changes to this bug.
Description
•