wpt / css / css-overflow / line-clamp / webkit-line-clamp-with-line-height.html

Status: FAIL | Duration: 11ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/css/css-overflow/line-clamp/webkit-line-clamp-with-line-height.html

<!DOCTYPE html>
<link rel="match" href="reference/webkit-line-clamp-with-line-height-ref.html">
<link rel="help" href="https://github.com/w3c/csswg-drafts/issues/2847#issuecomment-468084957">
<meta name="assert" content="This test checks that -webkit-line-clamp calculates respects line-height when calculating its block-size.">
<link rel="stylesheet" type="text/css" href="/fonts/ahem.css" />
<style>
#test {
  width: 100px;

  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  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>

/css/css-overflow/line-clamp/reference/webkit-line-clamp-with-line-height-ref.html

<!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>