Closed
Bug 6225
Opened 26 years ago
Closed 26 years ago
Default namespace preventing display of images in XML document (M5)
Categories
(Core :: XML, defect, P3)
Tracking
()
VERIFIED
FIXED
M7
People
(Reporter: kinger, Assigned: nisheeth_mozilla)
Details
The default namespace is preventing the display of images (using html:img) in
XML documents in M5.
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
However, removing it and leaving the HTML specific namespace
xmlns:html="http://www.w3.org/TR/REC-html40
brings up the images fine.
Assignee | ||
Updated•26 years ago
|
Status: NEW → ASSIGNED
Target Milestone: M6
Assignee | ||
Comment 1•26 years ago
|
||
Accepting bug and setting milestone to M6 for now...
Assignee | ||
Comment 2•26 years ago
|
||
Moving non-crasher XML bugs to M7...
Assignee | ||
Comment 3•26 years ago
|
||
bking, can you please recheck this with tomorrow's build. I just checked in a
fix so that attributes with no namespaces get assigned no namespace rather than
the default namespace.
If this still does not work, please post the test case that you are using to
this bug report. Thanks a lot.
Reporter | ||
Comment 4•26 years ago
|
||
8 June. I tested with the latest binary (Build ID - 1999060708) and the
original problem I had is resolved. Images now display in an XML document
using the following namespace declarations:
<story xmlns:html="http://www.w3.org/TR/REC-html40"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
Assignee | ||
Updated•26 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 26 years ago
Resolution: --- → FIXED
Assignee | ||
Comment 5•26 years ago
|
||
Marking bug fixed.
Updated•26 years ago
|
Status: RESOLVED → VERIFIED
Comment 6•26 years ago
|
||
Using 6/14 Apprunner and creating an XML test case containing the following
code:
<?xml version="1.0"?>
<doc>
<story xmlns:html="http://www.w3.org/TR/REC-html40"
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul">
<html:img src="red.gif">
</html:img>
</story>
</doc>
verify that bug is fixed.
You need to log in
before you can comment on or make changes to this bug.
Description
•