Test Case #58: hanging @rel can create multiple triples, @instanceof permutation

Purpose:

Checks to make sure the parser creates multiple triples when @rel is
used with multiple child elements that only use @instanceof.

====================== Test Case 58 =============================

---------------------Test Case 58 XHTML--------------------------

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML+RDFa 1.0//EN"
"http://www.w3.org/MarkUp/DTD/xhtml-rdfa-1.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"
      xmlns:foaf="http://xmlns.com/foaf/0.1/">
  <head>
		<title>Test 0058</title>
  </head>
  <body>
  	<div about="http://www.example.org/#ben" rel="foaf:knows">
	    <p instanceof="foaf:Person"
               property="foaf:name">Mark Birbeck</p>
	    <p instanceof="foaf:Person"
               property="foaf:name">Ivan Herman</p>
   	</div>
  </body>
</html>

---------------------Test Case 58 SPARQL------------------------

ASK WHERE {
<http://www.example.org/#ben>
   <http://xmlns.com/foaf/0.1/knows>
      _:a .
<http://www.example.org/#ben>
   <http://xmlns.com/foaf/0.1/knows>
      _:b .

<_:a>
   <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>
      <http://xmlns.com/foaf/0.1/Person> .
<_:a>
   <http://xmlns.com/foaf/0.1/name>
      "Mark Birbeck" .

<_:b>
   <http://www.w3.org/1999/02/22-rdf-syntax-ns#type>
      <http://xmlns.com/foaf/0.1/Person> .
<_:b>
   <http://xmlns.com/foaf/0.1/name>
      "Ivan Herman" .
}

-----------------------------------------------------------------

-- manu

-- 
Manu Sporny
President/CEO - Digital Bazaar, Inc.
blog: Over One Million Songs Available on Bitmunk
http://blog.digitalbazaar.com/2007/10/29/one-million-songs-on-bitmunk/

Received on Thursday, 6 December 2007 21:27:31 UTC