Attr.idl 481 B

12345678910111213141516
  1. #import <DOM/Node.idl>
  2. #import <DOM/Element.idl>
  3. // https://dom.spec.whatwg.org/#interface-attr
  4. [Exposed=Window]
  5. interface Attr : Node {
  6. readonly attribute DOMString? namespaceURI;
  7. readonly attribute DOMString? prefix;
  8. readonly attribute DOMString localName;
  9. readonly attribute DOMString name;
  10. [CEReactions] attribute DOMString value;
  11. readonly attribute Element? ownerElement;
  12. readonly attribute boolean specified; // useless; always returns true
  13. };