diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 09:22:09 +0000 |
commit | 43a97878ce14b72f0981164f87f2e35e14151312 (patch) | |
tree | 620249daf56c0258faa40cbdcf9cfba06de2a846 /testing/web-platform/tests/conformance-checkers/html-rdfalite | |
parent | Initial commit. (diff) | |
download | firefox-43a97878ce14b72f0981164f87f2e35e14151312.tar.xz firefox-43a97878ce14b72f0981164f87f2e35e14151312.zip |
Adding upstream version 110.0.1.upstream/110.0.1upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/web-platform/tests/conformance-checkers/html-rdfalite')
56 files changed, 731 insertions, 0 deletions
diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0015-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0015-isvalid.html new file mode 100644 index 0000000000..edcbe3108b --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0015-isvalid.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html prefix="dc: http://purl.org/dc/elements/1.1/"> + <head> + <meta charset=utf-8> + <title>Test 0015</title> + <link rel="dc:source" href="urn:isbn:0140449132"> + <meta property="dc:creator" content="Fyodor Dostoevsky"> + </head> + <body> + <p></p> + </body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0021-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0021-isvalid.html new file mode 100644 index 0000000000..21b9f42112 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0021-isvalid.html @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<html prefix="dc: http://purl.org/dc/elements/1.1/"> +<head> + <meta charset=utf-8> + <title>Test 0021</title> +</head> +<body> + <div> + <span class="attribution-line">this photo was taken by + <span property="dc:creator">Mark Birbeck</span> + </span> + </div> +</body> + + +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0023-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0023-isvalid.html new file mode 100644 index 0000000000..5859d45788 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0023-isvalid.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html prefix="dc: http://purl.org/dc/elements/1.1/"> + <head> + <meta charset=utf-8> + <title>Test 0023</title> + </head> + <body> + <div id="photo1"> + This photo was taken by + <span property="dc:creator">Mark Birbeck</span> + </div> + </body> + + +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0030-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0030-isvalid.html new file mode 100644 index 0000000000..7fd1a85ec7 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0030-isvalid.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html prefix="cc: http://creativecommons.org/ns#"> + <head> + <meta charset=utf-8> + <title>Test 0030</title> + </head> + <body> + <p>This document is licensed under a + <a rel="cc:license" + href="http://creativecommons.org/licenses/by-nc-nd/2.5/"> + Creative Commons License + </a>. + </p> + </body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0050-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0050-isvalid.html new file mode 100644 index 0000000000..94e28c88b6 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0050-isvalid.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html prefix="foaf: http://xmlns.com/foaf/0.1/"> + <head> + <meta charset=utf-8> + <title>Test 0050</title> + </head> + <body> + <div typeof="foaf:Person"> + <p property="foaf:name">John Doe</p> + </div> + </body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0052-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0052-isvalid.html new file mode 100644 index 0000000000..8e4d02f7bf --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0052-isvalid.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html prefix="foaf: http://xmlns.com/foaf/0.1/"> + <head> + <meta charset=utf-8> + <title>Test 0052</title> + </head> + <body> + <p typeof="foaf:Person" resource="http://www.example.org/#me"> + John Doe + </p> + </body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0053-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0053-isvalid.html new file mode 100644 index 0000000000..f5d2172923 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0053-isvalid.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html prefix="foaf: http://xmlns.com/foaf/0.1/"> + <head> + <meta charset=utf-8> + <title>Test 0053</title> + </head> + <body> + <p typeof="foaf:Person" resource="http://www.example.org/#me"> + <span property="foaf:name">John Doe</span> + </p> + </body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0066-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0066-isvalid.html new file mode 100644 index 0000000000..dc8642ac73 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0066-isvalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html prefix="foaf: http://xmlns.com/foaf/0.1/"> + <head typeof="foaf:Document"> + <meta charset=utf-8> + <title>Test 0066</title> + </head> + <body> + <p>This is test #66.</p> + </body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0067-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0067-isvalid.html new file mode 100644 index 0000000000..e60e30e04d --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0067-isvalid.html @@ -0,0 +1,9 @@ +<!DOCTYPE html> +<html prefix="foaf: http://xmlns.com/foaf/0.1/"> + <head> + <title property="foaf:topic">Test 0067</title> + </head> + <body> + <p>This is test #67.</p> + </body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0071-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0071-isvalid.html new file mode 100644 index 0000000000..511e0b7107 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0071-isvalid.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html prefix="cc: http://creativecommons.org/ns#"> + <head> + <meta charset=utf-8> + <title>Test 0071</title> + </head> + <body> + <p>This page is under a Creative Commons + <a rel="cc:license" + href="http://creativecommons.org/licenses/by-nd/3.0/"> + Attribution-No Derivatives 3.0 license</a>. + </p> + </body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0074-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0074-isvalid.html new file mode 100644 index 0000000000..e7e7456c06 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0074-isvalid.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html prefix="dc: http://purl.org/dc/elements/1.1/"> + <head> + <base href="http://www.example.org/"> + <meta charset=utf-8> + <title>Test 0074</title> + </head> + <body> + <p> + This article was written by + <a rel="dc:creator" href="jane">Jane</a>. + </p> + </body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0075-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0075-isvalid.html new file mode 100644 index 0000000000..1d4074d991 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0075-isvalid.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html prefix="dc: http://purl.org/dc/elements/1.1/"> + <head> + <base href="http://www.example.org/"> + <meta charset=utf-8> + <title>Test 0075</title> + </head> + <body> + <p> + This page is under a Creative Commons + <a rel="license" href="http://creativecommons.org/licenses/by-nd/3.0/">Attribution-No Derivatives 3.0 license</a>. + </p> + </body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0089-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0089-isvalid.html new file mode 100644 index 0000000000..21354e155e --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0089-isvalid.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html prefix="foaf: http://xmlns.com/foaf/0.1/"> + <head> + <meta charset=utf-8> + <title>Test 0089</title> + </head> + <body> + <div> + <img src="http://example.org/example.png" typeof="foaf:Image" alt="example image"> + </div> + </body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0115-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0115-isvalid.html new file mode 100644 index 0000000000..cde9b6e40d --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0115-isvalid.html @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<html prefix="ex: http://www.example.com/"> + <head> + <meta charset=utf-8> + <title>Test 0115</title> + </head> + <body> + <p>Description: XML entities in the RDFa content</p> + <p> + <span property="ex:entity1">></span> + <span property="ex:entity2">Ben & Co.</span> + <span property="ex:entity3">@</span> + <span property="ex:entity4">@</span> + </p> + </body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0117-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0117-isvalid.html new file mode 100644 index 0000000000..ed34d0ead6 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0117-isvalid.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html prefix="dc: http://purl.org/dc/elements/1.1/"> + <head> + <base href="http://www.example.org/tc117.xhtml#fragment"> + <title property="dc:title">Test 0117</title> + </head> + <body> + <p> + <span property="dc:contributor">Mark Birbeck</span> + added this triple test. + </p> + </body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0134-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0134-isvalid.html new file mode 100644 index 0000000000..ced8d6c899 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0134-isvalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test</title> + <link rel="LICENSE" href="http://example.org/test.css"> +</head> +<body> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0140-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0140-isvalid.html new file mode 100644 index 0000000000..d2a7123929 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0140-isvalid.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Blank-node as Predicate Test</title> +</head> +<body> +<p>Blank Nodes are not allowed to be predicate identifiers in RDF:</p> +<p property="_:invalid">Test</p> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0147.novalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0147.novalid.html new file mode 100644 index 0000000000..23adadedf1 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0147.novalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test</title> +</head> +<body> +<p xmlns:xmlzzz="http://example.org/" property="xmlzzz:test">Test</p> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0214-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0214-isvalid.html new file mode 100644 index 0000000000..395e645fb8 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0214-isvalid.html @@ -0,0 +1,9 @@ +<!DOCTYPE html> +<html typeof="foaf:Document"> +<head> + <title property="dc:title">Test 0214</title> +</head> +<body> + <p>This document has a title.</p> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0235-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0235-isvalid.html new file mode 100644 index 0000000000..183956137e --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0235-isvalid.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset=utf-8> + <title>Test 0235</title> + </head> + <body> + <p> + The <span property="dc:title">rdfagraph</span> should not generate triples when + looking only at the processor graph. + </p> + </body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0238-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0238-isvalid.html new file mode 100644 index 0000000000..92feca27ae --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0238-isvalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test 0238</title> +</head> +<body property="undefined_term"> + Undefined Term +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0239-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0239-isvalid.html new file mode 100644 index 0000000000..a28850ee58 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0239-isvalid.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test 0239</title> +</head> +<body property="rdf:value" + resource="[undefined:curie]"> + Undefined Prefix +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0240-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0240-isvalid.html new file mode 100644 index 0000000000..9938beaa8f --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0240-isvalid.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test 0240</title> +</head> +<body prefix="rdfatest: http://rdfa.info/vocabs/rdfa-test#" vocab="http://rdfa.info/vocabs/rdfa-test#"> + Using the property <code property="subProp" resource="rdfatest:subProp">subProp</code> + should cause a triple with <code>baseProp</code> to be added. +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0241-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0241-isvalid.html new file mode 100644 index 0000000000..eb6b77a98d --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0241-isvalid.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test 0241</title> +</head> +<body prefix="rdfatest: http://rdfa.info/vocabs/rdfa-test#" vocab="http://rdfa.info/vocabs/rdfa-test#"> + Using the property <code property="eqProp" resource="rdfatest:eqProp">eqProp</code> + should cause a triple with <code>baseProp</code> to be added. +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0242-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0242-isvalid.html new file mode 100644 index 0000000000..7b6a59078d --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0242-isvalid.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test 0242</title> +</head> +<body prefix="rdfatest: http://rdfa.info/vocabs/rdfa-test#" vocab="http://rdfa.info/vocabs/rdfa-test#"> + Using the property <code property="baseProp" resource="rdfatest:eqProp">eqProp</code> + should cause a triple with <code>eqProp</code> to be added. +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0255-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0255-isvalid.html new file mode 100644 index 0000000000..7b1d284b4d --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0255-isvalid.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html prefix="ex: http://example.org/terms#"> +<head> + <meta charset=utf-8> + <title>Test 0255</title> + <base href="http://example.org/"> +</head> +<body lang="en"> + <p property="ex:prop" lang="">Just a plain literal.</p> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0259-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0259-isvalid.html new file mode 100644 index 0000000000..e2c8e5d600 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0259-isvalid.html @@ -0,0 +1,48 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test 0259</title> +</head> +<body> + <div> + Vocabulary Prefixes + <span property="grddl:">GRDDL</span> + <span property="ma:">MA</span> + <span property="owl:">OWL</span> + <span property="rdf:">RDF</span> + <span property="rdfa:">RDFa</span> + <span property="rdfs:">RDFS</span> + <span property="rif:">RIF</span> + <span property="skos:">SKOS</span> + <span property="skosxl:">SKOS-XL</span> + <span property="wdr:">WDR</span> + <span property="void:">VOID</span> + <span property="wdrs:">WDRS</span> + <span property="xhv:">XHV</span> + <span property="xml:">XML</span> + <span property="xsd:">XSD</span> + </div> + <div> + Widely Used prefixes + <span property="cc:">CC</span> + <span property="ctag:">CTAG</span> + <span property="dc:">DC</span> + <span property="dcterms:">DCTERMS</span> + <span property="foaf:">FOAF</span> + <span property="gr:">GR</span> + <span property="ical:">ICAL</span> + <span property="og:">OG</span> + <span property="rev:">REV</span> + <span property="sioc:">SIOC</span> + <span property="v:">V</span> + <span property="vcard:">VCARD</span> + <span property="schema:">Schema</span> + </div> + <div> + Vocabulary Terms + <span property="describedby">DescribedBy</span> + <span property="license">License</span> + <span property="role">Role</span> + </div> +</body></html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0263-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0263-isvalid.html new file mode 100644 index 0000000000..d8ef4b0b27 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0263-isvalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html property="rdfs:seeAlso" resource="http://www.example.org"> +<head > + <meta charset=utf-8> + <title>Test 0263</title> +</head> +<body> + <p> </p> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0264-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0264-isvalid.html new file mode 100644 index 0000000000..62cefe5013 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0264-isvalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head property="rdfs:seeAlso" resource="http://www.example.org"> + <meta charset=utf-8> + <title>Test 0264</title> +</head> +<body> + <p> </p> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0272-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0272-isvalid.html new file mode 100644 index 0000000000..ddd86e6b6d --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0272-isvalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test 0272</title> +</head> +<body> + <time property="rdf:value" datetime="2012-03-18">18 March 2012</time> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0273-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0273-isvalid.html new file mode 100644 index 0000000000..3bbf607f8a --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0273-isvalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test 0273</title> +</head> +<body> + <time property="rdf:value" datetime="00:00:00">midnight</time> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0274-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0274-isvalid.html new file mode 100644 index 0000000000..faf6d451ed --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0274-isvalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test 0274</title> +</head> +<body> + <time property="rdf:value" datetime="2012-03-18T00:00:00Z">18 March 2012 at midnight</time> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0275-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0275-isvalid.html new file mode 100644 index 0000000000..c53311b645 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0275-isvalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test 0275</title> +</head> +<body> + <time property="rdf:value">2012-03-18</time> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0276-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0276-isvalid.html new file mode 100644 index 0000000000..6ca34862b6 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0276-isvalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test 0275</title> +</head> +<body> + <time property="rdf:value">00:00:00</time> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0277-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0277-isvalid.html new file mode 100644 index 0000000000..61922bf18f --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0277-isvalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test 0277</title> +</head> +<body> + <time property="rdf:value">2012-03-18T00:00:00Z</time> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0281-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0281-isvalid.html new file mode 100644 index 0000000000..1158dc9361 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0281-isvalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test 0281</title> +</head> +<body> + <time property="rdf:value" datetime="2012">Two Thousand Twelve</time> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0282-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0282-isvalid.html new file mode 100644 index 0000000000..1fd9cb1a1f --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0282-isvalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test 0282</title> +</head> +<body> + <time property="rdf:value" datetime="2012-03">March, Two Thousand Twelve</time> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0283-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0283-isvalid.html new file mode 100644 index 0000000000..3be86a46f5 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0283-isvalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test 0283</title> +</head> +<body> + <time property="rdf:value"> 2012-03-18</time> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0287-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0287-isvalid.html new file mode 100644 index 0000000000..17aa300748 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0287-isvalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test 0287</title> +</head> +<body> + <time property="rdf:value" datetime="2012-03-18T00:00:00-08:00">18 March 2012 at midnight in San Francisco</time> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0296-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0296-isvalid.html new file mode 100644 index 0000000000..bdf56c40ed --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0296-isvalid.html @@ -0,0 +1,27 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test 0296</title> +</head> +<body> + <div vocab="http://xmlns.com/foaf/0.1/" resource="http://example.com/gregg/#me" typeof="Person"> + <a property="homepage" href="http://example.com/gregg/"><span property="name">Gregg</span></a> + Knows + <ul> + <li property="knows" resource="http://example.com/niklas/#me" typeof="Person"> + <a property="homepage" href="http://example.com/niklas/"><span property="name">Niklas</span></a> + </li> + <li property="knows" resource="http://example.com/stéphane/#me" typeof="Person"> + <a property="homepage" href="http://example.com/stéphane/"><span property="name">Stéphane</span></a> + </li> + <li property="knows" resource="http://example.com/ivan/#me" typeof="Person"> + <a property="homepage" href="http://example.com/ivan/"><span property="name">Ivan</span></a> + </li> + <li property="knows" resource="http://example.com/manu/#me" typeof="Person"> + <a property="homepage" href="http://example.com/manu/"><span property="name">Manu</span></a> + </li> + </ul> + </div> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0301-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0301-isvalid.html new file mode 100644 index 0000000000..f6dce1da96 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0301-isvalid.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test 0301: Typed Property</title> +</head> +<body> + <p vocab="http://www.milowski.com/V/" property="bit" typeof="thing"> + <span property="name">Fizzbit</span> + </p> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0302-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0302-isvalid.html new file mode 100644 index 0000000000..21020d0fc4 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0302-isvalid.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test 0302: various types of tokens in @typeof</title> +</head> +<body> + <div vocab="http://schema.org/" resource="http://openspring.net/scor#me" typeof="Person foaf:Person http://purl.org/dc/terms/Agent"> + <a property="homepage" href="http://openspring.net/"><span property="name">Stéphane Corlosquet</span></a> + </div> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0305-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0305-isvalid.html new file mode 100644 index 0000000000..3ee7f48603 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0305-isvalid.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset=utf-8> + <title>Test 0305</title> + </head> + <body> + <div id="heading1" role="heading"> + <p>Some contents that are a header</p> + </div> + </body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0306-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0306-isvalid.html new file mode 100644 index 0000000000..6b720f0348 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0306-isvalid.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset=utf-8> + <title>Test 0306</title> + <base href="http://www.example.com/tests/0306"> + </head> + <body> + <div id="heading1" role="heading"> + <p>Some contents that are a header</p> + </div> + </body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0307-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0307-isvalid.html new file mode 100644 index 0000000000..c9b99557ab --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0307-isvalid.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset=utf-8> + <title>Test 0307</title> + </head> + <body> + <div role="heading"> + <p>Some contents that are a header</p> + </div> + </body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0311-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0311-isvalid.html new file mode 100644 index 0000000000..e8991e4aed --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0311-isvalid.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test 0311</title> +</head> +<body> + <div> + <span class="attribution-line">this photo was taken by + <span property="">Stéphane Corlosquet</span> + </span> + </div> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0312-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0312-isvalid.html new file mode 100644 index 0000000000..af489fe88b --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0312-isvalid.html @@ -0,0 +1,12 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test 0312</title> +</head> +<body> + <p vocab="http://schema.org/" typeof="Person"> + The homepage of <a href="http://example.org/" property="homepage" rel="nofollow">Some Body</a>. + </p> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0313-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0313-isvalid.html new file mode 100644 index 0000000000..e4b4b760da --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0313-isvalid.html @@ -0,0 +1,10 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test 0313</title> +</head> +<body prefix="rdfa: http://www.example.org/" resource="http://www.example.com"> + <p property="rdfa:erronouslyRedefinedProperty">Foo</p> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0319-novalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0319-novalid.html new file mode 100644 index 0000000000..5397314f25 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0319-novalid.html @@ -0,0 +1,11 @@ +<!DOCTYPE html> +<html> +<head> + <base href="http://example.com/"> + <meta charset=utf-8> + <title>Test 0319</title> +</head> +<body prefix="pr: relative/iri#" xmlns:xpr="relative/uri#"> + <p property="pr:prop xpr:prop">value</p> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0321-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0321-isvalid.html new file mode 100644 index 0000000000..ee9159d0ba --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0321-isvalid.html @@ -0,0 +1,13 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test 0321</title> +</head> +<body vocab="http://schema.org/"> + <div typeof="Person"> + <link property="rdfa:copy" resource="_:a"> + </div> + <p resource="_:a" typeof="rdfa:Pattern">Name: <span property="name">Amanda</span></p> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0322-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0322-isvalid.html new file mode 100644 index 0000000000..f10dd51cad --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0322-isvalid.html @@ -0,0 +1,14 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test 0322</title> +</head> +<body vocab="http://schema.org/"> + <div typeof="Person"> + <p>My name is <span property="name">Gregg</span></p> + <link property="rdfa:copy" resource="_:surname"> + </div> + <p resource="_:surname" typeof="rdfa:Pattern">My name is <span property="name">Kellogg</span></p> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0323-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0323-isvalid.html new file mode 100644 index 0000000000..6e8d034b46 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0323-isvalid.html @@ -0,0 +1,16 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test 0323</title> +</head> +<body> + <div typeof="schema:Person"> + <link property="rdfa:copy" resource="_:a"> + </div> + <div typeof="foaf:Person"> + <link property="rdfa:copy" resource="_:a"> + </div> + <p resource="_:a" typeof="rdfa:Pattern">Name: <span property="schema:name foaf:name">Amanda</span></p> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0324-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0324-isvalid.html new file mode 100644 index 0000000000..20d6529d4a --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0324-isvalid.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html> +<head> + <meta charset=utf-8> + <title>Test 0324</title> +</head> +<body> + <div typeof="schema:Person"> + <link property="rdfa:copy" resource="_:a"> + <link property="rdfa:copy" resource="_:b"> + </div> + <p resource="_:a" typeof="rdfa:Pattern">Name: <span property="schema:name">Amanda</span></p> + <p resource="_:b" typeof="rdfa:Pattern"><span property="schema:band">Jazz Band</span></p> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0325-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0325-isvalid.html new file mode 100644 index 0000000000..549844fd79 --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0325-isvalid.html @@ -0,0 +1,17 @@ +<!DOCTYPE html> +<html> +<head> + <base href="http://example.org/"> + <meta charset=utf-8> + <title>Test 0325</title> +</head> +<body vocab="http://schema.org/"> + <div resource="#foo" typeof=""><link property="rdfa:copy" resource="_:a"></div> + <div resource="#bar" typeof=""><link property="rdfa:copy" resource="_:a"></div> + <div resource="_:a" typeof="rdfa:Pattern"> + <div property="schema:refers-to" typeof=""> + <span property="schema:name">Amanda</span> + </div> + </div> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0326-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0326-isvalid.html new file mode 100644 index 0000000000..5791c1c38f --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0326-isvalid.html @@ -0,0 +1,15 @@ +<!DOCTYPE html> +<html> +<head> + <base href="http://example.com/"> + <meta charset=utf-8> + <title>Test 0326</title> +</head> +<body vocab="http://schema.org/"> + <div resource="#referencing" typeof="Person"> + <link property="rdfa:copy" resource="#referenced"> + </div> + <p resource="#referenced" typeof="rdfa:Pattern">Name: <span property="name">Bella</span></p> + <p resource="#unreferenced" typeof="rdfa:Pattern">Name: <span property="name">Lola</span></p> +</body> +</html> diff --git a/testing/web-platform/tests/conformance-checkers/html-rdfalite/0327-isvalid.html b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0327-isvalid.html new file mode 100644 index 0000000000..7228f861ce --- /dev/null +++ b/testing/web-platform/tests/conformance-checkers/html-rdfalite/0327-isvalid.html @@ -0,0 +1,24 @@ +<!DOCTYPE html> +<html> +<head> + <base href="http://example.com/"> + <meta charset=utf-8> + <title>Test 0327</title> +</head> +<body> + <div typeof="schema:Person"> + <link property="rdfa:copy" resource="_:a"> + <link property="rdfa:copy" resource="_:b"> + </div> + <p resource="_:a" typeof="rdfa:Pattern">Name: <span property="schema:name">Amanda</span></p> + <div resource="_:b" typeof="rdfa:Pattern"> + <div property="schema:band" typeof=" schema:MusicGroup"> + <link property="rdfa:copy" resource="_:c"> + </div> + </div> + <div resource="_:c" typeof="rdfa:Pattern"> + <p>Band: <span property="schema:name">Jazz Band</span></p> + <p>Size: <span property="schema:size">12</span> players</p> + </div> +</body> +</html> |