blob: 29ce4d673fb524ddbd8dccce12f300f3aa5ada7c [file] [log] [blame]
// 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.tostring
info: |
The result of calling this function is the same as if
the built-in join method were invoked for this object with no argument
es5id: 15.4.4.2_A1_T1
description: If Result(2) is zero, return the empty string
---*/
//CHECK#1
var x = new Array();
if (x.toString() !== x.join()) {
$ERROR('#1.1: x = new Array(); x.toString() === x.join(). Actual: ' + (x.toString()));
} else {
if (x.toString() !== "") {
$ERROR('#1.2: x = new Array(); x.toString() === "". Actual: ' + (x.toString()));
}
}
//CHECK#2
x = [];
x[0] = 1;
x.length = 0;
if (x.toString() !== x.join()) {
$ERROR('#2.1: x = []; x[0] = 1; x.length = 0; x.toString() === x.join(). Actual: ' + (x.toString()));
} else {
if (x.toString() !== "") {
$ERROR('#2.2: x = []; x[0] = 1; x.length = 0; x.toString() === "". Actual: ' + (x.toString()));
}
}