Commit af6b1818 authored by peter's avatar peter Committed by Commit bot

Address two minor FIXMEs in Push Messaging layout tests.

BUG=

Review URL: https://codereview.chromium.org/1469813004

Cr-Commit-Position: refs/heads/master@{#361100}
parent 51fdb858
...@@ -26,9 +26,9 @@ ...@@ -26,9 +26,9 @@
test(function() { test(function() {
assert_own_property(self, 'PushSubscription', 'PushSubscription needs to be exposed as a global.'); assert_own_property(self, 'PushSubscription', 'PushSubscription needs to be exposed as a global.');
// FIXME: Assert existence of the attributes when they are properly assert_own_property(PushSubscription.prototype, 'endpoint');
// exposed in the prototype chain. https://crbug.com/43394
assert_own_property(PushSubscription.prototype, 'getKey');
assert_own_property(PushSubscription.prototype, 'unsubscribe'); assert_own_property(PushSubscription.prototype, 'unsubscribe');
}, 'PushSubscription should be exposed and have the expected interface in a Document.'); }, 'PushSubscription should be exposed and have the expected interface in a Document.');
......
...@@ -37,9 +37,9 @@ test(function() { ...@@ -37,9 +37,9 @@ test(function() {
test(function() { test(function() {
assert_own_property(self, 'PushSubscription', 'PushSubscription needs to be exposed as a global.'); assert_own_property(self, 'PushSubscription', 'PushSubscription needs to be exposed as a global.');
// FIXME: Assert existence of the attributes when they are properly assert_own_property(PushSubscription.prototype, 'endpoint');
// exposed in the prototype chain. https://crbug.com/43394
assert_own_property(PushSubscription.prototype, 'getKey');
assert_own_property(PushSubscription.prototype, 'unsubscribe'); assert_own_property(PushSubscription.prototype, 'unsubscribe');
}, 'PushSubscription should be exposed and have the expected interface.'); }, 'PushSubscription should be exposed and have the expected interface.');
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment