wpt / css / CSS2 / normal-flow / block-in-inline-first-line-002.html

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

/css/CSS2/normal-flow/block-in-inline-first-line-002.html

<!DOCTYPE html>
<meta name="assert" content="Test if `text-indent` handles block-in-inline correctly">
<link rel="help" href="http://www.w3.org/TR/CSS21/visuren.html#anonymous-block-level" />
<link rel="match" href="block-in-inline-first-line-002-ref.html"/>
<link rel="author" title="Koji Ishii" href="mailto:kojii@chromium.org" />
<style>
section {
  width: 10ch;
}
.indent {
  text-indent: 5ch;
}
</style>
<body>
  <section class="indent">
    <span>
      123 456789
      <div>123 456789</div>
      123 456789
    </span>
  </section>
</body>

/css/CSS2/normal-flow/block-in-inline-first-line-002-ref.html

<!DOCTYPE html>
<style>
section {
  width: 10ch;
}
.indent {
  text-indent: 5ch;
}
</style>
<body>
  <section>
    <div class="indent">123 456789</div>
    <div class="indent">123 456789</div>
    <div>123 456789</div>
  </section>
</body>