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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/fetch/nosniff/worker.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 var workers = [],
6 fails = ["", "?type=", "?type=x", "?type=x/x"],
7 passes = ["?type=text/javascript", "?type=text/ecmascript", "?type=text/ec mascript;yay"]
8
9 fails.forEach(function(urlpart) {
10 async_test(function(t) {
11 var w = new Worker("resources/worker.py" + urlpart)
12 w.onmessage = t.unreached_func("Unexpected message event")
13 w.onerror = t.step_func_done(function(){})
14 workers.push(w) // avoid GC
15 }, "URL query: " + urlpart)
16 })
17
18 passes.forEach(function(urlpart) {
19 async_test(function(t) {
20 var w = new Worker("resources/worker.py" + urlpart)
21 w.onmessage = t.step_func_done(function(e){
22 assert_equals(e.data, "hi")
23 })
24 w.onerror = t.unreached_func("Unexpected error event")
25 workers.push(w) // avoid GC
26 }, "URL query: " + urlpart)
27 })
28 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698