Test that p:inline-expand-text
turns on expansion
inside p:inline
.
Test nw-inline-expand-text-004.xml is expected to pass.
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc" version="3.0" expand-text="true">
<p:output port="result"/>
<p:identity>
<p:with-input>
<p:inline>
<doc xmlns="">{1 + 2}=<answer p:inline-expand-text="false">{ 1 + 2 }</answer></doc>
</p:inline>
</p:with-input>
</p:identity>
</p:declare-step>
<s:schema xmlns:s="http://purl.oclc.org/dsdl/schematron">
<s:ns prefix="p" uri="http://www.w3.org/ns/xproc"/>
<s:pattern>
<s:rule context="/*">
<s:assert test="self::doc">The pipeline root is not doc.</s:assert>
<s:assert test="contains(., '3=')">TVT has not been expanded.</s:assert>
</s:rule>
<s:rule context="answer">
<s:assert test="not(@p:inline-expand-text)">The expand text attribute has not been removed.</s:assert>
<s:assert test="contains(., '1 + 2')">TVT has been expanded.</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Initial checkin.