summaryrefslogtreecommitdiffstats
path: root/test/w3c/namespace/test348.scxml
blob: d6f38a35281bf9bfe7e80b91a8ff3d07252fa441 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?xml version="1.0" encoding="UTF-8"?>
<scxml:scxml xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance" xmlns:scxml="http://www.w3.org/2005/07/scxml" initial="s0" datamodel="ecmascript" version="1.0">
  <!-- test that event param of send sets the name of the event -->
  <scxml:state id="s0">
    <scxml:onentry>
      <scxml:send type="http://www.w3.org/TR/scxml/#SCXMLEventProcessor" event="s0Event"/>
    </scxml:onentry>
    <scxml:transition event="s0Event" target="pass"/>
    <scxml:transition event="*" target="fail"/>
  </scxml:state>
  <scxml:final id="pass">
    <scxml:onentry>
      <scxml:log label="Outcome" expr="'pass'"/>
    </scxml:onentry>
  </scxml:final>
  <scxml:final id="fail">
    <scxml:onentry>
      <scxml:log label="Outcome" expr="'fail'"/>
    </scxml:onentry>
  </scxml:final>
</scxml:scxml>