summaryrefslogtreecommitdiffstats
path: root/test/w3c/lua/test543.scxml
blob: 55946ede35baf35c17bba0b9f84bac7f20b2b5cc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?xml version="1.0" standalone="no"?>
<!-- test that event fields are present as children of _event -->
<scxml xmlns="http://www.w3.org/2005/07/scxml" 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"/>
  <final id="fail"/>
</scxml>