mirror of
https://github.com/servo/servo.git
synced 2025-08-01 19:50:30 +01:00
25 lines
609 B
HTML
25 lines
609 B
HTML
<!DOCTYPE html>
|
|
<title>Tests inline boxes with multi-line text are trimmed at text-over/text-under baselines</title>
|
|
<link rel="help" href="https://drafts.csswg.org/css-inline-3/#leading-trim">
|
|
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
|
|
<link rel="match" href="text-box-trim-half-leading-inline-box-001-ref.html">
|
|
|
|
<style>
|
|
div {
|
|
border: 1px solid orange;
|
|
font-size: 20px;
|
|
line-height: 1;
|
|
}
|
|
|
|
span {
|
|
border: 1px solid blue;
|
|
font-family: Ahem;
|
|
font-size: 20px;
|
|
line-height: 3;
|
|
text-box-trim: both;
|
|
}
|
|
</style>
|
|
|
|
<div>
|
|
<span>Testline1<br>TestLine2<br>TestLine3</span>
|
|
</div>
|