summaryrefslogtreecommitdiffstats
path: root/contrib/dom/idl/SCXMLEvent.idl
blob: 67f50703f744263f26675c55f51a68fc859b346b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
[
	AttributesArePublic
] interface SCXMLEvent {

  // NodeType
  const unsigned short      INTERNAL                   = 1;
  const unsigned short      EXTERNAL                   = 2;
  const unsigned short      PLATFORM                   = 3;

  [CustomGetter, EmptyAsNull] readonly attribute DOMString        type;
  readonly attribute DOMString        name;
  [EmptyAsNull] readonly attribute DOMString        origin;
  [EmptyAsNull] readonly attribute DOMString        origintype;
  [EmptyAsNull] readonly attribute DOMString        raw;
  readonly attribute Node             dom;
  [CustomGetter] readonly attribute DOMString        sendid;
  [EmptyAsNull] readonly attribute DOMString        invokeid;
};