summaryrefslogtreecommitdiffstats
path: root/test/w3c/txml/test543.txml
diff options
context:
space:
mode:
Diffstat (limited to 'test/w3c/txml/test543.txml')
-rw-r--r--test/w3c/txml/test543.txml22
1 files changed, 22 insertions, 0 deletions
diff --git a/test/w3c/txml/test543.txml b/test/w3c/txml/test543.txml
new file mode 100644
index 0000000..d179749
--- /dev/null
+++ b/test/w3c/txml/test543.txml
@@ -0,0 +1,22 @@
+<?xml version="1.0"?>
+ <!-- test that event fields are present as children of _event -->
+
+ <scxml xmlns="http://www.w3.org/2005/07/scxml" name="scxmltest"
+ xmlns:conf="http://www.w3.org/2005/scxml-conformance" initial="s0" version="1.0" datamodel="xpath">
+
+
+<state id="s0">
+ <onentry>
+ <!-- event isn't bound until an event is raised -->
+ <raise event="someevent"/>
+ </onentry>
+ <!-- origintype sendid, invokeid and data will not be bound in this event. name, type, and origin
+ are guaranteed to be there. -->
+ <transition event="*" cond="$_event/name and $_event/origin and $_event/type" conf:targetpass=""/>
+ <transition event="*" conf:targetfail=""/>
+ </state>
+
+<conf:pass/>
+<conf:fail/>
+
+</scxml> \ No newline at end of file