servo/tests/ref/inline_block_baseline_a.html

24 lines
549 B
HTML

<!DOCTYPE html>
<html>
<head>
<style type="text/css">
body {
font-family: 'ahem';
font-size: 400px;
line-height: 1;
margin: 0;
}
.test {
color: green;
display: inline-block;
font-size: 300px;
}
.cdef {
color: red;
}
</style>
</head>
<body>
<div class="cdef">X<span class="test">X</span></div>
</body>
</html>