From aa7b3a5d025e7bbf61e333427d5863bc48818095 Mon Sep 17 00:00:00 2001
From: Ms2ger <Ms2ger@igalia.com>
Date: Fri, 6 Jul 2018 12:27:48 +0200
Subject: [PATCH] Add a test for Object.prototype.toString with
 Intl.RelativeTimeFormat objects.

---
 .../prototype/toStringTag/toString.js            | 16 ++++++++++++++++
 1 file changed, 16 insertions(+)
 create mode 100644 test/intl402/RelativeTimeFormat/prototype/toStringTag/toString.js

diff --git a/test/intl402/RelativeTimeFormat/prototype/toStringTag/toString.js b/test/intl402/RelativeTimeFormat/prototype/toStringTag/toString.js
new file mode 100644
index 0000000000..6c46638202
--- /dev/null
+++ b/test/intl402/RelativeTimeFormat/prototype/toStringTag/toString.js
@@ -0,0 +1,16 @@
+// Copyright 2018 Igalia, S.L. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-intl.RelativeTimeFormat.prototype-@@tostringtag
+description: >
+    Checks Object.prototype.toString with Intl.RelativeTimeFormat objects.
+info: |
+    Intl.RelativeTimeFormat.prototype[ @@toStringTag ]
+
+    The initial value of the @@toStringTag property is the string value "Intl.RelativeTimeFormat".
+features: [Intl.RelativeTimeFormat]
+---*/
+
+assert.sameValue(Object.prototype.toString.call(Intl.RelativeTimeFormat.prototype), "[object Intl.RelativeTimeFormat]");
+assert.sameValue(Object.prototype.toString.call(new Intl.RelativeTimeFormat("en")), "[object Intl.RelativeTimeFormat]");
-- 
GitLab