This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 4282 - base-uri-12, -13 (XQueryX)
Summary: base-uri-12, -13 (XQueryX)
Status: RESOLVED FIXED
Alias: None
Product: XML Query Test Suite
Classification: Unclassified
Component: XML Query Test Suite (show other bugs)
Version: 1.0.2
Hardware: PC Windows XP
: P2 normal
Target Milestone: ---
Assignee: Andrew Eisenberg
QA Contact: Mailing list for public feedback on specs from XSL and XML Query WGs
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-01-26 23:33 UTC by Michael Kay
Modified: 2007-08-09 19:59 UTC (History)
0 users

See Also:


Attachments

Description Michael Kay 2007-01-26 23:33:27 UTC
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""""";
Comment 1 Andrew Eisenberg 2007-08-09 19:59:04 UTC
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.