OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 the V8 project authors. All rights reserved. | |
Michael Starzinger
2014/04/29 20:20:28
nit: The name of the test-case is misleading as it
mvstanton
2014/04/30 07:15:59
Done.
| |
2 // Use of this source code is governed by a BSD-style license that can be | |
3 // found in the LICENSE file. | |
4 | |
5 function overflow() { | |
6 return overflow() + 1; | |
7 } | |
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 | |
Michael Starzinger
2014/04/29 20:20:28
nit: Let's drop one of the two empty newlines.
mvstanton
2014/04/30 07:15:59
Done.
| |
20 Object.apply = overflow; | |
21 assertDoesNotThrow(function() { date.toLocaleDateString("de-DE", options); }); | |
22 | |
23 var options_incomplete = {}; | |
24 assertDoesNotThrow(function() { | |
25 date.toLocaleDateString("de-DE", options_incomplete); | |
26 }); | |
27 assertTrue(options_incomplete.hasOwnProperty("year")); | |
28 | |
29 assertDoesNotThrow(function() { date.toLocaleDateString("de-DE", undefined); }); | |
30 assertDoesNotThrow(function() { date.toLocaleDateString("de-DE"); }); | |
31 assertThrows(function() { date.toLocaleDateString("de-DE", null); }, TypeError); | |
OLD | NEW |