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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/serviceworker/onactivate-script-error.html

Issue 2873373004: Remove duplicate service worker test (Closed)
Patch Set: Un-register workers following test completion Created 3 years, 7 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: third_party/WebKit/LayoutTests/http/tests/serviceworker/onactivate-script-error.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/serviceworker/onactivate-script-error.html b/third_party/WebKit/LayoutTests/http/tests/serviceworker/onactivate-script-error.html
deleted file mode 100644
index bbe028e8ef288f9abe073a6d9d6e88bc530aaeed..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/serviceworker/onactivate-script-error.html
+++ /dev/null
@@ -1,68 +0,0 @@
-<!DOCTYPE html>
-<script src="../resources/testharness.js"></script>
-<script src="../resources/testharnessreport.js"></script>
-<script src="resources/test-helpers.js"></script>
-<script>
-function wait_for_install(worker) {
- return new Promise(function(resolve, reject) {
- worker.addEventListener('statechange', function(event) {
- if (worker.state == 'installed')
- resolve();
- else if (worker.state == 'redundant')
- reject();
- });
- });
-}
-
-function wait_for_activate(worker) {
- return new Promise(function(resolve, reject) {
- worker.addEventListener('statechange', function(event) {
- if (worker.state == 'activated')
- resolve();
- else if (worker.state == 'redundant')
- reject();
- });
- });
-}
-
-function make_test(name, script) {
- promise_test(function(t) {
- var scope = script;
- var registration;
- return service_worker_unregister_and_register(t, script, scope)
- .then(function(r) {
- registration = r;
- return wait_for_install(registration.installing);
- })
- .then(function() {
- // Activate should succeed regardless of script errors.
- return wait_for_activate(registration.waiting);
- });
- }, name);
-}
-
-[
- {
- name: 'activate handler throws an error',
- script: 'resources/onactivate-throw-error-worker.js',
- },
- {
- name: 'activate handler throws an error, error handler does not cancel',
- script: 'resources/onactivate-throw-error-with-empty-onerror-worker.js',
- },
- {
- name: 'activate handler dispatches an event that throws an error',
- script: 'resources/onactivate-throw-error-from-nested-event-worker.js',
- },
- {
- name: 'activate handler throws an error that is cancelled',
- script: 'resources/onactivate-throw-error-then-cancel-worker.js',
- },
- {
- name: 'activate handler throws an error and prevents default',
- script: 'resources/onactivate-throw-error-then-prevent-default-worker.js',
- }
-].forEach(function(test_case) {
- make_test(test_case.name, test_case.script);
- });
-</script>

Powered by Google App Engine
This is Rietveld 408576698