summaryrefslogtreecommitdiff
path: root/deps/v8/test/intl/locale
diff options
context:
space:
mode:
authorMichaël Zasso <targos@protonmail.com>2019-08-01 08:38:30 +0200
committerMichaël Zasso <targos@protonmail.com>2019-08-01 12:53:56 +0200
commit2dcc3665abf57c3607cebffdeeca062f5894885d (patch)
tree4f560748132edcfb4c22d6f967a7e80d23d7ea2c /deps/v8/test/intl/locale
parent1ee47d550c6de132f06110aa13eceb7551d643b3 (diff)
downloadandroid-node-v8-2dcc3665abf57c3607cebffdeeca062f5894885d.tar.gz
android-node-v8-2dcc3665abf57c3607cebffdeeca062f5894885d.tar.bz2
android-node-v8-2dcc3665abf57c3607cebffdeeca062f5894885d.zip
deps: update V8 to 7.6.303.28
PR-URL: https://github.com/nodejs/node/pull/28016 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Refael Ackermann (רפאל פלחי) <refack@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com>
Diffstat (limited to 'deps/v8/test/intl/locale')
-rw-r--r--deps/v8/test/intl/locale/locale-canonicalization.js2
-rw-r--r--deps/v8/test/intl/locale/locale-constructor.js2
-rw-r--r--deps/v8/test/intl/locale/locale-properties.js2
-rw-r--r--deps/v8/test/intl/locale/maximize_minimize.js2
-rw-r--r--deps/v8/test/intl/locale/property.js2
-rw-r--r--deps/v8/test/intl/locale/regress-8032.js2
6 files changed, 0 insertions, 12 deletions
diff --git a/deps/v8/test/intl/locale/locale-canonicalization.js b/deps/v8/test/intl/locale/locale-canonicalization.js
index cc0478fdb6..487cfe55d0 100644
--- a/deps/v8/test/intl/locale/locale-canonicalization.js
+++ b/deps/v8/test/intl/locale/locale-canonicalization.js
@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// Flags: --harmony-locale
-
// Make sure that locale string got canonicalized by the spec,
// keys are sorted and unique, region upper cased, script title cased and
// language lower cased.
diff --git a/deps/v8/test/intl/locale/locale-constructor.js b/deps/v8/test/intl/locale/locale-constructor.js
index bf2510553f..95a6f3d24f 100644
--- a/deps/v8/test/intl/locale/locale-constructor.js
+++ b/deps/v8/test/intl/locale/locale-constructor.js
@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// Flags: --harmony-locale
-
// Locale constructor can't be called as function.
assertThrows(() => Intl.Locale('sr'), TypeError);
diff --git a/deps/v8/test/intl/locale/locale-properties.js b/deps/v8/test/intl/locale/locale-properties.js
index 9800e8d6cf..7755c7e87e 100644
--- a/deps/v8/test/intl/locale/locale-properties.js
+++ b/deps/v8/test/intl/locale/locale-properties.js
@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// Flags: --harmony-locale
-
// Make sure that locale exposes all required properties. Those not specified
// should have undefined value.
diff --git a/deps/v8/test/intl/locale/maximize_minimize.js b/deps/v8/test/intl/locale/maximize_minimize.js
index 823a6670e3..51702ab410 100644
--- a/deps/v8/test/intl/locale/maximize_minimize.js
+++ b/deps/v8/test/intl/locale/maximize_minimize.js
@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// Flags: --harmony-locale
-
// Make sure that maximize and minimize of all locales work reasonbly.
assertEquals(new Intl.Locale("zh-TW").maximize().toString(), "zh-Hant-TW",
diff --git a/deps/v8/test/intl/locale/property.js b/deps/v8/test/intl/locale/property.js
index cbe076842f..b89705fe57 100644
--- a/deps/v8/test/intl/locale/property.js
+++ b/deps/v8/test/intl/locale/property.js
@@ -2,8 +2,6 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// Flags: --harmony-locale
-
// Make sure that accessing locale property will return undefined instead of
// crash.
diff --git a/deps/v8/test/intl/locale/regress-8032.js b/deps/v8/test/intl/locale/regress-8032.js
index b8219b1b50..647c4865ec 100644
--- a/deps/v8/test/intl/locale/regress-8032.js
+++ b/deps/v8/test/intl/locale/regress-8032.js
@@ -2,6 +2,4 @@
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
-// Flags: --harmony-locale
-
assertThrows(() => new Intl.Locale(''), RangeError);