summaryrefslogtreecommitdiffstats
path: root/test/uscxml/xinclude/test-fail-namespace2.scxml
blob: f256e5420d1f629b2465003f19a364eaebfd7f63 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<!-- Prefix foo is pointing to http://www.w3.org/2001/Foo and http://www.w3.org/2001/Bar -> error -->
<scxml 
	xmlns:xi="http://www.w3.org/2001/XInclude" 
	xmlns:foo="http://www.w3.org/2001/Foo">
	<!-- include from file -->
	<xi:include href="test-fail-namespace2.include" />
	<state id="s0">
		<transition target="fail" />
	</state>
	<final id="fail">
		<onentry><log expr="FAIL!" /></onentry>
	</final>
	<final id="pass">
		<onentry><log expr="PASS!" /></onentry>
	</final>
</scxml>