wpt / css / css-text / text-fit / shrink-consistent.html

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

/css/css-text/text-fit/shrink-consistent.html

<!DOCTYPE html>
<link rel="help" href="https://drafts.csswg.org/css-text-5/#text-fit-property">
<link rel="match" href="shrink-consistent-ref.html">
<meta name="flags" content="ahem">
<link rel="stylesheet" href="/fonts/ahem.css">
<style>
.target {
  white-space: pre;
  width: 80px;
  margin-bottom: 10px;
  font: 20px/normal Ahem;
}

.scale {
  text-fit: shrink consistent;
  border: 1px solid green;
}
</style>
<body>
<div class="target scale">ABCDEFGH
ABCD</div>

</body>

/css/css-text/text-fit/shrink-consistent-ref.html

<!DOCTYPE html>
<link rel="stylesheet" href="/fonts/ahem.css">
<style>
.target {
  white-space: pre;
  width: 80px;
  margin-bottom: 10px;
  font: 20px/normal Ahem;
}

.scale {
  border: 1px solid green;
  font-size: 10px;
}
</style>
<body>
<div class="target scale">ABCDEFGH
ABCD</div>

</body>