summaryrefslogtreecommitdiffstats
path: root/test/w3c/prolog/test239.scxml
blob: 05a4b05635e431edc6ad49fbff41d088e27cb9a6 (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
25
26
27
28
29
30
31
32
33
34
35
<?xml version="1.0" encoding="UTF-8"?>
<!-- test that markup can be specified both by 'src' and by <content>  -->
<scxml xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance" initial="s0" version="1.0" datamodel="prolog">
  <state id="s0" initial="s01">
    <onentry>
      <send event="timeout" delay="2s"/>
    </onentry>
    <transition event="timeout" target="fail"/>
    <state id="s01">
      <invoke type="http://www.w3.org/TR/scxml/" src="file:test239sub1.scxml"/>
      <transition event="done.invoke" target="s02"/>
    </state>
    <state id="s02">
      <invoke type="http://www.w3.org/TR/scxml/">
        <!-- identical to test239sub1.scxml.  -->
        <content>
          <scxml version="1.0" initial="final" datamodel="prolog">
            <final id="final"/>
          </scxml>
        </content>
      </invoke>
      <transition event="done.invoke" target="pass"/>
    </state>
  </state>
  <final id="pass">
    <onentry>
      <log label="Outcome" expr="'pass'"/>
    </onentry>
  </final>
  <final id="fail">
    <onentry>
      <log label="Outcome" expr="'fail'"/>
    </onentry>
  </final>
</scxml>