blob: 6aba2816c32dabfb096f8463e33bfb29aa69d432 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
<style>
@font-face {
font-family: family1;
src: local(Ahem), url(../../resources/Ahem.ttf);
font-variant: small-caps;
}
p.test {
font-family: family1;
font-variant: small-caps;
}
</style>
<p>
Tests that if @font-face does not provide an explicit font-variant, normal is used.
</p>
<p>
The text below should be a series of black boxes.
</p>
<p class="test">failure</p>
|