From 4d7eef14fb6dc4b20cb1d5a19f4493fea61f6ec1 Mon Sep 17 00:00:00 2001 From: Rick Waldron <waldron.rick@gmail.com> Date: Mon, 22 Oct 2018 14:10:17 -0400 Subject: [PATCH] Curation: remove v8/test262/local-tests/test/intl402/NumberFormat/fraction-digit-options-read-once.js A version of the same file, containing the same test with more coverage and a more complete set of meta data exists --- .../fraction-digit-options-read-once.js | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 implementation-contributed/v8/test262/local-tests/test/intl402/NumberFormat/fraction-digit-options-read-once.js diff --git a/implementation-contributed/v8/test262/local-tests/test/intl402/NumberFormat/fraction-digit-options-read-once.js b/implementation-contributed/v8/test262/local-tests/test/intl402/NumberFormat/fraction-digit-options-read-once.js deleted file mode 100644 index e7e37b8735..0000000000 --- a/implementation-contributed/v8/test262/local-tests/test/intl402/NumberFormat/fraction-digit-options-read-once.js +++ /dev/null @@ -1,18 +0,0 @@ -// Copyright 2017 the V8 project authors. All rights reserved. -// This code is governed by the license found in the LICENSE file. - -/*--- -esid: ECMA-402 #sec-setnfdigitoptions -description: > - The maximum and minimum fraction digits properties should be read from - the options bag exactly once from the NumberFormat constructor. - Regression test for https://bugs.chromium.org/p/v8/issues/detail?id=6015 -include: [assert.js] ----*/ - -var minCounter = 0; -var maxCounter = 0; -new Intl.NumberFormat("en", { get minimumFractionDigits() { minCounter++ }, - get maximumFractionDigits() { maxCounter++ } }); -assert.sameValue(1, minCounter); -assert.sameValue(1, maxCounter); -- GitLab