Tests no output-base-uri: base uri of first doc on source is used. (3.0)
Test ab-xslt-043.xml is expected to pass.
It requires the following features: xslt-3.
<p:declare-step xmlns:p="http://www.w3.org/ns/xproc" version="3.0">
<p:output port="result"/>
<p:xslt version="3.0">
<p:with-input port="source">
<p:inline xml:base="http://xproc-test/xslt/"><doc xmlns=""/></p:inline>
</p:with-input>
<p:with-input port="stylesheet">
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="3.0">
<xsl:template xmlns:xsl="http://www.w3.org/1999/XSL/Transform" match="/">
<xsl:result-document xmlns:xsl="http://www.w3.org/1999/XSL/Transform" href="one.xml">
<one xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns=""/>
</xsl:result-document>
<xsl:result-document xmlns:xsl="http://www.w3.org/1999/XSL/Transform" href="two.xml">
<two xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns=""/>
</xsl:result-document>
</xsl:template>
</xsl:stylesheet>
</p:with-input>
</p:xslt>
<p:for-each>
<p:with-input pipe="secondary"/>
<p:identity>
<p:with-input>
<result xmlns="">{p:document-property(.,'base-uri')}</result>
</p:with-input>
</p:identity>
</p:for-each>
<p:wrap-sequence wrapper="wrapper"/>
</p:declare-step>
<s:schema xmlns:s="http://purl.oclc.org/dsdl/schematron">
<s:pattern>
<s:rule context="/">
<s:assert test="/wrapper">The document root is not 'wrapper'.</s:assert>
<s:assert test="/wrapper/result[1]/text()='http://xproc-test/xslt/one.xml'">Element 'result[1]' does not have a text child 'http://xproc-test/xslt/one.xml'.</s:assert>
<s:assert test="/wrapper/result[2]/text()='http://xproc-test/xslt/two.xml'">Element 'result[2]' does not have a text child 'http://xproc-test/two/one.xml'.</s:assert>
</s:rule>
</s:pattern>
</s:schema>
Fixed test by setting document's base uri instead of root element's base uri.
Initial commit