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

Side by Side Diff: third_party/WebKit/LayoutTests/imported/wpt/workers/constructors/Worker/no-arguments-ctor.html

Issue 2420483004: Revert of Worker: Import "imported/wpt/workers" tests (Closed)
Patch Set: Fix merge error 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 <!doctype html>
2 <meta charset=utf-8>
3 <title>without arguments</title>
4 <link rel=help href="http://dev.w3.org/2006/webapi/WebIDL/#es-interface-call">
5 <link rel=help href="http://www.whatwg.org/html/#dedicated-workers-and-the-worke r-interface">
6 <script src="/resources/testharness.js"></script>
7 <script src="/resources/testharnessreport.js"></script>
8 <div id="log"></div>
9 <script>
10 test(function() {
11 assert_throws(new TypeError(), function() { new Worker(); });
12 });
13 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698