1 // Copyright 2014 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file.
7 * @extends {HTMLElement}
8 * @see http://www.w3.org/html/wg/drafts/html/master/interactive-elements.html#the-menuitem-element
10 function HTMLMenuItemElement() {}
14 * @see http://www.w3.org/html/wg/drafts/html/master/interactive-elements.html#dom-menuitem-type
16 HTMLMenuItemElement
.prototype.type
;
20 * @see http://www.w3.org/html/wg/drafts/html/master/interactive-elements.html#dom-menuitem-label
22 HTMLMenuItemElement
.prototype.label
;
26 * @see http://www.w3.org/html/wg/drafts/html/master/interactive-elements.html#dom-menuitem-icon
28 HTMLMenuItemElement
.prototype.icon
;
32 * @see http://www.w3.org/html/wg/drafts/html/master/interactive-elements.html#dom-menuitem-disabled
34 HTMLMenuItemElement
.prototype.disabled
;
38 * @see http://www.w3.org/html/wg/drafts/html/master/interactive-elements.html#dom-menuitem-checked
40 HTMLMenuItemElement
.prototype.checked
;
44 * @see http://www.w3.org/html/wg/drafts/html/master/interactive-elements.html#dom-menuitem-radiogroup
46 HTMLMenuItemElement
.prototype.radiogroup
;
50 * @see http://www.w3.org/html/wg/drafts/html/master/interactive-elements.html#dom-menuitem-default
52 HTMLMenuItemElement
.prototype.default;
55 * @type {HTMLElement|undefined}
56 * @see http://www.w3.org/html/wg/drafts/html/master/interactive-elements.html#dom-menuitem-command
58 HTMLMenuItemElement
.prototype.command
;