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 28340 - [XT30TS] error-1110a
Summary: [XT30TS] error-1110a
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-03-26 09:23 UTC by Tim Mills
Modified: 2015-05-06 21:19 UTC (History)
2 users (show)

See Also:


Attachments

Description Tim Mills 2015-03-26 09:23:56 UTC
Since this test groups by a constant numeric value, the use of a collation is unnecessary, and so an implementation can avoid triggering the error case which this test aims to hit.

   <xsl:for-each-group select="$pop/*"
                             group-adjacent="1"
                             collation="http://unknown.collation.uri/">
            <xsl:value-of select="current-group()"/>
         </xsl:for-each-group>


I'd suggest changing the test to group by a non-constant string.  e.g.

   <xsl:for-each-group select="$pop/*"
                             group-adjacent="local-name(.)"
                             collation="http://unknown.collation.uri/">
            <xsl:value-of select="current-group()"/>
         </xsl:for-each-group>
Comment 1 Michael Kay 2015-03-27 17:30:33 UTC
Fixed as suggested.
Comment 2 Abel Braaksma 2015-05-06 21:19:11 UTC
Was resolved > 30 days ago, closing.