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

Unified Diff: LayoutTests/http/tests/notifications/service-worker-show-notification-click.html

Issue 789643003: The Service Worker notificationclick event should carry a notification. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: add missing file Created 6 years 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/notifications/service-worker-show-notification-click.html
diff --git a/LayoutTests/http/tests/notifications/service-worker-show-notification-click.html b/LayoutTests/http/tests/notifications/service-worker-show-notification-click.html
index 132e67d3aecd591d74e05e40bc9aef0bfbdc186d..4bcc26dbd3b81c3a6a76bbfbe2916703d2568ed5 100644
--- a/LayoutTests/http/tests/notifications/service-worker-show-notification-click.html
+++ b/LayoutTests/http/tests/notifications/service-worker-show-notification-click.html
@@ -47,7 +47,7 @@
});
}).then(function () {
messagePort.addEventListener('message', function(event) {
- assert_equals(event.data, 'The notification has been clicked on.');
+ assert_equals(event.data, 'Clicked on Notification: ' + scope);
test.done();
});

Powered by Google App Engine
This is Rietveld 408576698