summaryrefslogtreecommitdiffstats
path: root/test/samples/uscxml/test-xhtml-invoker.scxml
diff options
context:
space:
mode:
Diffstat (limited to 'test/samples/uscxml/test-xhtml-invoker.scxml')
-rw-r--r--test/samples/uscxml/test-xhtml-invoker.scxml33
1 files changed, 0 insertions, 33 deletions
diff --git a/test/samples/uscxml/test-xhtml-invoker.scxml b/test/samples/uscxml/test-xhtml-invoker.scxml
deleted file mode 100644
index aec4db3..0000000
--- a/test/samples/uscxml/test-xhtml-invoker.scxml
+++ /dev/null
@@ -1,33 +0,0 @@
-<scxml datamodel="ecmascript" name="comet-test"
- xmlns:html="http://www.w3.org/1999/xhtml"
- xmlns="http://www.w3.org/2005/07/scxml">
-
- <script src="http://uscxml.tk.informatik.tu-darmstadt.de/scripts/dump.js" />
-
- <state id="start">
- <invoke type="xhtml" id="xhtml1">
- <!-- replacechildren (default), firstchild, lastchild, previoussibling, nextsibling, replace, delete, addattribute -->
- <content type="replacechildren" xpath="/html/body">
- <html:form onmouseover="scxml.send('onmouseover', arguments[0])">
- First name1: <html:input type="text" name="firstname" /><html:br />
- Last name1: <html:input type="text" name="lastname" />
- <html:input onclick="scxml.send('onclick', arguments[0])" type="button" value="Submit" />
- </html:form>
- </content>
- </invoke>
-
- <state id="idle">
- <transition target="idle" event="onmouseover">
- <log expr="dump(_event)" />
- </transition>
- <transition target="idle" event="onclick" cond="_event.origin=='xhtml1'">
- <send target="#_xhtml1">
- <content type="lastchild" xpath="/html/body">
- <html:p>Thank you!</html:p>
- </content>
- </send>
- </transition>
- </state>
-
- </state>
-</scxml> \ No newline at end of file