js/src/tests/test262/intl402/ch12/12.1/12.1.2.1_4.js

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

mercurial