Reviewed by Dan Bernstein.
Remove recently added test "arobens-test" because it is invalid
https://bugs.webkit.org/show_bug.cgi?id=39555
The test below was based on a false assuption (that document.write propagates exceptions)
and was testing for incorrect behavior. The newly added fast/dom/nested-script-exceptions.html
tests for the correct behavior.
* inspector/arobens-test-expected.txt: Removed.
* inspector/arobens-test.html: Removed.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@60027
268f45cc-cd09-0410-ab3c-
d52691b4dbfc
+2010-05-22 Maciej Stachowiak <mjs@apple.com>
+
+ Reviewed by Dan Bernstein.
+
+ Remove recently added test "arobens-test" because it is invalid
+ https://bugs.webkit.org/show_bug.cgi?id=39555
+
+ The test below was based on a false assuption (that document.write propagates exceptions)
+ and was testing for incorrect behavior. The newly added fast/dom/nested-script-exceptions.html
+ tests for the correct behavior.
+
+ * inspector/arobens-test-expected.txt: Removed.
+ * inspector/arobens-test.html: Removed.
+
2010-05-22 Maciej Stachowiak <mjs@apple.com>
Reviewed by Mark Rowe.
+++ /dev/null
-This test verifies that an exception throw in host code after an intial script execution is not reported to the console if it is caught at a higher level.
-
-If the console does not say 'FAIL', the test has passed.
+++ /dev/null
-<p>This test verifies that an exception throw in host code after an intial script
-execution is not reported to the console if it is caught at a higher level.
-</p>
-
-<p>If the console does not say 'FAIL', the test has passed.</p>
-<script>
-<!--
-(function () {
- if (window.layoutTestController)
- layoutTestController.dumpAsText();
-
- try {
- document.write("<script></script>");
- document.write("<script>throw 'FAIL';</script>");
- } catch(e) {
- }
-})();
--->
-</script>