servo/tests/ref/line_height_ref.html
2014-09-08 20:21:42 -06:00

25 lines
552 B
HTML

<!DOCTYPE html>
<html>
<head>
<style>
@font-face {
font-family: 'ahem';
src: url(fonts/ahem/ahem.ttf);
}
body {
margin: 0;
padding: 0;
background-color: white;
}
span {
color: yellow;
font-family: ahem;
font-size: 128px;
line-height: 1.0;
}
</style>
</head>
<body>
<span>X</span>
</body>
</html>