Closed
Bug 75700
Opened 24 years ago
Closed 23 years ago
bad internal namespaceID when xmlns=""
Categories
(Core :: XML, defect, P2)
Core
XML
Tracking
()
RESOLVED
FIXED
mozilla0.9.3
People
(Reporter: glazou, Assigned: hjtoi-bugzilla)
Details
(Whiteboard: [nsBranch-][Fixed and verified on the trunk])
Attachments
(3 files)
(deleted),
text/xml
|
Details | |
(deleted),
patch
|
Details | Diff | Splinter Review | |
(deleted),
patch
|
Details | Diff | Splinter Review |
Excerpt from Namespaces in XML specification (http://www.w3.org/TR/REC-xml-names)
in section 5.2 :
The default namespace can be set to the empty string. This has the same
effect, within the scope of the declaration, of there being no default
namespace.
It means that the namespace ID associated to an element carrying xmlns="" should
be kNameSpaceID_None (0x00000000) and that is not actually the case.
Run the test case attached to the current bug ; it is red because internally,
element testA has namespace ID 0x0000000c, as shown by VC6.
This test comes from my test suite associated to the CSS 3 Selectors Candidate
Recommandation.
The selector |testA has internally the correct 0x00000000 namespace ID
so testA is not selected by the rule.
I cannot at this point say if the problem comes from expat or from our
namespace manager.
Reporter | ||
Comment 1•24 years ago
|
||
Comment 2•24 years ago
|
||
XMLNS related. Changing QA contact to bsharma@netscape.com
QA Contact: petersen → bsharma
Assignee | ||
Updated•24 years ago
|
Target Milestone: --- → mozilla0.9.2
Assignee | ||
Updated•23 years ago
|
Priority: -- → P2
Assignee | ||
Comment 3•23 years ago
|
||
This is tricky. Because 0 is such a special value all over the code we cannot
just pre-register xmlns="" to kNameSPaceID_None (=0)like we do with the rest. If
we could bumb the namespace IDs by one (so that None would become 1 and so on)
we could do it. But since we are talking about a public interface here I don't
think that would be possible... But I'd love to be proved wrong.
Another solution is to treat xmlns="" specially in the namespace manager, but
that adds a little ugliness there and a minor slowdown of the code. We could
also register an internal xmlns="" namespace we'd need to translate when giving
values out. We could and should limit the hackiness in the namespace manager,
and not go and try to "fix" every client.
Status: NEW → ASSIGNED
Assignee | ||
Comment 4•23 years ago
|
||
Assignee | ||
Comment 5•23 years ago
|
||
In our current code base we can actually make do with a simple fix. The fix goes
to RegisternameSpace(). If we did not find that namespace and the URI was empty,
we report that the registered namespace ID was kXMLNameSpaceID_None.
We currently have three kinds of callers of RegisterNameSpace():
a) NameSpaceImpl constructor, which stores the ID into the impl.
b) NodeInfoManager explicitly will not call RegisterNameSpace() if URI is empty,
instead it automatically sets the ID to None for the node info. (We could fix
NIM to just call the function now.)
c) Callers with non-empty URI (XUL etc. namespace registration)
I think this fix is safe now and the only way it could break in the future is by
someone changing the namespace manager and/or namespace implementations.
Assignee | ||
Comment 6•23 years ago
|
||
Assignee | ||
Comment 7•23 years ago
|
||
harishd sez r=
(And don't need to initialize nsid in node info manager now, btw)
Assignee | ||
Updated•23 years ago
|
Whiteboard: [fixinhand] waiting sr= (also need a=)
Comment 8•23 years ago
|
||
nsNameSpaceManager.cpp:
+ } else {
+ nsString* uri = new nsString(aURI);
+ gURIArray->AppendElement(uri);
+ id = gURIArray->Count(); // id is index + 1
+ nsStringKey key(*uri);
No null check after new nsString? Fix that and sr=jst
Comment 9•23 years ago
|
||
nsNameSpaceManager.cpp:
+ } else {
+ nsString* uri = new nsString(aURI);
+ gURIArray->AppendElement(uri);
+ id = gURIArray->Count(); // id is index + 1
+ nsStringKey key(*uri);
No null check after new nsString? Fix that and sr=jst
Assignee | ||
Updated•23 years ago
|
Target Milestone: mozilla0.9.2 → mozilla0.9.3
Assignee | ||
Comment 10•23 years ago
|
||
Fixed. I accidentally checked in a part of another bug as well, but it did not
matter (removal of unused include in nsXMLDocument.cpp).
Status: ASSIGNED → RESOLVED
Closed: 23 years ago
Resolution: --- → FIXED
Whiteboard: [fixinhand] waiting sr= (also need a=)
Comment 12•23 years ago
|
||
Testcase, 30558, works fine.
Verified with July 5th trunk build.
Status: RESOLVED → VERIFIED
Comment 13•23 years ago
|
||
This fix helps us perform better on the CSS3 tests. It is simple, small, and
safe and has been on the trunk for more than a week. Marking nsBranch+.
Whiteboard: [nsBranch+][Fixed and verified on the trunk]
Comment 14•23 years ago
|
||
Reopening bug until the fix gets checked in on the branch.
Status: VERIFIED → REOPENED
Resolution: FIXED → ---
Comment 15•23 years ago
|
||
This bug is lower priority and severity than bug 88354. Since the PDT did not
accept the fix for bug 88354, I did not have any additional arguments to
convince them about this bug. It is too late in the game for this fix to go
into the 6.1 branch.
Marking nsBranch-.
Whiteboard: [nsBranch+][Fixed and verified on the trunk] → [nsBranch-][Fixed and verified on the trunk]
Comment 16•23 years ago
|
||
Resolving as fixed because this bug has been fixed on the trunk.
Status: REOPENED → RESOLVED
Closed: 23 years ago → 23 years ago
Resolution: --- → FIXED
You need to log in
before you can comment on or make changes to this bug.
Description
•