Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1439)

Unified Diff: test/mjsunit/array-length.js

Issue 553623004: ES6: Array.prototype.slice and friends should use ToLength instead of ToUint32 Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Remove failing tests. Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « test/mjsunit/array-indexing.js ('k') | test/mjsunit/harmony/array-fill.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/mjsunit/array-length.js
diff --git a/test/mjsunit/array-length.js b/test/mjsunit/array-length.js
index 16867db733b6c98bb45b9428b86755d6c1e58e5d..60696dd02860a3fa16caaace432da74fcdd26f2d 100644
--- a/test/mjsunit/array-length.js
+++ b/test/mjsunit/array-length.js
@@ -106,9 +106,6 @@ assertEquals(Object(12), a.length = new Number(12));
assertEquals(12, a.length);
-var o = { length: -23 };
-Array.prototype.pop.apply(o);
-assertEquals(4294967272, o.length);
// Check case of compiled stubs.
var a = [];
« no previous file with comments | « test/mjsunit/array-indexing.js ('k') | test/mjsunit/harmony/array-fill.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698