summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/Date/prototype/this-value-non-date.js
blob: 51f1197f0aea4c9fce9726823e443f97598e3115 (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
27
28
// Copyright 2012 Mozilla Corporation. All rights reserved.
// This code is governed by the BSD license found in the LICENSE file.

/*---
es5id: 13.3.0_1
description: >
    Tests that Date.prototype.toLocaleString & Co. handle "this time
    value" correctly.
author: Norbert Lindenberg
---*/

var functions = {
    toLocaleString: Date.prototype.toLocaleString,
    toLocaleDateString: Date.prototype.toLocaleDateString,
    toLocaleTimeString: Date.prototype.toLocaleTimeString
};
var invalidValues = [undefined, null, 5, "5", false, {valueOf: function () { return 5; }}];

Object.getOwnPropertyNames(functions).forEach(function (p) {
    var f = functions[p];
    invalidValues.forEach(function (value) {
        assert.throws(TypeError, function() {
            var result = f.call(value);
        }, "Date.prototype." + p + " did not reject this = " + value + ".");
    });
});

reportCompare(0, 0);