Test to make sure that a deleted namespace is handled correctly in a nested structure.
Test ab-namespace-rename-017.xml is expected to pass.
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc" version="3.0">
<p:input port="source"/>
<p:output port="result"/>
<p:namespace-rename from="http://www.example.com/ns"/>
</p:declare-step>
<doc xmlns="http://www.example.com/" xmlns:ns="http://www.example.com/ns">
<parent>
<ns:child/>
</parent>
</doc>
<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="*/local-name()='doc'">Root element is not 'doc'.</s:assert>
<s:assert test="*/namespace-uri()='http://www.example.com/'">Root element's namespace is not 'http://www.example.com/'.</s:assert>
<s:assert test="*/*/local-name()='parent'">Name of root's child is not 'parent'.</s:assert>
<s:assert test="*/*/namespace-uri()='http://www.example.com/'">Element 'parent' is not 'http://www.example.com/'.</s:assert>
<s:assert test="*/*/child">Element 'parent' does not have a child 'child'.</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Added attribute 'queryBinding' to schematron's schema.
Ported tests for p:namespace-rename