Test that
p:inline-expand-text
turns on expansion
inside
p:inline
.
Test nw-inline-expand-text-003.xml is expected to pass.
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc" version="3.0" expand-text="false">
<p:output port="result"/>
<p:identity>
<p:with-input>
<p:inline>
<doc>{1 + 2}=
<answer p:inline-expand-text="true">{ 1 + 2 }</answer>
</doc>
</p:inline>
</p:with-input>
</p:identity>
</p:declare-step>
<s:schema xmlns="http://www.w3.org/1999/xhtml" xmlns:s="http://purl.oclc.org/dsdl/schematron" queryBinding="xslt2">
<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="matches(., '1 . 2.=')">Curly brace text is missing.</s:assert>
<s:assert test="answer='3'">The answer is not 3.</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:rule>
</s:pattern>
</s:schema>
Added attribute 'queryBinding' to schematron's schema.
Initial checkin.