github.com/matislovas/ratago@v0.0.0-20240408115641-cc0857415a7a/xslt/testdata/general/bug-38-.xsl (about)

     1  <xsl:stylesheet version="1.0" 
     2   xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
     3  
     4  <xsl:template name="ns">
     5   <ns xmlns:ns="http://whatever"/>
     6  </xsl:template>
     7  
     8  
     9  <xsl:template match="/*">
    10   <elem>
    11     <xsl:copy-of select="document('')/*/
    12  		       xsl:template[@name='ns']/
    13  		       ns/namespace::ns"/>
    14   </elem>
    15  </xsl:template>
    16  
    17  </xsl:stylesheet>