mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-05 08:35:26 +00:00
29 lines
584 B
HTML
29 lines
584 B
HTML
<!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.ttf);
|
|
}
|
|
div {
|
|
font-family: test, monospace;
|
|
font-size: 16px;
|
|
line-height: 32px;
|
|
}
|
|
span {
|
|
font-family: monospace;
|
|
}
|
|
</style>
|
|
</head>
|
|
|
|
<body>
|
|
<!-- markA 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> </span></div>
|
|
</body>
|
|
|
|
</html>
|