tenfourfox/layout/reftests/writing-mode/1115916-1-vertical-metrics.html
Cameron Kaiser c9b2922b70 hello FPR
2017-04-19 00:56:45 -07:00

29 lines
388 B
HTML

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<style>
@font-face {
font-family: ahem;
src: url(../fonts/Ahem.ttf);
}
div {
height: 100px;
font: 16px/24px ahem;
}
#test1 {
writing-mode: vertical-lr;
text-orientation: upright;
}
span {
background: red; /* should not be visible */
}
</style>
</head>
<body>
<div id="test1">
<span>ab<br>cd</span>
</div>
</body>
</html>