summaryrefslogtreecommitdiff
path: root/tests/general/bug-52.xsl
blob: 6d1601557a9f9af61f61c0e1007f886cdb3de903 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0"?>
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
                version="1.0">

<xsl:output method="html"/>

<xsl:template match="doc">
  <xsl:apply-templates/>
</xsl:template>

<xsl:template match="img">
  <xsl:text>Graphic file=</xsl:text>
  <xsl:value-of select="unparsed-entity-uri(@entref)"/>
</xsl:template>

</xsl:stylesheet>