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

Unified Diff: third_party/WebKit/LayoutTests/imported/wpt/service-workers/service-worker/resources/install-event-type-worker.js

Issue 2415873002: Import w3c tests for the service workers (Closed)
Patch Set: Rebase Created 4 years, 2 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/imported/wpt/service-workers/service-worker/resources/install-event-type-worker.js
diff --git a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/install-event-type-worker.js b/third_party/WebKit/LayoutTests/imported/wpt/service-workers/service-worker/resources/install-event-type-worker.js
similarity index 83%
copy from third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/install-event-type-worker.js
copy to third_party/WebKit/LayoutTests/imported/wpt/service-workers/service-worker/resources/install-event-type-worker.js
index 6f936a0063e159667202ded493ac6532624a48d5..d729afa090cfd7c927525b22d0012896d5988a3c 100644
--- a/third_party/WebKit/LayoutTests/http/tests/serviceworker/resources/install-event-type-worker.js
+++ b/third_party/WebKit/LayoutTests/imported/wpt/service-workers/service-worker/resources/install-event-type-worker.js
@@ -2,7 +2,6 @@ importScripts('worker-testharness.js');
self.oninstall = function(event) {
assert_true(event instanceof ExtendableEvent);
- assert_true(event instanceof InstallEvent);
assert_equals(event.type, 'install');
assert_false(event.cancelable);
assert_false(event.bubbles);

Powered by Google App Engine
This is Rietveld 408576698