js/src/tests/test262/intl402/ch10/10.1/10.1.2.1_4.js

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

     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 Collator 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 collator = Intl.Collator.call(value);
    14     // check that the returned object functions as a collator
    15     var referenceCollator = new Intl.Collator();
    16     if (Intl.Collator.prototype.compare.call(collator, "a", "b") !== referenceCollator.compare("a", "b")) {
    17         $ERROR("Collator initialized from " + value + " doesn't behave like normal collator.");
    18     }
    19     return true;
    20 });

mercurial