Attribute.idl 357 B

123456789101112
  1. [Exposed=Window]
  2. interface Attribute : Node {
  3. readonly attribute DOMString? namespaceURI;
  4. readonly attribute DOMString? prefix;
  5. readonly attribute DOMString localName;
  6. readonly attribute DOMString name;
  7. [CEReactions] attribute DOMString value;
  8. readonly attribute Element? ownerElement;
  9. readonly attribute boolean specified;
  10. };