What does it look like?


@prefix earl: <http://www.w3.org/2001/03/earl/0.95#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix dc: <http://purl.org/dc/elements/1.1/> .

_:Person earl:asserts
   [ rdf:subject _:Page; 
     rdf:predicate earl:passes; 
     rdf:object _:TestCase ] .

_:Person 
   earl:name "Wendy Chisholm"; 
   earl:email <mailto:wendy@w3.org> .

_:Page
   a earl:WebContent;
   earl:testSubject <http://infomesh.net/2001/05/earl/bookmarklet/>;
   earl:date "10/19/2001 10:50:14 PM";
   dc:title "A Javascript Bookmarklet For EARL" .

_:TestCase
   a earl:TestCase;
   earl:id <http://www.w3.org/TR/WCAG10/wai-pageauth.html#tech-text-equivalent> .