summaryrefslogtreecommitdiff
path: root/old/css_compat/tests/font-variant.html
blob: b45c50d3c66513d545922e7adb237048008ce722 (plain)
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
<!DOCTYPE HTML PUBLIC '-//W3C//DTD HTML 4.01 Transitional//EN'>
<html>
<head>
<title>font-variant test</title>
<meta content='text/html; charset=UTF-8' http-equiv='Content-Type'/>
<style type="text/css">
.title {background-color: orange}
.sc {font-variant:small-caps;}
</style>
</head>

<body>
<h2 class="title">Small caps test</h2>
<hr>

<table width="100%">
<tr style="font-size: 500%;"> <td>Normal, CAPS <td class="sc">Small Caps
<tr style="font-size: 400%;"> <td>Normal, CAPS <td class="sc"><i>Small Caps</i>
<tr style="font-size: 300%;"> <td>Normal, CAPS <td class="sc"><b>Small Caps</b>
<tr style="font-size: 200%;"> <td>Normal, CAPS <td class="sc">Small Caps
<tr style="font-size: 100%;"> <td>Normal, CAPS <td class="sc">Small Caps
<tr style="font-size: 50%;" > <td>Normal, CAPS <td class="sc">Small Caps
</table>

<hr>
<p>
Utf8 lowercase: "àáâãäåæçèéêëìíîïðñòóôõöøùúûüßý"<br>
Utf8 small-caps <span class="sc">"àáâãäåæçèéêëìíîïðñòóôõöøùúûüßý"</span>
<p>
<table>
<tr><td>Normal text:
    <td>This is a length TEST for the conversion
<tr><td>Small-caps:
    <td class="sc">This is a length TEST for the conversion.
</table>
</body>

</html>