summaryrefslogtreecommitdiffstats
path: root/contrib/dom/idl/Attr.idl
blob: 3964dd2e0640a3e23cda6c09a4dafca3e2699721 (plain)
1
2
3
4
5
6
7
8
9
interface Attr : Node {
  readonly attribute DOMString        name;
  readonly attribute boolean          specified;
           attribute DOMString        value;
                                      // raises(DOMException) on setting

  // Introduced in DOM Level 2:
  readonly attribute Element          ownerElement;
};