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