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

Unified Diff: LayoutTests/http/tests/push_messaging/resources/pushevent-extendable-event.js

Issue 821303006: bindings: Fixes layouttests when moving attributes to prototype chains. (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Fixed performance memory tests and addressed review comments. Created 5 years, 11 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 side-by-side diff with in-line comments
Download patch
Index: LayoutTests/http/tests/push_messaging/resources/pushevent-extendable-event.js
diff --git a/LayoutTests/http/tests/push_messaging/resources/pushevent-extendable-event.js b/LayoutTests/http/tests/push_messaging/resources/pushevent-extendable-event.js
index 531700a79a8287a85d3a45a2006c9b6399f152e7..90e398a78f75f2b74c2912be4538c1fb748b9fd5 100644
--- a/LayoutTests/http/tests/push_messaging/resources/pushevent-extendable-event.js
+++ b/LayoutTests/http/tests/push_messaging/resources/pushevent-extendable-event.js
@@ -6,7 +6,7 @@ test(function() {
var event = new PushEvent('PushEvent');
assert_equals(event.type, 'PushEvent');
- assert_own_property(event, 'data');
+ assert_will_be_idl_attribute(event, 'data');
assert_equals(event.cancelable, false);
assert_equals(event.bubbles, false);
assert_inherits(event, 'waitUntil');

Powered by Google App Engine
This is Rietveld 408576698