summaryrefslogtreecommitdiffstats
path: root/test/w3c/c89/test543.scxml
blob: c22b769b0b837557e15a29af4e016d1ddd7c9fe3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?xml version="1.0" encoding="UTF-8"?>
<!-- test that event fields are present as children of _event -->
<scxml xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance" name="scxmltest" initial="s0" version="1.0" datamodel="xpath">
  <state id="s0">
    <onentry>
      <!-- event isn't bound until an event is raised -->
      <raise event="someevent"/>
    </onentry>
    <!-- origintype sendid, invokeid and data will not be bound in this event. name, type, and origin
  are guaranteed to be there. -->
    <transition event="*" cond="$_event/name and $_event/origin and $_event/type" target="pass"/>
    <transition event="*" target="fail"/>
  </state>
  <final id="pass">
    <onentry>
      <log label="Outcome" expr="&amp;pass&amp;"/>
    </onentry>
  </final>
  <final id="fail">
    <onentry>
      <log label="Outcome" expr="&amp;pass&amp;"/>
    </onentry>
  </final>
</scxml>