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

Unified Diff: Source/core/html/HTMLAppletElement.idl

Issue 15943008: [binding] Replace [CustomIndexedGetter] attributes with [Custom] getter (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: Created 7 years, 7 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/html/HTMLAppletElement.idl
diff --git a/Source/core/html/HTMLAppletElement.idl b/Source/core/html/HTMLAppletElement.idl
index b7ae3c2a412ded00b99e1b49aa326b38e18d0289..1345e8d05f89a7891dba983f3468856036d9af3b 100644
--- a/Source/core/html/HTMLAppletElement.idl
+++ b/Source/core/html/HTMLAppletElement.idl
@@ -19,10 +19,6 @@
*/
[
- CustomNamedGetter,
- CustomNamedSetter,
- CustomIndexedGetter,
- CustomIndexedSetter,
CustomLegacyCall
] interface HTMLAppletElement : HTMLElement {
[Reflect] attribute DOMString align;
@@ -36,5 +32,9 @@
[Reflect] attribute DOMString object;
[Reflect] attribute DOMString vspace;
[Reflect] attribute DOMString width;
+ [Custom] getter boolean (unsigned long index);
+ [Custom] setter boolean (unsigned long index, Node value);
+ [Custom] getter Node (DOMString name);
+ [Custom] setter Node (DOMString name, Node value);
};

Powered by Google App Engine
This is Rietveld 408576698