summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/infrastructure/expected-fail
diff options
context:
space:
mode:
authorDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
committerDaniel Baumann <daniel.baumann@progress-linux.org>2024-04-07 17:32:43 +0000
commit6bf0a5cb5034a7e684dcc3500e841785237ce2dd (patch)
treea68f146d7fa01f0134297619fbe7e33db084e0aa /testing/web-platform/tests/infrastructure/expected-fail
parentInitial commit. (diff)
downloadthunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.tar.xz
thunderbird-6bf0a5cb5034a7e684dcc3500e841785237ce2dd.zip
Adding upstream version 1:115.7.0.upstream/1%115.7.0upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/infrastructure/expected-fail')
-rw-r--r--testing/web-platform/tests/infrastructure/expected-fail/failing-test.html10
-rw-r--r--testing/web-platform/tests/infrastructure/expected-fail/timeout.html8
-rw-r--r--testing/web-platform/tests/infrastructure/expected-fail/uncaught-exception-following-subtest.html9
-rw-r--r--testing/web-platform/tests/infrastructure/expected-fail/uncaught-exception-single-test.html9
-rw-r--r--testing/web-platform/tests/infrastructure/expected-fail/uncaught-exception.html8
-rw-r--r--testing/web-platform/tests/infrastructure/expected-fail/unhandled-rejection-following-subtest.html11
-rw-r--r--testing/web-platform/tests/infrastructure/expected-fail/unhandled-rejection-single-test.html9
-rw-r--r--testing/web-platform/tests/infrastructure/expected-fail/unhandled-rejection.html8
8 files changed, 72 insertions, 0 deletions
diff --git a/testing/web-platform/tests/infrastructure/expected-fail/failing-test.html b/testing/web-platform/tests/infrastructure/expected-fail/failing-test.html
new file mode 100644
index 0000000000..249099c06f
--- /dev/null
+++ b/testing/web-platform/tests/infrastructure/expected-fail/failing-test.html
@@ -0,0 +1,10 @@
+<!DOCTYPE html>
+<meta charset=utf-8>
+<title>Failing test</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script>
+test(function() {
+ assert_unreached("Expected failure");
+});
+</script>
diff --git a/testing/web-platform/tests/infrastructure/expected-fail/timeout.html b/testing/web-platform/tests/infrastructure/expected-fail/timeout.html
new file mode 100644
index 0000000000..29ff348a9a
--- /dev/null
+++ b/testing/web-platform/tests/infrastructure/expected-fail/timeout.html
@@ -0,0 +1,8 @@
+<!DOCTYPE html>
+<meta charset=utf-8>
+<title>Test that should time out</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script>
+async_test()
+</script>
diff --git a/testing/web-platform/tests/infrastructure/expected-fail/uncaught-exception-following-subtest.html b/testing/web-platform/tests/infrastructure/expected-fail/uncaught-exception-following-subtest.html
new file mode 100644
index 0000000000..ed95c60328
--- /dev/null
+++ b/testing/web-platform/tests/infrastructure/expected-fail/uncaught-exception-following-subtest.html
@@ -0,0 +1,9 @@
+<!DOCTYPE html>
+<meta charset=utf-8>
+<title>Uncaught exception following subtest</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script>
+test(function() {});
+throw new Error("error outside any setup or test");
+</script>
diff --git a/testing/web-platform/tests/infrastructure/expected-fail/uncaught-exception-single-test.html b/testing/web-platform/tests/infrastructure/expected-fail/uncaught-exception-single-test.html
new file mode 100644
index 0000000000..4f88704cad
--- /dev/null
+++ b/testing/web-platform/tests/infrastructure/expected-fail/uncaught-exception-single-test.html
@@ -0,0 +1,9 @@
+<!DOCTYPE html>
+<meta charset=utf-8>
+<title>Uncaught exception in single-page test</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script>
+setup({ single_test: true });
+throw new Error("error outside any setup or test");
+</script>
diff --git a/testing/web-platform/tests/infrastructure/expected-fail/uncaught-exception.html b/testing/web-platform/tests/infrastructure/expected-fail/uncaught-exception.html
new file mode 100644
index 0000000000..4442d51375
--- /dev/null
+++ b/testing/web-platform/tests/infrastructure/expected-fail/uncaught-exception.html
@@ -0,0 +1,8 @@
+<!DOCTYPE html>
+<meta charset=utf-8>
+<title>Uncaught exception</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script>
+throw new Error("error outside any setup or test");
+</script>
diff --git a/testing/web-platform/tests/infrastructure/expected-fail/unhandled-rejection-following-subtest.html b/testing/web-platform/tests/infrastructure/expected-fail/unhandled-rejection-following-subtest.html
new file mode 100644
index 0000000000..d8cab6d910
--- /dev/null
+++ b/testing/web-platform/tests/infrastructure/expected-fail/unhandled-rejection-following-subtest.html
@@ -0,0 +1,11 @@
+<!DOCTYPE html>
+<meta charset=utf-8>
+<title>Unhandled rejection following subtest</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script>
+setup({ explicit_done: true });
+window.addEventListener('unhandledrejection', () => { done(); }, {once: true});
+test(function() {});
+Promise.reject(new Error("error outside any setup or test"));
+</script>
diff --git a/testing/web-platform/tests/infrastructure/expected-fail/unhandled-rejection-single-test.html b/testing/web-platform/tests/infrastructure/expected-fail/unhandled-rejection-single-test.html
new file mode 100644
index 0000000000..925787191c
--- /dev/null
+++ b/testing/web-platform/tests/infrastructure/expected-fail/unhandled-rejection-single-test.html
@@ -0,0 +1,9 @@
+<!DOCTYPE html>
+<meta charset=utf-8>
+<title>Unhandled rejection in single-page test</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script>
+setup({ single_test: true });
+Promise.reject(new Error("error outside any setup or test"));
+</script>
diff --git a/testing/web-platform/tests/infrastructure/expected-fail/unhandled-rejection.html b/testing/web-platform/tests/infrastructure/expected-fail/unhandled-rejection.html
new file mode 100644
index 0000000000..f25f6e088f
--- /dev/null
+++ b/testing/web-platform/tests/infrastructure/expected-fail/unhandled-rejection.html
@@ -0,0 +1,8 @@
+<!DOCTYPE html>
+<meta charset=utf-8>
+<title>Unhandled rejection</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script>
+Promise.reject(new Error("error outside any setup or test"));
+</script>