| 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');
|
|
|