Chromium Code Reviews| 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(); |
|
Michael Starzinger
2014/03/17 11:50:35
Better adapt the expected output instead of changi
rossberg
2014/03/17 12:00:16
Doesn't work, unfortunately, because the whole fil
|
| -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()) { |