This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.
In tests base-uri-12 and base-uri-13, the base URI given in the prolog in the XQueryX version of the tests is different from that given in the XQuery versions. For example in base-uri-12 the base URI is written in the XQuery version as declare base-uri "http://www.example.com/abc""" which means that the actual base URI is: http://www.example.com/abc" However, in the XQueryX version the base URI is given as: <xqx:baseUriDecl>http://www.example.com/abc""</xqx:baseUriDecl> which the stylesheet correctly expands to: declare base-uri "http://www.example.com/abc""""";
The XQueryX versions of these test cases have been corrected. base-URI-12.xqx now contains: <xqx:baseUriDecl>http://www.example.com/abc"</xqx:baseUriDecl> base-URI-13.xqx contains: <xqx:baseUriDecl>http://www.example.com/abc'</xqx:baseUriDecl> Please close this bug report if you agree with this resolution.