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

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

Issue 15943008: [binding] Replace [CustomIndexedGetter] attributes with [Custom] getter (Closed) Base URL: https://chromium.googlesource.com/chromium/blink@master
Patch Set: update tests 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
« no previous file with comments | « Source/core/html/HTMLAppletElement.idl ('k') | Source/core/html/HTMLObjectElement.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Source/core/html/HTMLEmbedElement.idl
diff --git a/Source/core/html/HTMLEmbedElement.idl b/Source/core/html/HTMLEmbedElement.idl
index d47944967c53898f601591f1677eaf356f2551f5..8a6b945e1ffa3149d88fcb62bb3b4819d42c5cc7 100644
--- a/Source/core/html/HTMLEmbedElement.idl
+++ b/Source/core/html/HTMLEmbedElement.idl
@@ -19,11 +19,7 @@
*/
[
- CustomNamedGetter,
- CustomNamedSetter,
CustomLegacyCall,
- CustomIndexedGetter,
- CustomIndexedSetter
] interface HTMLEmbedElement : HTMLElement {
[Reflect] attribute DOMString align;
[Reflect] attribute DOMString height;
@@ -31,6 +27,10 @@
[Reflect, URL] attribute DOMString src;
[Reflect] attribute DOMString type;
[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);
#if defined(ENABLE_SVG) && ENABLE_SVG
[CheckSecurityForNode, RaisesException] SVGDocument getSVGDocument();
« no previous file with comments | « Source/core/html/HTMLAppletElement.idl ('k') | Source/core/html/HTMLObjectElement.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698