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

Side by Side Diff: LayoutTests/http/tests/push_messaging/interfaces.html

Issue 1083193006: Rename hasPermission to permissionState. (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: re-add hasPermission to the expectations file 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>Push API: Verifies that the right Push API interfaces get exposed.</t itle> 4 <title>Push API: Verifies that the right Push API interfaces get exposed.</t itle>
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 </head> 8 </head>
9 <body> 9 <body>
10 <script> 10 <script>
11 // Tests that the expected Push API interfaces are being exposed on both 11 // Tests that the expected Push API interfaces are being exposed on both
12 // the Service Worker and Document global scopes. 12 // the Service Worker and Document global scopes.
13 service_worker_test( 13 service_worker_test(
14 'resources/interfaces-worker.js', 14 'resources/interfaces-worker.js',
15 'Exposure of interfaces in a Service Worker.'); 15 'Exposure of interfaces in a Service Worker.');
16 16
17 test(function() { 17 test(function() {
18 assert_own_property(self, 'PushManager', 'PushManager needs to be expo sed as a global.'); 18 assert_own_property(self, 'PushManager', 'PushManager needs to be expo sed as a global.');
19 19
20 assert_own_property(PushManager.prototype, 'subscribe'); 20 assert_own_property(PushManager.prototype, 'subscribe');
21 assert_own_property(PushManager.prototype, 'getSubscription'); 21 assert_own_property(PushManager.prototype, 'getSubscription');
22 assert_own_property(PushManager.prototype, 'hasPermission'); 22 assert_own_property(PushManager.prototype, 'permissionState');
23 23
24 }, 'PushManager should be exposed and have the expected interface in a Doc ument.'); 24 }, 'PushManager should be exposed and have the expected interface in a Doc ument.');
25 25
26 test(function() { 26 test(function() {
27 assert_own_property(self, 'PushSubscription', 'PushSubscription needs to be exposed as a global.'); 27 assert_own_property(self, 'PushSubscription', 'PushSubscription needs to be exposed as a global.');
28 28
29 // FIXME: Assert existence of the attributes when they are properly 29 // FIXME: Assert existence of the attributes when they are properly
30 // exposed in the prototype chain. https://crbug.com/43394 30 // exposed in the prototype chain. https://crbug.com/43394
31 31
32 assert_own_property(PushSubscription.prototype, 'unsubscribe'); 32 assert_own_property(PushSubscription.prototype, 'unsubscribe');
33 33
34 }, 'PushSubscription should be exposed and have the expected interface in a Document.'); 34 }, 'PushSubscription should be exposed and have the expected interface in a Document.');
35 </script> 35 </script>
36 </body> 36 </body>
37 </html> 37 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698