summaryrefslogtreecommitdiff
path: root/tests/namespaces/tst4.xsl
blob: a7b34f8bc66ffe38057e59809312e644f1f31baf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:html="http://www.w3.org/1999/xhtml"
  version="1.0">

  <xsl:template match="/">
    <xsl:apply-templates/>
  </xsl:template>
  
  <xsl:template match="html:*">
    matched html:* template
  </xsl:template>

</xsl:stylesheet>