Test that
inline-expand-text
turns on expansion
inside
p:inline
.
Test nw-inline-expand-text-005.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>
<p:doc>{1 + 2}=
<p:answer inline-expand-text="true">{ 1 + 2 }</p:answer>
</p: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::p: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="p:answer='3'">The answer is not 3.</s:assert>
</s:rule>
<s:rule context="p:answer">
<s:assert test="not(@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.