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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/fetch/nosniff/importscripts.html

Issue 2778753002: Import //fetch from Web Platform Tests. (Closed)
Patch Set: Baselines. Created 3 years, 8 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 <script src=/resources/testharness.js></script>
2 <script src=/resources/testharnessreport.js></script>
3 <div id=log></div>
4 <script>
5 async_test(function(t) {
6 var w = new Worker("importscripts.js")
7 w.onmessage = t.step_func(function(e) {
8 if(e.data == "END")
9 t.done()
10 else
11 assert_equals(e.data, "PASS")
12 })
13 }, "Test importScripts()")
14 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698