summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLMetaElement.idl
blob: 34e4a8f58637c186d2842b5fe5427764bc4ae4ee (plain)
1
2
3
4
5
6
7
8
9
10
11
#import <HTML/HTMLElement.idl>

interface HTMLMetaElement : HTMLElement {

    [Reflect] attribute DOMString name;
    [Reflect] attribute DOMString content;
    [Reflect=http-equiv] attribute DOMString httpEquiv;

    [Reflect] attribute DOMString scheme;

};