2cf79d12e8
Antarctica/DumontDUrville has special casing. Bug: chromium:928068 Change-Id: I8aea2fafc2c14d6fbfee8a95910df7e8d7d1ff37 Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/1507329 Reviewed-by: Sathya Gunasekaran <gsathya@chromium.org> Commit-Queue: Frank Tang <ftang@chromium.org> Cr-Commit-Position: refs/heads/master@{#60108}
12 lines
403 B
JavaScript
12 lines
403 B
JavaScript
// Copyright 2019 the V8 project authors. All rights reserved.
|
|
// Use of this source code is governed by a BSD-style license that can be
|
|
// found in the LICENSE file.
|
|
|
|
assertDoesNotThrow(
|
|
()=>(new Date().toLocaleString(
|
|
"en-US", {timeZone: "Antarctica/DumontDUrville"})));
|
|
|
|
assertDoesNotThrow(
|
|
()=>(new Date().toLocaleString(
|
|
"en-US", {timeZone: "antarctica/dumontdurville"})));
|