-
Notifications
You must be signed in to change notification settings - Fork 11
/
testcaseindex.xht
3059 lines (3052 loc) · 165 KB
/
testcaseindex.xht
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
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>WOFF: Format Test Suite</title>
<style type="text/css">
@import "resources/index.css";
</style>
</head>
<body>
<h1>WOFF: Format Test Suite (303 tests)</h1>
<div class="mainNote">
The files used in these test can be obtained individually <a href="../xhtml1">here</a> or as a single zip file <a href="FormatTestFonts.zip">here</a>.
</div>
<h2 class="testCategory">Valid WOFFs</h2>
<div class="testCase" id="valid-001">
<div class="testCaseOverview">
<h3><a href="#valid-001">valid-001</a>: Valid WOFF 1</h3>
<p>Valid CFF flavored WOFF with no metadata and no private data</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="valid-001-validity">Yes</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/">Documentation</a></p>
</div>
</div>
<div class="testCase" id="valid-002">
<div class="testCaseOverview">
<h3><a href="#valid-002">valid-002</a>: Valid WOFF 2</h3>
<p>Valid CFF flavored WOFF with metadata</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="valid-002-validity">Yes</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/">Documentation</a></p>
</div>
</div>
<div class="testCase" id="valid-003">
<div class="testCaseOverview">
<h3><a href="#valid-003">valid-003</a>: Valid WOFF 3</h3>
<p>Valid CFF flavored WOFF with private data</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="valid-003-validity">Yes</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/">Documentation</a></p>
</div>
</div>
<div class="testCase" id="valid-004">
<div class="testCaseOverview">
<h3><a href="#valid-004">valid-004</a>: Valid WOFF 4</h3>
<p>Valid CFF flavored WOFF with metadata and private data</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="valid-004-validity">Yes</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/">Documentation</a></p>
</div>
</div>
<div class="testCase" id="valid-005">
<div class="testCaseOverview">
<h3><a href="#valid-005">valid-005</a>: Valid WOFF 5</h3>
<p>Valid TTF flavored WOFF with no metadata and no private data</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="valid-005-validity">Yes</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/">Documentation</a></p>
</div>
</div>
<div class="testCase" id="valid-006">
<div class="testCaseOverview">
<h3><a href="#valid-006">valid-006</a>: Valid WOFF 6</h3>
<p>Valid TTF flavored WOFF with metadata</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="valid-006-validity">Yes</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/">Documentation</a></p>
</div>
</div>
<div class="testCase" id="valid-007">
<div class="testCaseOverview">
<h3><a href="#valid-007">valid-007</a>: Valid WOFF 7</h3>
<p>Valid TTF flavored WOFF with private data</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="valid-007-validity">Yes</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/">Documentation</a></p>
</div>
</div>
<div class="testCase" id="valid-008">
<div class="testCaseOverview">
<h3><a href="#valid-008">valid-008</a>: Valid WOFF 8</h3>
<p>Valid TTF flavored WOFF with metadata and private data</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="valid-008-validity">Yes</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/">Documentation</a></p>
</div>
</div>
<h2 class="testCategory">WOFF Header Tests</h2>
<div class="testCase" id="header-signature-001">
<div class="testCaseOverview">
<h3><a href="#header-signature-001">header-signature-001</a>: Header Signature Invalid Value</h3>
<p>The signature field contains XXXX instead of wOFF.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="header-signature-001-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-magicnumber">Documentation</a></p>
</div>
</div>
<div class="testCase" id="header-flavor-001">
<div class="testCaseOverview">
<h3><a href="#header-flavor-001">header-flavor-001</a>: Header Flavor Incorrectly Set to 0x00010000</h3>
<p>The header flavor is set to 0x00010000 but the table data contains CFF data, not TTF data.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="header-flavor-001-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#WOFFHeader">Documentation</a></p>
</div>
</div>
<div class="testCase" id="header-flavor-002">
<div class="testCaseOverview">
<h3><a href="#header-flavor-002">header-flavor-002</a>: Header Flavor Incorrectly Set to OTTO</h3>
<p>The header flavor is set to OTTO but the table data contains TTF data, not CFF data.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="header-flavor-002-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#WOFFHeader">Documentation</a></p>
</div>
</div>
<div class="testCase" id="header-length-001">
<div class="testCaseOverview">
<h3><a href="#header-length-001">header-length-001</a>: Header Length Too Short</h3>
<p>The length field contains a value that is four bytes shorter than the actual data.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="header-length-001-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#WOFFHeader">Documentation</a></p>
</div>
</div>
<div class="testCase" id="header-length-002">
<div class="testCaseOverview">
<h3><a href="#header-length-002">header-length-002</a>: Header Length Too Long</h3>
<p>The length field contains a value that is four bytes longer than the actual data.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="header-length-002-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#WOFFHeader">Documentation</a></p>
</div>
</div>
<div class="testCase" id="header-numTables-001">
<div class="testCaseOverview">
<h3><a href="#header-numTables-001">header-numTables-001</a>: Header Number of Tables Set to Zero</h3>
<p>The header contains 0 in the numTables field. A table directory and table data are present.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="header-numTables-001-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#WOFFHeader">Documentation</a></p>
</div>
</div>
<div class="testCase" id="header-totalSfntSize-001">
<div class="testCaseOverview">
<h3><a href="#header-totalSfntSize-001">header-totalSfntSize-001</a>: Header Total SFNT Size Not a Multiple of 4</h3>
<p>The totalSfntSize field contains a value that is missing padding bytes between two tables.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="header-totalSfntSize-001-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-totalsize-longword">Documentation</a></p>
</div>
</div>
<div class="testCase" id="header-totalSfntSize-002">
<div class="testCaseOverview">
<h3><a href="#header-totalSfntSize-002">header-totalSfntSize-002</a>: Header Total SFNT Size Too Long</h3>
<p>The totalSfntSize field contains a value that is is four bytes too long.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="header-totalSfntSize-002-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-totalsize-longword">Documentation</a></p>
</div>
</div>
<div class="testCase" id="header-totalSfntSize-003">
<div class="testCaseOverview">
<h3><a href="#header-totalSfntSize-003">header-totalSfntSize-003</a>: Header Total SFNT Size Too Short</h3>
<p>The totalSfntSize field contains a value that is is four bytes too short.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="header-totalSfntSize-003-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-totalsize-longword">Documentation</a></p>
</div>
</div>
<div class="testCase" id="header-reserved-001">
<div class="testCaseOverview">
<h3><a href="#header-reserved-001">header-reserved-001</a>: Header Reserved Invalid Value</h3>
<p>The reserved field contains 1.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="header-reserved-001-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-reserved">Documentation</a></p>
</div>
</div>
<h2 class="testCategory">WOFF Data Block Tests</h2>
<div class="testCase" id="blocks-extraneous-data-001">
<div class="testCaseOverview">
<h3><a href="#blocks-extraneous-data-001">blocks-extraneous-data-001</a>: Extraneous Data Between Directory and Table Data</h3>
<p>There are four null bytes between the table directory and the table data.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="blocks-extraneous-data-001-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-noextraneous">Documentation</a></p>
</div>
</div>
<div class="testCase" id="blocks-extraneous-data-002">
<div class="testCaseOverview">
<h3><a href="#blocks-extraneous-data-002">blocks-extraneous-data-002</a>: Extraneous Data After Table Data</h3>
<p>There are four null bytes after the table data block and there is no metadata or private data.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="blocks-extraneous-data-002-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-noextraneous">Documentation</a></p>
</div>
</div>
<div class="testCase" id="blocks-extraneous-data-003">
<div class="testCaseOverview">
<h3><a href="#blocks-extraneous-data-003">blocks-extraneous-data-003</a>: Extraneous Data Between Table Data and Metadata</h3>
<p>There are four null bytes between the table data and the metadata.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="blocks-extraneous-data-003-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-noextraneous">Documentation</a></p>
</div>
</div>
<div class="testCase" id="blocks-extraneous-data-004">
<div class="testCaseOverview">
<h3><a href="#blocks-extraneous-data-004">blocks-extraneous-data-004</a>: Extraneous Data Between Table Data and Private Data</h3>
<p>There are four null bytes between the table data and the private data.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="blocks-extraneous-data-004-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-noextraneous">Documentation</a></p>
</div>
</div>
<div class="testCase" id="blocks-extraneous-data-005">
<div class="testCaseOverview">
<h3><a href="#blocks-extraneous-data-005">blocks-extraneous-data-005</a>: Extraneous Data Between Metdata and Private Data</h3>
<p>There are four null bytes between the metadata and the private data.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="blocks-extraneous-data-005-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-noextraneous">Documentation</a></p>
</div>
</div>
<div class="testCase" id="blocks-extraneous-data-006">
<div class="testCaseOverview">
<h3><a href="#blocks-extraneous-data-006">blocks-extraneous-data-006</a>: Extraneous Data After Metadata</h3>
<p>There are four null bytes after the metadata and there is no private data.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="blocks-extraneous-data-006-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-noextraneous">Documentation</a></p>
</div>
</div>
<div class="testCase" id="blocks-extraneous-data-007">
<div class="testCaseOverview">
<h3><a href="#blocks-extraneous-data-007">blocks-extraneous-data-007</a>: Extraneous Data After Private Data</h3>
<p>There are four null bytes after the private data.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="blocks-extraneous-data-007-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-noextraneous">Documentation</a></p>
</div>
</div>
<div class="testCase" id="blocks-overlap-001">
<div class="testCaseOverview">
<h3><a href="#blocks-overlap-001">blocks-overlap-001</a>: Metadata Overlaps Table Data</h3>
<p>The metadata offset is four bytes before the end of the table data.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="blocks-overlap-001-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-overlap-reject">Documentation</a></p>
</div>
</div>
<div class="testCase" id="blocks-overlap-002">
<div class="testCaseOverview">
<h3><a href="#blocks-overlap-002">blocks-overlap-002</a>: Private Data Overlaps Table Data</h3>
<p>The private data offset is four bytes before the end of the table data.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="blocks-overlap-002-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-overlap-reject">Documentation</a></p>
</div>
</div>
<div class="testCase" id="blocks-overlap-003">
<div class="testCaseOverview">
<h3><a href="#blocks-overlap-003">blocks-overlap-003</a>: Private Data Overlaps Metadata</h3>
<p>The private data offset is four bytes before the end of the metadata.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="blocks-overlap-003-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-overlap-reject">Documentation</a></p>
</div>
</div>
<div class="testCase" id="blocks-metadata-absent-001">
<div class="testCaseOverview">
<h3><a href="#blocks-metadata-absent-001">blocks-metadata-absent-001</a>: Metadata Length Not Set to Zero</h3>
<p>The metadata length is set to one but the offset is zero.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="blocks-metadata-absent-001-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-zerometaprivate">Documentation</a></p>
</div>
</div>
<div class="testCase" id="blocks-metadata-absent-002">
<div class="testCaseOverview">
<h3><a href="#blocks-metadata-absent-002">blocks-metadata-absent-002</a>: Metadata Offset Not Set to Zero</h3>
<p>The metadata length is set to zero but the offset is set to the end of the file.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="blocks-metadata-absent-002-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-zerometaprivate">Documentation</a></p>
</div>
</div>
<div class="testCase" id="blocks-private-absent-001">
<div class="testCaseOverview">
<h3><a href="#blocks-private-absent-001">blocks-private-absent-001</a>: Private Data Length Not Set to Zero</h3>
<p>The private data length is set to one but the offset is zero.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="blocks-private-absent-001-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-zerometaprivate">Documentation</a></p>
</div>
</div>
<div class="testCase" id="blocks-private-absent-002">
<div class="testCaseOverview">
<h3><a href="#blocks-private-absent-002">blocks-private-absent-002</a>: Private Data Offset Not Set to Zero</h3>
<p>The private data length is set to zero but the offset is set to the end of the file.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="blocks-private-absent-002-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-zerometaprivate">Documentation</a></p>
</div>
</div>
<div class="testCase" id="blocks-metadata-padding-001">
<div class="testCaseOverview">
<h3><a href="#blocks-metadata-padding-001">blocks-metadata-padding-001</a>: Metadata Has Unnecessary Padding</h3>
<p>The metadata block is padded to a four-byte boundary but there is no private data.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="blocks-metadata-padding-001-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-metadata-noprivatepad">Documentation</a></p>
</div>
</div>
<div class="testCase" id="blocks-ordering-001">
<div class="testCaseOverview">
<h3><a href="#blocks-ordering-001">blocks-ordering-001</a>: Table Data After Metadata</h3>
<p>The table data block is stored after the metadata block.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="blocks-ordering-001-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-afterdirectory">Documentation</a></p>
</div>
</div>
<div class="testCase" id="blocks-ordering-002">
<div class="testCaseOverview">
<h3><a href="#blocks-ordering-002">blocks-ordering-002</a>: Table Data After Private Data</h3>
<p>The table data block is stored after the private data block.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="blocks-ordering-002-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-afterdirectory">Documentation</a></p>
</div>
</div>
<div class="testCase" id="blocks-ordering-003">
<div class="testCaseOverview">
<h3><a href="#blocks-ordering-003">blocks-ordering-003</a>: Metadata After Private Data</h3>
<p>The metadata block is stored after the private data block.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="blocks-ordering-003-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#metadata-afterfonttable">Documentation</a></p>
</div>
</div>
<div class="testCase" id="blocks-ordering-004">
<div class="testCaseOverview">
<h3><a href="#blocks-ordering-004">blocks-ordering-004</a>: Private Data Before Metadata</h3>
<p>The private data block is stored before the metadata block.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="blocks-ordering-004-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#private-last">Documentation</a></p>
</div>
</div>
<div class="testCase" id="blocks-private-001">
<div class="testCaseOverview">
<h3><a href="#blocks-private-001">blocks-private-001</a>: Private Data Does Not Begin of 4-Byte Boundary</h3>
<p>The private data does not begin on a four byte boundary because the metadata is not padded.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="blocks-private-001-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-private-padalign">Documentation</a></p>
</div>
</div>
<h2 class="testCategory">WOFF Table Directory Tests</h2>
<div class="testCase" id="directory-4-byte-001">
<div class="testCaseOverview">
<h3><a href="#directory-4-byte-001">directory-4-byte-001</a>: Font Table Data Not On 4-Byte Boundary</h3>
<p>Two vendor-space tables are inserted into the table directory and data: AAAA is three bytes long. AAAB is five bytes long. AAAA is not padded so that the AAAB table does not begin on a four-byte boundary. The tables that follow are all aligned correctly.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="directory-4-byte-001-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-tablesize-longword">Documentation</a></p>
</div>
</div>
<div class="testCase" id="directory-4-byte-002">
<div class="testCaseOverview">
<h3><a href="#directory-4-byte-002">directory-4-byte-002</a>: Final Font Table Data Not Padded</h3>
<p>The final table in the table data block is not padded to a 4-byte boundary.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="directory-4-byte-002-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-tablesize-longword">Documentation</a></p>
</div>
</div>
<div class="testCase" id="directory-4-byte-003">
<div class="testCaseOverview">
<h3><a href="#directory-4-byte-003">directory-4-byte-003</a>: Font Table Data Padded With Non-Null</h3>
<p>Table data is padded with \01 instead of \00.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="directory-4-byte-003-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-tablesize-longword">Documentation</a></p>
</div>
</div>
<div class="testCase" id="directory-overlaps-001">
<div class="testCaseOverview">
<h3><a href="#directory-overlaps-001">directory-overlaps-001</a>: Font Table Data Offset Past End of File</h3>
<p>The offset to the final table is four bytes beyond the end of the file.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="directory-overlaps-001-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-diroverlap-reject">Documentation</a></p>
</div>
</div>
<div class="testCase" id="directory-overlaps-002">
<div class="testCaseOverview">
<h3><a href="#directory-overlaps-002">directory-overlaps-002</a>: Font Table Data Offset+Length Past End of File</h3>
<p>The defined length for the final table causes the data block to be four bytes beyond the end of the file.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="directory-overlaps-002-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-diroverlap-reject">Documentation</a></p>
</div>
</div>
<div class="testCase" id="directory-overlaps-003">
<div class="testCaseOverview">
<h3><a href="#directory-overlaps-003">directory-overlaps-003</a>: Font Table Data Overlaps Metadata</h3>
<p>The final table starts four bytes after the start of the metadata.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="directory-overlaps-003-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-diroverlap-reject">Documentation</a></p>
</div>
</div>
<div class="testCase" id="directory-overlaps-004">
<div class="testCaseOverview">
<h3><a href="#directory-overlaps-004">directory-overlaps-004</a>: Font Table Data Overlaps Private Data</h3>
<p>The final table starts four bytes after the start of the private data.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="directory-overlaps-004-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-diroverlap-reject">Documentation</a></p>
</div>
</div>
<div class="testCase" id="directory-overlaps-005">
<div class="testCaseOverview">
<h3><a href="#directory-overlaps-005">directory-overlaps-005</a>: Two Table Data Blocks Overlap</h3>
<p>The final table starts four bytes before the end of the previous table.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="directory-overlaps-005-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-diroverlap-reject">Documentation</a></p>
</div>
</div>
<div class="testCase" id="directory-extraneous-data-001">
<div class="testCaseOverview">
<h3><a href="#directory-extraneous-data-001">directory-extraneous-data-001</a>: Extraneous Data Between Tables</h3>
<p>There are four null bytes between each of the table data blocks after the head table.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="directory-extraneous-data-001-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-noextraneous">Documentation</a></p>
</div>
</div>
<div class="testCase" id="directory-compLength-001">
<div class="testCaseOverview">
<h3><a href="#directory-compLength-001">directory-compLength-001</a>: Font Table Data Compressed Length Greater Than Original Length</h3>
<p>At least one table's compLength is larger than the origLength.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="directory-compLength-001-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-compressedlarger">Documentation</a></p>
</div>
</div>
<div class="testCase" id="directory-origLength-001">
<div class="testCaseOverview">
<h3><a href="#directory-origLength-001">directory-origLength-001</a>: Original Length Less Than Decompressed Length</h3>
<p>The CFF table when decompressed has a length that is four bytes longer than the value listed in origLength.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="directory-origLength-001-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-origLength">Documentation</a></p>
</div>
</div>
<div class="testCase" id="directory-origLength-002">
<div class="testCaseOverview">
<h3><a href="#directory-origLength-002">directory-origLength-002</a>: Original Length Greater Than Decompressed Length</h3>
<p>The CFF table when decompressed has a length that is four bytes shorter than the value listed in origLength.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="directory-origLength-002-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-origLength">Documentation</a></p>
</div>
</div>
<div class="testCase" id="directory-origCheckSum-001">
<div class="testCaseOverview">
<h3><a href="#directory-origCheckSum-001">directory-origCheckSum-001</a>: Font Table Directory Contains Invalid Original CheckSum</h3>
<p>The checksum for the CFF table is set to 0.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="directory-origCheckSum-001-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-checksumvalidate">Documentation</a></p>
</div>
</div>
<div class="testCase" id="directory-origCheckSum-002">
<div class="testCaseOverview">
<h3><a href="#directory-origCheckSum-002">directory-origCheckSum-002</a>: Font head Table Incorrect CheckSum Adjustment</h3>
<p>The head table checksum adjustment is set to 0.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="directory-origCheckSum-002-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-checksumvalidate">Documentation</a></p>
</div>
</div>
<div class="testCase" id="directory-ascending-001">
<div class="testCaseOverview">
<h3><a href="#directory-ascending-001">directory-ascending-001</a>: Font Table Directory Not In Ascending Order</h3>
<p>The tables in the directory are in descending order.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="directory-ascending-001-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-ascending">Documentation</a></p>
</div>
</div>
<h2 class="testCategory">WOFF Table Data Tests</h2>
<div class="testCase" id="tabledata-compression-001">
<div class="testCaseOverview">
<h3><a href="#tabledata-compression-001">tabledata-compression-001</a>: Font Table Data Not Compressed</h3>
<p>None of the tables are stored in compressed form.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="tabledata-compression-001-validity">Yes</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-mustuncompress">Documentation</a></p>
</div>
</div>
<div class="testCase" id="tabledata-compression-002">
<div class="testCaseOverview">
<h3><a href="#tabledata-compression-002">tabledata-compression-002</a>: Font Table Data Is Compressed When Possible</h3>
<p>All of the tables (excpet head) that will be smaller when compressed are stored in their compressed state.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="tabledata-compression-002-validity">Yes</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-mustuncompress">Documentation</a></p>
</div>
</div>
<div class="testCase" id="tabledata-compression-003">
<div class="testCaseOverview">
<h3><a href="#tabledata-compression-003">tabledata-compression-003</a>: Not All Font Table Data Is Compressed When Possible</h3>
<p>Only one of the tables that would be smaller when compressed is stored in the compressed state.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="tabledata-compression-003-validity">Yes</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-mustuncompress">Documentation</a></p>
</div>
</div>
<div class="testCase" id="tabledata-compression-004">
<div class="testCaseOverview">
<h3><a href="#tabledata-compression-004">tabledata-compression-004</a>: Font Table Data Is Compressed At Different Levels</h3>
<p>The font data tables are compressed using at least two different levels.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="tabledata-compression-004-validity">Yes</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-mustuncompress">Documentation</a></p>
</div>
</div>
<div class="testCase" id="tabledata-zlib-001">
<div class="testCaseOverview">
<h3><a href="#tabledata-zlib-001">tabledata-zlib-001</a>: Font Table Data Invalid Compressed Data</h3>
<p>One compressed table has had its compressed data replaced with \01 making it incompatible with zlib.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="tabledata-zlib-001-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-mustzlib">Documentation</a></p>
</div>
</div>
<h2 class="testCategory">WOFF Metadata Tests</h2>
<div class="testCase" id="metadata-padding-001">
<div class="testCaseOverview">
<h3><a href="#metadata-padding-001">metadata-padding-001</a>: Padding Between Metadata and Private Data is Non-Null</h3>
<p>Metadata is padded with \01 instead of \00.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-padding-001-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-private-padalign">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-compression-001">
<div class="testCaseOverview">
<h3><a href="#metadata-compression-001">metadata-compression-001</a>: Metadata Invalid Compression</h3>
<p>The metadata is stored in an uncompressed state and therefore does not have the proper compression format.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-compression-001-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-metadata-alwayscompress">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-metaOrigLength-001">
<div class="testCaseOverview">
<h3><a href="#metadata-metaOrigLength-001">metadata-metaOrigLength-001</a>: Decompressed Metadata Length Less Than metaOrigLength</h3>
<p>The metadata decompresses to a length that is 1 byte smaller than the length defined in metaOrigLength</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-metaOrigLength-001-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-metaOrigLength">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-metaOrigLength-002">
<div class="testCaseOverview">
<h3><a href="#metadata-metaOrigLength-002">metadata-metaOrigLength-002</a>: Decompressed Metadata Length Greater Than metaOrigLength</h3>
<p>The metadata decompresses to a length that is 1 byte greater than the length defined in metaOrigLength</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-metaOrigLength-002-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-metaOrigLength">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-well-formed-001">
<div class="testCaseOverview">
<h3><a href="#metadata-well-formed-001">metadata-well-formed-001</a>: Unescaped < in Content</h3>
<p>The text element in the description element contains an unescaped <.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-well-formed-001-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-metaOrigLength">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-well-formed-002">
<div class="testCaseOverview">
<h3><a href="#metadata-well-formed-002">metadata-well-formed-002</a>: Unescaped & in Content</h3>
<p>The text element in the description element contains an unescaped &.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-well-formed-002-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-metaOrigLength">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-well-formed-003">
<div class="testCaseOverview">
<h3><a href="#metadata-well-formed-003">metadata-well-formed-003</a>: Mismatched Element Tags</h3>
<p>One element begins with <description> but ends with </mismatch>.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-well-formed-003-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-metaOrigLength">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-well-formed-004">
<div class="testCaseOverview">
<h3><a href="#metadata-well-formed-004">metadata-well-formed-004</a>: Unclosed Element Tag</h3>
<p>The text element element in the description element is not closed.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-well-formed-004-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-metaOrigLength">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-well-formed-005">
<div class="testCaseOverview">
<h3><a href="#metadata-well-formed-005">metadata-well-formed-005</a>: Case Mismatch in Element Tags</h3>
<p>The <description> element is closed with <DESCRIPTION>.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-well-formed-005-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-metaOrigLength">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-well-formed-006">
<div class="testCaseOverview">
<h3><a href="#metadata-well-formed-006">metadata-well-formed-006</a>: More Than One Root Element</h3>
<p>The metadata root element occurs twice.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-well-formed-006-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-metaOrigLength">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-well-formed-007">
<div class="testCaseOverview">
<h3><a href="#metadata-well-formed-007">metadata-well-formed-007</a>: Unknown Encoding</h3>
<p>The xml encoding is set to 'VSCACS-GFV-X-CQ34QTAB2Q-IS-NOT-A-VALID-ENCODING'.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-well-formed-007-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-metaOrigLength">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-encoding-001">
<div class="testCaseOverview">
<h3><a href="#metadata-encoding-001">metadata-encoding-001</a>: UTF-8 Encoding</h3>
<p>The xml encoding is set to UTF-8.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-encoding-001-validity">Yes</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#Metadata">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-encoding-002">
<div class="testCaseOverview">
<h3><a href="#metadata-encoding-002">metadata-encoding-002</a>: Invalid Encoding: UTF-16</h3>
<p>The xml encoding is set to UTF-16.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-encoding-002-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#Metadata">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-encoding-003">
<div class="testCaseOverview">
<h3><a href="#metadata-encoding-003">metadata-encoding-003</a>: Invalid Encoding: ISO-8859-1</h3>
<p>The xml encoding is set to ISO-8859-1.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-encoding-003-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#Metadata">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-encoding-004">
<div class="testCaseOverview">
<h3><a href="#metadata-encoding-004">metadata-encoding-004</a>: Implied UTF-8</h3>
<p>The xml encoding is not declared and there is no BOM.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-encoding-004-validity">Yes</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#Metadata">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-encoding-005">
<div class="testCaseOverview">
<h3><a href="#metadata-encoding-005">metadata-encoding-005</a>: UTF-8 BOM</h3>
<p>The xml encoding is not declared and there is a UTF-8 BOM.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-encoding-005-validity">Yes</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#Metadata">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-encoding-006">
<div class="testCaseOverview">
<h3><a href="#metadata-encoding-006">metadata-encoding-006</a>: Invalid Encoding: UTF-8 BOM</h3>
<p>The xml encoding is not declared and there is a UTF-16 BOM.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-encoding-006-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#Metadata">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-schema-metadata-001">
<div class="testCaseOverview">
<h3><a href="#metadata-schema-metadata-001">metadata-schema-metadata-001</a>: Valid metadata Element</h3>
<p>The metadata element matches the schema.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-schema-metadata-001-validity">Yes</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#Metadata">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-schema-metadata-002">
<div class="testCaseOverview">
<h3><a href="#metadata-schema-metadata-002">metadata-schema-metadata-002</a>: Top element is Not metadata</h3>
<p>The top element is "INVALID" instead of "metadata".</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-schema-metadata-002-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#Metadata">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-schema-metadata-003">
<div class="testCaseOverview">
<h3><a href="#metadata-schema-metadata-003">metadata-schema-metadata-003</a>: No version Attribute in metadata Element</h3>
<p>The metadata element does not contain the required version attribute.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-schema-metadata-003-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-metadata-schemavalid">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-schema-metadata-004">
<div class="testCaseOverview">
<h3><a href="#metadata-schema-metadata-004">metadata-schema-metadata-004</a>: Invalid version Attribute Value in metadata Element</h3>
<p>The metadata element version attribute is set to 'ABC'.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-schema-metadata-004-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-metadata-schemavalid">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-schema-metadata-005">
<div class="testCaseOverview">
<h3><a href="#metadata-schema-metadata-005">metadata-schema-metadata-005</a>: Unknown Attrbute in metadata Element</h3>
<p>The metadata element contains an unknown attribute.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-schema-metadata-005-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-metadata-schemavalid">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-schema-metadata-006">
<div class="testCaseOverview">
<h3><a href="#metadata-schema-metadata-006">metadata-schema-metadata-006</a>: Unknown Child Element metadata Element</h3>
<p>The metadata element contains an unknown child element.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-schema-metadata-006-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-metadata-schemavalid">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-schema-uniqueid-001">
<div class="testCaseOverview">
<h3><a href="#metadata-schema-uniqueid-001">metadata-schema-uniqueid-001</a>: Valid uniqueid Element</h3>
<p>The uniqueid element matches the schema.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-schema-uniqueid-001-validity">Yes</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#Metadata">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-schema-uniqueid-002">
<div class="testCaseOverview">
<h3><a href="#metadata-schema-uniqueid-002">metadata-schema-uniqueid-002</a>: No uniqueid Element</h3>
<p>The uniqueid element doesn't exist.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-schema-uniqueid-002-validity">Yes</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#Metadata">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-schema-uniqueid-003">
<div class="testCaseOverview">
<h3><a href="#metadata-schema-uniqueid-003">metadata-schema-uniqueid-003</a>: More Than One uniqueid Element</h3>
<p>The uniqueid element occurs twice.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-schema-uniqueid-003-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-metadata-schemavalid">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-schema-uniqueid-004">
<div class="testCaseOverview">
<h3><a href="#metadata-schema-uniqueid-004">metadata-schema-uniqueid-004</a>: No id Attribute in uniqueid Element</h3>
<p>The uniqueid element does not contain the required id attribute.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-schema-uniqueid-004-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-metadata-id-required">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-schema-uniqueid-005">
<div class="testCaseOverview">
<h3><a href="#metadata-schema-uniqueid-005">metadata-schema-uniqueid-005</a>: Unknown Attribute in uniqueid Element</h3>
<p>The uniqueid element contains an unknown attribute.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-schema-uniqueid-005-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-metadata-schemavalid">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-schema-uniqueid-006">
<div class="testCaseOverview">
<h3><a href="#metadata-schema-uniqueid-006">metadata-schema-uniqueid-006</a>: Child Element in uniqueid Element</h3>
<p>The uniqueid element contains a child element.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-schema-uniqueid-006-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-metadata-schemavalid">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-schema-uniqueid-007">
<div class="testCaseOverview">
<h3><a href="#metadata-schema-uniqueid-007">metadata-schema-uniqueid-007</a>: Content in uniqueid Element</h3>
<p>The uniqueid element contains content.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-schema-uniqueid-007-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-metadata-schemavalid">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-schema-vendor-001">
<div class="testCaseOverview">
<h3><a href="#metadata-schema-vendor-001">metadata-schema-vendor-001</a>: Valid vendor Element</h3>
<p>The vendor element matches the schema.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-schema-vendor-001-validity">Yes</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#Metadata">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-schema-vendor-002">
<div class="testCaseOverview">
<h3><a href="#metadata-schema-vendor-002">metadata-schema-vendor-002</a>: Valid vendor Element Without url Attribute</h3>
<p>The vendor element does not contain a url attribute but it still matches the schema.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-schema-vendor-002-validity">Yes</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#Metadata">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-schema-vendor-003">
<div class="testCaseOverview">
<h3><a href="#metadata-schema-vendor-003">metadata-schema-vendor-003</a>: No vendor Element</h3>
<p>The vendor element doesn't exist.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-schema-vendor-003-validity">Yes</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#Metadata">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-schema-vendor-004">
<div class="testCaseOverview">
<h3><a href="#metadata-schema-vendor-004">metadata-schema-vendor-004</a>: More Than One vendor Element</h3>
<p>The vendor element occurs twice.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-schema-vendor-004-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-metadata-schemavalid">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-schema-vendor-005">
<div class="testCaseOverview">
<h3><a href="#metadata-schema-vendor-005">metadata-schema-vendor-005</a>: No name Attribute in vendor Element</h3>
<p>The vendor element does not contain the required name attribute.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-schema-vendor-005-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#conform-metadata-vendor-required">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-schema-vendor-006">
<div class="testCaseOverview">
<h3><a href="#metadata-schema-vendor-006">metadata-schema-vendor-006</a>: Valid dir Attribute in vendor Element 1</h3>
<p>The vendor element contains ltr as the value for the dir attribute.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-schema-vendor-006-validity">Yes</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#Metadata">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-schema-vendor-007">
<div class="testCaseOverview">
<h3><a href="#metadata-schema-vendor-007">metadata-schema-vendor-007</a>: Valid dir Attribute in vendor Element 2</h3>
<p>The vendor element contains rtl as the value for the dir attribute.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-schema-vendor-007-validity">Yes</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#Metadata">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-schema-vendor-008">
<div class="testCaseOverview">
<h3><a href="#metadata-schema-vendor-008">metadata-schema-vendor-008</a>: Invalid dir Attribute in vendor Element</h3>
<p>The vendor element contains INVALID as the value for the dir attribute.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-schema-vendor-008-validity">No</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#Metadata">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-schema-vendor-009">
<div class="testCaseOverview">
<h3><a href="#metadata-schema-vendor-009">metadata-schema-vendor-009</a>: Valid class Attribute in vendor Element</h3>
<p>The vendor element contains "class1 class2 class3" as the value for the class attribute.</p>
</div>
<div class="testCaseDetails">
<p>Valid: <span id="metadata-schema-vendor-009-validity">Yes</span></p>
<p><a href="http://dev.w3.org/webfonts/WOFF/spec/#Metadata">Documentation</a></p>
</div>
</div>
<div class="testCase" id="metadata-schema-vendor-010">
<div class="testCaseOverview">
<h3><a href="#metadata-schema-vendor-010">metadata-schema-vendor-010</a>: Unknown Attribute in vendor Element</h3>
<p>The vendor element contains an unknown attribute.</p>
</div>