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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/serviceworker/chromium.fetch-request-xhr.html

Issue 2862353002: Upstream service worker `fetch` tests to WPT (Closed)
Patch Set: Rebase and resolve conflict in 'expectations' file Created 3 years, 7 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 <!-- This test is prefixed with `chromium.` because the equivalent version
3 available in Web Platform Tests is known to cause timeout errors in the
4 Chromium automated build system. See https://crbug.com/658997
5
6 Furthermore, the upstream version is more strict, and Chromium currently
7 fails it. See https://crbug.com/595993
8
9 This version should be maintained only to preserve test coverage until the
10 corresponding version in Web Platform Tests can be made to pass consistently.
11 -->
2 <title>Service Worker: the body of FetchEvent using XMLHttpRequest</title> 12 <title>Service Worker: the body of FetchEvent using XMLHttpRequest</title>
3 <script src="../resources/testharness.js"></script> 13 <script src="../resources/testharness.js"></script>
4 <script src="../resources/testharnessreport.js"></script> 14 <script src="../resources/testharnessreport.js"></script>
5 <script src="../resources/get-host-info.js?pipe=sub"></script> 15 <script src="../resources/get-host-info.js?pipe=sub"></script>
6 <script src="resources/test-helpers.js"></script> 16 <script src="resources/test-helpers.js"></script>
7 <script> 17 <script>
8 async_test(function(t) { 18 async_test(function(t) {
9 var SCOPE = 'resources/fetch-request-xhr-iframe.html'; 19 var SCOPE = 'resources/fetch-request-xhr-iframe.html';
10 var SCRIPT = 'resources/fetch-request-xhr-worker.js'; 20 var SCRIPT = 'resources/fetch-request-xhr-worker.js';
11 var host_info = get_host_info(); 21 var host_info = get_host_info();
12 service_worker_unregister_and_register(t, SCRIPT, SCOPE) 22 service_worker_unregister_and_register(t, SCRIPT, SCOPE)
13 .then(function(registration) { 23 .then(function(registration) {
14 return wait_for_state(t, registration.installing, 'activated'); 24 return wait_for_state(t, registration.installing, 'activated');
15 }) 25 })
16 .then(function() { return with_iframe(SCOPE); }) 26 .then(function() { return with_iframe(SCOPE); })
17 .then(function(frame) { 27 .then(function(frame) {
28 t.add_cleanup(function() { frame.remove(); });
18 var channel = new MessageChannel(); 29 var channel = new MessageChannel();
19 channel.port1.onmessage = t.step_func(function(e) { 30 channel.port1.onmessage = t.step_func(function(e) {
20 assert_equals(e.data.results, 'finish'); 31 assert_equals(e.data.results, 'finish');
21 frame.remove();
22 service_worker_unregister_and_done(t, SCOPE); 32 service_worker_unregister_and_done(t, SCOPE);
23 }); 33 });
24 frame.contentWindow.postMessage({}, 34 frame.contentWindow.postMessage({},
25 host_info['HTTP_ORIGIN'], 35 host_info['HTTP_ORIGIN'],
26 [channel.port2]); 36 [channel.port2]);
27 }) 37 })
28 .catch(unreached_rejection(t)); 38 .catch(unreached_rejection(t));
29 }, 'Verify the body of FetchEvent using XMLHttpRequest'); 39 }, 'Verify the body of FetchEvent using XMLHttpRequest');
30 </script> 40 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698