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

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

  readonly attribute unsigned short   type;
  readonly attribute DOMString        name;
  readonly attribute DOMString        origin;
  readonly attribute DOMString        origintype;
  readonly attribute Node             dom;
  readonly attribute DOMString        sendid;
  readonly attribute DOMString        invokeid;
};