summaryrefslogtreecommitdiffstats
path: root/layout/reftests/text/space-font-1.html
blob: e7cbd022713e2ce55d9bd2c1e2750bd979404e1f (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
<!DOCTYPE html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Bug 970891</title>
  <style type="text/css">
    @font-face {
      font-family: "test";
      src: url(../fonts/markA-nospace.ttf);
    }
    div {
      font-family: test, monospace;
      font-size: 16px;
      line-height: 32px;
    }
    span {
      font-family: monospace;
    }
  </style>
</head>

<body>
  <!-- markA-nospace does not have a glyph for the <space> character,
       so the spaces should fall back to 'monospace'. -->
  <div><b>A</b> <b>A</b> <i>A</i> <i>A</i><span>&nbsp;</span></div>
</body>

</html>