summaryrefslogtreecommitdiffstats
path: root/js/src/tests/test262/built-ins/Array/prototype/toLocaleString/S15.4.4.3_A1_T1.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/src/tests/test262/built-ins/Array/prototype/toLocaleString/S15.4.4.3_A1_T1.js')
-rw-r--r--js/src/tests/test262/built-ins/Array/prototype/toLocaleString/S15.4.4.3_A1_T1.js28
1 files changed, 28 insertions, 0 deletions
diff --git a/js/src/tests/test262/built-ins/Array/prototype/toLocaleString/S15.4.4.3_A1_T1.js b/js/src/tests/test262/built-ins/Array/prototype/toLocaleString/S15.4.4.3_A1_T1.js
new file mode 100644
index 0000000000..1a068ed5ac
--- /dev/null
+++ b/js/src/tests/test262/built-ins/Array/prototype/toLocaleString/S15.4.4.3_A1_T1.js
@@ -0,0 +1,28 @@
+// Copyright 2009 the Sputnik authors. All rights reserved.
+// This code is governed by the BSD license found in the LICENSE file.
+
+/*---
+esid: sec-array.prototype.tolocalestring
+info: |
+ The elements of the array are converted to strings using their
+ toLocaleString methods, and these strings are then concatenated, separated
+ by occurrences of a separator string that has been derived in an
+ implementation-defined locale-specific way
+es5id: 15.4.4.3_A1_T1
+description: it is the function that should be invoked
+---*/
+
+var n = 0;
+var obj = {
+ toLocaleString: function() {
+ n++
+ }
+};
+var arr = [undefined, obj, null, obj, obj];
+arr.toLocaleString();
+
+if (n !== 3) {
+ throw new Test262Error('#1: var n = 0; var obj = {toLocaleString: function() {n++}}; var arr = [undefined, obj, null, obj, obj]; arr.toLocaleString(); n === 3. Actual: ' + (n));
+}
+
+reportCompare(0, 0);