1<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
2  <xsl:template match="@*|node()" priority="1">
3    <xsl:text>It is broken!</xsl:text>
4  </xsl:template>
5  <xsl:template match="/" priority="2">
6    <xsl:text>It works!</xsl:text>
7  </xsl:template>
8</xsl:stylesheet>
9