| 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
|
| };
|
|
|
|
|