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

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

Issue 2863443002: Implement and ship PushManager.supportedContentEncodings (Closed)
Patch Set: Implement and ship PushManager.supportedContentEncodings 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 unified diff | Download patch
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/push_messaging/pushmanager-supported-content-encodings.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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, 'supportedContentEncodings');
21
20 assert_own_property(PushManager.prototype, 'subscribe'); 22 assert_own_property(PushManager.prototype, 'subscribe');
21 assert_own_property(PushManager.prototype, 'getSubscription'); 23 assert_own_property(PushManager.prototype, 'getSubscription');
22 assert_own_property(PushManager.prototype, 'permissionState'); 24 assert_own_property(PushManager.prototype, 'permissionState');
23 25
24 }, 'PushManager should be exposed and have the expected interface in a Doc ument.'); 26 }, 'PushManager should be exposed and have the expected interface in a Doc ument.');
25 27
26 test(function() { 28 test(function() {
27 assert_own_property(self, 'PushSubscription', 'PushSubscription needs to be exposed as a global.'); 29 assert_own_property(self, 'PushSubscription', 'PushSubscription needs to be exposed as a global.');
28 30
29 assert_own_property(PushSubscription.prototype, 'endpoint'); 31 assert_own_property(PushSubscription.prototype, 'endpoint');
30 32
31 assert_own_property(PushSubscription.prototype, 'getKey'); 33 assert_own_property(PushSubscription.prototype, 'getKey');
32 assert_own_property(PushSubscription.prototype, 'unsubscribe'); 34 assert_own_property(PushSubscription.prototype, 'unsubscribe');
33 35
34 }, 'PushSubscription should be exposed and have the expected interface in a Document.'); 36 }, 'PushSubscription should be exposed and have the expected interface in a Document.');
35 </script> 37 </script>
36 </body> 38 </body>
37 </html> 39 </html>
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/LayoutTests/http/tests/push_messaging/pushmanager-supported-content-encodings.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698