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

Unified Diff: core/html/HTMLEmbedElement.idl

Issue 15643014: Blink IDL roll. (Closed) Base URL: http://dart.googlecode.com/svn/third_party/WebCore/
Patch Set: Created 7 years, 6 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 | « core/html/HTMLCollection.idl ('k') | core/html/HTMLFormControlsCollection.idl » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: core/html/HTMLEmbedElement.idl
===================================================================
--- core/html/HTMLEmbedElement.idl (revision 23517)
+++ core/html/HTMLEmbedElement.idl (working copy)
@@ -19,11 +19,7 @@
*/
[
- CustomNamedGetter,
- CustomNamedSetter,
CustomLegacyCall,
- CustomIndexedGetter,
- CustomIndexedSetter
] interface HTMLEmbedElement : HTMLElement {
[Reflect] attribute DOMString align;
[Reflect] attribute DOMString height;
@@ -31,9 +27,11 @@
[Reflect, URL] attribute DOMString src;
[Reflect] attribute DOMString type;
[Reflect] attribute DOMString width;
+[Custom, NotEnumerable] getter boolean (unsigned long index);
+[Custom] setter boolean (unsigned long index, Node value);
+[Custom, NotEnumerable] getter Node (DOMString name);
+[Custom] setter Node (DOMString name, Node value);
-#if defined(ENABLE_SVG) && ENABLE_SVG
[CheckSecurityForNode, RaisesException] SVGDocument getSVGDocument();
-#endif
};
« no previous file with comments | « core/html/HTMLCollection.idl ('k') | core/html/HTMLFormControlsCollection.idl » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698