fixing two broken tests (revealed by #125502) Daniel
authorDaniel Veillard <veillard@src.gnome.org>
Sat, 1 Nov 2003 21:38:11 +0000 (21:38 +0000)
committerDaniel Veillard <veillard@src.gnome.org>
Sat, 1 Nov 2003 21:38:11 +0000 (21:38 +0000)
* tests/REC/test-5.2-17.xsl tests/REC/test-5.2-18.xsl: fixing two
  broken tests (revealed by #125502)
Daniel

ChangeLog
tests/REC/test-5.2-17.xsl
tests/REC/test-5.2-18.xsl

index 1367469..bdcad43 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Sat Nov  1 22:36:30 CET 2003 Daniel Veillard <daniel@veillard.com>
+
+       * tests/REC/test-5.2-17.xsl tests/REC/test-5.2-18.xsl: fixing two
+         broken tests (revealed by #125502)
+
 Sat Nov  1 07:41:06 CET 2003 Daniel Veillard <daniel@veillard.com>
 
        * libexslt/strings.c: fix bug #125265 about entities breaking
index de7a727..0e428db 100644 (file)
@@ -1,5 +1,8 @@
 <xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+<xsl:template match="/">
+<xsl:apply-templates select="/doc/para/@*"/>
+</xsl:template>
 <xsl:template match="@class">
 <xsl:text>Success</xsl:text>
 </xsl:template>
index fce9d57..0669e93 100644 (file)
@@ -1,5 +1,8 @@
 <xsl:stylesheet version="1.0"
                xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
+<xsl:template match="/">
+<xsl:apply-templates select="/doc/para/@*"/>
+</xsl:template>
 <xsl:template match="@*">
 <xsl:text>Success</xsl:text>
 </xsl:template>