2022-02-15 22:40:51 +03:30
|
|
|
#import <DOM/Node.idl>
|
|
|
|
|
#import <DOM/Element.idl>
|
|
|
|
|
|
2023-10-25 17:27:19 +02:00
|
|
|
// https://dom.spec.whatwg.org/#interface-attr
|
2023-09-10 16:06:58 +12:00
|
|
|
[Exposed=Window]
|
2022-09-18 01:03:58 +02:00
|
|
|
interface Attr : Node {
|
2021-10-15 09:57:07 -04:00
|
|
|
readonly attribute DOMString? namespaceURI;
|
|
|
|
|
readonly attribute DOMString? prefix;
|
|
|
|
|
readonly attribute DOMString localName;
|
|
|
|
|
readonly attribute DOMString name;
|
|
|
|
|
[CEReactions] attribute DOMString value;
|
|
|
|
|
|
|
|
|
|
readonly attribute Element? ownerElement;
|
|
|
|
|
|
2023-10-25 17:27:19 +02:00
|
|
|
readonly attribute boolean specified; // useless; always returns true
|
2021-10-15 09:57:07 -04:00
|
|
|
};
|