wpt / css / css-ui / text-overflow-ellipsis-multiline-001.html

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

/css/css-ui/text-overflow-ellipsis-multiline-001.html

<!DOCTYPE html>
<title>Test multiline ellipsis with `::first-line`</title>
<link rel="match" href="reference/text-overflow-ellipsis-multiline-001-ref.html">
<link rel="help" href="https://drafts.csswg.org/css-ui-3/#ellipsing-details">
<style>
div {
  width: 6ch;
  overflow: hidden;
  text-overflow: ellipsis;
}
div::first-line {
  color: orange;
}
</style>
<div>
  1234567<br>
  1234567
</div>

/css/css-ui/reference/text-overflow-ellipsis-multiline-001-ref.html

<!DOCTYPE html>
<style>
div {
  width: 6ch;
  overflow: hidden;
  text-overflow: ellipsis;
}
div.first-line {
  color: orange;
}
</style>
<div class="first-line">1234567</div>
<div>1234567</div>