blob: 8b15866a3fc16e0d8acb76094bc1256150e06315 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
[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;
};
|