Index: LayoutTests/fast/harness/expected-error-in-async-test.html |
diff --git a/LayoutTests/fast/harness/expected-error-in-async-test.html b/LayoutTests/fast/harness/expected-error-in-async-test.html |
new file mode 100644 |
index 0000000000000000000000000000000000000000..61987366316cc033f0d0ba6276104ecf392b5ff8 |
--- /dev/null |
+++ b/LayoutTests/fast/harness/expected-error-in-async-test.html |
@@ -0,0 +1,26 @@ |
+<!DOCTYPE html> |
+ |
+<script src="../../resources/js-test.js"></script> |
+<script> |
+description('Test that the window.onerror handler in resources/js-test.js ' + |
+ 'stops asynchronous tests'); |
+ |
+function errorThrower() |
+{ |
+ setTimeout(errorExpecter, 0); |
+ debug("Throwing an expected error"); |
+ throw new Error("An expected error"); |
+} |
+ |
+function errorExpecter() |
+{ |
+ shouldHaveHadError("expected error"); |
+ finishJSTest(); |
+} |
+ |
+window.jsTestIsAsync = true; |
+debug("Will throw an error soon"); |
+expectError(); |
+setTimeout(errorThrower, 0); |
+</script> |
+ |