Definition
HTML Standard defines HTMLLIElement
[Exposed=Window]
interface HTMLLIElement : HTMLElement {
[HTMLConstructor] constructor();
[CEReactions] attribute long value;
// also has obsolete members
};
partial interface HTMLLIElement {
[CEReactions] attribute DOMString type;
};
Consolidated IDL (across mixin and partials)
[Exposed=Window]
interface HTMLLIElement : HTMLElement {
[HTMLConstructor] constructor();
[CEReactions] attribute long value;
[CEReactions] attribute DOMString type;
// also has obsolete members
};