OLD | NEW |
---|---|
1 // Copyright 2014 the V8 project authors. All rights reserved. | 1 // Copyright 2014 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 if (typeof Intl != "undefined") { | |
Michael Starzinger
2014/04/30 08:50:50
nit: Can we keep an empty newline after the copyri
| |
5 function overflow() { | |
6 return overflow() + 1; | |
7 } | |
8 Object.defineProperty = overflow; | |
9 assertDoesNotThrow(function() { Intl.Collator.supportedLocalesOf("en"); }); | |
4 | 10 |
5 function overflow() { | 11 var date = new Date(Date.UTC(2004, 12, 25, 3, 0, 0)); |
6 return overflow() + 1; | 12 var options = { |
13 weekday: "long", | |
14 year: "numeric", | |
15 month: "long", | |
16 day: "numeric" | |
17 }; | |
18 | |
19 Object.apply = overflow; | |
20 assertDoesNotThrow(function() { date.toLocaleDateString("de-DE", options); }); | |
21 | |
22 var options_incomplete = {}; | |
23 assertDoesNotThrow(function() { | |
24 date.toLocaleDateString("de-DE", options_incomplete); | |
25 }); | |
26 assertTrue(options_incomplete.hasOwnProperty("year")); | |
27 | |
28 assertDoesNotThrow(function() { date.toLocaleDateString("de-DE", undefined); } ); | |
29 assertDoesNotThrow(function() { date.toLocaleDateString("de-DE"); }); | |
30 assertThrows(function() { date.toLocaleDateString("de-DE", null); }, TypeError ); | |
7 } | 31 } |
8 Object.defineProperty = overflow; | |
9 assertDoesNotThrow(function() { Intl.Collator.supportedLocalesOf("en"); }); | |
10 | |
11 var date = new Date(Date.UTC(2004, 12, 25, 3, 0, 0)); | |
12 var options = { | |
13 weekday: "long", | |
14 year: "numeric", | |
15 month: "long", | |
16 day: "numeric" | |
17 }; | |
18 | |
19 Object.apply = overflow; | |
20 assertDoesNotThrow(function() { date.toLocaleDateString("de-DE", options); }); | |
21 | |
22 var options_incomplete = {}; | |
23 assertDoesNotThrow(function() { | |
24 date.toLocaleDateString("de-DE", options_incomplete); | |
25 }); | |
26 assertTrue(options_incomplete.hasOwnProperty("year")); | |
27 | |
28 assertDoesNotThrow(function() { date.toLocaleDateString("de-DE", undefined); }); | |
29 assertDoesNotThrow(function() { date.toLocaleDateString("de-DE"); }); | |
30 assertThrows(function() { date.toLocaleDateString("de-DE", null); }, TypeError); | |
OLD | NEW |