summaryrefslogtreecommitdiffstats
path: root/test/w3c/namespace/test558.scxml
diff options
context:
space:
mode:
Diffstat (limited to 'test/w3c/namespace/test558.scxml')
-rw-r--r--test/w3c/namespace/test558.scxml30
1 files changed, 30 insertions, 0 deletions
diff --git a/test/w3c/namespace/test558.scxml b/test/w3c/namespace/test558.scxml
new file mode 100644
index 0000000..53a758b
--- /dev/null
+++ b/test/w3c/namespace/test558.scxml
@@ -0,0 +1,30 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- in the ECMA data model, test that if the child of <data> is not XML, or if XML is loaded via src=,
+ the processor treats the value as a string, does whitespace normalization and assigns it to the var.-->
+<scxml:scxml xmlns="http://www.w3.org/2005/07/scxml" xmlns:conf="http://www.w3.org/2005/scxml-conformance" xmlns:scxml="http://www.w3.org/2005/07/scxml" initial="s0" version="1.0" datamodel="ecmascript">
+ <scxml:datamodel>
+ <scxml:data id="var1">
+this is
+a string
+</scxml:data>
+ <scxml:data id="var2" src="file:test558.txt"/>
+ </scxml:datamodel>
+ <scxml:state id="s0">
+ <scxml:transition cond="var1 == 'this is a string'" target="s1"/>
+ <scxml:transition target="fail"/>
+ </scxml:state>
+ <scxml:state id="s1">
+ <scxml:transition cond="var2 == 'this is a string'" target="pass"/>
+ <scxml:transition target="fail"/>
+ </scxml:state>
+ <scxml:final id="pass">
+ <scxml:onentry>
+ <scxml:log label="Outcome" expr="'pass'"/>
+ </scxml:onentry>
+ </scxml:final>
+ <scxml:final id="fail">
+ <scxml:onentry>
+ <scxml:log label="Outcome" expr="'fail'"/>
+ </scxml:onentry>
+ </scxml:final>
+</scxml:scxml>