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

Unified Diff: Source/core/testing/Internals.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/core/testing/Internals.idl
diff --git a/Source/core/testing/Internals.idl b/Source/core/testing/Internals.idl
index 752c691ca0ae4a24c02e10b7fdebdbb00021da00..5c741515bf94a1e01d838ba9824dee816fbccd3b 100644
--- a/Source/core/testing/Internals.idl
+++ b/Source/core/testing/Internals.idl
@@ -282,6 +282,7 @@
// This function is for testing HitRegions on Canvas2D.
unsigned long countHitRegions(CanvasRenderingContext2D context);
+ // FIXME: Move these tests to a separate IDL file.
[ImplementedInPrivateScript] void doNothing();
[ImplementedInPrivateScript] short return123();
[ImplementedInPrivateScript] short echoInteger(short value);
@@ -301,4 +302,8 @@
[ImplementedInPrivateScript] void setInnerHTML(Node node, DOMString string);
[ImplementedInPrivateScript] void addClickListener(Node node);
[ImplementedInPrivateScript] void clickNode(Document document, Node node);
+ [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