summaryrefslogtreecommitdiff
path: root/tests/general/bug-159.xsl
blob: 476d1e2aeddc819c968bc75603c36c68131fb023 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
<xsl:output method="html" encoding="ascii"/>
        
<xsl:template match="/">
  <html>
    <head/>
    <body>
      <a href="#&#x451;">&#x451;</a>
      <p>a lot of text</p>

      <a name="&#x451;"/><h1>&#x451;</h1>
      <p>a lot of text</p>
    </body>
  </html>
</xsl:template>

</xsl:stylesheet>