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

Side by Side Diff: third_party/WebKit/LayoutTests/external/wpt/service-workers/service-worker/xhr.https.html

Issue 2695813009: Import wpt@503f5b5f78ec4e87d144f78609f363f0ed0ea8db (Closed)
Patch Set: Skip some tests Created 3 years, 10 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
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <title>Service Worker: XHR doesn't exist</title> 2 <title>Service Worker: XHR doesn't exist</title>
3 <script src="/resources/testharness.js"></script> 3 <script src="/resources/testharness.js"></script>
4 <script src="/resources/testharnessreport.js"></script> 4 <script src="/resources/testharnessreport.js"></script>
5 <script src="resources/get-host-info.sub.js"></script> 5 <script src="/common/get-host-info.sub.js"></script>
6 <script src="resources/test-helpers.sub.js?pipe=sub"></script> 6 <script src="resources/test-helpers.sub.js?pipe=sub"></script>
7 <script> 7 <script>
8 8
9 async_test(function(t) { 9 async_test(function(t) {
10 var path = new URL(".", window.location).pathname 10 var path = new URL(".", window.location).pathname
11 var url = 'resources/xhr.js'; 11 var url = 'resources/xhr.js';
12 var scope = 'resources/blank.html?xhr'; 12 var scope = 'resources/blank.html?xhr';
13 var host_info = get_host_info(); 13 var host_info = get_host_info();
14 var frameURL = host_info['HTTPS_ORIGIN'] + path + scope; 14 var frameURL = host_info['HTTPS_ORIGIN'] + path + scope;
15 15
(...skipping 10 matching lines...) Expand all
26 service_worker_unregister_and_done(t, scope); 26 service_worker_unregister_and_done(t, scope);
27 } 27 }
28 var channel = new MessageChannel(); 28 var channel = new MessageChannel();
29 channel.port1.onmessage = t.step_func(onMessage); 29 channel.port1.onmessage = t.step_func(onMessage);
30 frame.contentWindow.navigator.serviceWorker.controller.postMessage({po rt: channel.port2}, [channel.port2]); 30 frame.contentWindow.navigator.serviceWorker.controller.postMessage({po rt: channel.port2}, [channel.port2]);
31 }) 31 })
32 }) 32 })
33 .catch(unreached_rejection(t)); 33 .catch(unreached_rejection(t));
34 }, 'Verify XHR does not exist'); 34 }, 'Verify XHR does not exist');
35 </script> 35 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698