mirror of
https://github.com/servo/servo.git
synced 2025-08-06 06:00:15 +01:00
28 lines
534 B
HTML
28 lines
534 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!-- Tests that font fallback occurs on a per-glyph basis. -->
|
|
<style>
|
|
@font-face {
|
|
font-family: 'ahem';
|
|
src: url(fonts/ahem/ahem.ttf);
|
|
}
|
|
|
|
body {
|
|
font-family: Ahem, sans-serif;
|
|
font-size: 24px;
|
|
line-height: 24px;
|
|
}
|
|
|
|
.arrow {
|
|
font-family: sans-serif;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<section>x<span class=arrow>←</span></section>
|
|
<section><span class=arrow>→</span>x</section>
|
|
<section><span class=arrow>→</span>x<span class=arrow>←</span></section>
|
|
</body>
|
|
</html>
|
|
|