summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/intl402/Locale/prototype/toStringTag
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/intl402/Locale/prototype/toStringTag')
-rw-r--r--js/src/tests/test262/intl402/Locale/prototype/toStringTag/browser.js0
-rw-r--r--js/src/tests/test262/intl402/Locale/prototype/toStringTag/shell.js0
-rw-r--r--js/src/tests/test262/intl402/Locale/prototype/toStringTag/toString-removed-tag.js20
-rw-r--r--js/src/tests/test262/intl402/Locale/prototype/toStringTag/toString.js18
-rw-r--r--js/src/tests/test262/intl402/Locale/prototype/toStringTag/toStringTag.js25
5 files changed, 63 insertions, 0 deletions
diff --git a/js/src/tests/test262/intl402/Locale/prototype/toStringTag/browser.js b/js/src/tests/test262/intl402/Locale/prototype/toStringTag/browser.js
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/js/src/tests/test262/intl402/Locale/prototype/toStringTag/browser.js
diff --git a/js/src/tests/test262/intl402/Locale/prototype/toStringTag/shell.js b/js/src/tests/test262/intl402/Locale/prototype/toStringTag/shell.js
new file mode 100644
index 0000000000..e69de29bb2
--- /dev/null
+++ b/js/src/tests/test262/intl402/Locale/prototype/toStringTag/shell.js
diff --git a/js/src/tests/test262/intl402/Locale/prototype/toStringTag/toString-removed-tag.js b/js/src/tests/test262/intl402/Locale/prototype/toStringTag/toString-removed-tag.js
new file mode 100644
index 0000000000..116caedeb7
--- /dev/null
+++ b/js/src/tests/test262/intl402/Locale/prototype/toStringTag/toString-removed-tag.js
@@ -0,0 +1,20 @@
+// Copyright 2018 Igalia, S.L. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-intl.locale.prototype-@@tostringtag
+description: >
+ Checks Object.prototype.toString with Intl.Locale objects.
+info: |
+ Intl.Locale.prototype[ @@toStringTag ]
+
+ The initial value of the @@toStringTag property is the string value "Intl.Locale".
+features: [Intl.Locale, Symbol.toStringTag]
+---*/
+
+delete Intl.Locale.prototype[Symbol.toStringTag];
+
+assert.sameValue(Object.prototype.toString.call(Intl.Locale.prototype), "[object Object]");
+assert.sameValue(Object.prototype.toString.call(new Intl.Locale("en")), "[object Object]");
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/intl402/Locale/prototype/toStringTag/toString.js b/js/src/tests/test262/intl402/Locale/prototype/toStringTag/toString.js
new file mode 100644
index 0000000000..42896406e3
--- /dev/null
+++ b/js/src/tests/test262/intl402/Locale/prototype/toStringTag/toString.js
@@ -0,0 +1,18 @@
+// Copyright 2018 Igalia, S.L. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-intl.locale.prototype-@@tostringtag
+description: >
+ Checks Object.prototype.toString with Intl.Locale objects.
+info: |
+ Intl.Locale.prototype[ @@toStringTag ]
+
+ The initial value of the @@toStringTag property is the string value "Intl.Locale".
+features: [Intl.Locale, Symbol.toStringTag]
+---*/
+
+assert.sameValue(Object.prototype.toString.call(Intl.Locale.prototype), "[object Intl.Locale]");
+assert.sameValue(Object.prototype.toString.call(new Intl.Locale("en")), "[object Intl.Locale]");
+
+reportCompare(0, 0);
diff --git a/js/src/tests/test262/intl402/Locale/prototype/toStringTag/toStringTag.js b/js/src/tests/test262/intl402/Locale/prototype/toStringTag/toStringTag.js
new file mode 100644
index 0000000000..d58a240de7
--- /dev/null
+++ b/js/src/tests/test262/intl402/Locale/prototype/toStringTag/toStringTag.js
@@ -0,0 +1,25 @@
+// Copyright 2018 Igalia, S.L. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-intl.locale.prototype-@@tostringtag
+description: >
+ Checks the @@toStringTag property of the Locale prototype object.
+info: |
+ Intl.Locale.prototype[ @@toStringTag ]
+
+ The initial value of the @@toStringTag property is the string value "Intl.Locale".
+
+ This property has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: true }.
+includes: [propertyHelper.js]
+features: [Intl.Locale, Symbol.toStringTag]
+---*/
+
+verifyProperty(Intl.Locale.prototype, Symbol.toStringTag, {
+ value: 'Intl.Locale',
+ writable: false,
+ enumerable: false,
+ configurable: true
+});
+
+reportCompare(0, 0);