diff options
author | Bjorn Reese <breese@src.gnome.org> | 2001-02-14 18:20:30 +0000 |
---|---|---|
committer | Bjorn Reese <breese@src.gnome.org> | 2001-02-14 18:20:30 +0000 |
commit | 5922af82daaf1361a1148220065497678aaca24d (patch) | |
tree | 27742ede000746ac8c10ebf95778444fd33ba77d /tests/REC/test-7.7-4.xsl | |
parent | 1d41cf2138ec47224361aae1587319d53c4572c7 (diff) | |
download | libxslt-5922af82daaf1361a1148220065497678aaca24d.tar.gz libxslt-5922af82daaf1361a1148220065497678aaca24d.tar.bz2 libxslt-5922af82daaf1361a1148220065497678aaca24d.zip |
implemented level=any
corrected some default values
added tests
Diffstat (limited to 'tests/REC/test-7.7-4.xsl')
-rw-r--r-- | tests/REC/test-7.7-4.xsl | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/REC/test-7.7-4.xsl b/tests/REC/test-7.7-4.xsl new file mode 100644 index 00000000..5f15af19 --- /dev/null +++ b/tests/REC/test-7.7-4.xsl @@ -0,0 +1,13 @@ +<xsl:stylesheet + version="1.0" + xmlns:xsl="http://www.w3.org/1999/XSL/Transform" + xmlns:fo="http://www.w3.org/1999/XSL/Format"> + +<xsl:template match="note"> + <fo:block> + <xsl:number level="any" from="chapter" format="(1) "/> + <xsl:apply-templates/> + </fo:block> +</xsl:template> + +</xsl:stylesheet> |