Newer
Older
minerva / Userland / Libraries / LibWeb / DOM / Comment.idl
@minerva minerva on 13 Jul 176 bytes Initial commit
#import <DOM/CharacterData.idl>

// https://dom.spec.whatwg.org/#comment
[Exposed=Window]
interface Comment : CharacterData {
    constructor(optional DOMString data = "");
};