Tests p:xinclude with fixup-xml-lang ('false' is default).
Test ab-xinclude-019.xml is expected to pass.
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc" name="pipeline" version="3.0">
<p:output port="result"/>
<p:xinclude>
<p:with-input>
<document>
<para>This is an english paragraph.</para>
<xi:include xmlns:xi="http://www.w3.org/2001/XInclude" href="../documents/ab-xinclude-lang.xml" xpointer="deutsch"/>
</document>
</p:with-input>
</p:xinclude>
</p:declare-step>
<s:schema xmlns="http://www.w3.org/1999/xhtml" xmlns:s="http://purl.oclc.org/dsdl/schematron" queryBinding="xslt2">
<s:pattern>
<s:rule context="/">
<s:assert test="document">Root element is not 'document'.</s:assert>
<s:assert test="count(document/para)=2">Element 'document' does not have two children 'para'.</s:assert>
<s:assert test="document/para[1]/text()='This is an english paragraph.'">The para[1] element has the wrong text.</s:assert>
<s:assert test="document/para[2]/text()='Ein deutscher Text.'">The para[2] element has the wrong text.</s:assert>
<s:assert test="document/para[2]/@xml:id='deutsch'">The para[2] element does not have @xml:id='deutsch'.</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Additional tests for p:xinclude.