summaryrefslogtreecommitdiff
path: root/xsd-tests/cxx/parser/validation/any/test.xml
blob: f1a0c83c7ab2b2c2b09cdda56e9c79ca19ab59e9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<t:root xmlns:t="test"
        xmlns:o="other"
        xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
        xsi:schemaLocation="test test.xsd">

  <!-- test dispatching of any-nested elements and attributes -->

  <any-a>
    <o:any/>
  </any-a>

  <any-a>
    <o:any x="xxx">aaa<a>bbb</a>ccc</o:any>
  </any-a>

  <any-a x="x">
    <a>a</a>
    <o:any x="xxx">aaa<a>bbb</a>ccc</o:any>
  </any-a>

</t:root>