This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.
The query for K2-DirectConOther-71 is: <a xmlns:p="NS"><b p:c="" p:d=""/></a> The relative namespace URI bound to p can be processed by XQuery, but it trips up the canonicalization that I do to compare the actual and expected results. Canonical XML, Version 1.0, 2.1 Data Model, says in part: "Note: This specification supports the recent XML plenary decision to deprecate relative namespace URIs as follows: implementations of XML canonicalization MUST report an operation failure on documents containing relative namespace URIs. XML canonicalization MUST NOT be implemented with an XML parser that converts relative URIs to absolute URIs." The same note appears in Canonical XML 1.1, Proposed Recommendation. Perhaps you could change the query to something like: <a xmlns:p="urn:abbrev:NS"><b p:c="" p:d=""/></a>
Yupp, changed in CVS as suggested.