Update of /cvsroot/mvp-xml/EXSLT/v2/test/ExsltTest/tests/EXSLT/Math
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23054/v2/test/ExsltTest/tests/EXSLT/Math
Modified Files:
acos.xslt
Log Message:
Index: acos.xslt
===================================================================
RCS file: /cvsroot/mvp-xml/EXSLT/v2/test/ExsltTest/tests/EXSLT/Math/acos.xslt,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- acos.xslt 16 Oct 2005 20:13:09 -0000 1.1
+++ acos.xslt 29 Oct 2005 21:14:36 -0000 1.2
@@ -4,26 +4,25 @@
<xsl:output indent="yes" omit-xml-declaration="yes"/>
<xsl:template match="/">
<out>
- <test1>
+ <test1>
<xsl:value-of select="math:acos(0.5)"/>
</test1>
- <test2>
+ <test2>
<xsl:value-of select="math:acos(-0.9)"/>
</test2>
- <test3>
+ <test3>
<xsl:value-of select="math:acos(/data/bad-data)"/>
- </test3>
- <test4>
+ </test3>
+ <test4>
<xsl:value-of select="math:acos(22 div 0)"/>
</test4>
- <test5>
+ <test5>
<xsl:value-of select="math:acos(-22 div 0)"/>
</test5>
- <test6>
+ <test6>
<xsl:value-of select="math:acos(0)"/>
</test6>
</out>
</xsl:template>
</xsl:stylesheet>
-
\ No newline at end of file
|