-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathhtml5-manifest.rdf
1688 lines (1525 loc) · 117 KB
/
html5-manifest.rdf
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
<?xml version="1.0" encoding="utf-8"?>
<rdf:RDF xmlns="http://www.w3.org/2006/03/test-description#"
xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:log="http://www.w3.org/2000/10/swap/log#"
xmlns:owl="http://www.w3.org/2002/07/owl#"
xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:rdfs="http://www.w3.org/2000/01/rdf-schema#"
xmlns:xsd="http://www.w3.org/2001/XMLSchema#"
xmlns:test="http://www.w3.org/2006/03/test-description#">
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0001">
<dc:contributor>Elias Torres</dc:contributor>
<dc:title>Predicate establishment with @property</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0001.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0001.sparql"/>
<purpose>Tests @property to establish the predicate; literal object is in the content of the element.</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0002">
<dc:contributor>Elias Torres</dc:contributor>
<dc:title>meta/@property</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0002.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0002.sparql"/>
<purpose>Tests meta/@property to establish the predicate; subject comes from the parent's @about.</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#rejected"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0003">
<dc:contributor>Elias Torres</dc:contributor>
<dc:title>meta/@property, no @about in parent</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0003.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0003.sparql"/>
<purpose>Tests meta/@property to establish the predicate; subject will be a blank node.</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#rejected"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0004">
<dc:contributor>Elias Torres</dc:contributor>
<dc:title>@xml:base</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0004.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0004.sparql"/>
<purpose>Tests explicitly setting @xml:base.</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#rejected"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0005">
<dc:contributor>Elias Torres</dc:contributor>
<dc:title>CURIEs</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0005.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0005.sparql"/>
<purpose>Tests CURIE parsing.</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#rejected"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0006">
<dc:contributor>Elias Torres</dc:contributor>
<dc:title>@rel and @rev</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0006.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0006.sparql"/>
<purpose>Tests @rev and @rel together, with the object being specified by @href, ignoring content</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0007">
<dc:contributor>Elias Torres</dc:contributor>
<dc:title>@rel, @rev, @property, @content</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0007.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0007.sparql"/>
<purpose>Tests @rel, @rev, @property, and @content together to generate several RDF triples.</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0008">
<dc:contributor>Elias Torres</dc:contributor>
<dc:title>empty string @about</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0008.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0008.sparql"/>
<purpose>Tests empty @about.</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0009">
<dc:contributor>Elias Torres</dc:contributor>
<dc:title>@rev</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0009.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0009.sparql"/>
<purpose>Tests @rev.</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0010">
<dc:contributor>Elias Torres</dc:contributor>
<dc:title>@rel, @rev, @href</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0010.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0010.sparql"/>
<purpose>Tests @rel, @rev, and @href to generate two RDF triples.</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0011">
<dc:contributor>Elias Torres</dc:contributor>
<dc:title>XMLLiteral</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0011.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0011.sparql"/>
<purpose>Tests XMLLiteral content</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0012">
<dc:contributor>Elias Torres</dc:contributor>
<dc:title>@xml:lang</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0012.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0012.sparql"/>
<purpose>Tests @xml:lang</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0013">
<dc:contributor>Elias Torres</dc:contributor>
<dc:title>@xml:lang inheritance</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0013.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0013.sparql"/>
<purpose>Tests @xml:lang inheritance</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0014">
<dc:contributor>Elias Torres</dc:contributor>
<dc:title>@datatype, xsd:integer</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0014.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0014.sparql"/>
<purpose>Tests setting the @datatype to xsd:integer</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0015">
<dc:contributor>Elias Torres</dc:contributor>
<dc:title>meta and link</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0015.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0015.sparql"/>
<purpose>Tests meta and link with no parent @about</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0016">
<dc:contributor>Elias Torres</dc:contributor>
<dc:title>Blank node, explicit</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0016.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0016.sparql"/>
<purpose>Tests setting @about to an explicit blanknode _:a.</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#rejected"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0017">
<dc:contributor>Elias Torres</dc:contributor>
<dc:title>Related blanknodes</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0017.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0017.sparql"/>
<purpose>Tests creation of statements involving explicitly created blank nodes.</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0018">
<dc:contributor>Wing Yung</dc:contributor>
<dc:title>@rel for predicate</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0018.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0018.sparql"/>
<purpose>Tests @rel to establish predicate.</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0019">
<dc:contributor>Wing Yung</dc:contributor>
<dc:title>@about for subject</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0019.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0019.sparql"/>
<purpose>Tests @about to establish subject.</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0020">
<dc:contributor>Wing Yung</dc:contributor>
<dc:title>Inheriting @about for subject</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0020.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0020.sparql"/>
<purpose>Tests @about inheritance to establish subject.</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0021">
<dc:contributor>Wing Yung</dc:contributor>
<dc:title>Subject inheritance with no @about</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0021.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0021.sparql"/>
<purpose>Tests inheritance of subject when no @about can be found</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0022">
<dc:contributor>Wing Yung</dc:contributor>
<dc:title>meta with parent @id</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0022.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0022.sparql"/>
<purpose>Tests getting subject from parent @id</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#rejected"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0023">
<dc:contributor>Wing Yung</dc:contributor>
<dc:title>@id does not generate subjects</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0023.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0023.sparql"/>
<purpose>Tests that @id does not generate subjects</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0024">
<dc:contributor>Wing Yung</dc:contributor>
<dc:title>Ignore @id for non-meta and non-link</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0024.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0024.sparql"/>
<purpose>Tests igoring @id for non-meta and non-link tag</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#rejected"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0025">
<dc:contributor>Ben Adida</dc:contributor>
<dc:title>simple chaining test</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0025.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0025.sparql"/>
<purpose>Tests simple chaining with cascade of @resource and @property</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0026">
<dc:contributor>Wing Yung</dc:contributor>
<dc:title>@content</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0026.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0026.sparql"/>
<purpose>Tests @content for literal object</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0027">
<dc:contributor>Wing Yung</dc:contributor>
<dc:title>@content, ignore element content</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0027.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0027.sparql"/>
<purpose>Tests @content for literal object, overriding element content.</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0028">
<dc:contributor>Wing Yung</dc:contributor>
<dc:title>@xml:lang and @datatype</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0028.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0028.sparql"/>
<purpose>Tests @xml:lang and @datatype.</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#rejected"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0029">
<dc:contributor>Michael Hausenblas</dc:contributor>
<dc:title>markup stripping with @datatype</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0029.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0029.sparql"/>
<purpose>Tests markup stripping from a span element with @datatype=xsd:string</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0030">
<dc:contributor>Michael Hausenblas</dc:contributor>
<dc:title>omitted @about</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0030.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0030.sparql"/>
<purpose>Tests omitted @about.</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0031">
<dc:contributor>Ralph Swick</dc:contributor>
<dc:title>simple @resource</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0031.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0031.sparql"/>
<purpose>Tests if @resource sets URIref object correct.</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0032">
<dc:contributor>Ralph Swick</dc:contributor>
<dc:title>@resource overrides @href</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0032.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0032.sparql"/>
<purpose>Tests if @resource overrides @href to set the URIref object.</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0033">
<dc:contributor>Michael Hausenblas</dc:contributor>
<dc:title>simple chaining test with bNode</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0033.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0033.sparql"/>
<purpose>Tests simple chaining with cascade of bNode and @property</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0034">
<dc:contributor>Michael Hausenblas</dc:contributor>
<dc:title>simple img[@src] test</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0034.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0034.sparql"/>
<purpose>Tests if a @src (in img element) correctly sets the URIref object</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0035">
<dc:contributor>Michael Hausenblas</dc:contributor>
<dc:title>@src/@href test</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0035.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0035.sparql"/>
<purpose>Tests if @href overwrites @src</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0036">
<dc:contributor>Michael Hausenblas</dc:contributor>
<dc:title>@src/@resource test</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0036.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0036.sparql"/>
<purpose>Tests if @resource overwrites @src</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0037">
<dc:contributor>Steven Pemberton</dc:contributor>
<dc:title>@src/@href/@resource test</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0037.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0037.sparql"/>
<purpose>Tests if @resource overwrites both @href and @src</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0038">
<dc:contributor>Mark Birbeck</dc:contributor>
<dc:title>@rev - img[@src] test</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0038.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0038.sparql"/>
<purpose>Tests if a @src (in img element) correctly sets the URIref subject (due to @rev)</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0039">
<dc:contributor>Mark Birbeck</dc:contributor>
<dc:title>@rev - @src/@href test</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0039.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0039.sparql"/>
<purpose>Tests if @href overwrites @src correctly to set the URIref subject (due to @rev)</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0040">
<dc:contributor>Mark Birbeck</dc:contributor>
<dc:title>@rev - @src/@resource test</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0040.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0040.sparql"/>
<purpose>Tests if @resource overwrites @src correctly to set the URIref subject (due to @rev)</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0041">
<dc:contributor>Mark Birbeck</dc:contributor>
<dc:title>@rev - @src/@href/@resource test</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0041.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0041.sparql"/>
<purpose>Tests if @resource overwrites both @href and @src correctly to set the URIref subject (due to @rev)</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0042">
<dc:contributor>Ben Adida</dc:contributor>
<dc:title>img[@src] test with omitted @about</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0042.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0042.sparql"/>
<purpose>Tests if a @src (in img element) correctly sets the URIref object (with omitted @about)</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<expectedResults rdf:datatype="xsd:boolean">false</expectedResults>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0043">
<dc:contributor>Ben Adida</dc:contributor>
<dc:title>@src/@href test with omitted @about</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0043.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0043.sparql"/>
<purpose>Tests if @href overwrites @src (with omitted @about)</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#rejected"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0044">
<dc:contributor>Ben Adida</dc:contributor>
<dc:title>@src/@resource test with omitted @about</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0044.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0044.sparql"/>
<purpose>Tests if @resource overwrites @src (with omitted @about)</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#rejected"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0045">
<dc:contributor>Ben Adida</dc:contributor>
<dc:title>@src/@href/@resource test with omitted @about</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0045.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0045.sparql"/>
<purpose>Tests if @resource overwrites both @href and @src (with omitted @about)</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#rejected"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0046">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>@typeof with @rel present, no @href, @resource, or @about</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0046.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0046.sparql"/>
<purpose>Tests @typeof with @rel present, no @href, @resource, or @about</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0047">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>@typeof with @rel and @resource present, no @about</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0047.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0047.sparql"/>
<purpose>Tests @typeof with @rel and @resource present, no @about</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0048">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>@typeof with @about and @rel present, no @resource</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0048.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0048.sparql"/>
<purpose>Tests @typeof with @about and @rel present, no @resource</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0049">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>@typeof with @about, no @rel or @resource</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0049.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0049.sparql"/>
<purpose>Tests @typeof with @about, no @rel or @resource</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0050">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>@typeof without anything else</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0050.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0050.sparql"/>
<purpose>Tests @typeof without anything else</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0051">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>@typeof with a single @property</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0051.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0051.sparql"/>
<purpose>Tests @typeof with a single @property</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0052">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>@typeof with @resource and nothing else</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0052.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0052.sparql"/>
<purpose>Tests to ensure that @typeof does not apply to @resource</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0053">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>@typeof with @resource and nothing else, with a subelement</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0053.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0053.sparql"/>
<purpose>Tests to make sure that @typeof does not apply to @resource, but @resource sets the subject for the next triple to be generated</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0054">
<dc:contributor>Fabien Gandon</dc:contributor>
<dc:title>multiple @property</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0054.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0054.sparql"/>
<purpose>Tests multiple @property separated by white spaces</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0055">
<dc:contributor>Fabien Gandon</dc:contributor>
<dc:title>multiple @rel</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0055.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0055.sparql"/>
<purpose>Tests multiple @rel separated by white spaces</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0056">
<dc:contributor>Manu Sporny</dc:contributor>
<dc:title>@typeof applies to @about on same element with hanging rel</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0056.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0056.sparql"/>
<purpose>Tests if @typeof applies to @about on same element with hanging @rel</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0057">
<dc:contributor>Manu Sporny</dc:contributor>
<dc:title>hanging @rel creates multiple triples</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0057.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0057.sparql"/>
<purpose>Tests if hanging @rel creates multiple triples</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0058">
<dc:contributor>Manu Sporny</dc:contributor>
<dc:title>hanging @rel creates multiple triples, @typeof permutation</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0058.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0058.sparql"/>
<purpose>Tests if hanging @rel creates multiple triples with @typeof permutation</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0059">
<dc:contributor>Manu Sporny</dc:contributor>
<dc:title>multiple hanging @rels with multiple children</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0059.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0059.sparql"/>
<purpose>Tests multiple hanging @rels with multiple children</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0060">
<dc:contributor>Manu Sporny</dc:contributor>
<dc:title>UTF-8 conformance</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0060.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0060.sparql"/>
<purpose>Tests conformance with UTF-8 encoding</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0061">
<dc:contributor>Manu Sporny</dc:contributor>
<dc:title>@rel in head using reserved, non-prefixed XHTML value</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0061.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0061.sparql"/>
<purpose>Tests @rel in head using reserved, non-prefixed XHTML value</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0062">
<dc:contributor>Manu Sporny</dc:contributor>
<dc:title>@rev in head using reserved, non-prefixed XHTML value</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0062.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0062.sparql"/>
<purpose>Tests @rev in head using reserved, non-prefixed XHTML value</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0063">
<dc:contributor>Manu Sporny</dc:contributor>
<dc:title>@rel in head using reserved XHTML value and empty-prefix CURIE syntax</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0063.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0063.sparql"/>
<purpose>Tests @rel in head using reserved XHTML value and empty-prefix CURIE syntax</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0064">
<dc:contributor>Manu Sporny</dc:contributor>
<dc:title>@about with safe CURIE</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0064.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0064.sparql"/>
<purpose>Tests if @about generates a proper triple when a safe CURIE is used</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0065">
<dc:contributor>Manu Sporny</dc:contributor>
<dc:title>@rel with safe CURIE</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0065.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0065.sparql"/>
<purpose>Tests if @rel properly connects triples generated when safe CURIEs are used</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0066">
<dc:contributor>Manu Sporny</dc:contributor>
<dc:title>@about with @typeof in the head</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0066.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0066.sparql"/>
<purpose>Test to make sure that @about (with current document) is implied in the head, and the proper triples are generated using @typeof</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0067">
<dc:contributor>Manu Sporny</dc:contributor>
<dc:title>@property in the head</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0067.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0067.sparql"/>
<purpose>Test to make sure that @property in head uses the implied current document as the subject if no other subject is specified</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0068">
<dc:contributor>Manu Sporny</dc:contributor>
<dc:title>Relative URI in @about</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0068.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0068.sparql"/>
<purpose>Tests to ensure that relative URI is resolved correctly when used in @about</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0069">
<dc:contributor>Manu Sporny</dc:contributor>
<dc:title>Relative URI in @href</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0069.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0069.sparql"/>
<purpose>Tests to ensure that relative URI is resolved correctly when used in @href</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0070">
<dc:contributor>Manu Sporny</dc:contributor>
<dc:title>Relative URI in @resource</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0070.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0070.sparql"/>
<purpose>Tests to ensure that relative URI is resolved correctly when used in @resource</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0071">
<dc:contributor>Manu Sporny</dc:contributor>
<dc:title>No explicit @about</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0071.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0071.sparql"/>
<purpose>Tests to ensure that a triple is generated even if @typeof and @about is not specified anywhere in the document</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0072">
<dc:contributor>Manu Sporny</dc:contributor>
<dc:title>Relative URI in @about (with XHTML base in head)</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0072.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0072.sparql"/>
<purpose>Tests to ensure that relative URIs are resolved correctly when used in @about with XHTML base set in head</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0073">
<dc:contributor>Manu Sporny</dc:contributor>
<dc:title>Relative URI in @resource (with XHTML base in head)</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0073.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0073.sparql"/>
<purpose>Tests to ensure that relative URIs are resolved correctly when used in @resource with XHTML base set in head</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0074">
<dc:contributor>Manu Sporny</dc:contributor>
<dc:title>Relative URI in @href (with XHTML base in head)</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0074.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0074.sparql"/>
<purpose>Tests to ensure that relative URIs are resolved correctly when used in @href with XHTML base set in head</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0075">
<dc:contributor>Manu Sporny</dc:contributor>
<dc:title>Reserved word 'license' in @rel with no explizit @about</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0075.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0075.sparql"/>
<purpose>Tests to ensure that the XHTML+RDFa reserved word 'license' when used in @rel (with no @about) generates the proper triple</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0076">
<dc:contributor>Manu Sporny</dc:contributor>
<dc:title>All reserved XHTML @rel values</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0076.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0076.sparql"/>
<purpose>Tests to ensure that all reserved XHTML words are supported in @rel</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0077">
<dc:contributor>Manu Sporny</dc:contributor>
<dc:title>All reserved XHTML @rev values</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0077.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0077.sparql"/>
<purpose>Tests to ensure that all reserved XHTML words are supported in @rev</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0078">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>Multiple incomplete triples</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0078.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0078.sparql"/>
<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.</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0079">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>@resource and @href in completing incomplete triples</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0079.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0079.sparql"/>
<purpose>Tests role of @resource and @href in completing incomplete triples (including their mutual priorities)</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0080">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>@about overrides @resource in incomplete triples</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0080.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0080.sparql"/>
<purpose>Tests if @about has a higher priority than @resource in handling incomplete triples</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0081">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>multiple ways of handling incomplete triples (with @rev)</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0081.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0081.sparql"/>
<purpose>Tests multiple ways of handling incomplete triples, this time with @rev</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0082">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>multiple ways of handling incomplete triples (with @rel and @rev)</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0082.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0082.sparql"/>
<purpose>Tests multiple ways of handling incomplete triples, this time with both @rel and @rev</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0083">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>multiple ways of handling incomplete triples (merged)</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0083.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0083.sparql"/>
<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</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0084">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>multiple ways of handling incomplete triples, this time with both @rel and @rev</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0084.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0084.sparql"/>
<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</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0085">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>@resource and @href in completing incomplete triples</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0085.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0085.sparql"/>
<purpose>Tests the role of @resource and @href in completing incomplete triples (including their mutual priorities), but with an intermediate layer (ie, bNode) added</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0086">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>NO triple for a non-reserved @rel value</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0086.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0086.sparql"/>
<purpose>Test that NO triple should be generated for a non-reserved @rel value</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<expectedResults rdf:datatype="xsd:boolean">false</expectedResults>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0087">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>All reserved XHTML @rel values (with :xxx)</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0087.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0087.sparql"/>
<purpose>Tests to ensure that all reserved XHTML words are supported in @rel (with :xxx)</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0088">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>Interpretation of the CURIE "_:"</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0088.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0088.sparql"/>
<purpose>Test the interpretation of the CURIE "_:"</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0089">
<dc:contributor>Manu Sporny</dc:contributor>
<dc:title>@src sets a new subject (@typeof)</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0089.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0089.sparql"/>
<purpose>Tests to ensure that @src sets a new subject (focuses on @typeof).</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0090">
<dc:contributor>Manu Sporny</dc:contributor>
<dc:title>@src sets a new subject (@rel/@href)</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0090.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0090.sparql"/>
<purpose>Tests to ensure that @src sets a new subject (focuses on @rel/@href).</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0091">
<dc:contributor>Manu Sporny</dc:contributor>
<dc:title>Non-reserved, un-prefixed CURIE in @property</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0091.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0091.sparql"/>
<purpose>Tests to ensure that non-reserved, un-prefixed CURIEs, when used in @property, generate triples.</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0092">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>Tests XMLLiteral content with explicit @datatype</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0092.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0092.sparql"/>
<purpose>Tests the explicit specification of an RDF XMLLiteral with @datatype.</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0093">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>Tests XMLLiteral content with explicit @datatype (user-data-typed literal)</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0093.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0093.sparql"/>
<purpose>Tests the explicit specification of an RDF XMLLiteral with @datatype using a non-RDF namespace, yielding a user-data-typed literal</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0094">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>Tests XMLLiteral content with explicit @datatype (unusual prefix - bla:)</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0094.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0094.sparql"/>
<purpose>Tests the explicit specification of an RDF XMLLiteral with @datatype using the proper RDF namespace, but with an unusual prefix - bla:</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#approved"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0095">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>No triples with two nested @rel</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0095.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0095.sparql"/>
<purpose>Tests the filtering out of unnecessary triples (checking the return value mechanism)</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#rejected"/>
<expectedResults rdf:datatype="xsd:boolean">false</expectedResults>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0096">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>No triples with three nested @rel</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0096.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0096.sparql"/>
<purpose>Tests the filtering out of unnecessary triples (checking the return value mechanism); from the RDFa Syntax document.</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#rejected"/>
<expectedResults rdf:datatype="xsd:boolean">false</expectedResults>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0097">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>No triples with four nested @rel</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0097.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0097.sparql"/>
<purpose>Tests the filtering out of unnecessary triples (checking the return value mechanism); from the RDFa Syntax document.</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#rejected"/>
<expectedResults rdf:datatype="xsd:boolean">false</expectedResults>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0098">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>Single literal in nested pending triples</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0098.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0098.sparql"/>
<purpose>Tests the generation of a single literal that should be returned as valid value in the recursion to generate pending triples.</purpose>
<reviewStatus rdf:resource="http://www.w3.org/2006/03/test-description#rejected"/>
<specificationReference></specificationReference>
</TestCase>
<TestCase rdf:about="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0099">
<dc:contributor>Ivan Herman</dc:contributor>
<dc:title>Preservation of white space in literals</dc:title>
<informationResourceInput rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0099.html"/>
<informationResourceResults rdf:resource="http://rdfa.digitalbazaar.com/test-suite/test-cases/html5/0099.sparql"/>