@prefix td: <http://www.w3.org/QA/Tools/MUTAT/ns#> .
@prefix earl: <http://www.w3.org/2001/03/earl/0.95#> .
@prefix : <http://www.w3.org/QA/Tools/MUTAT/wcag.n3#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .

:plugins a rdf:Property;
	rdfs:label "installed plugins";
	rdfs:domain earl:TestSubject; rdfs:range rdfs:Literal;
	rdfs:comment "all plugins installed" .

:subject a rdf:Property;
	rdfs:label "The page being tested";
	rdfs:domain earl:TestSubject; rdfs:range rdfs:Literal;
	rdfs:comment "The URI of the page that is being tested for conformance" .

:browser a rdf:Property;
	rdfs:label "browser";
	rdfs:domain earl:TestSubject; rdfs:range rdfs:Literal;
	rdfs:comment "browser information" .

earl:date
	rdf:value "2002-03-12" .

:priority a td:GroupProperty;
	rdfs:domain earl:TestSubject; rdfs:range rdfs:Literal;
	rdfs:label "priority" .

:guideline a td:GroupProperty;
	rdfs:domain earl:TestSubject; rdfs:range rdfs:Literal;
	rdfs:label "Guideline" .

:wcag11 a earl:TestCase ;
	rdfs:label 	"1.1";
	:priority	"Priority 1" ;
	:guideline	"1";
	td:spec <http://something.org> ;
	earl:id <http://www.w3.org/TR/WAI-WEBCONTENT/#tech-text-equivalent> ;
	td:text	"Provides a text equivalent for every non-text element." .

:wcag12 a earl:TestCase ;
	rdfs:label	"1.2";
	:priority	"Priority 1" ;
	:guideline	"1";
	earl:id	<http://www.w3.org/TR/WAI-WEBCONTENT/#tech-redundant-server-links> ;
	td:text	"Provides redundant text links for each active region of a server-side image map." .

:wcag65 a earl:TestCase ;
	rdfs:label	"6.5";
	:priority	"Priority 2" ;
	:guideline	"6";
	earl:id	<http://www.w3.org/TR/WAI-WEBCONTENT/#tech-fallback-page> ;
	td:text	"Ensure that dynamic content is accessible or provide an alternative presentation or page." .

:wcag53 a earl:TestCase ;
	rdfs:label	"5.3";
	:priority	"Priority 2" ;
	:guideline	"5";
	earl:id	<http://www.w3.org/TR/WAI-WEBCONTENT/#tech-avoid-table-for-layout> ;
	td:text	"Tables make sense when linearized." .

:wcag74 a earl:TestCase ;
	rdfs:label	"7.4";
	:priority 	"Priority 2" ;
	:guideline	"7";
	earl:id	<http://www.w3.org/TR/WAI-WEBCONTENT/#tech-no-periodic-refresh> ;
	td:text	"No unexpected auto-redirects to other pages." .

:wcag111 a earl:TestCase ;
	rdfs:label	"11.1";
	:priority	"Priority 2" ;
	:guideline	"11";
	earl:id	<http://www.w3.org/TR/WAI-WEBCONTENT/#tech-latest-w3c-specs> ;
	td:text	"Use W3C technologies when they are available and appropriate for a task and use the latest versions when supported. " .

:wcag113  a earl:TestCase ;
	rdfs:label	"11.3";
	:priority 	"Priority 3" ;
	:guideline	"11";
	earl:id	<http://www.w3.org/TR/WAI-WEBCONTENT/#tech-content-preferences> ;
	td:text	"Provide information so that users may receive documents according to their preferences (e.g., language, content type, etc.)" .

:wcag121 a earl:TestCase ;
	rdfs:label	"12.1";
	:priority 	"Priority 1" ;
	:guideline	"12";
	earl:id	<http://www.w3.org/TR/WAI-WEBCONTENT/#tech-frame-titles> ;
	td:text	"Provides 'title' or 'name' attributes for all frames." .

:C a td:ResultProperty;	rdfs:label "Complete";
	earl:validity earl:Pass;
	earl:severity "0.0" .

:VG a td:ResultProperty; rdfs:label "Very Good";
	earl:validity earl:Pass;
	earl:severity "0.1" .

:G a td:ResultProperty; rdfs:label "Good";
	earl:validity earl:Pass;
	earl:severity "0.3" .

:P a td:ResultProperty; rdfs:label "Poor";
	earl:validity earl:Fail;
	earl:severity "0.6" .

:NI a td:ResultProperty; rdfs:label "Not Implemented";
	earl:validity earl:Fail;
	earl:severity "0.0" .

:NA a td:ResultProperty; rdfs:label "Not Applicable";
	earl:validity earl:NotApplicable;
	earl:severity "0.0" .
