OLD | NEW |
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(); | |
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 Loading... |
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 } |
OLD | NEW |