ladybird/Userland/Libraries/LibWeb/DOM/Attr.idl

16 lines
425 B
Text
Raw Normal View History

#import <DOM/Node.idl>
#import <DOM/Element.idl>
[Exposed=Window, UseDeprecatedAKString]
interface Attr : 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;
};