diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2001-01-30 14:19:41 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2001-01-30 14:19:41 +0000 |
commit | 48a443da0ae1a1e7d50006acb56a58027709fb80 (patch) | |
tree | ebe87cf83fe37b347ec3e6ec3307183929eaf0fb /tests/REC/test-5.4-3.xsl | |
parent | dfcbad530f14df75eaf558f585f4e71dd7f212f0 (diff) | |
download | libxslt-48a443da0ae1a1e7d50006acb56a58027709fb80.tar.gz libxslt-48a443da0ae1a1e7d50006acb56a58027709fb80.tar.bz2 libxslt-48a443da0ae1a1e7d50006acb56a58027709fb80.zip |
Boring task of starting doing basic testsuite:
- TODO: updated
- configure.in tests/Makefile.am tests/REC/*: started adding
some regression tests based from fragments of spec examples
- libxslt/transform.c: fixed a problem on namespace generation
Daniel
Diffstat (limited to 'tests/REC/test-5.4-3.xsl')
-rw-r--r-- | tests/REC/test-5.4-3.xsl | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/REC/test-5.4-3.xsl b/tests/REC/test-5.4-3.xsl new file mode 100644 index 00000000..c367a82a --- /dev/null +++ b/tests/REC/test-5.4-3.xsl @@ -0,0 +1,16 @@ +<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="doc"> +<doc> + <xsl:apply-templates/> +</doc> +</xsl:template> + +<xsl:template match="author-group"> + <fo:inline-sequence> + <xsl:apply-templates select="author/given-name"/> + </fo:inline-sequence> +</xsl:template> + +</xsl:stylesheet> |