aboutsummaryrefslogtreecommitdiffstats
path: root/test/suite/intl402/ch13/13.1/13.1.1_2.js
blob: bad7c0fdd8471fa295ef9c80d7847115c2ae5bb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// Copyright 2012 Mozilla Corporation. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/**
 * @description Tests that localeCompare coerces this to a string.
 * @author Norbert Lindenberg
 */

var thisValues = [true, 5, "hello", {toString: function () { return "good bye"; }}];
var thatValues = ["true", "5", "hello", "good bye"];

var i;
for (i = 0; i < thisValues.length; i++) {
    var j;
    for (j = 0; j < thatValues.length; j++) {
        var result = String.prototype.localeCompare.call(thisValues[i], thatValues[j]);
        if ((result === 0) !== (i === j)) {
            if (result === 0) {
                $ERROR("localeCompare treats " + thisValues[i] + " and " + thatValues[j] + " as equal.");
            } else {
                $ERROR("localeCompare treats " + thisValues[i] + " and " + thatValues[j] + " as different.");
            }
        }
    }
}