summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/harness/test/testdata/testharness/testharness_long_timeout.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/harness/test/testdata/testharness/testharness_long_timeout.html')
-rw-r--r--testing/web-platform/harness/test/testdata/testharness/testharness_long_timeout.html9
1 files changed, 9 insertions, 0 deletions
diff --git a/testing/web-platform/harness/test/testdata/testharness/testharness_long_timeout.html b/testing/web-platform/harness/test/testdata/testharness/testharness_long_timeout.html
new file mode 100644
index 000000000..fc94e055b
--- /dev/null
+++ b/testing/web-platform/harness/test/testdata/testharness/testharness_long_timeout.html
@@ -0,0 +1,9 @@
+<!doctype html>
+<title>testharness.js test with long timeout</title>
+<meta name=timeout content=long>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<script>
+var t = async_test("Long timeout test");
+setTimeout(t.step_func_done(function() {assert_true(true)}), 15*1000);
+</script> \ No newline at end of file