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 doNextFetchTest(port); | 5 doNextFetchTest(port); |
6 } | 6 } |
7 }; | 7 }; |
8 | 8 |
9 var testTargets = [ | 9 var testTargets = [ |
10 'other.html', | 10 'other.html', |
11 'http://', | 11 'http://', |
12 'http://www.example.com/foo', | 12 'http://www.example.com/foo', |
13 'fetch-status.php?status=200', | 13 'fetch-status.php?status=200', |
14 'fetch-status.php?status=404' | 14 'fetch-status.php?status=404' |
15 ]; | 15 ]; |
16 | 16 |
17 function doNextFetchTest(port) { | 17 function doNextFetchTest(port) { |
| 18 |
| 19 function runInfiniteFetchLoop() { |
| 20 fetch('dummy.html') |
| 21 .then(function() { runInfiniteFetchLoop(); }); |
| 22 } |
| 23 |
18 if (testTargets.length == 0) { | 24 if (testTargets.length == 0) { |
19 port.postMessage('quit'); | 25 // Destroying the execution context while fetch is happening |
20 // Destroying the execution context while fetch is happening should not
cause a crash. | 26 // should not cause a crash. |
21 fetch('dummy.html').then(function() {}).catch(function() {}); | 27 runInfiniteFetchLoop(); |
22 self.close(); | 28 |
23 return; | 29 port.postMessage('quit'); |
| 30 return; |
24 } | 31 } |
25 var target = testTargets.shift(); | 32 var target = testTargets.shift(); |
26 fetch(target) | 33 fetch(target) |
27 .then(function(response) { | 34 .then(function(response) { |
28 port.postMessage('Resolved: ' + target + ' [' + response.status + ']' +
response.statusText); | 35 port.postMessage('Resolved: ' + target + ' [' + response.status + ']' +
response.statusText); |
29 doNextFetchTest(port); | 36 doNextFetchTest(port); |
30 }).catch(function(e) { | 37 }).catch(function(e) { |
31 port.postMessage('Rejected: ' + target + ' : '+ e.message); | 38 port.postMessage('Rejected: ' + target + ' : '+ e.message); |
32 doNextFetchTest(port); | 39 doNextFetchTest(port); |
33 }); | 40 }); |
34 }; | 41 }; |
OLD | NEW |