Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(21)

Side by Side Diff: test/mjsunit/regress/regress-builtinbust-7.js

Issue 253903003: Bugfix: internationalization routines fail on monkeypatching. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Comment response. Created 6 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « src/i18n.js ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
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 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);
OLDNEW
« no previous file with comments | « src/i18n.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698