From f9c007f93321f02889f7495048c6b364ae71997c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Bargull?= Date: Fri, 18 Jun 2021 06:41:37 +0000 Subject: [PATCH] Bug 1653024 - Part 2: Enable test262 feature for Intl.DateTimeFormat.prototype.formatRange by default. r=tcampbell Depends on D118026 Differential Revision: https://phabricator.services.mozilla.com/D118027 --- js/src/tests/test262-update.py | 6 +----- .../prototype/formatRange/argument-date-string.js | 1 - .../prototype/formatRange/argument-near-time-boundaries.js | 1 - .../prototype/formatRange/argument-to-integer.js | 1 - .../prototype/formatRange/argument-tonumber-throws.js | 1 - .../intl402/DateTimeFormat/prototype/formatRange/builtin.js | 1 - .../prototype/formatRange/date-is-infinity-throws.js | 1 - .../prototype/formatRange/date-is-nan-throws.js | 1 - .../prototype/formatRange/date-same-returns-single-date.js | 1 - .../prototype/formatRange/date-undefined-throws.js | 1 - .../prototype/formatRange/date-x-greater-than-y-throws.js | 1 - .../intl402/DateTimeFormat/prototype/formatRange/en-US.js | 1 - .../prototype/formatRange/fractionalSecondDigits.js | 1 - .../intl402/DateTimeFormat/prototype/formatRange/length.js | 1 - .../intl402/DateTimeFormat/prototype/formatRange/name.js | 1 - .../DateTimeFormat/prototype/formatRange/prop-desc.js | 1 - .../DateTimeFormat/prototype/formatRange/this-bad-object.js | 1 - .../prototype/formatRange/this-is-not-object-throws.js | 1 - .../prototype/formatRangeToParts/argument-date-string.js | 1 - .../formatRangeToParts/argument-near-time-boundaries.js | 1 - .../prototype/formatRangeToParts/argument-to-integer.js | 1 - .../formatRangeToParts/argument-tonumber-throws.js | 1 - .../DateTimeFormat/prototype/formatRangeToParts/builtin.js | 1 - .../prototype/formatRangeToParts/date-is-infinity-throws.js | 1 - .../prototype/formatRangeToParts/date-is-nan-throws.js | 1 - .../formatRangeToParts/date-same-returns-single-date.js | 1 - .../prototype/formatRangeToParts/date-undefined-throws.js | 1 - .../formatRangeToParts/date-x-greater-than-y-throws.js | 1 - .../DateTimeFormat/prototype/formatRangeToParts/en-US.js | 1 - .../prototype/formatRangeToParts/fractionalSecondDigits.js | 1 - .../DateTimeFormat/prototype/formatRangeToParts/length.js | 1 - .../DateTimeFormat/prototype/formatRangeToParts/name.js | 1 - .../prototype/formatRangeToParts/pattern-on-calendar.js | 1 - .../prototype/formatRangeToParts/prop-desc.js | 1 - .../prototype/formatRangeToParts/this-bad-object.js | 1 - .../formatRangeToParts/this-is-not-object-throws.js | 1 - 36 files changed, 1 insertion(+), 40 deletions(-) diff --git a/js/src/tests/test262-update.py b/js/src/tests/test262-update.py index 2ad966f7d40d..9eb57d66dd63 100755 --- a/js/src/tests/test262-update.py +++ b/js/src/tests/test262-update.py @@ -37,11 +37,7 @@ FEATURE_CHECK_NEEDED = { "String.prototype.at": "!String.prototype.at", "TypedArray.prototype.at": "!Int32Array.prototype.at", } -RELEASE_OR_BETA = set( - [ - "Intl.DateTimeFormat-formatRange", - ] -) +RELEASE_OR_BETA = set([]) SHELL_OPTIONS = { "top-level-await": "--enable-top-level-await", } diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/argument-date-string.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/argument-date-string.js index edbcbee2c6d2..ee452b5358b8 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/argument-date-string.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/argument-date-string.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright (C) 2017 André Bargull. All rights reserved. // Copyright (C) 2019 Igalia S.L. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/argument-near-time-boundaries.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/argument-near-time-boundaries.js index 3f0141ed4241..c6efcad3bf49 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/argument-near-time-boundaries.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/argument-near-time-boundaries.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright (C) 2017 André Bargull. All rights reserved. // Copyright (C) 2019 Igalia S.L. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/argument-to-integer.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/argument-to-integer.js index adabb74dc70c..b698b4b9a9d4 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/argument-to-integer.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/argument-to-integer.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright (C) 2017 André Bargull. All rights reserved. // Copyright (C) 2019 Igalia S.L. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/argument-tonumber-throws.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/argument-tonumber-throws.js index a0178e5b92da..ddbe0ed2fee3 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/argument-tonumber-throws.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/argument-tonumber-throws.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2019 Igalia S.L. All rights reserved. // This code is governed by the license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/builtin.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/builtin.js index 2b42ca92ea84..d457d6a40bd3 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/builtin.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/builtin.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2012 Mozilla Corporation. All rights reserved. // Copyright 2019 Igalia S.L. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/date-is-infinity-throws.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/date-is-infinity-throws.js index 9ddfd159e847..d59691d42dda 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/date-is-infinity-throws.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/date-is-infinity-throws.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2019 Google, Inc. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/date-is-nan-throws.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/date-is-nan-throws.js index 52621dd1a4db..25d90bafd660 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/date-is-nan-throws.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/date-is-nan-throws.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2019 Google, Inc. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/date-same-returns-single-date.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/date-same-returns-single-date.js index 684130fc7c11..e2dab6cbc16d 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/date-same-returns-single-date.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/date-same-returns-single-date.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2021 Google Inc. All rights reserved. // Copyright 2021 Apple Inc. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/date-undefined-throws.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/date-undefined-throws.js index 69946151c5db..639d941101ff 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/date-undefined-throws.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/date-undefined-throws.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2019 Google, Inc. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/date-x-greater-than-y-throws.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/date-x-greater-than-y-throws.js index 52a44597a9bb..481d98e628a9 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/date-x-greater-than-y-throws.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/date-x-greater-than-y-throws.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2019 Google, Inc. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/en-US.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/en-US.js index 7fc01e452a16..2cf503d35dec 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/en-US.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/en-US.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright (C) 2019 the V8 project authors, Igalia S.L. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/fractionalSecondDigits.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/fractionalSecondDigits.js index 89b83aeacbad..2d186b5f7f6d 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/fractionalSecondDigits.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/fractionalSecondDigits.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2019 Google Inc. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/length.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/length.js index f2f19975962d..bd1605e0ce5e 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/length.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/length.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2019 Google, Inc. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/name.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/name.js index 1ef3d5199a8c..f3ded8535e0e 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/name.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/name.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2019 Google, Inc. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/prop-desc.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/prop-desc.js index c628b1866b10..e022b19320bb 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/prop-desc.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/prop-desc.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2016 Mozilla Corporation. All rights reserved. // Copyright 2019 Igalia S.L. All rights reserved. // This code is governed by the license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/this-bad-object.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/this-bad-object.js index f3bf16339f5a..e669dc442111 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/this-bad-object.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/this-bad-object.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2019 Igalia, S.L. All rights reserved. // This code is governed by the license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/this-is-not-object-throws.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/this-is-not-object-throws.js index 8bd0016e2f3a..970d3e3d33eb 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/this-is-not-object-throws.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRange/this-is-not-object-throws.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2019 Google, Inc. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/argument-date-string.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/argument-date-string.js index b61c8219c69d..56c7156a6359 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/argument-date-string.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/argument-date-string.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright (C) 2017 André Bargull. All rights reserved. // Copyright (C) 2019 Igalia S.L. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/argument-near-time-boundaries.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/argument-near-time-boundaries.js index 1ce7ce1e7cf2..ea87893bf126 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/argument-near-time-boundaries.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/argument-near-time-boundaries.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright (C) 2017 André Bargull. All rights reserved. // Copyright (C) 2019 Igalia S.L. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/argument-to-integer.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/argument-to-integer.js index eb36b29eaca5..df97c735a118 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/argument-to-integer.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/argument-to-integer.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright (C) 2017 André Bargull. All rights reserved. // Copyright (C) 2019 Igalia S.L. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/argument-tonumber-throws.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/argument-tonumber-throws.js index 287c853cc144..d38b20da1c88 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/argument-tonumber-throws.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/argument-tonumber-throws.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2019 Igalia S.L. All rights reserved. // This code is governed by the license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/builtin.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/builtin.js index 6807ddf6b0b8..840c232f0775 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/builtin.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/builtin.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2012 Mozilla Corporation. All rights reserved. // Copyright 2019 Igalia S.L. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/date-is-infinity-throws.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/date-is-infinity-throws.js index d9d9b27c9d69..9074bc63f013 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/date-is-infinity-throws.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/date-is-infinity-throws.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2019 Google, Inc. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/date-is-nan-throws.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/date-is-nan-throws.js index 22d3f5af15bc..a96a0f3d704f 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/date-is-nan-throws.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/date-is-nan-throws.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2019 Google, Inc. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/date-same-returns-single-date.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/date-same-returns-single-date.js index d12c7bb9a86f..551a1fddccc2 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/date-same-returns-single-date.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/date-same-returns-single-date.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2021 Google Inc. All rights reserved. // Copyright 2021 Apple Inc. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/date-undefined-throws.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/date-undefined-throws.js index 7ac2c44bd13b..5c3e06dd102d 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/date-undefined-throws.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/date-undefined-throws.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2019 Google, Inc. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/date-x-greater-than-y-throws.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/date-x-greater-than-y-throws.js index ab7032065fd3..29384bcf25df 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/date-x-greater-than-y-throws.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/date-x-greater-than-y-throws.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2019 Google, Inc. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/en-US.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/en-US.js index 563acdd47cfb..1d66e5efffb8 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/en-US.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/en-US.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright (C) 2019 the V8 project authors, Igalia S.L. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/fractionalSecondDigits.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/fractionalSecondDigits.js index d6af440b80fa..2bbc9bd708d3 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/fractionalSecondDigits.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/fractionalSecondDigits.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2020 Google Inc, Igalia S.L. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/length.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/length.js index d737e906ea58..0a41d864dc3a 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/length.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/length.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2019 Google, Inc. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/name.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/name.js index a125c4bddad9..0d857a6e831d 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/name.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/name.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2019 Google, Inc. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/pattern-on-calendar.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/pattern-on-calendar.js index 7161f448042e..5a62a7c0e758 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/pattern-on-calendar.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/pattern-on-calendar.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2019 Google Inc. All rights reserved. // This code is governed by the BSD license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/prop-desc.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/prop-desc.js index c183abdc6cea..edd871b1adf7 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/prop-desc.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/prop-desc.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2016 Mozilla Corporation. All rights reserved. // Copyright 2019 Igalia S.L. All rights reserved. // This code is governed by the license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/this-bad-object.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/this-bad-object.js index 3cf6cbfb6914..21f29b454173 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/this-bad-object.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/this-bad-object.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2019 Igalia, S.L. All rights reserved. // This code is governed by the license found in the LICENSE file. diff --git a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/this-is-not-object-throws.js b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/this-is-not-object-throws.js index cf04cdc0afe2..7fe459953101 100644 --- a/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/this-is-not-object-throws.js +++ b/js/src/tests/test262/intl402/DateTimeFormat/prototype/formatRangeToParts/this-is-not-object-throws.js @@ -1,4 +1,3 @@ -// |reftest| skip-if(release_or_beta) -- Intl.DateTimeFormat-formatRange is not released yet // Copyright 2019 Google, Inc. All rights reserved. // This code is governed by the BSD license found in the LICENSE file.