label-elements 011 (AB)
Testing p:label-elements.
Test is expected to pass.
The pipeline
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc"
xmlns:t="http://xproc.org/ns/testsuite/3.0" version="3.0">
<p:output port="result"/>
<p:input port="source">
<doc>
<div>
<p>Some para.</p>
<p>Some other para.</p>
</div>
</doc>
</p:input>
<p:label-elements match="p" attribute="cnt"
label="count(preceding::p)"/>
</p:declare-step>
Result
<doc xmlns:t="http://xproc.org/ns/testsuite/3.0">
<div>
<p cnt="0">Some para.</p>
<p cnt="1">Some other para.</p>
</div>
</doc>
Schematron checks
<s:schema xmlns:s="http://purl.oclc.org/dsdl/schematron"
xmlns:t="http://xproc.org/ns/testsuite/3.0" queryBinding="xslt2">
<s:pattern>
<s:rule context="/">
<s:assert test="doc/div/p[1]/@cnt='0'">Value of doc/div/p[1]/@cnt is not '0'</s:assert>
<s:assert test="doc/div/p[2]/@cnt='1'">Value of doc/div/p[2]/@cnt is not '1'</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Revision history
- 10 Jun 2021, Achim Berndzen
- Added attribute 'queryBinding' to schematron's schema.
- 04 May 2019, Achim Berndzen
- Ported test from 1.0 test suite.