diff --git a/test/intl402/Segmenter/prototype/toStringTag/toStringTag.js b/test/intl402/Segmenter/prototype/toStringTag/toStringTag.js
new file mode 100644
index 0000000000000000000000000000000000000000..ec1b08477740b53e607785afef04f7bdb5fac52f
--- /dev/null
+++ b/test/intl402/Segmenter/prototype/toStringTag/toStringTag.js
@@ -0,0 +1,23 @@
+// Copyright 2018 Igalia, S.L. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-intl.Segmenter.prototype-@@tostringtag
+description: >
+    Checks the @@toStringTag property of the Segmenter prototype object.
+info: |
+    Intl.Segmenter.prototype[ @@toStringTag ]
+
+    The initial value of the @@toStringTag property is the string value "Intl.Segmenter".
+
+    This property has the attributes { [[Writable]]: false, [[Enumerable]]: false, [[Configurable]]: true }.
+includes: [propertyHelper.js]
+features: [Intl.Segmenter, Symbol.toStringTag]
+---*/
+
+verifyProperty(Intl.Segmenter.prototype, Symbol.toStringTag, {
+  value: "Intl.Segmenter",
+  writable: false,
+  enumerable: false,
+  configurable: true,
+});