1
0
mirror of https://gitlab.gnome.org/GNOME/libxslt synced 2025-09-15 16:01:08 +03:00
Files
libxslt/tests/general/bug-75.xsl
Daniel Veillard e1ff13c822 added a specific example for bug #72150 in the regression tests Daniel
* tests/docs/Makefile.am tests/docs/bug-75.xml
  tests/general/Makefile.am tests/general/bug-75.*: added a
  specific example for bug #72150 in the regression tests
Daniel
2002-03-07 14:22:05 +00:00

10 lines
394 B
XML

<xsl:stylesheet version="1.0"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<xsl:value-of select="format-number(100000000000,'#,##0.##')"/>|
<xsl:value-of select="format-number(2147483647,'#,##0.##')"/>|
<xsl:value-of select="format-number(2147483648,'#,##0.##')"/>|
<xsl:value-of select="format-number(4294967296,'#,##0.##')"/>|
</xsl:template>
</xsl:stylesheet>