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

     1  <xsl:stylesheet
     2   xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
     3   xmlns:ns2="whatever"
     4   xmlns:ns="another"
     5   version="1.0">
     6  
     7  <xsl:output method="text"/>
     8  
     9  <xsl:template match="ns2:root">
    10    RIGHT
    11  </xsl:template>
    12  
    13  <xsl:template match="ns:root">
    14    WRONG
    15  </xsl:template>
    16  
    17  </xsl:stylesheet>