summaryrefslogtreecommitdiffstats
path: root/testing/web-platform/tests/css/css-overflow/reference/webkit-line-clamp-with-line-height-ref.html
blob: c2c8914161af668cd57ce7ebac15b2100d93be8b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<!DOCTYPE html>
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
#test {
  width: 100px;

  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;

  border: solid thin grey;
  font: 20px 'Ahem';
  line-height: 40px;
}
</style>
<p>This tests the -webkit-line-clamp property with line-height applied.</p>
<div id="test">
  XXXX XXX
</div>