summaryrefslogtreecommitdiffstats
path: root/layout/reftests/font-features/small-caps-missing-capital-ref.html
blob: b27620f77e187c95a4f641a87a3711b5f54287ba (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
<!DOCTYPE html>
<meta charset=utf-8>
<style>
@font-face {
  font-family: test;
  /* A font that supports the π symbol, but does not have a capital PI;
     and supports the µ sign, but does not have a capital MU. */
  src: url(../fonts/Prototype.ttf);
}
.test {
  font-family: test;
  font-size: 24px;
  font-variant: small-caps;
}
</style>

<p>The pi symbol must not be missing:</p>

<p class=test><span style="font-variant:normal">π</span>-Test</p>

<p>The micro sign µ must not be missing:</p>

<p class=test>Is <span style="font-variant:normal">10µs</span> the same as 10ms?</p>