mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-09-15 16:01:08 +03:00
* tests/general/bug-159.*, tests/general/Makefile.am, tests/docs/bug-159.*, tests/docs/Makefile.am: added test for bug #168196 fixed in libxml2 Daniel
18 lines
382 B
XML
18 lines
382 B
XML
<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="#ё">ё</a>
|
|
<p>a lot of text</p>
|
|
|
|
<a name="ё"/><h1>ё</h1>
|
|
<p>a lot of text</p>
|
|
</body>
|
|
</html>
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|