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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/serviceworker/request-end-to-end.html

Issue 1391583002: Introduce "navigate" mode in Requests (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 1 month 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: FetchEvent.request passed to onfetch</title> 2 <title>Service Worker: FetchEvent.request passed to onfetch</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/test-helpers.js"></script> 5 <script src="resources/test-helpers.js"></script>
6 <script> 6 <script>
7 promise_test(t => { 7 promise_test(t => {
8 var url = 'resources/request-end-to-end-worker.js'; 8 var url = 'resources/request-end-to-end-worker.js';
9 var scope = 'resources/blank.html'; 9 var scope = 'resources/blank.html';
10 return service_worker_unregister_and_register(t, url, scope) 10 return service_worker_unregister_and_register(t, url, scope)
11 .then(r => { 11 .then(r => {
12 add_completion_callback(() => { r.unregister(); }); 12 add_completion_callback(() => { r.unregister(); });
13 return wait_for_state(t, r.installing, 'activated'); 13 return wait_for_state(t, r.installing, 'activated');
14 }) 14 })
15 .then(() => { return with_iframe(scope); }) 15 .then(() => { return with_iframe(scope); })
16 .then(frame => { 16 .then(frame => {
17 add_completion_callback(() => { frame.remove(); }); 17 add_completion_callback(() => { frame.remove(); });
18 18
19 var result = JSON.parse(frame.contentDocument.body.textContent); 19 var result = JSON.parse(frame.contentDocument.body.textContent);
20 assert_equals(result.url, frame.src, 'request.url'); 20 assert_equals(result.url, frame.src, 'request.url');
21 assert_equals(result.method, 'GET', 'request.method'); 21 assert_equals(result.method, 'GET', 'request.method');
22 assert_equals(result.referrer, location.href, 'request.referrer'); 22 assert_equals(result.referrer, location.href, 'request.referrer');
23 assert_equals(result.mode, 'same-origin', 'request.mode'); 23 assert_equals(result.mode, 'navigate', 'request.mode');
hiroshige 2015/11/13 11:45:24 Here (or in http/tests/serviceworker/fetch-request
shiva.jm 2015/11/16 10:08:01 Done.
24 assert_equals(result.credentials, 'include', 'request.credentials'); 24 assert_equals(result.credentials, 'include', 'request.credentials');
25 assert_equals(result.redirect, 'manual', 'request.redirect'); 25 assert_equals(result.redirect, 'manual', 'request.redirect');
26 assert_equals(result.headers['user-agent'], navigator.userAgent, 26 assert_equals(result.headers['user-agent'], navigator.userAgent,
27 'User-Agent header'); 27 'User-Agent header');
28 assert_equals(result.append_header_error, 'TypeError', 28 assert_equals(result.append_header_error, 'TypeError',
29 'Appending a new header to the request must throw a ' + 29 'Appending a new header to the request must throw a ' +
30 'TypeError.') 30 'TypeError.')
31 }); 31 });
32 }, 'Test FetchEvent.request passed to onfetch'); 32 }, 'Test FetchEvent.request passed to onfetch');
33 </script> 33 </script>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698