mirror of
https://github.com/servo/servo.git
synced 2025-06-19 14:48:59 +01:00
23 lines
458 B
HTML
23 lines
458 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<!-- Tests that font fallback occurs on a per-glyph basis. -->
|
|
<style>
|
|
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>
|
|
|