summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/workers/interfaces/WorkerUtils/WindowTimers/005.html
diff options
context:
space:
mode:
Diffstat (limited to 'testing/web-platform/tests/workers/interfaces/WorkerUtils/WindowTimers/005.html')
-rw-r--r--testing/web-platform/tests/workers/interfaces/WorkerUtils/WindowTimers/005.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/testing/web-platform/tests/workers/interfaces/WorkerUtils/WindowTimers/005.html b/testing/web-platform/tests/workers/interfaces/WorkerUtils/WindowTimers/005.html
new file mode 100644
index 0000000000..2a181d55d0
--- /dev/null
+++ b/testing/web-platform/tests/workers/interfaces/WorkerUtils/WindowTimers/005.html
@@ -0,0 +1,14 @@
+<!doctype html>
+<title>setInterval when closing</title>
+<script src="/resources/testharness.js"></script>
+<script src="/resources/testharnessreport.js"></script>
+<div id=log></div>
+<script>
+async_test(function() {
+ var worker = new Worker('005.js');
+ worker.onmessage = this.step_func(function(e) {
+ assert_equals(e.data, 1);
+ this.done();
+ });
+});
+</script> \ No newline at end of file