mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-27 11:48:32 +00:00
16 lines
407 B
Plaintext
16 lines
407 B
Plaintext
#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;
|
|
};
|