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

Side by Side Diff: LayoutTests/http/tests/serviceworker/resources/fetch-body-stream-worker.js

Issue 505063002: ServiceWorker: throw when close() or terminate() called (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Remove uses of 'close' within fetch tests Created 6 years, 3 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 | Annotate | Revision Log
OLDNEW
1 self.onmessage = function(e) { 1 self.onmessage = function(e) {
2 var message = e.data; 2 var message = e.data;
3 if ('port' in message) { 3 if ('port' in message) {
4 port = message.port; 4 port = message.port;
5 doTextTest(port); 5 doTextTest(port);
6 } 6 }
7 }; 7 };
8 8
9 function quit(port) { 9 function quit(port) {
10 port.postMessage('quit'); 10 port.postMessage('quit');
11 self.close();
horo 2014/08/27 02:24:50 It is ok to remove self.close() from fetch-body-st
12 } 11 }
13 12
14 function doFetchTwiceTest(port) { 13 function doFetchTwiceTest(port) {
15 var p1Out = p2Out = null; 14 var p1Out = p2Out = null;
16 15
17 fetch('doctype.html') 16 fetch('doctype.html')
18 .then(function(response) { 17 .then(function(response) {
19 var p1 = response.body.asText(); 18 var p1 = response.body.asText();
20 var p2 = response.body.asText(); 19 var p2 = response.body.asText();
21 20
(...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
85 84
86 function doTextTest(port) { 85 function doTextTest(port) {
87 fetch('doctype.html') 86 fetch('doctype.html')
88 .then(function(response) { 87 .then(function(response) {
89 response.body.asText() 88 response.body.asText()
90 .then(function(txt) { 89 .then(function(txt) {
91 port.postMessage('Text: ' + txt); 90 port.postMessage('Text: ' + txt);
92 doJSONTest(port); 91 doJSONTest(port);
93 }); 92 });
94 }); 93 });
95 } 94 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698