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

Side by Side Diff: LayoutTests/http/tests/notifications/serviceworkerregistration-get.html

Issue 1097383006: Notifications: use testRunner.setPermission() in addition of grantWebNotificationPermission. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@cleanup
Patch Set: fix expectations Created 5 years, 8 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 unified diff | Download patch
OLDNEW
1 <!doctype html> 1 <!doctype html>
2 <html> 2 <html>
3 <head> 3 <head>
4 <title>Notifications: ServiceWorkerRegistration.getNotifications().</title> 4 <title>Notifications: ServiceWorkerRegistration.getNotifications().</title>
5 <script src="../resources/testharness.js"></script> 5 <script src="../resources/testharness.js"></script>
6 <script src="../resources/testharnessreport.js"></script> 6 <script src="../resources/testharnessreport.js"></script>
7 <script src="../serviceworker/resources/test-helpers.js"></script> 7 <script src="../serviceworker/resources/test-helpers.js"></script>
8 <script src="resources/test-helpers.js"></script> 8 <script src="resources/test-helpers.js"></script>
9 </head> 9 </head>
10 <body> 10 <body>
11 <script> 11 <script>
12 // Tests that the getNotifications() function when used in a document retu rns 12 // Tests that the getNotifications() function when used in a document retu rns
13 // an array of the notifications which were previously displayed using the 13 // an array of the notifications which were previously displayed using the
14 // same Service Worker registration id. 14 // same Service Worker registration id.
15 async_test(function(test) { 15 async_test(function(test) {
16 var scope = 'resources/scope/' + location.pathname, 16 var scope = 'resources/scope/' + location.pathname,
17 script = 'resources/instrumentation-service-worker.js'; 17 script = 'resources/instrumentation-service-worker.js';
18 18
19 testRunner.setPermission('notifications', 'granted', location.origin, location.origin);
19 testRunner.grantWebNotificationPermission(location.origin, true); 20 testRunner.grantWebNotificationPermission(location.origin, true);
20 21
21 var registration = null; 22 var registration = null;
22 getActiveServiceWorkerWithMessagePort(test, script, scope).then(functi on(workerInfo) { 23 getActiveServiceWorkerWithMessagePort(test, script, scope).then(functi on(workerInfo) {
23 registration = workerInfo.registration; 24 registration = workerInfo.registration;
24 25
25 return registration.showNotification('Hello, world!', { 26 return registration.showNotification('Hello, world!', {
26 body: 'First notification' 27 body: 'First notification'
27 }); 28 });
28 }).then(function() { 29 }).then(function() {
(...skipping 15 matching lines...) Expand all
44 45
45 assert_equals(notifications[secondIndex].title, 'Hello again, worl d!'); 46 assert_equals(notifications[secondIndex].title, 'Hello again, worl d!');
46 assert_equals(notifications[secondIndex].body, 'Second notificatio n'); 47 assert_equals(notifications[secondIndex].body, 'Second notificatio n');
47 48
48 test.done(); 49 test.done();
49 }).catch(unreached_rejection(test)); 50 }).catch(unreached_rejection(test));
50 51
51 }, 'ServiceWorkerRegistration.getNotifications() returns the opened notifi cations.'); 52 }, 'ServiceWorkerRegistration.getNotifications() returns the opened notifi cations.');
52 </script> 53 </script>
53 </body> 54 </body>
54 </html> 55 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698