blob: fbb7661e6ef8e8fe0d32a8632caab3874f16880b (
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 eventType;
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;
};
|