Index: core/html/HTMLMenuItemElement.idl |
diff --git a/core/html/HTMLMenuItemElement.idl b/core/html/HTMLMenuItemElement.idl |
index cf770ad1ec72522f7dbc613e386dcc1166d26b8b..99cd8800e44deaa4dfccd52dc477850f8add2fac 100644 |
--- a/core/html/HTMLMenuItemElement.idl |
+++ b/core/html/HTMLMenuItemElement.idl |
@@ -2,13 +2,17 @@ |
// Use of this source code is governed by a BSD-style license that can be |
// found in the LICENSE file. |
+// https://html.spec.whatwg.org/#the-menuitem-element |
+ |
[ |
RuntimeEnabled=ContextMenu, |
] interface HTMLMenuItemElement : HTMLElement { |
[Reflect] attribute DOMString type; |
[Reflect] attribute DOMString label; |
+ [Reflect] attribute DOMString icon; |
[Reflect] attribute boolean disabled; |
[Reflect] attribute boolean checked; |
+ [Reflect] attribute DOMString radiogroup; |
[Reflect] attribute boolean default; |
- // FIXME: icon, radiogroup and command need to be implemented. |
+ // FIXME: readonly attribute HTMLElement? command; |
}; |