ladybird/Userland/Libraries/LibWeb/HTML/HTMLOListElement.idl
2023-11-09 16:10:54 +01:00

17 lines
435 B
Plaintext

#import <HTML/HTMLElement.idl>
// https://html.spec.whatwg.org/multipage/grouping-content.html#htmlolistelement
[Exposed=Window]
interface HTMLOListElement : HTMLElement {
[HTMLConstructor] constructor();
[CEReactions, Reflect] attribute boolean reversed;
[CEReactions] attribute long start;
[CEReactions, Reflect] attribute DOMString type;
// Obsolete
[CEReactions, Reflect] attribute boolean compact;
};