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

Unified Diff: test/webkit/fast/js/stack-overflow-arrity-catch.js

Issue 21173004: Version 3.20.11.1 (Closed) Base URL: https://v8.googlecode.com/svn/trunk
Patch Set: 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: test/webkit/fast/js/stack-overflow-arrity-catch.js
diff --git a/test/webkit/fast/js/stack-overflow-arrity-catch.js b/test/webkit/fast/js/stack-overflow-arrity-catch.js
index f36512adbb835d50431a84e4b7cff97b38953ff0..4cbcbbfb6e2592158c2c36ef7de3dc2bac110d13 100644
--- a/test/webkit/fast/js/stack-overflow-arrity-catch.js
+++ b/test/webkit/fast/js/stack-overflow-arrity-catch.js
@@ -42,8 +42,6 @@ function test1()
try {
var dummy = new RegExp('a|b|c');
} catch(err) {
- // (1) It is dendent on the stack size if we arrive here, in (2) or
- // both.
gotWrongCatch1 = true;
}
@@ -60,8 +58,6 @@ function test2()
try {
var dummy = new Date();
} catch(err) {
- // (2) It is dendent on the stack size if we arrive here, in (1) or
- // both.
gotWrongCatch2 = true;
}
@@ -81,3 +77,5 @@ function test2()
test1();
shouldBeTrue("gotRightCatch");
+shouldBeFalse("gotWrongCatch1");
+shouldBeFalse("gotWrongCatch2");
« no previous file with comments | « test/webkit/fast/js/kde/var_decl_init-expected.txt ('k') | test/webkit/fast/js/stack-overflow-arrity-catch-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698