summaryrefslogtreecommitdiffstats
path: root/test/w3c/lua/test545.scxml
blob: 7443ff2fd6710c270c33e2ccc7800e83abd0d903 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?xml version="1.0" standalone="no"?>
<!-- test that xml content in send is place as XML under event/data -->
<scxml xmlns="http://www.w3.org/2005/07/scxml" name="scxmltest" initial="s0" version="1.0" datamodel="xpath">
  <state id="s0">
    <onentry>
      <send event="someevent">
        <content>
          <foo>
            <bar>3</bar>
          </foo>
        </content>
      </send>
    </onentry>
    <transition event="*" cond="$_event/data/foo/bar = 3" target="pass"/>
    <transition event="*" target="fail"/>
  </state>
  <final id="pass"/>
  <final id="fail"/>
</scxml>