summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-fonts/font-size-adjust-order-001-ref.html
blob: 0c68e1396adf54957271b8c3611d3af4189b0375 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
<!DOCTYPE html>
<meta charset="utf-8">
<title>CSS Fonts reference</title>
<style>
  div {
    margin: 10px;
    font: 20px monospace;
    background: yellow;
    width: 10ch;
    font-size-adjust: 1.0;
  }
</style>
<body>
  <p>Test passes if both blocks render the same, and there is no red:</p>
  <div>The quick brown fox jumps over the lazy dog</div>
  <div>The quick brown fox jumps over the lazy dog</div>
</body>