mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-09-15 16:01:08 +03:00
* 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
10 lines
394 B
XML
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>
|