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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/workers/constructors/Worker/ctor-null.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 postMessage('FAIL');
3 /*
4 -->
5 <!doctype html>
6 <title>null as argument</title>
7 <link rel=help href="http://www.whatwg.org/html/#dom-worker">
8 <link rel=help href="http://dev.w3.org/2006/webapi/WebIDL/#es-DOMString">
9 <script src="/resources/testharness.js"></script>
10 <script src="/resources/testharnessreport.js"></script>
11 <div id="log"></div>
12 <script>
13 var t = async_test();
14 t.step(function() {
15 var worker = new Worker(null);
16 worker.addEventListener('message', t.step_func_done(function(e) {
17 assert_equals(e.data, 'null')
18 }), false);
19 });
20 </script>
21 <!--
22 */
23 //-->
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698