summaryrefslogtreecommitdiffstats
path: root/test/samples/w3c/ecma/test239.scxml
blob: 4fcfc92d9fdd1943e1227534c15ccce7768bd6af (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
<?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="ecmascript">

     
<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="ecmascript">
             <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>