blob: dea45c6f0ad0def069d8d32e2e6c2e0bb0978b43 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<!-- Namespace http://www.w3.org/2001/Foo is mapped from prefix foo and 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-namespace1.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>
|