9c7ec98a90
Bug: v8:7979 TBR: benedikt@chromium.org Cq-Include-Trybots: luci.v8.try:v8_linux_noi18n_rel_ng;luci.chromium.try:linux_chromium_rel_ng Change-Id: I9d5181c15b56de3bc5288d11bd83e55157c7a610 Reviewed-on: https://chromium-review.googlesource.com/1168518 Commit-Queue: Sathya Gunasekaran <gsathya@chromium.org> Reviewed-by: Sathya Gunasekaran <gsathya@chromium.org> Cr-Commit-Position: refs/heads/master@{#55621}
13 lines
456 B
JavaScript
13 lines
456 B
JavaScript
// Copyright 2018 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.
|
|
|
|
// Make sure passing 1 or false to patched construtor won't cause crash
|
|
|
|
Object.defineProperty(Intl.NumberFormat, Symbol.hasInstance, { value: _ => true });
|
|
assertThrows(() =>
|
|
Intl.NumberFormat.call(1), TypeError);
|
|
|
|
assertThrows(() =>
|
|
Intl.NumberFormat.call(false), TypeError);
|