summaryrefslogtreecommitdiffstats
path: root/test/scxml-test-framework/test/parallel+interrupt/test30.scxml
diff options
context:
space:
mode:
Diffstat (limited to 'test/scxml-test-framework/test/parallel+interrupt/test30.scxml')
-rw-r--r--test/scxml-test-framework/test/parallel+interrupt/test30.scxml41
1 files changed, 20 insertions, 21 deletions
diff --git a/test/scxml-test-framework/test/parallel+interrupt/test30.scxml b/test/scxml-test-framework/test/parallel+interrupt/test30.scxml
index 6163338..b10720b 100644
--- a/test/scxml-test-framework/test/parallel+interrupt/test30.scxml
+++ b/test/scxml-test-framework/test/parallel+interrupt/test30.scxml
@@ -19,34 +19,33 @@ here we have multiple interrupt conflicts, originating from d and a2.
transition from c1 will win, for same reasons listed above.
final state will be: c2 -->
<scxml
- xmlns="http://www.w3.org/2005/07/scxml"
- version="1.0"
- profile="ecmascript"
- id="root"
- initial="b">
+ datamodel="ecmascript"
+ xmlns="http://www.w3.org/2005/07/scxml"
+ version="1.0"
+ initial="b">
- <parallel id="b">
- <state id="c" initial="c1">
- <state id="c1">
- <transition event="t" target="c2"/>
- </state>
+ <parallel id="b">
+ <state id="c" initial="c1">
+ <state id="c1">
+ <transition event="t" target="c2"/>
+ </state>
- <state id="c2"/>
- </state>
+ <state id="c2"/>
+ </state>
- <state id="d">
- <transition event="t" target="a"/>
- </state>
+ <state id="d">
+ <transition event="t" target="a"/>
+ </state>
- <transition event="t" target="a2"/>
+ <transition event="t" target="a2"/>
- </parallel>
+ </parallel>
- <state id="a" initial="a1">
- <state id="a1"/>
+ <state id="a" initial="a1">
+ <state id="a1"/>
- <state id="a2"/>
- </state>
+ <state id="a2"/>
+ </state>
</scxml>