summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/DOM/Attribute.idl
blob: e5ecb4d40d8343d23335d96e4b8ea2eb3bd3c8f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#import <DOM/Node.idl>
#import <DOM/Element.idl>

[Exposed=Window]
interface Attribute : Node {
    readonly attribute DOMString? namespaceURI;
    readonly attribute DOMString? prefix;
    readonly attribute DOMString localName;
    readonly attribute DOMString name;
    [CEReactions] attribute DOMString value;

    readonly attribute Element? ownerElement;

    readonly attribute boolean specified;
};