blob: 46ab6da2eb2d76ce1ad13705e6eaabf4a90548dd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
<?xml version='1.0' encoding='ISO-8859-1'?>
<!DOCTYPE rdf:RDF [
<!ENTITY rdf 'http://www.w3.org/1999/02/22-rdf-syntax-ns#'>
<!ENTITY a 'http://example.org/#'>
]>
<!-- check entities get expanded in attributes -->
<rdf:RDF xmlns:rdf="&rdf;"
xmlns:a="&a;">
<a:foo rdf:about="&a;blah">
<a:prop>content</a:prop>
</a:foo>
</rdf:RDF>
|