Skip to content

Commit ec48511

Browse files
committed
Move tests under test-cases, as in original.
1 parent 5410bc4 commit ec48511

3,996 files changed

Lines changed: 31452 additions & 395 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

index.html

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626
<div class='btn-group' data-toggle='buttons-radio' id='versions'></div>
2727
</div>
2828
<div class='span2'>
29-
<button autocomplete='off' class='btn btn-primary' data-loading-text='Running' id='run-all'>Run All Tests</button>
29+
<button class='btn btn-primary' data-loading-text='Running' id='run-all'>Run All Tests</button>
3030
</div>
3131
</div>
3232
<div class='row' id='test-progress'>
@@ -38,8 +38,8 @@
3838
<div class='span2'>
3939
<div class='test-status'>
4040
<div>Total: <span class="test-total"></span></div>
41-
<div>Passed: <span class="test-passed"></span></div></div>
42-
<div>Failed: <span class="test-failed"></span></div></div>
41+
<div>Passed: <span class="test-passed"></span></div>
42+
<div>Failed: <span class="test-failed"></span></div>
4343
<div class='btn-group' id='earl'>
4444
<a class='btn btn-primary show' href='#'>EARL Report</a>
4545
<a class='btn btn-primary dropdown-toggle' data-toggle='dropdown' href='#'><span class="caret"></span></a>
@@ -64,6 +64,7 @@ <h2>Overview</h2>
6464
<li>You can execute every unit test by clicking on the <button class='btn btn-primary'>Run All Tests</button> button.</li>
6565
<li>After running all tests, you can generate an <a href="">EARL Report</a> using the <button class='btn btn-primary'>EARL Report</button> button.</li>
6666
</ul>
67+
<p>So that the test suite can access the processor to request resources, please be sure to add <code>Access-Control-Allow-Origin: *</code> to returned HTTP headers.</p>
6768
</div>
6869
<div class='row'>
6970
<h2>
@@ -97,15 +98,15 @@ <h3>Test Manifest Loading</h3>
9798
<div class='span12'>
9899
<div class='row'>
99100
<div class='span1'>
100-
<button autocomplete='off' class='btn btn-primary test' data-loading-text='Running'>Test</button>
101+
<button class='btn btn-primary test' data-loading-text='Running'>Test</button>
101102
</div>
102103
<div class='span8'>
103104
<span class='test-num'>Test <%= num %>:</span>
104105
<span class='description'><%= description %> <%= negativeTest %></span>
105106
</div>
106107
<div class='span3 pull-right'>
107-
<button autocomplete='off' class='btn btn-info details' data-complete-text='details' data-loading-text='Loading details ...'>details</button>
108-
<button autocomplete='off' class='btn btn-info source' data-complete-text='source' data-loading-text='Loading tests ...'>source</button>
108+
<button class='btn btn-info details' data-complete-text='details' data-loading-text='Loading details ...'>details</button>
109+
<button class='btn btn-info source' data-complete-text='source' data-loading-text='Loading tests ...'>source</button>
109110
</div>
110111
</div>
111112
</div>

rdfa1.1/html4/0079.ttl

Lines changed: 0 additions & 5 deletions
This file was deleted.

rdfa1.1/html5-invalid/0079.ttl

Lines changed: 0 additions & 5 deletions
This file was deleted.

rdfa1.1/xhtml1/0079.ttl

Lines changed: 0 additions & 5 deletions
This file was deleted.

test-cases/rdfa1.0/html4/0001.html

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/MarkUp/DTD/html401-rdfa11-1.dtd">
2+
<html version="HTML+RDFa 1.1" xmlns:dc="http://purl.org/dc/elements/1.1/">
3+
<head>
4+
<title>Test 0001</title>
5+
</head>
6+
<body>
7+
<p>This photo was taken by <span class="author" about="photo1.jpg" property="dc:creator">Mark Birbeck</span>.</p>
8+
</body>
9+
</html>
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
ASK WHERE {
2+
<http://rdfa.info/test-suite/test-cases/rdfa1.0/html4/photo1.jpg> <http://purl.org/dc/elements/1.1/creator> "Mark Birbeck" .
3+
}

test-cases/rdfa1.0/html4/0001.ttl

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
@prefix dc11: <http://purl.org/dc/elements/1.1/> .
2+
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
3+
4+
<http://rdfa.info/test-suite/test-cases/rdfa1.0/photo1.jpg> dc11:creator "Mark Birbeck" .

test-cases/rdfa1.0/html4/0006.html

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/MarkUp/DTD/html401-rdfa11-1.dtd">
2+
<html version="HTML+RDFa 1.1" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:foaf="http://xmlns.com/foaf/0.1/">
3+
<head>
4+
<title>Test 0006</title>
5+
</head>
6+
<body>
7+
<p>
8+
This photo was taken by
9+
<a about="photo1.jpg" rel="dc:creator" rev="foaf:img"
10+
href="http://www.blogger.com/profile/1109404">Mark Birbeck</a>.
11+
</p>
12+
</body>
13+
</html>
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
ASK WHERE {
2+
<http://www.blogger.com/profile/1109404> <http://xmlns.com/foaf/0.1/img> <http://rdfa.info/test-suite/test-cases/rdfa1.0/html4/photo1.jpg> .
3+
<http://rdfa.info/test-suite/test-cases/rdfa1.0/html4/photo1.jpg> <http://purl.org/dc/elements/1.1/creator> <http://www.blogger.com/profile/1109404> .
4+
}
5+
6+
7+
8+

test-cases/rdfa1.0/html4/0006.ttl

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
@prefix dc11: <http://purl.org/dc/elements/1.1/> .
2+
@prefix foaf: <http://xmlns.com/foaf/0.1/> .
3+
4+
<http://rdfa.info/test-suite/test-cases/rdfa1.0/photo1.jpg> dc11:creator <http://www.blogger.com/profile/1109404> .
5+
6+
<http://www.blogger.com/profile/1109404> foaf:img <http://rdfa.info/test-suite/test-cases/rdfa1.0/photo1.jpg> .

0 commit comments

Comments
 (0)