summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-fonts/font-size-adjust-001-ref.html
blob: 609e8d1d4bfd7429bcfbc971c9d765b56f497b7c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Fonts Reference: font-size-adjust - greater than aspect value of font</title>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
  div {
    position: absolute;
    font: 40px/40px Ahem;
    color: orange;
  }
  #test {
    color: blue;
    font-size: 45px;
  }
</style>
<body>
  <p>Test passes if the size of the blue rectangle is greater than the orange rectangle.</p>
  <div id="test">FillerText</div>
  <div>FillerText</div>
</body>