| Index: core/html/HTMLAppletElement.idl
|
| ===================================================================
|
| --- core/html/HTMLAppletElement.idl (revision 23517)
|
| +++ core/html/HTMLAppletElement.idl (working copy)
|
| @@ -19,10 +19,6 @@
|
| */
|
|
|
| [
|
| - CustomNamedGetter,
|
| - CustomNamedSetter,
|
| - CustomIndexedGetter,
|
| - CustomIndexedSetter,
|
| CustomLegacyCall
|
| ] interface HTMLAppletElement : HTMLElement {
|
| [Reflect] attribute DOMString align;
|
| @@ -33,8 +29,12 @@
|
| [Reflect] attribute DOMString height;
|
| [Reflect] attribute DOMString hspace;
|
| [Reflect] attribute DOMString name;
|
| - [Reflect] attribute DOMString object;
|
| + [Reflect] attribute DOMString _object; // "object" is a reserved word
|
| [Reflect] attribute DOMString vspace;
|
| [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);
|
| };
|
|
|
|
|