control-characters-002

Control Characters

WeasyPrint

This browser

Assertion
Handling and processing of control characters.

Source

 1 <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
 2 <html>
 3     <head>
 4         <title>CSS Test: Control Characters</title>
 5         <link rel="author" title="Microsoft" href="http://www.microsoft.com/">
 6         <link rel="help" href="http://www.w3.org/TR/CSS21/text.html#spacing-props">
 7         <meta name="flags" content="">
 8         <meta name="assert" content="Handling and processing of control characters.">
 9         <style type="text/css">
10             div
11             {
12                 border: 1px solid black;
13                 height: 1.2em;
14                 padding-left: 1em;
15             }
16         </style>
17     </head>
18     <body>
19         <p>Test passes if there is only a single character in each box below or the box is empty.</p>
20         <!-- C0 Control Characters -->
21         <div>	</div>
22         <div>
23 </div>
24         <div>
25 </div>
26         <div></div>
27         <!-- C1 Control Characters -->
28         <div>€</div>
29         <div></div>
30         <div>‚</div>
31         <div>ƒ</div>
32         <div>„</div>
33         <div>…</div>
34         <div>†</div>
35         <div>‡</div>
36         <div>ˆ</div>
37         <div>‰</div>
38         <div>Š</div>
39         <div>‹</div>
40         <div>Œ</div>
41         <div></div>
42         <div>Ž</div>
43         <div></div>
44         <div></div>
45         <div>‘</div>
46         <div>’</div>
47         <div>“</div>
48         <div>”</div>
49         <div>•</div>
50         <div>–</div>
51         <div>—</div>
52         <div>˜</div>
53         <div>™</div>
54         <div>š</div>
55         <div>›</div>
56         <div>œ</div>
57         <div></div>
58         <div>ž</div>
59         <div>Ÿ</div>
60     </body>
61 </html>