Attr.idl 402 B

123456789101112131415
  1. #import <DOM/Node.idl>
  2. #import <DOM/Element.idl>
  3. [Exposed=Window]
  4. interface Attr : Node {
  5. readonly attribute DOMString? namespaceURI;
  6. readonly attribute DOMString? prefix;
  7. readonly attribute DOMString localName;
  8. readonly attribute DOMString name;
  9. [CEReactions] attribute DOMString value;
  10. readonly attribute Element? ownerElement;
  11. readonly attribute boolean specified;
  12. };