This repository has been archived by the owner on Mar 13, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathmanifest.ttl
2737 lines (2706 loc) · 141 KB
/
manifest.ttl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
@base <http://rdfa.info/test-suite/manifest> .
@prefix dc: <http://purl.org/dc/terms/> .
@prefix log: <http://www.w3.org/2000/10/swap/log#> .
@prefix owl: <http://www.w3.org/2002/07/owl#> .
@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix test: <http://www.w3.org/2006/03/test-description#> .
@prefix rdfatest: <http://rdfa.info/vocabs/rdfa-test#> .
@prefix xsd: <http://www.w3.org/2001/XMLSchema#> .
<test-cases/0001> dc:contributor "Elias Torres";
dc:title "Predicate establishment with @property";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0001.html>;
test:informationResourceResults <test-cases/0001.sparql>;
test:purpose "Tests @property to establish the predicate; literal object is in the content of the element.";
test:specificationReference "" .
<test-cases/0006> dc:contributor "Elias Torres";
dc:title "@rel and @rev";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0006.html>;
test:informationResourceResults <test-cases/0006.sparql>;
test:purpose "Tests @rev and @rel together, with the object being specified by @href, ignoring content";
test:specificationReference "" .
<test-cases/0007> dc:contributor "Elias Torres";
dc:title "@rel, @rev, @property, @content";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0007.html>;
test:informationResourceResults <test-cases/0007.sparql>;
test:purpose "Tests @rel, @rev, @property, and @content together to generate several RDF triples.";
test:specificationReference "" .
<test-cases/0008> dc:contributor "Elias Torres";
dc:title "empty string @about";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0008.html>;
test:informationResourceResults <test-cases/0008.sparql>;
test:purpose "Tests empty @about.";
test:specificationReference "" .
<test-cases/0009> dc:contributor "Elias Torres";
dc:title "@rev";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0009.html>;
test:informationResourceResults <test-cases/0009.sparql>;
test:purpose "Tests @rev.";
test:specificationReference "" .
<test-cases/0010> dc:contributor "Elias Torres";
dc:title "@rel, @rev, @href";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0010.html>;
test:informationResourceResults <test-cases/0010.sparql>;
test:purpose "Tests @rel, @rev, and @href to generate two RDF triples.";
test:specificationReference "" .
<test-cases/0012> dc:contributor "Elias Torres";
dc:title "@xml:lang";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1";
test:informationResourceInput <test-cases/0012.html>;
test:informationResourceResults <test-cases/0012.sparql>;
test:purpose "Tests @xml:lang";
test:specificationReference "" .
<test-cases/0013> dc:contributor "Elias Torres";
dc:title "@xml:lang inheritance";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1";
test:informationResourceInput <test-cases/0013.html>;
test:informationResourceResults <test-cases/0013.sparql>;
test:purpose "Tests @xml:lang inheritance";
test:specificationReference "" .
<test-cases/0014> dc:contributor "Elias Torres";
dc:title "@datatype, xsd:integer";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0014.html>;
test:informationResourceResults <test-cases/0014.sparql>;
test:purpose "Tests setting the @datatype to xsd:integer";
test:specificationReference "" .
<test-cases/0015> dc:contributor "Elias Torres";
dc:title "meta and link";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1", "rdfa1.1-lite";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0015.html>;
test:informationResourceResults <test-cases/0015.sparql>;
test:purpose "Tests meta and link with no parent @about";
test:specificationReference "" .
<test-cases/0017> dc:contributor "Elias Torres";
dc:title "Related blanknodes";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0017.html>;
test:informationResourceResults <test-cases/0017.sparql>;
test:purpose "Tests creation of statements involving explicitly created blank nodes.";
test:specificationReference "" .
<test-cases/0018> dc:contributor "Wing Yung";
dc:title "@rel for predicate";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0018.html>;
test:informationResourceResults <test-cases/0018.sparql>;
test:purpose "Tests @rel to establish predicate.";
test:specificationReference "" .
<test-cases/0019> dc:contributor "Wing Yung";
dc:title "@about for subject";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5-invalid", "xhtml5-invalid";
test:informationResourceInput <test-cases/0019.html>;
test:informationResourceResults <test-cases/0019.sparql>;
test:purpose "Tests @about to establish subject.";
test:specificationReference "" .
<test-cases/0020> dc:contributor "Wing Yung";
dc:title "Inheriting @about for subject";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0020.html>;
test:informationResourceResults <test-cases/0020.sparql>;
test:purpose "Tests @about inheritance to establish subject.";
test:specificationReference "" .
<test-cases/0021> dc:contributor "Wing Yung";
dc:title "Subject inheritance with no @about";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1", "rdfa1.1-lite";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0021.html>;
test:informationResourceResults <test-cases/0021.sparql>;
test:purpose "Tests inheritance of subject when no @about can be found";
test:specificationReference "" .
<test-cases/0023> dc:contributor "Wing Yung";
dc:title "@id does not generate subjects";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1", "rdfa1.1-lite";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0023.html>;
test:informationResourceResults <test-cases/0023.sparql>;
test:purpose "Tests that @id does not generate subjects";
test:specificationReference "" .
<test-cases/0025> dc:contributor "Ben Adida";
dc:title "simple chaining test";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0025.html>;
test:informationResourceResults <test-cases/0025.sparql>;
test:purpose "Tests simple chaining with cascade of @resource and @property";
test:specificationReference "" .
<test-cases/0026> dc:contributor "Wing Yung";
dc:title "@content";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0026.html>;
test:informationResourceResults <test-cases/0026.sparql>;
test:purpose "Tests @content for literal object";
test:specificationReference "" .
<test-cases/0027> dc:contributor "Wing Yung";
dc:title "@content, ignore element content";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0027.html>;
test:informationResourceResults <test-cases/0027.sparql>;
test:purpose "Tests @content for literal object, overriding element content.";
test:specificationReference "" .
<test-cases/0029> dc:contributor "Michael Hausenblas";
dc:title "markup stripping with @datatype";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0029.html>;
test:informationResourceResults <test-cases/0029.sparql>;
test:purpose "Tests markup stripping from a span element with @datatype=xsd:string";
test:specificationReference "" .
<test-cases/0030> dc:contributor "Michael Hausenblas";
dc:title "omitted @about";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1", "rdfa1.1-lite";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0030.html>;
test:informationResourceResults <test-cases/0030.sparql>;
test:purpose "Tests omitted @about.";
test:specificationReference "" .
<test-cases/0031> dc:contributor "Ralph Swick";
dc:title "simple @resource";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0031.html>;
test:informationResourceResults <test-cases/0031.sparql>;
test:purpose "Tests if @resource sets URIref object correct.";
test:specificationReference "" .
<test-cases/0032> dc:contributor "Ralph Swick";
dc:title "@resource overrides @href";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0032.html>;
test:informationResourceResults <test-cases/0032.sparql>;
test:purpose "Tests if @resource overrides @href to set the URIref object.";
test:specificationReference "" .
<test-cases/0033> dc:contributor "Michael Hausenblas";
dc:title "simple chaining test with bNode";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0033.html>;
test:informationResourceResults <test-cases/0033.sparql>;
test:purpose "Tests simple chaining with cascade of bNode and @property";
test:specificationReference "" .
<test-cases/0034> dc:contributor "Michael Hausenblas";
dc:title "simple img[@src] test";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0034.html>;
test:informationResourceResults <test-cases/0034.sparql>;
test:purpose "Tests if a @src (in img element) correctly sets the URIref object";
test:specificationReference "" .
<test-cases/0035> dc:contributor "Michael Hausenblas";
dc:title "@src/@href test";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5-invalid", "xhtml5-invalid";
test:informationResourceInput <test-cases/0035.html>;
test:informationResourceResults <test-cases/0035.sparql>;
test:purpose "Tests if @href overwrites @src";
test:specificationReference "" .
<test-cases/0036> dc:contributor "Michael Hausenblas";
dc:title "@src/@resource test";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0036.html>;
test:informationResourceResults <test-cases/0036.sparql>;
test:purpose "Tests if @resource overwrites @src";
test:specificationReference "" .
<test-cases/0037> dc:contributor "Steven Pemberton";
dc:title "@src/@href/@resource test";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5-invalid", "xhtml5-invalid";
test:informationResourceInput <test-cases/0037.html>;
test:informationResourceResults <test-cases/0037.sparql>;
test:purpose "Tests if @resource overwrites both @href and @src";
test:specificationReference "" .
<test-cases/0038> dc:contributor "Mark Birbeck";
dc:title "@rev - img[@src] test";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0038.html>;
test:informationResourceResults <test-cases/0038.sparql>;
test:purpose "Tests if a @src (in img element) correctly sets the URIref subject (due to @rev)";
test:specificationReference "" .
<test-cases/0039> dc:contributor "Mark Birbeck";
dc:title "@rev - @src/@href test";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5-invalid", "xhtml5-invalid";
test:informationResourceInput <test-cases/0039.html>;
test:informationResourceResults <test-cases/0039.sparql>;
test:purpose "Tests if @href overwrites @src correctly to set the URIref subject (due to @rev)";
test:specificationReference "" .
<test-cases/0040> dc:contributor "Mark Birbeck";
dc:title "@rev - @src/@resource test";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0";
test:classification test:required;
rdfatest:hostLanguage "xhtml1", "html4";
test:informationResourceInput <test-cases/0040.html>;
test:informationResourceResults <test-cases/0040.sparql>;
test:purpose "Tests if @resource overwrites @src correctly to set the URIref subject (due to @rev)";
test:specificationReference "" .
<test-cases/0041> dc:contributor "Mark Birbeck";
dc:title "@rev - @src/@href/@resource test";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5-invalid", "xhtml5-invalid";
test:informationResourceInput <test-cases/0041.html>;
test:informationResourceResults <test-cases/0041.sparql>;
test:purpose "Tests if @resource overwrites both @href and @src correctly to set the URIref subject (due to @rev)";
test:specificationReference "" .
<test-cases/0042> dc:contributor "Ben Adida";
dc:title "img[@src] test with omitted @about";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0";
test:classification test:required;
test:expectedResults "false"^^xsd:boolean;
rdfatest:hostLanguage "xml", "xhtml1", "html4";
test:informationResourceInput <test-cases/0042.html>;
test:informationResourceResults <test-cases/0042.sparql>;
test:purpose "Tests if a @src (in img element) correctly sets the URIref object (with omitted @about)";
test:specificationReference "" .
<test-cases/0046> dc:contributor "Ivan Herman";
dc:title "@typeof with @rel present, no @href, @resource, or @about";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1";
test:informationResourceInput <test-cases/0046.html>;
test:informationResourceResults <test-cases/0046.sparql>;
test:purpose "Tests @typeof with @rel present, no @href, @resource, or @about";
test:specificationReference "" .
<test-cases/0047> dc:contributor "Ivan Herman";
dc:title "@typeof with @rel and @resource present, no @about";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1";
test:informationResourceInput <test-cases/0047.html>;
test:informationResourceResults <test-cases/0047.sparql>;
test:purpose "Tests @typeof with @rel and @resource present, no @about";
test:specificationReference "" .
<test-cases/0048> dc:contributor "Ivan Herman";
dc:title "@typeof with @about and @rel present, no @resource";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0048.html>;
test:informationResourceResults <test-cases/0048.sparql>;
test:purpose "Tests @typeof with @about and @rel present, no @resource";
test:specificationReference "" .
<test-cases/0049> dc:contributor "Ivan Herman";
dc:title "@typeof with @about, no @rel or @resource";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0049.html>;
test:informationResourceResults <test-cases/0049.sparql>;
test:purpose "Tests @typeof with @about, no @rel or @resource";
test:specificationReference "" .
<test-cases/0050> dc:contributor "Ivan Herman";
dc:title "@typeof without anything else";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1", "rdfa1.1-lite";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0050.html>;
test:informationResourceResults <test-cases/0050.sparql>;
test:purpose "Tests @typeof without anything else";
test:specificationReference "" .
<test-cases/0051> dc:contributor "Ivan Herman";
dc:title "@typeof with a single @property";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0051.html>;
test:informationResourceResults <test-cases/0051.sparql>;
test:purpose "Tests @typeof with a single @property";
test:specificationReference "" .
<test-cases/0052> dc:contributor "Ivan Herman";
dc:title "@typeof with @resource and nothing else";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1", "rdfa1.1-lite";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0052.html>;
test:informationResourceResults <test-cases/0052.sparql>;
test:purpose "Tests to ensure that @typeof does not apply to @resource";
test:specificationReference "" .
<test-cases/0053> dc:contributor "Ivan Herman";
dc:title "@typeof with @resource and nothing else, with a subelement";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1", "rdfa1.1-lite";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0053.html>;
test:informationResourceResults <test-cases/0053.sparql>;
test:purpose "Tests to make sure that @typeof does not apply to @resource, but @resource sets the subject for the next triple to be generated";
test:specificationReference "" .
<test-cases/0054> dc:contributor "Fabien Gandon";
dc:title "multiple @property";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0054.html>;
test:informationResourceResults <test-cases/0054.sparql>;
test:purpose "Tests multiple @property separated by white spaces";
test:specificationReference "" .
<test-cases/0055> dc:contributor "Fabien Gandon";
dc:title "multiple @rel";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0055.html>;
test:informationResourceResults <test-cases/0055.sparql>;
test:purpose "Tests multiple @rel separated by white spaces";
test:specificationReference "" .
<test-cases/0056> dc:contributor "Manu Sporny";
dc:title "@typeof applies to @about on same element with hanging rel";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0056.html>;
test:informationResourceResults <test-cases/0056.sparql>;
test:purpose "Tests if @typeof applies to @about on same element with hanging @rel";
test:specificationReference "" .
<test-cases/0057> dc:contributor "Manu Sporny";
dc:title "hanging @rel creates multiple triples";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0057.html>;
test:informationResourceResults <test-cases/0057.sparql>;
test:purpose "Tests if hanging @rel creates multiple triples";
test:specificationReference "" .
<test-cases/0058> dc:contributor "Manu Sporny";
dc:title "hanging @rel creates multiple triples, @typeof permutation; RDFa 1.0 version";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0058.html>;
test:informationResourceResults <test-cases/0058.sparql>;
test:purpose "Tests if hanging @rel creates multiple triples with @typeof permutation";
test:specificationReference "" .
<test-cases/0059> dc:contributor "Manu Sporny";
dc:title "multiple hanging @rels with multiple children";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0059.html>;
test:informationResourceResults <test-cases/0059.sparql>;
test:purpose "Tests multiple hanging @rels with multiple children";
test:specificationReference "" .
<test-cases/0060> dc:contributor "Manu Sporny";
dc:title "UTF-8 conformance";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0060.html>;
test:informationResourceResults <test-cases/0060.sparql>;
test:purpose "Tests conformance with UTF-8 encoding";
test:specificationReference "" .
<test-cases/0061> dc:contributor "Manu Sporny";
dc:title "@rel in head using reserved, non-prefixed XHTML value";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xhtml1";
test:informationResourceInput <test-cases/0061.html>;
test:informationResourceResults <test-cases/0061.sparql>;
test:purpose "Tests @rel in head using reserved, non-prefixed XHTML value";
test:specificationReference "" .
<test-cases/0062> dc:contributor "Manu Sporny";
dc:title "@rev in head using reserved, non-prefixed XHTML value";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xhtml1";
test:informationResourceInput <test-cases/0062.html>;
test:informationResourceResults <test-cases/0062.sparql>;
test:purpose "Tests @rev in head using reserved, non-prefixed XHTML value";
test:specificationReference "" .
<test-cases/0063> dc:contributor "Manu Sporny";
dc:title "@rel in head using reserved XHTML value and empty-prefix CURIE syntax";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0063.html>;
test:informationResourceResults <test-cases/0063.sparql>;
test:purpose "Tests @rel in head using reserved XHTML value and empty-prefix CURIE syntax";
test:specificationReference "" .
<test-cases/0064> dc:contributor "Manu Sporny";
dc:title "@about with safe CURIE";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0064.html>;
test:informationResourceResults <test-cases/0064.sparql>;
test:purpose "Tests if @about generates a proper triple when a safe CURIE is used";
test:specificationReference "" .
<test-cases/0065> dc:contributor "Manu Sporny";
dc:title "@rel with safe CURIE";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0065.html>;
test:informationResourceResults <test-cases/0065.sparql>;
test:purpose "Tests if @rel properly connects triples generated when safe CURIEs are used";
test:specificationReference "" .
<test-cases/0066> dc:contributor "Manu Sporny";
dc:title "@about with @typeof in the head";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1", "rdfa1.1-lite";
test:classification test:required;
rdfatest:hostLanguage "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0066.html>;
test:informationResourceResults <test-cases/0066.sparql>;
test:purpose "Test to make sure that @about (with current document) is implied in the head, and the proper triples are generated using @typeof";
test:specificationReference "" .
<test-cases/0067> dc:contributor "Manu Sporny";
dc:title "@property in the head";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1", "rdfa1.1-lite";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0067.html>;
test:informationResourceResults <test-cases/0067.sparql>;
test:purpose "Test to make sure that @property in head uses the implied current document as the subject if no other subject is specified";
test:specificationReference "" .
<test-cases/0068> dc:contributor "Manu Sporny";
dc:title "Relative URI in @about";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0068.html>;
test:informationResourceResults <test-cases/0068.sparql>;
test:purpose "Tests to ensure that relative URI is resolved correctly when used in @about";
test:specificationReference "" .
<test-cases/0069> dc:contributor "Manu Sporny";
dc:title "Relative URI in @href";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0069.html>;
test:informationResourceResults <test-cases/0069.sparql>;
test:purpose "Tests to ensure that relative URI is resolved correctly when used in @href";
test:specificationReference "" .
<test-cases/0070> dc:contributor "Manu Sporny";
dc:title "Relative URI in @resource";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0070.html>;
test:informationResourceResults <test-cases/0070.sparql>;
test:purpose "Tests to ensure that relative URI is resolved correctly when used in @resource";
test:specificationReference "" .
<test-cases/0071> dc:contributor "Manu Sporny";
dc:title "No explicit @about";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1", "rdfa1.1-lite";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0071.html>;
test:informationResourceResults <test-cases/0071.sparql>;
test:purpose "Tests to ensure that a triple is generated even if @typeof and @about is not specified anywhere in the document";
test:specificationReference "" .
<test-cases/0072> dc:contributor "Manu Sporny";
dc:title "Relative URI in @about (with XHTML base in head)";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0072.html>;
test:informationResourceResults <test-cases/0072.sparql>;
test:purpose "Tests to ensure that relative URIs are resolved correctly when used in @about with XHTML base set in head";
test:specificationReference "" .
<test-cases/0073> dc:contributor "Manu Sporny";
dc:title "Relative URI in @resource (with XHTML base in head)";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0073.html>;
test:informationResourceResults <test-cases/0073.sparql>;
test:purpose "Tests to ensure that relative URIs are resolved correctly when used in @resource with XHTML base set in head";
test:specificationReference "" .
<test-cases/0074> dc:contributor "Manu Sporny";
dc:title "Relative URI in @href (with XHTML base in head)";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1", "rdfa1.1-lite";
test:classification test:required;
rdfatest:hostLanguage "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0074.html>;
test:informationResourceResults <test-cases/0074.sparql>;
test:purpose "Tests to ensure that relative URIs are resolved correctly when used in @href with XHTML base set in head";
test:specificationReference "" .
<test-cases/0075> dc:contributor "Manu Sporny";
dc:title "Reserved word 'license' in @rel with no explicit @about";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1", "rdfa1.1-lite";
test:classification test:required;
rdfatest:hostLanguage "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0075.html>;
test:informationResourceResults <test-cases/0075.sparql>;
test:purpose "Tests to ensure that the XHTML+RDFa reserved word 'license' when used in @rel (with no @about) generates the proper triple";
test:specificationReference "" .
<test-cases/0076> dc:contributor "Manu Sporny";
dc:title "All reserved XHTML @rel values";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xhtml1";
test:informationResourceInput <test-cases/0076.html>;
test:informationResourceResults <test-cases/0076.sparql>;
test:purpose "Tests to ensure that all reserved XHTML words are supported in @rel";
test:specificationReference "" .
<test-cases/0077> dc:contributor "Manu Sporny";
dc:title "All reserved XHTML @rev values";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xhtml1";
test:informationResourceInput <test-cases/0077.html>;
test:informationResourceResults <test-cases/0077.sparql>;
test:purpose "Tests to ensure that all reserved XHTML words are supported in @rev";
test:specificationReference "" .
<test-cases/0078> dc:contributor "Ivan Herman";
dc:title "Multiple incomplete triples, RDFa 1.0 version";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0078.html>;
test:informationResourceResults <test-cases/0078.sparql>;
test:purpose "Tests multiple ways of handling incomplete triples; the first two triples should use the same bnode as subject ('merged'). The third should have a separate bNode.";
test:specificationReference "" .
<test-cases/0079> dc:contributor "Ivan Herman";
dc:title "@resource and @href in completing incomplete triples";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5-invalid", "xhtml5-invalid";
test:informationResourceInput <test-cases/0079.html>;
test:informationResourceResults <test-cases/0079.sparql>;
test:purpose "Tests role of @resource and @href in completing incomplete triples (including their mutual priorities)";
test:specificationReference "" .
<test-cases/0080> dc:contributor "Ivan Herman";
dc:title "@about overrides @resource in incomplete triples";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0080.html>;
test:informationResourceResults <test-cases/0080.sparql>;
test:purpose "Tests if @about has a higher priority than @resource in handling incomplete triples";
test:specificationReference "" .
<test-cases/0081> dc:contributor "Ivan Herman";
dc:title "multiple ways of handling incomplete triples (with @rev); RDFa 1.0 version";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0081.html>;
test:informationResourceResults <test-cases/0081.sparql>;
test:purpose "Tests multiple ways of handling incomplete triples, this time with @rev";
test:specificationReference "" .
<test-cases/0082> dc:contributor "Ivan Herman";
dc:title "multiple ways of handling incomplete triples (with @rel and @rev); RDFa 1.0 version";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0082.html>;
test:informationResourceResults <test-cases/0082.sparql>;
test:purpose "Tests multiple ways of handling incomplete triples, this time with both @rel and @rev";
test:specificationReference "" .
<test-cases/0083> dc:contributor "Ivan Herman";
dc:title "multiple ways of handling incomplete triples (merged)";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0083.html>;
test:informationResourceResults <test-cases/0083.sparql>;
test:purpose "Tests multiple ways of handling incomplete triples; the first two triples should use the same bNode as subject ('merged'); the third case should use @about";
test:specificationReference "" .
<test-cases/0084> dc:contributor "Ivan Herman";
dc:title "multiple ways of handling incomplete triples, this time with both @rel and @rev";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0084.html>;
test:informationResourceResults <test-cases/0084.sparql>;
test:purpose "Tests multiple ways of handling incomplete triples, this time with both @rel and @rev. There is an intermediate div that should be ignored by the process";
test:specificationReference "" .
<test-cases/0085> dc:contributor "Ivan Herman";
dc:title "@resource and @href in completing incomplete triples";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5-invalid", "xhtml5-invalid";
test:informationResourceInput <test-cases/0085.html>;
test:informationResourceResults <test-cases/0085.sparql>;
test:purpose "Tests the role of @resource and @href in completing incomplete triples (including their mutual priorities), but with an intermediate layer (ie, bNode) added";
test:specificationReference "" .
<test-cases/0087> dc:contributor "Ivan Herman";
dc:title "All reserved XHTML @rel values (with :xxx)";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5-invalid", "xhtml5-invalid";
test:informationResourceInput <test-cases/0087.html>;
test:informationResourceResults <test-cases/0087.sparql>;
test:purpose "Tests to ensure that all reserved XHTML words are supported in @rel (with :xxx)";
test:specificationReference "" .
<test-cases/0088> dc:contributor "Ivan Herman";
dc:title "Interpretation of the CURIE \"_:\"";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0088.html>;
test:informationResourceResults <test-cases/0088.sparql>;
test:purpose "Test the interpretation of the CURIE \"_:\"";
test:specificationReference "" .
<test-cases/0089> dc:contributor "Manu Sporny";
dc:title "@src sets a new subject (@typeof)";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1", "rdfa1.1-lite";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0089.html>;
test:informationResourceResults <test-cases/0089.sparql>;
test:purpose "Tests to ensure that @src sets a new subject (focuses on @typeof).";
test:specificationReference "" .
<test-cases/0090> dc:contributor "Manu Sporny";
dc:title "@src sets a new subject (@rel/@href)";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0";
test:classification test:required;
rdfatest:hostLanguage "xhtml1", "html4";
test:informationResourceInput <test-cases/0090.html>;
test:informationResourceResults <test-cases/0090.sparql>;
test:purpose "Tests to ensure that @src sets a new subject (focuses on @rel/@href).";
test:specificationReference "" .
<test-cases/0091> dc:contributor "Manu Sporny";
dc:title "Non-reserved, un-prefixed CURIE in @property";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0091.html>;
test:informationResourceResults <test-cases/0091.sparql>;
test:purpose "Tests to ensure that non-reserved, un-prefixed CURIEs, when used in @property, generate triples.";
test:specificationReference "" .
<test-cases/0093> dc:contributor "Ivan Herman";
dc:title "Tests XMLLiteral content with explicit @datatype (user-data-typed literal)";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0093.html>;
test:informationResourceResults <test-cases/0093.sparql>;
test:purpose "Tests the explicit specification of an RDF XMLLiteral with @datatype using a non-RDF namespace, yielding a user-data-typed literal";
test:specificationReference "" .
<test-cases/0099> dc:contributor "Ivan Herman";
dc:title "Preservation of white space in literals";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0099.html>;
test:informationResourceResults <test-cases/0099.sparql>;
test:purpose "Tests the preservation of white space in literals.";
test:specificationReference "" .
<test-cases/0104> dc:contributor "Fabien Gandon";
dc:title "rdf:value";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0104.html>;
test:informationResourceResults <test-cases/0104.sparql>;
test:purpose "Tests rdf:value with blank nodes to give a value with a unit";
test:specificationReference "" .
<test-cases/0106> dc:contributor "Manu Sporny";
dc:title "chaining with empty value in inner @rel";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0106.html>;
test:informationResourceResults <test-cases/0106.sparql>;
test:purpose "Tests the behavior of triple generation in the case where the inner @rel is defined, but is blank, which halts chaining.";
test:specificationReference "" .
<test-cases/0107> dc:contributor "Manu Sporny";
dc:title "no garbage collecting bnodes";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
test:expectedResults "false"^^xsd:boolean;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0107.html>;
test:informationResourceResults <test-cases/0107.sparql>;
test:purpose "Checks to make sure that that while we shouldn't garbage collect bnodes no triples are generated.";
test:specificationReference "" .
<test-cases/0108> dc:contributor "Manu Sporny";
dc:title "plain literal with datatype=\"\" and xml:lang preservation";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1";
test:informationResourceInput <test-cases/0108.html>;
test:informationResourceResults <test-cases/0108.sparql>;
test:purpose """Checks to make sure that the RDFa parser emits a plain literal when the datatype is specified as "" and preserves the xml:lang value. The text, with control characters and whitespace preserved, reads "Greek
white space
".""";
test:specificationReference "" .
<test-cases/0109> dc:contributor "Manu Sporny";
dc:title "Tests to ensure @xml:base is ignored";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "html4", "html5-invalid";
test:informationResourceInput <test-cases/0109.html>;
test:informationResourceResults <test-cases/0109.sparql>;
test:purpose "Tests to make sure that @xml:base is ignored in XHTML+RDFa 1.0. The input test document is invalid XHTML.";
test:specificationReference "" .
<test-cases/0110> dc:contributor "Manu Sporny";
dc:title "bNode generated even though no nested @about exists";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0110.html>;
test:informationResourceResults <test-cases/0110.sparql>;
test:purpose "Tests to make sure that a bNode is generated even though no nested @about exists.";
test:specificationReference "" .
<test-cases/0111> dc:contributor "Manu Sporny";
dc:title "two bNodes generated after three levels of nesting";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0111.html>;
test:informationResourceResults <test-cases/0111.sparql>;
test:purpose "Tests to make sure that two bNodes are generated after three levels of nesting and that the last div does not generate a triple.";
test:specificationReference "" .
<test-cases/0112> dc:contributor "Manu Sporny";
dc:title "plain literal with datatype=\"\"";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0112.html>;
test:informationResourceResults <test-cases/0112.sparql>;
test:purpose "Checks to make sure that the RDFa parser emits a plain literal when the datatype is specified as \"\".";
test:specificationReference "" .
<test-cases/0113> dc:contributor "Manu Sporny";
dc:title "element with @property and no child nodes generates empty plain literal";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1";
test:informationResourceInput <test-cases/0113.html>;
test:informationResourceResults <test-cases/0113.sparql>;
test:purpose "Checks to make sure that an element with @property and no child nodes generates empty plain literal.";
test:specificationReference "" .
<test-cases/0114> dc:contributor "Manu Sporny";
dc:title "Relative URI dot-segment removal";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xhtml1", "html4", "html5-invalid", "xhtml5-invalid";
test:informationResourceInput <test-cases/0114.html>;
test:informationResourceResults <test-cases/0114.sparql>;
test:purpose "Checks to make sure that a relative URI is resolved correctly according to RFC3986, section 5 (even when the relative URI is invalid, in this case).";
test:specificationReference "" .
<test-cases/0115> dc:contributor "Ivan Herman",
"Toby Inkster";
dc:title "XML Entities must be supported by RDFa parser";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1", "rdfa1.1-lite";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0115.html>;
test:informationResourceResults <test-cases/0115.sparql>;
test:purpose "Checks to make sure that XML Entities are treated properly by the RDFa parser.";
test:specificationReference "" .
<test-cases/0117> dc:contributor "Manu Sporny";
dc:title "Fragment identifiers stripped from BASE";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1", "rdfa1.1-lite";
test:classification test:required;
rdfatest:hostLanguage "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0117.html>;
test:informationResourceResults <test-cases/0117.sparql>;
test:purpose "Checks to make sure that fragment identifiers are stripped from [base] when used to generate triples.";
test:specificationReference "" .
<test-cases/0118> dc:contributor "Ben Adida";
dc:title "empty string \"\" is not equivalent to NULL - @about";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0118.html>;
test:informationResourceResults <test-cases/0118.sparql>;
test:purpose """Checks to make sure that the empty
string "" isn't considered as NULL in languages such as Javascript when
generating triples. This test sets the subject in a chain using @href
and then immediately changes the subject using @about and generates a
triple. A buggy parser may use the @href subject
(http://example.org/javascript.html) instead of the one defined by @about.""";
test:specificationReference "" .
<test-cases/0119> dc:contributor "Manu Sporny";
dc:title "\"[prefix:]\" CURIE format is valid";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0119.html>;
test:informationResourceResults <test-cases/0119.sparql>;
test:purpose """Checks to make sure that an RDFa processor expands CURIEs having only a prefix and a
colon if a prefix is properly defined using xmlns.
""";
test:specificationReference "" .
<test-cases/0120> dc:contributor "Manu Sporny";
dc:title "\"[:]\" CURIE format is valid";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0120.html>;
test:informationResourceResults <test-cases/0120.sparql>;
test:purpose """Checks to make sure that an RDFa processor expands CURIEs having only a colon to the
default prefix "http://www.w3.org/1999/test-cases/vocab#".
""";
test:specificationReference "" .
<test-cases/0121> dc:contributor "Manu Sporny";
dc:title "\"[]\" is a valid safe CURIE";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
rdfatest:hostLanguage "xml", "xhtml1", "xhtml5";
test:informationResourceInput <test-cases/0121.html>;
test:informationResourceResults <test-cases/0121.sparql>;
test:purpose """Checks to make sure RDFa processors resolve the empty CURIE correctly. Note that this is not valid HTML due to recursive <p> elements.""";
test:specificationReference "" .
<test-cases/0122> dc:contributor "Manu Sporny";
dc:title "resource=\"[]\" does not set the object";
a test:TestCase;
rdfatest:rdfaVersion "rdfa1.0", "rdfa1.1";
test:classification test:required;
test:expectedResults "false"^^xsd:boolean;
rdfatest:hostLanguage "xml", "xhtml1", "html4", "html5", "xhtml5";
test:informationResourceInput <test-cases/0122.html>;
test:informationResourceResults <test-cases/0122.sparql>;
test:purpose """Checks to make sure that resource="[]" does not set the object since RDFa does not allow non-prefixed CURIEs.
""";
test:specificationReference "" .
<test-cases/0126> dc:contributor "Shane P. McCarron";
dc:title "Multiple @typeof values";
a test:TestCase;