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

Side by Side Diff: test/mjsunit/regress/regress-crbug-422858.js

Issue 1557053002: Accept time zones like GMT-8 in the legacy date parser (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Test hours Created 4 years, 11 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
« no previous file with comments | « src/dateparser-inl.h ('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 2015 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 var date = new Date("2016/01/02 10:00 GMT-8")
6 assertEquals(0, date.getMinutes());
7 assertEquals(18, date.getUTCHours());
8
9 date = new Date("2016/01/02 10:00 GMT-12")
10 assertEquals(0, date.getMinutes());
11 assertEquals(22, date.getUTCHours());
12
13 date = new Date("2016/01/02 10:00 GMT-123")
14 assertEquals(23, date.getMinutes());
15 assertEquals(11, date.getUTCHours());
16
17 date = new Date("2016/01/02 10:00 GMT-0856")
18 assertEquals(56, date.getMinutes());
19 assertEquals(18, date.getUTCHours());
20
21 date = new Date("2016/01/02 10:00 GMT-08000")
22 assertEquals(NaN, date.getMinutes());
23 assertEquals(NaN, date.getUTCHours());
OLDNEW
« no previous file with comments | « src/dateparser-inl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698