summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/String/prototype/toString/string-primitive.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/String/prototype/toString/string-primitive.js')
-rw-r--r--js/src/tests/test262/built-ins/String/prototype/toString/string-primitive.js23
1 files changed, 23 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/String/prototype/toString/string-primitive.js b/js/src/tests/test262/built-ins/String/prototype/toString/string-primitive.js
new file mode 100644
index 0000000000..18ce6eb295
--- /dev/null
+++ b/js/src/tests/test262/built-ins/String/prototype/toString/string-primitive.js
@@ -0,0 +1,23 @@
+// Copyright (C) 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-string.prototype.tostring
+description: >
+ If called on String primitive, returns it
+info: |
+ String.prototype.toString ( )
+
+ 1. Return ? thisStringValue(this value).
+
+ thisStringValue ( value )
+
+ 1. If Type(value) is String, return value.
+---*/
+
+var toString = String.prototype.toString;
+
+assert.sameValue(''.toString(), '');
+assert.sameValue(toString.call('str'), 'str');
+
+reportCompare(0, 0);