From 0f30fe4b6ae26b4797272926318c31b1f07acc20 Mon Sep 17 00:00:00 2001 From: Kirill Burtsev Date: Wed, 27 Feb 2019 19:02:50 +0100 Subject: Notification API cleanup: direction type, parameter and method names Change-Id: I0349f3eea0028a4df917af8599c073227e0d0ec1 Reviewed-by: Allan Sandfeld Jensen --- tests/auto/shared/data/notification.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/auto/shared/data/notification.html') diff --git a/tests/auto/shared/data/notification.html b/tests/auto/shared/data/notification.html index cadcbd942..1d1e9c411 100644 --- a/tests/auto/shared/data/notification.html +++ b/tests/auto/shared/data/notification.html @@ -8,7 +8,7 @@ function getPermission() { return document.Notification } function sendNotification(title, body) { - let notification = new Notification(title, { body: body }) + let notification = new Notification(title, { body: body, dir: 'rtl', lang: 'de', tag: 'tst' }) notification.onclick = function() { console.info('onclick') } notification.onclose = function() { console.info('onclose') } notification.onerror = function(error) { console.info('onerror: ' + error) } -- cgit v1.2.3