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

Unified Diff: LayoutTests/http/tests/serviceworker/serviceworkerobject-terminate.html

Issue 515323002: Revert of ServiceWorker: throw when close() or terminate() called (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: 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/serviceworkerobject-terminate.html
diff --git a/LayoutTests/http/tests/serviceworker/serviceworkerobject-terminate.html b/LayoutTests/http/tests/serviceworker/serviceworkerobject-terminate.html
deleted file mode 100644
index f134814701252766873de0aeb321814cb354408c..0000000000000000000000000000000000000000
--- a/LayoutTests/http/tests/serviceworker/serviceworkerobject-terminate.html
+++ /dev/null
@@ -1,24 +0,0 @@
-<!DOCTYPE html>
-<title>ServiceWorker object: terminate operation</title>
-<script src="../resources/testharness.js"></script>
-<script src="../resources/testharnessreport.js"></script>
-<script src="resources/test-helpers.js"></script>
-<script>
-
-async_test(function(t) {
- var worker = 'resources/empty-worker.js';
- var scope = 'resources/blank.html';
- service_worker_unregister_and_register(t, worker, scope)
- .then(t.step_func(function(registration) {
- return wait_for_update(t, registration);
- }))
- .then(t.step_func(function(worker) {
- assert_throws({name: 'InvalidAccessError'}, function() {
- worker.terminate();
- });
- return service_worker_unregister_and_done(t, scope);
- }))
- .catch(t.step_func(function(e) { throw e; }));
-}, 'Verify the terminate operation');
-
-</script>

Powered by Google App Engine
This is Rietveld 408576698