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 28633 - [XT30TS] result-document-1301
Summary: [XT30TS] result-document-1301
Status: CLOSED FIXED
Alias: None
Product: XPath / XQuery / XSLT
Classification: Unclassified
Component: XSLT 3.0 Test Suite (show other bugs)
Version: Working drafts
Hardware: PC Windows NT
: P2 normal
Target Milestone: ---
Assignee: Abel Braaksma
QA Contact: Mailing list for public feedback on specs from XSL and XML Query WGs
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2015-05-14 09:04 UTC by Tim Mills
Modified: 2015-05-18 15:44 UTC (History)
1 user (show)

See Also:


Attachments

Description Tim Mills 2015-05-14 09:04:10 UTC
The assertions for this test include extra whitespace which should not be in the expected results.

e.g.

            <assert-result-document uri="section1.html">
               <assert-xml><![CDATA[<html><body><h1>Section 1 of 3</h1><p>position() eq last() = false</p>
      <p>position() ne last() = true</p></body></html>]]></assert-xml>
            </assert-result-document>


should be

            <assert-result-document uri="section1.html">
               <assert-xml><![CDATA[<html><body><h1>Section 1 of 3</h1><p>position() eq last() = false</p><p>position() ne last() = true</p></body></html>]]></assert-xml>
            </assert-result-document>
Comment 1 Abel Braaksma 2015-05-17 21:24:15 UTC
Thanks, fixed as suggested for all three assertions.
Comment 2 Tim Mills 2015-05-18 15:44:51 UTC
Thanks.