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

Unified Diff: LayoutTests/http/tests/serviceworker/resources/fetch-worker.js

Issue 505063002: ServiceWorker: throw when close() or terminate() called (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Add infinite fetch loop Created 6 years, 4 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/http/tests/serviceworker/resources/fetch-worker.js
diff --git a/LayoutTests/http/tests/serviceworker/resources/fetch-worker.js b/LayoutTests/http/tests/serviceworker/resources/fetch-worker.js
index 7f5d401c3f0a3e618eefac237f462b0fb9ee5b2c..b086a961b7b1a16add8165aecd62e0ef1579296a 100644
--- a/LayoutTests/http/tests/serviceworker/resources/fetch-worker.js
+++ b/LayoutTests/http/tests/serviceworker/resources/fetch-worker.js
@@ -15,12 +15,19 @@ var testTargets = [
];
function doNextFetchTest(port) {
+
+ function runInfiniteFetchLoop() {
+ fetch('dummy.html')
+ .then(function() { runInfiniteFetchLoop(); });
+ }
+
if (testTargets.length == 0) {
- port.postMessage('quit');
- // Destroying the execution context while fetch is happening should not cause a crash.
- fetch('dummy.html').then(function() {}).catch(function() {});
- self.close();
- return;
+ // Destroying the execution context while fetch is happening
+ // should not cause a crash.
+ runInfiniteFetchLoop();
+
+ port.postMessage('quit');
+ return;
}
var target = testTargets.shift();
fetch(target)

Powered by Google App Engine
This is Rietveld 408576698