Index: test/webkit/fast/js/basic-strict-mode.js |
diff --git a/test/webkit/fast/js/basic-strict-mode.js b/test/webkit/fast/js/basic-strict-mode.js |
index 027af0f1525b1db90873b55a46161a98978d3ad6..a31e6e943631018fef73a295f4c2d0f9d807d84a 100644 |
--- a/test/webkit/fast/js/basic-strict-mode.js |
+++ b/test/webkit/fast/js/basic-strict-mode.js |
@@ -97,13 +97,11 @@ shouldBeSyntaxError("(function (){'use strict'; var a; delete a;})()"); |
shouldBeSyntaxError("(function (){var a; function f() {'use strict'; delete a;} })()"); |
shouldBeSyntaxError("(function (){'use strict'; with(1){};})"); |
shouldThrow("(function (){'use strict'; arguments.callee; })()"); |
-shouldThrow("(function (){'use strict'; arguments.caller; })()"); |
shouldThrow("(function f(){'use strict'; f.arguments; })()"); |
shouldThrow("(function f(){'use strict'; f.caller; })()"); |
shouldThrow("(function f(){'use strict'; f.arguments=5; })()"); |
shouldThrow("(function f(){'use strict'; f.caller=5; })()"); |
shouldThrow("(function (arg){'use strict'; arguments.callee; })()"); |
-shouldThrow("(function (arg){'use strict'; arguments.caller; })()"); |
shouldThrow("(function f(arg){'use strict'; f.arguments; })()"); |
shouldThrow("(function f(arg){'use strict'; f.caller; })()"); |
shouldThrow("(function f(arg){'use strict'; f.arguments=5; })()"); |