summaryrefslogtreecommitdiff
path: root/tests/general/bug-78.xsl
blob: b2640ffb5dd2947a31e067de972d64fbb38bc729 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<?xml version="1.0" encoding="ISO-8859-1"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                xmlns:xi="http://www.toto.com/xinclude" version="1.0">
  <xsl:output encoding="ISO-8859-1" method="html"/>
  <xsl:strip-space elements="*"/>
  <xsl:template match="/">
    <xsl:apply-templates/>
  </xsl:template>
  <xsl:template match="xi:*">
    <xsl:copy>
      <xsl:apply-templates select="node()|@*"/>
    </xsl:copy>
  </xsl:template>
  <xsl:template match="@xi:*">
    <xsl:copy/>
  </xsl:template>
</xsl:stylesheet>