ladybird/Userland/Libraries/LibWeb/HTML/HTMLUListElement.idl
2023-10-25 19:45:41 +02:00

14 lines
339 B
Plaintext

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