mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-09-11 16:10:45 +03:00
* tests/general/Makefile.am, tests/general/bug-141.out, tests/general/bug-141.xsl, tests/docs/Makefile.am, tests/general/bug-141.xml: added test case for Bug 13971 (libxml2 xpath.c bug, but tested here)
26 lines
925 B
XML
26 lines
925 B
XML
<?xml version='1.0'?>
|
|
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
|
|
version="1.0">
|
|
<xsl:template match="/">
|
|
<xsl:apply-templates select="//page"/>
|
|
</xsl:template>
|
|
|
|
<xsl:template match="page">
|
|
|
|
current page : <xsl:value-of select="@name"/>
|
|
--------------------
|
|
dump union : "<xsl:for-each
|
|
select="(preceding-sibling::page[1]|parent::group[1]|/document)">
|
|
<xsl:value-of select="name()"/>,</xsl:for-each>"
|
|
union-last : <xsl:value-of select="name(
|
|
(preceding-sibling::page[1]|parent::group[1]|/document)[last()] )"/>
|
|
union-last (without /root) : <xsl:value-of select="name(
|
|
(preceding-sibling::page[1]|parent::group[1])[last()] )"/>
|
|
preceeding-sibling <xsl:value-of select="name(preceding-sibling::page[1])"/>
|
|
parent-group <xsl:value-of select="name(parent::group[1])"/>
|
|
root <xsl:value-of select="name(/document)"/>
|
|
-----------------------
|
|
</xsl:template>
|
|
|
|
</xsl:stylesheet>
|