Sorry Paul, you’re right. I should have tried this before I
posted.
From: Tony Nassar
[mailto:tnassar@palantir.com]
Sent: Tuesday, August 17, 2010 2:40 PM
To: xml-dev
Subject: RE: [xml-dev] xml rendering browser problems
I’ve never seen Firefox display *any* namespace
information. It’s not interpreting your XML as XHTML; it’s simply rendering it
in a fashion we don’t like. If someone knows a Firefox setting to fix this, I’d
be happy to learn.
From: Paul M [mailto:pjmaip@yahoo.com]
Sent: Tuesday, August 17, 2010 10:39 AM
To: xml-dev@lists.xml.org
Subject: [xml-dev] xml rendering browser problems
I have this xml:
<myxml>
<body>
<p xmlns="http://www.w3.org/1999/xhtml">Test</p>
</body>
</myxml>
Firefox will attempt to render this as html.
<myxml>
<body>
<p>Test</p>
</body>
</myxml>
Firefox will attempt to parse this as xml.
The response type has no affect on Firefox behavior.
Is there any method to force the first file to be parsed as xml and not
rendered as xhtml with the namespace include?
Any information appreciated...
|