Files
servo/tests/wpt/css-tests/css21_dev/xhtml1print/vertical-align-baseline-006a.xht

48 lines
1.7 KiB
HTML

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>CSS Test: Baseline alignment of an inline-block with vertical padding and margin</title>
<style type="text/css">
@page { font: italic 8pt sans-serif; color: gray;
margin: 7%;
counter-increment: page;
@top-left { content: "CSS 2.1 Conformance Test Suite"; }
@top-right { content: "Test vertical-align-baseline-006a"; }
@bottom-right { content: counter(page); }
}
</style>
<link rel="author" title="Gérard Talbot" href="http://www.gtalbot.org/BrowserBugsSection/css21testsuite/" />
<link rel="help" href="http://www.w3.org/TR/CSS21/visudet.html#leading" title="10.8.1 Leading and half-leading" />
<meta content="" name="flags" />
<meta name="assert" content="The baseline of an (anonymous) inline element is aligned with the baseline of the last line box of an 'inline-block' in the normal flow as 'vertical-align: baseline' is by default applied. In such case, the vertical padding and vertical margin have no influence on the position of the baseline line of an 'inline-block'." />
<style type="text/css"><![CDATA[
div > div
{
display: inline-block;
font-size: 30px;
margin: 0.3em 0em;
padding: 0.7em 0em;
vertical-align: baseline;
}
]]></style>
</head>
<body>
<p>Test passes if the bottom of all 'L's are aligned.</p>
<div>LLLLL
<div>
<p>ABCDE</p>
<p>LLLLL</p>
</div>LLLLL
</div>
</body>
</html>