Files
servo/tests/wpt/css-tests/css21_dev/html4/line-box-height-001.htm

40 lines
1.4 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<head>
<title>CSS Test: Height for inline elements when 'line-height' is smaller than 'height'</title>
<link rel="author" title="Microsoft" href="http://www.microsoft.com/">
<link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#propdef-line-height">
<link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#leading">
<meta name="flags" content="ahem">
<meta name="assert" content="The 'line-height' property sets the initial height but that height is increased if the content height is larger.">
<style type="text/css">
#div1
{
color: blue;
font: 100px/1 Ahem;
position: relative;
}
span
{
line-height: 0;
}
#div2
{
background: orange;
height: 200px;
left: 100px;
position: absolute;
top: 0;
width: 100px;
}
</style>
</head>
<body>
<p>Test passes if the blue and orange rectangle have the same height.</p>
<div id="div1">
<div>X</div>
<span>X</span>
<div id="div2"></div>
</div>
</body>
</html>