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

Unified Diff: test/webkit/fast/js/kde/exception_propagation.js

Issue 201793003: Fix WebKit and Mozilla test expectations (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Missing change Created 6 years, 9 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/mozilla/mozilla.status ('k') | test/webkit/fast/js/kde/exception_propagation-expected.txt » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: test/webkit/fast/js/kde/exception_propagation.js
diff --git a/test/webkit/fast/js/kde/exception_propagation.js b/test/webkit/fast/js/kde/exception_propagation.js
index 9d6e753bc67880c19b560694b4af06839259f24e..80ece4bad6b40d18026166ce3129fafc3d6f67e3 100644
--- a/test/webkit/fast/js/kde/exception_propagation.js
+++ b/test/webkit/fast/js/kde/exception_propagation.js
@@ -402,26 +402,6 @@ catch (e) {
shouldBe("for_val_part3_throwbody","4");
// ---------------------------------
-var forin_test_obj = new Object();
-forin_test_obj.a = 1;
-forin_test_obj.b = 2;
-forin_test_obj.c = 3;
-var forin_count = 4;
-function forin_lexpr() {
-// if (forincount == 1);
-// throwex();
- return new Object();
-}
-try {
- for (throwex() in forin_test_obj) {
- forin_count++;
- }
-}
-catch (e) {
-}
-shouldBe("forin_count","4");
-
-// ---------------------------------
var set_inside_with_throw = 4;
try {
with (throwex()) {
« no previous file with comments | « test/mozilla/mozilla.status ('k') | test/webkit/fast/js/kde/exception_propagation-expected.txt » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698