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