tenfourfox/layout/reftests/font-features/font-kerning-2.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

27 lines
531 B
HTML

<!DOCTYPE HTML>
<html>
<head>
<style type="text/css">
@font-face {
font-family: libertine;
src: url(../fonts/LinLibertine_Re-4.7.5.woff) format("woff");
}
body {
margin: 10px;
font-family: libertine, sans-serif;
font-size: 600%;
line-height: 1.2em;
/* font-feature-settings should take precedence over font-kerning,
so kerning should be ENabled here. */
font-feature-settings: "kern" on;
font-kerning: none;
}
</style>
</head>
<body lang="en">
<div>Ta To</div>
<div>AVA</div>
<div>AWAY</div>
</body>
</html>