blob: d8148899ca412e4cac69892f312193e3e2e38648 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
<?xml version="1.0" standalone="no"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20010904//EN" "http://www.w3.org/TR/2001/REC-SVG-20010904/DTD/svg10.dtd">
<svg
height="100"
width="100"
id="blah"
xmlns="http://www.w3.org/2000/svg"
xmlns:xlink="http://www.w3.org/1999/xlink">
<!-- Test for searching for rdf:RDF inside some other XML -->
<!-- Note: this is legal svg - since the SVG specification allows
metadata such as rdf to appear inside the metadata tag
-->
<metadata>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:dc="http://purl.org/dc/elements/1.1/">
<rdf:Description rdf:about="">
<dc:title>Simple Example</dc:title>
<dc:date>2002-10-05</dc:date>
</rdf:Description>
</rdf:RDF>
</metadata>
</svg>
|