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

Side by Side Diff: third_party/WebKit/LayoutTests/http/tests/serviceworker/iso-latin1-header.html

Issue 1403773004: [Service Workers] Follow-up CL for DCHECK from WebServiceWorkerResponse. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 2 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
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/iso-latin1-header-iframe.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 <!DOCTYPE html> 1 <!DOCTYPE html>
2 <title>Service Worker: respondWith with header value containing a non ascii stri ng</title> 2 <title>Service Worker: respondWith with header value containing an ISO Latin 1 ( ISO-8859-1 Character Set) string</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.js"></script> 5 <script src="../resources/get-host-info.js"></script>
6 <script src="resources/test-helpers.js?pipe=sub"></script> 6 <script src="resources/test-helpers.js?pipe=sub"></script>
7 <script> 7 <script>
8 async_test(function(t) { 8 async_test(function(t) {
9 var SCOPE = 'resources/iso-latin1-header-iframe.html'; 9 var SCOPE = 'resources/iso-latin1-header-iframe.html';
10 var SCRIPT = 'resources/iso-latin1-header-worker.js'; 10 var SCRIPT = 'resources/iso-latin1-header-worker.js';
11 var host_info = get_host_info(); 11 var host_info = get_host_info();
12 service_worker_unregister_and_register(t, SCRIPT, SCOPE) 12 service_worker_unregister_and_register(t, SCRIPT, SCOPE)
13 .then(function(registration) { 13 .then(function(registration) {
14 return wait_for_state(t, registration.installing, 'activated'); 14 return wait_for_state(t, registration.installing, 'activated');
15 }) 15 })
16 .then(function() { return with_iframe(SCOPE); }) 16 .then(function() { return with_iframe(SCOPE); })
17 .then(function(frame) { 17 .then(function(frame) {
18 var channel = new MessageChannel(); 18 var channel = new MessageChannel();
19 channel.port1.onmessage = t.step_func(function(e) { 19 channel.port1.onmessage = t.step_func(function(e) {
20 assert_equals(e.data.results, 'finish'); 20 assert_equals(e.data.results, 'finish');
21 frame.remove(); 21 frame.remove();
22 service_worker_unregister_and_done(t, SCOPE); 22 service_worker_unregister_and_done(t, SCOPE);
23 }); 23 });
24 frame.contentWindow.postMessage({}, 24 frame.contentWindow.postMessage({},
25 host_info['HTTP_ORIGIN'], 25 host_info['HTTP_ORIGIN'],
26 [channel.port2]); 26 [channel.port2]);
27 }) 27 })
28 .catch(unreached_rejection(t)); 28 .catch(unreached_rejection(t));
29 }, 'Verify the response of FetchEvent using XMLHttpRequest'); 29 }, 'Verify the response of FetchEvent using XMLHttpRequest');
30 30
31 </script> 31 </script>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/iso-latin1-header-iframe.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698