Test p:validate-with-xml-schema mode="lax"
Test ab-validate-with-xsd-011.xml is expected to pass.
It requires the following features: p-validate-with-xsd.
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc" name="pipeline" version="3.0">
<p:output port="result"/>
<p:validate-with-xml-schema mode="lax">
<p:with-input port="source">
<a xmlns="http://www.example.com"/>
</p:with-input>
<p:with-input port="schema">
<xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" targetNamespace="http://www.example.com">
</xs:schema>
</p:with-input>
</p:validate-with-xml-schema>
</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="x" uri="http://www.example.com"/>
<s:pattern>
<s:rule context="/">
<s:assert test="x:a">The element root is not “a”.</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Added attribute 'queryBinding' to schematron's schema.
Initial publication