js/src/tests/test262/intl402/ch11/11.1/11.1.2.1_4.js

Wed, 31 Dec 2014 13:27:57 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Wed, 31 Dec 2014 13:27:57 +0100
branch
TOR_BUG_3246
changeset 6
8bccb770b82d
permissions
-rw-r--r--

Ignore runtime configuration files generated during quality assurance.

     1 // Copyright 2012 Mozilla Corporation. All rights reserved.
     2 // This code is governed by the BSD license found in the LICENSE file.
     4 /**
     5  * @description Tests that for non-object values passed as this to NumberFormat a
     6  * wrapper object will be initialized and returned.
     7  * @author Norbert Lindenberg
     8  */
    10 var thisValues = [true, 42, "国際化"];
    12 thisValues.forEach(function (value) {
    13     var format = Intl.NumberFormat.call(value);
    14     // check that the returned object functions as a number format
    15     var referenceFormat = new Intl.NumberFormat();
    16     if (Intl.NumberFormat.prototype.format.call(format, 12.3456) !== referenceFormat.format(12.3456)) {
    17         $ERROR("NumberFormat initialized from " + value + " doesn't behave like normal number format.");
    18     }
    19     return true;
    20 });

mercurial