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

Unified Diff: third_party/WebKit/LayoutTests/http/tests/serviceworker/postmessage-to-client.html

Issue 2875383002: Upstream service worker `postMessage` tests to WPT (Closed)
Patch Set: Incorporate review feedback 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/postmessage-to-client.html
diff --git a/third_party/WebKit/LayoutTests/http/tests/serviceworker/postmessage-to-client.html b/third_party/WebKit/LayoutTests/http/tests/serviceworker/postmessage-to-client.html
deleted file mode 100644
index 4862f47ebcd89ea781bd62492744bfc229b3d9c9..0000000000000000000000000000000000000000
--- a/third_party/WebKit/LayoutTests/http/tests/serviceworker/postmessage-to-client.html
+++ /dev/null
@@ -1,50 +0,0 @@
-<!DOCTYPE html>
-<title>Service Worker: postMessage to Client</title>
-<script src="../resources/testharness.js"></script>
-<script src="../resources/testharnessreport.js"></script>
-<script src="resources/test-helpers.js"></script>
-<script>
-
-promise_test(t => {
- var script = 'resources/postmessage-to-client-worker.js';
- var scope = 'resources/blank.html';
- var w;
-
- return service_worker_unregister_and_register(t, script, scope)
- .then(registration => {
- add_completion_callback(() => registration.unregister());
- return wait_for_state(t, registration.installing, 'activated');
- })
- .then(() => with_iframe(scope))
- .then(frame => {
- return new Promise(resolve => {
- w = frame.contentWindow;
- w.navigator.serviceWorker.onmessage = resolve;
- w.navigator.serviceWorker.controller.postMessage('ping');
- });
- })
- .then(e => {
- var message = e.data;
- assert_equals(e.constructor, w.MessageEvent,
- 'message events should use MessageEvent interface.');
- assert_equals(e.type, 'message', 'type should be "message".');
- assert_equals(
- e.origin, location.origin,
- 'origin of message should be origin of Service Worker.');
- assert_equals(e.lastEventId, '',
- 'lastEventId should be an empty string.');
- assert_equals(e.source.constructor, w.ServiceWorker,
- 'source should use ServiceWorker interface.');
- assert_equals(
- e.source, w.navigator.serviceWorker.controller,
- 'source should be the service worker that sent the message.');
- assert_equals(e.ports.length, 0, 'ports should be an empty array.');
- assert_equals(message, 'Sending message via clients');
- return new Promise(resolve => {
- w.navigator.serviceWorker.onmessage = resolve;
- });
- })
- .then(e => { assert_equals(e.data, 'quit'); });
- }, 'postMessage from ServiceWorker to Client.');
-
-</script>

Powered by Google App Engine
This is Rietveld 408576698