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

// https://html.spec.whatwg.org/multipage/semantics.html#htmldirectoryelement
[Exposed=Window]
interface HTMLDirectoryElement : HTMLElement {

    [HTMLConstructor] constructor();

    [CEReactions, Reflect] attribute boolean compact;

};