Closed
Bug 228992
Opened 21 years ago
Closed 21 years ago
XHTML file ignores stylesheet
Categories
(SeaMonkey :: General, defect)
Tracking
(Not tracked)
RESOLVED
INVALID
People
(Reporter: paul, Unassigned)
Details
User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5) Gecko/20031007 Firebird/0.7
Build Identifier: Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.5) Gecko/20031007 Firebird/0.7
I have a simple XHTML file:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<link rel="stylesheet" type="text/css" media="screen" href="shortform.css"/>
</head>
<body>
<p>This should be white on black</p>
</body>
</html>
And a simple style sheet:
body
{
background-color: #000000;
color: #E0E0E0;
}
The stylesheet is ignored if I pull the page from a WSAD 5.1 Java App server
using Mozilla 1.6 beta or Firebird 0.4.
The stylesheet is used if I point the browser to a copy on the disk.
The stylesheet is used if I delete the doc-type line in the HTML file.
By doing a packet trace, I confirmed that even when the stylesheet is not used,
Mozilla does pull it across the network.
I do not have problems with this when the file is served up by tomcat instead of
WSAD 5.1.
IE 5.5 does not have problems with either server.
Reproducible: Always
Steps to Reproduce:
See above.
Actual Results:
Page is displayed with default style information.
Expected Results:
Use the stylesheet.
Reporter | ||
Comment 1•21 years ago
|
||
This occurs with the WebSphere 4.0 test environment. It does not occur when the
page is served up by the WebSphere 5.0 test environment.
Comment 2•21 years ago
|
||
This bug is probably invalid,
see http://www.mozilla.org/docs/web-developer/quirks/doctypes.html
and
http://www.mozilla.org/docs/web-developer/quirks/quirklist.html
Comment 3•21 years ago
|
||
Are you certain it's being served with the right MIME type? I believe the
Javascript Console (Tools -> Web Development -> Javascript Console) shows errors
about that...
Comment 4•21 years ago
|
||
see comment 3. please reopen if this bug occurs when the server sends the
correct mime type.
Status: UNCONFIRMED → RESOLVED
Closed: 21 years ago
Resolution: --- → INVALID
Updated•20 years ago
|
Product: Browser → Seamonkey
Make that bug 228922 instead.
You need to log in
before you can comment on or make changes to this bug.
Description
•