Newer
Older
minerva / Userland / Libraries / LibWeb / HTML / HTMLLIElement.idl
@minerva minerva on 13 Jul 320 bytes Initial commit
#import <HTML/HTMLElement.idl>

// https://html.spec.whatwg.org/multipage/grouping-content.html#htmllielement
[Exposed=Window]
interface HTMLLIElement : HTMLElement {

    [HTMLConstructor] constructor();

    [CEReactions] attribute long value;

    // Obsolete
    [CEReactions, Reflect] attribute DOMString type;

};