annotate run/html_entity_pub.html @ 6:e238a15dbc74

1) added added html-sourcefile support 2) added html_entity, html_tag_case, empt, html_empty and html_defect tests
author thomask
date Mon, 04 Oct 2004 13:59:18 +0000
parents
children 9a121126b077
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
6
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
1 <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
2 <html>
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
3 <head><title>html_entity_pub</title></head>
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
4 <body><pre><code>
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
5 int main(){
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
6 assert('&#x2003;'=='&emsp;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
7 assert('&#x2002;'=='&ensp;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
8 assert('&#x2004;'=='&emsp13;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
9 assert('&#x2005;'=='&emsp14;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
10 assert('&#x2007;'=='&numsp;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
11 assert('&#x2008;'=='&puncsp;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
12 assert('&#x2009;'=='&thinsp;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
13 assert('&#x200A;'=='&hairsp;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
14 assert('&#x2014;'=='&mdash;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
15 assert('&#x2013;'=='&ndash;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
16 assert('&#x2010;'=='&dash;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
17 assert('&#x2423;'=='&blank;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
18 assert('&#x2026;'=='&hellip;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
19 assert('&#x2025;'=='&nldr;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
20 assert('&#x2153;'=='&frac13;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
21 assert('&#x2154;'=='&frac23;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
22 assert('&#x2155;'=='&frac15;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
23 assert('&#x2156;'=='&frac25;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
24 assert('&#x2157;'=='&frac35;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
25 assert('&#x2158;'=='&frac45;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
26 assert('&#x2159;'=='&frac16;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
27 assert('&#x215A;'=='&frac56;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
28 assert('&#x2105;'=='&incare;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
29 assert('&#x2588;'=='&block;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
30 assert('&#x2580;'=='&uhblk;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
31 assert('&#x2584;'=='&lhblk;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
32 assert('&#x2591;'=='&blk14;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
33 assert('&#x2592;'=='&blk12;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
34 assert('&#x2593;'=='&blk34;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
35 assert('&#x25AE;'=='&marker;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
36 assert('&#x25CB;'=='&cir;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
37 assert('&#x25A1;'=='&squ;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
38 assert('&#x25AD;'=='&rect;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
39 assert('&#x25B5;'=='&utri;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
40 assert('&#x25BF;'=='&dtri;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
41 assert('&#x22C6;'=='&star;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
42 assert('&#x2022;'=='&bull;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
43 assert('&#x25AA;'=='&squf;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
44 assert('&#x25B4;'=='&utrif;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
45 assert('&#x25BE;'=='&dtrif;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
46 assert('&#x25C2;'=='&ltrif;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
47 assert('&#x25B8;'=='&rtrif;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
48 assert('&#x2663;'=='&clubs;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
49 assert('&#x2666;'=='&diams;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
50 assert('&#x2665;'=='&hearts;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
51 assert('&#x2660;'=='&spades;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
52 assert('&#x2720;'=='&malt;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
53 assert('&#x2020;'=='&dagger;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
54 assert('&#x2021;'=='&Dagger;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
55 assert('&#x2713;'=='&check;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
56 assert('&#x2717;'=='&cross;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
57 assert('&#x266F;'=='&sharp;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
58 assert('&#x266D;'=='&flat;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
59 assert('&#x2642;'=='&male;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
60 assert('&#x2640;'=='&female;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
61 assert('&#x260E;'=='&phone;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
62 assert('&#x2315;'=='&telrec;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
63 assert('&#x2117;'=='&copysr;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
64 assert('&#x2041;'=='&caret;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
65 assert('&#x201A;'=='&lsquor;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
66 assert('&#x201E;'=='&ldquor;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
67 assert('&#xFB00;'=='&fflig;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
68 assert('&#xFB01;'=='&filig;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
69 assert('&#xFB03;'=='&ffilig;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
70 assert('&#xFB04;'=='&ffllig;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
71 assert('&#xFB02;'=='&fllig;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
72 assert('&#x2026;'=='&mldr;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
73 assert('&#x201C;'=='&rdquor;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
74 assert('&#x2018;'=='&rsquor;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
75 assert('&#x22EE;'=='&vellip;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
76 assert('&#x2043;'=='&hybull;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
77 assert('&#x25CA;'=='&loz;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
78 assert('&#x2726;'=='&lozf;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
79 assert('&#x25C3;'=='&ltri;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
80 assert('&#x25B9;'=='&rtri;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
81 assert('&#x2605;'=='&starf;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
82 assert('&#x266E;'=='&natur;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
83 assert('&#x211E;'=='&rx;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
84 assert('&#x2736;'=='&sext;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
85 assert('&#x2316;'=='&target;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
86 assert('&#x230D;'=='&dlcrop;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
87 assert('&#x230C;'=='&drcrop;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
88 assert('&#x230F;'=='&ulcrop;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
89 assert('&#x230E;'=='&urcrop;');
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
90 return 0;
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
91 }
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
92 </code></pre></body>
e238a15dbc74 1) added added html-sourcefile support
thomask
parents:
diff changeset
93 </html>