summaryrefslogtreecommitdiffstats
path: root/test/samples/w3c/ecma/test543.scxml
blob: 2c5c6deb798caf0833424b36f1672177d15f975e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?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="'pass'"/></onentry></final>
<final id="fail"><onentry><log label="Outcome" expr="'fail'"/></onentry></final>  

</scxml>