~gabriel1984sibiu/minitube/qt5.6

« back to all changes in this revision

Viewing changes to tests/auto/corelib/xml/qxmlstream/XML-Test-Suite/xmlconf/eduni/namespaces/1.0/007.xml

  • Committer: Grevutiu Gabriel
  • Date: 2017-06-13 08:43:17 UTC
  • Revision ID: gabriel1984sibiu@gmail.com-20170613084317-ek0zqe0u9g3ocvi8
OriginalĀ upstreamĀ code

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<!-- Namespace inequality test: different capitalization -->
 
3
<!DOCTYPE foo [
 
4
<!ELEMENT foo ANY>
 
5
<!ATTLIST foo xmlns:a CDATA #IMPLIED
 
6
              xmlns:b CDATA #IMPLIED
 
7
              xmlns:c CDATA #IMPLIED>
 
8
<!ELEMENT bar ANY>
 
9
<!ATTLIST bar a:attr CDATA #IMPLIED
 
10
              b:attr CDATA #IMPLIED
 
11
              c:attr CDATA #IMPLIED>
 
12
]>
 
13
<foo xmlns:a="http://example.org/wine"
 
14
     xmlns:b="http://Example.org/wine"
 
15
     xmlns:c="http://example.org/Wine">
 
16
 
 
17
<bar a:attr="1" b:attr="2" c:attr="3"/>
 
18
 
 
19
</foo>
 
20