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

Unified Diff: Source/bindings/tests/idls/TestInterfaceEventConstructor.idl

Issue 110023002: IDL compiler: [InitializedByEventConstructor] attribute any (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Rebased Created 7 years 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: Source/bindings/tests/idls/TestInterfaceEventConstructor.idl
diff --git a/Source/bindings/tests/idls/TestInterfaceEventConstructor.idl b/Source/bindings/tests/idls/TestInterfaceEventConstructor.idl
index 03eddf1725b2e1c862dbc051f622286134a86d1f..031bcfb8e18ea950ae149ee929db627d74c2a56c 100644
--- a/Source/bindings/tests/idls/TestInterfaceEventConstructor.idl
+++ b/Source/bindings/tests/idls/TestInterfaceEventConstructor.idl
@@ -29,7 +29,7 @@
[
EventConstructor,
] interface TestInterfaceEventConstructor : Event {
- // Attributes
- readonly attribute DOMString attr1;
- [InitializedByEventConstructor] readonly attribute DOMString attr2;
+ readonly attribute DOMString readonlyStringAttribute;
+ [InitializedByEventConstructor] readonly attribute DOMString InitializedByEventConstructorReadonlyStringAttribute;
+ [InitializedByEventConstructor] readonly attribute any InitializedByEventConstructorReadonlyAnyAttribute;
};

Powered by Google App Engine
This is Rietveld 408576698