Index: test/mjsunit/array-splice.js |
=================================================================== |
--- test/mjsunit/array-splice.js (revision 2897) |
+++ test/mjsunit/array-splice.js (working copy) |
@@ -309,3 +309,6 @@ |
assertEquals(1, arr.pop()); |
assertEquals(0, arr.pop()); |
Array.prototype[1] = undefined; |
+ |
+// Test http://code.google.com/p/chromium/issues/detail?id=21860 |
Lasse Reichstein
2009/09/16 11:29:24
We typically put these in test/mjsunit/regress/reg
|
+Array.prototype.push.apply([], [1].splice(0, -(-1 % 5))); |