js/src/tests/Intl/NumberFormat/StringBuffer.js

changeset 0
6474c204b198
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/js/src/tests/Intl/NumberFormat/StringBuffer.js	Wed Dec 31 06:09:35 2014 +0100
     1.3 @@ -0,0 +1,17 @@
     1.4 +// |reftest| skip-if(!this.hasOwnProperty("Intl"))
     1.5 +/* This Source Code Form is subject to the terms of the Mozilla Public
     1.6 + * License, v. 2.0. If a copy of the MPL was not distributed with this
     1.7 + * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
     1.8 +
     1.9 +// The implementation of the format function uses the C++ StringBuffer class,
    1.10 +// which changes its storage model at 32 characters, and uses it in a way which
    1.11 +// also means that there's no room for null-termination at this limit.
    1.12 +// This test makes sure that none of this affects the output.
    1.13 +
    1.14 +var format = new Intl.NumberFormat("it-IT", {minimumFractionDigits: 1});
    1.15 +
    1.16 +assertEq(format.format(1123123123123123123123.1), "1.123.123.123.123.120.000.000,0");
    1.17 +assertEq(format.format(12123123123123123123123.1), "12.123.123.123.123.100.000.000,0");
    1.18 +assertEq(format.format(123123123123123123123123.1), "123.123.123.123.123.000.000.000,0");
    1.19 +
    1.20 +reportCompare(0, 0, "ok");

mercurial