Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(400)

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/workers/interfaces/WorkerUtils/WindowTimers/004.html

Issue 2418853003: Worker: Import "imported/wpt/workers" tests (Retry) (Closed)
Patch Set: rebase Created 4 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1 <!--
2 var t = setInterval(function() {
3 postMessage(1);
4 }, 10);
5 clearInterval(t);
6 /*
7 -->
8 <!doctype html>
9 <title>clearInterval</title>
10 <script src="/resources/testharness.js"></script>
11 <script src="/resources/testharnessreport.js"></script>
12 <div id=log></div>
13 <script>
14 async_test(function() {
15 var worker = new Worker('#');
16 var i = 0;
17 worker.onmessage = function() { i++; }
18 setTimeout(this.step_func(function() { assert_equals(i, 0); this.done(); }), 1 00);
19 });
20 </script>
21 <!--
22 */
23 //-->
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698