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