summaryrefslogtreecommitdiffstats
path: root/third_party/WebKit/LayoutTests/fast/css/font-weight-1.html
blob: 06bf4c3321fbb99abda5ab835bc16cb1baa131ef (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
40
41
42
<style>
    div { font-family: WebKit WeightWatcher; font-size: 48px; }
    .w1 { font-weight: 100; }
    .w2 { font-weight: 200; }
    .w3 { font-weight: 300; }
    .w4 { font-weight: 400; }
    .w5 { font-weight: 500; }
    .w6 { font-weight: 600; }
    .w7 { font-weight: 700; }
    .w8 { font-weight: 800; }
    .w9 { font-weight: 900; }
</style>
<p>
    You should see the numbers 1 to 9 below.
</p>
<div class="w1">
    A
</div>
<div class="w2">
    A
</div>
<div class="w3">
    A
</div>
<div class="w4">
    A
</div>
<div class="w5">
    A
</div>
<div class="w6">
    A
</div>
<div class="w7">
    A
</div>
<div class="w8">
    A
</div>
<div class="w9">
    A
</div>