~ubuntu-branches/ubuntu/saucy/restlet/saucy

« back to all changes in this revision

Viewing changes to org.restlet.test/src/org/restlet/test/data/rdf/unrecognised-xml-attributes/test001.rdf

  • Committer: Package Import Robot
  • Author(s): James Page
  • Date: 2012-06-11 16:25:45 UTC
  • Revision ID: package-import@ubuntu.com-20120611162545-5w2o0resi5y3pybc
Tags: upstream-2.0.14
ImportĀ upstreamĀ versionĀ 2.0.14

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
<?xml version="1.0"?>
 
2
<!--
 
3
  Copyright World Wide Web Consortium, (Massachusetts Institute of
 
4
  Technology, Institut National de Recherche en Informatique et en
 
5
  Automatique, Keio University).
 
6
 
 
7
  All Rights Reserved.
 
8
 
 
9
  Please see the full Copyright clause at
 
10
  <http://www.w3.org/Consortium/Legal/copyright-software.html>
 
11
 
 
12
  Description: Test case for the proposal:
 
13
    Unrecognized attributes in the xml namespace should be ignored.
 
14
 
 
15
  in http://lists.w3.org/Archives/Public/w3c-rdfcore-wg/2002Jan/0152.html
 
16
 
 
17
 
 
18
  Related issue:
 
19
 
 
20
    NONE
 
21
 
 
22
  $Id: test001.rdf,v 1.1 2002/04/13 13:30:00 jgrant Exp $
 
23
-->
 
24
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
 
25
         xmlns:ex="http://example.org/schema#">
 
26
  <rdf:Description rdf:about="http://example.org/thing">
 
27
    <ex:prop1 xml:space="default">blah</ex:prop1>
 
28
    <ex:prop2 xml:foo="anything">more</ex:prop2>
 
29
  </rdf:Description>
 
30
</rdf:RDF>
 
31