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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/workers/constructors/SharedWorker/no-arguments-ctor.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 /*
3 -->
4 <!doctype html>
5 <title>no arguments</title>
6 <link rel=help href="http://www.whatwg.org/html/#sharedworker">
7 <link rel=help href="http://dev.w3.org/2006/webapi/WebIDL/#es-interface-call">
8 <script src="/resources/testharness.js"></script>
9 <script src="/resources/testharnessreport.js"></script>
10 <div id="log"></div>
11 <script>
12 test(function() {
13 assert_throws(new TypeError(), function() {
14 var worker = new SharedWorker();
15 });
16 });
17 </script>
18 <!--
19 */
20 //-->
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698