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

Unified Diff: LayoutTests/fast/js/script-tests/array-prototype-properties.js

Issue 20867002: Remove old tests that have been migrated to the v8 repo. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: remove unused script-tests as well Created 7 years, 5 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
Index: LayoutTests/fast/js/script-tests/array-prototype-properties.js
diff --git a/LayoutTests/fast/js/script-tests/array-prototype-properties.js b/LayoutTests/fast/js/script-tests/array-prototype-properties.js
deleted file mode 100644
index 62746f4e6150c654476cef081ca3f35bed45366f..0000000000000000000000000000000000000000
--- a/LayoutTests/fast/js/script-tests/array-prototype-properties.js
+++ /dev/null
@@ -1,29 +0,0 @@
-description(
-'This is a test case for <a https://bugs.webkit.org/show_bug.cgi?id=64679">bug 64679</a>.'
-);
-
-// These calls pass undefined as this value, and as such should throw in toObject.
-shouldThrow("Array.prototype.toString.call(undefined)");
-shouldThrow("Array.prototype.toLocaleString.call(undefined)");
-shouldThrow("Array.prototype.concat.call(undefined, [])");
-shouldThrow("Array.prototype.join.call(undefined, [])");
-shouldThrow("Array.prototype.pop.call(undefined)");
-shouldThrow("Array.prototype.push.call(undefined, {})");
-shouldThrow("Array.prototype.reverse.call(undefined)");
-shouldThrow("Array.prototype.shift.call(undefined)");
-shouldThrow("Array.prototype.slice.call(undefined, 0, 1)");
-shouldThrow("Array.prototype.sort.call(undefined)");
-shouldThrow("Array.prototype.splice.call(undefined, 0, 1)");
-shouldThrow("Array.prototype.unshift.call(undefined, {})");
-shouldThrow("Array.prototype.every.call(undefined, toString)");
-shouldThrow("Array.prototype.forEach.call(undefined, toString)");
-shouldThrow("Array.prototype.some.call(undefined, toString)");
-shouldThrow("Array.prototype.indexOf.call(undefined, 0)");
-shouldThrow("Array.prototype.indlastIndexOfexOf.call(undefined, 0)");
-shouldThrow("Array.prototype.filter.call(undefined, toString)");
-shouldThrow("Array.prototype.reduce.call(undefined, toString)");
-shouldThrow("Array.prototype.reduceRight.call(undefined, toString)");
-shouldThrow("Array.prototype.map.call(undefined, toString)");
-
-// Test exception ordering in Array.prototype.toLocaleString ( https://bugs.webkit.org/show_bug.cgi?id=80663 )
-shouldThrow("[{toLocaleString:function(){throw 1}},{toLocaleString:function(){throw 2}}].toLocaleString()", '1');
« no previous file with comments | « LayoutTests/fast/js/script-tests/array-functions-non-arrays.js ('k') | LayoutTests/fast/js/script-tests/array-slow-put.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698