| Index: test/webkit/resize-array-assign.js
|
| diff --git a/test/webkit/concat-while-having-a-bad-time.js b/test/webkit/resize-array-assign.js
|
| similarity index 83%
|
| copy from test/webkit/concat-while-having-a-bad-time.js
|
| copy to test/webkit/resize-array-assign.js
|
| index dfda1e08a0b36194b787a44ee12a9693acd8aeaf..20d101fccbb3f25d30c51e7606ab67f75374035c 100644
|
| --- a/test/webkit/concat-while-having-a-bad-time.js
|
| +++ b/test/webkit/resize-array-assign.js
|
| @@ -21,11 +21,19 @@
|
| // (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
|
| // SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
| -description(
|
| -"Tests the behavior of Array.prototype.concat while the array is having a bad time due to one of the elements we are concatenating."
|
| -);
|
| +description("Tests that assignments into arrays behave properly after the array is resized.")
|
|
|
| -Object.defineProperty(Array.prototype, 0, { writable: false });
|
| -shouldBe("[42].concat()", "[42]");
|
| +function resize(X) {
|
| + X[9999] = 0;
|
| + return 1;
|
| +}
|
|
|
| +function getZerothEntry(X) {
|
| + return X[0];
|
| +}
|
|
|
| +var A = new Array();
|
| +A[0] = 0;
|
| +A[0] = resize(A);
|
| +
|
| +shouldBe(getZerothEntry(A).toString(), "1");
|
|
|