Index: core/html/HTMLAppletElement.idl |
diff --git a/core/html/HTMLAppletElement.idl b/core/html/HTMLAppletElement.idl |
index 283e205ffdfc65c70da9fc22d35481e5a6e57f17..d337bfb45495b884281df86a9bba3a179dd68163 100644 |
--- a/core/html/HTMLAppletElement.idl |
+++ b/core/html/HTMLAppletElement.idl |
@@ -18,8 +18,11 @@ |
* Boston, MA 02110-1301, USA. |
*/ |
+// https://html.spec.whatwg.org/#the-applet-element |
+ |
+// TODO(yukishiino): HTMLAppletElement should not have [OverrideBuiltins]. |
[ |
- Custom=LegacyCallAsFunction, |
+ OverrideBuiltins, |
] interface HTMLAppletElement : HTMLElement { |
[Reflect] attribute DOMString align; |
[Reflect] attribute DOMString alt; |
@@ -29,9 +32,11 @@ |
[Reflect] attribute DOMString height; |
[Reflect] attribute unsigned long hspace; |
[Reflect] attribute DOMString name; |
- [Reflect, URL] attribute DOMString _object; // "object" is a reserved word |
+ [Reflect, URL] attribute DOMString _object; // the underscore is not part of the identifier |
[Reflect] attribute unsigned long vspace; |
[Reflect] attribute DOMString width; |
+ |
+ // FIXME: These getters and setters are not in the spec. |
[Custom, NotEnumerable] getter boolean (unsigned long index); |
[Custom] setter boolean (unsigned long index, Node value); |
[Custom, NotEnumerable] getter Node (DOMString name); |