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

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

Issue 362993004: Implement Blink-in-JS for DOM attributes (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 5 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: Source/bindings/tests/idls/TestObject.idl
diff --git a/Source/bindings/tests/idls/TestObject.idl b/Source/bindings/tests/idls/TestObject.idl
index d338226dcf9b2189e232f8bc60149d8e2bd24565..cea7fe96002e0a1b700579bcd60836a843021783 100644
--- a/Source/bindings/tests/idls/TestObject.idl
+++ b/Source/bindings/tests/idls/TestObject.idl
@@ -536,5 +536,9 @@ interface TestObject {
[ImplementedInPrivateScript] DOMString stringMethodWithStringArgumentImplementedInPrivateScript(DOMString value);
[ImplementedInPrivateScript] Node nodeMethodWithNodeArgumentImplementedInPrivateScript(Node value);
[ImplementedInPrivateScript] Node nodeMethodWithVariousArgumentsImplementedInPrivateScript(Document document, Node node, short value1, double value2, DOMString string);
+ [ImplementedInPrivateScript] readonly attribute short readonlyShortAttribute;
+ [ImplementedInPrivateScript] attribute short shortAttribute;
+ [ImplementedInPrivateScript] attribute DOMString stringAttribute;
+ [ImplementedInPrivateScript] attribute Node nodeAttribute;
};

Powered by Google App Engine
This is Rietveld 408576698