1<?xml version="1.0"?>
2
3<!--
4  Copyright World Wide Web Consortium, (Massachusetts Institute of
5  Technology, Institut National de Recherche en Informatique et en
6  Automatique, Keio University).
7
8  All Rights Reserved.
9
10  Please see the full Copyright clause at
11  <http://www.w3.org/Consortium/Legal/copyright-software.html>
12
13  Description: a RDF container (in this case an Alt) without an ID
14   attribute describes an un-named resource, aka a bNode.
15
16  Related issue:
17
18   http://www.w3.org/2000/03/rdf-tracking/#rdfms-identity-anon-resources
19
20  Author: Art Barstow (barstow@w3.org)
21
22  $Id: test004.rdf,v 1.1 2001/10/10 13:07:07 barstow Exp $
23
24-->
25
26<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
27         xmlns:eg="http://example.org/">
28
29 <rdf:Alt>
30  <rdf:li>some value</rdf:li>
31 </rdf:Alt>
32
33</rdf:RDF>
34