wpt / css / css-backgrounds / box-shadow / slice-block-fragmentation-001.html

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

/css/css-backgrounds/box-shadow/slice-block-fragmentation-001.html

<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<link rel="help" href="https://www.w3.org/TR/css-break-3/#break-decoration">
<link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=1402736">
<link rel="match" href="slice-block-fragmentation-001-ref.html">
<div style="margin:50px; columns:3; column-fill:auto; gap:20px; width:340px; height:100px;">
  <div style="box-shadow:5px 5px black; height:300px;"></div>
</div>

/css/css-backgrounds/box-shadow/slice-block-fragmentation-001-ref.html

<!DOCTYPE html>
<link rel="author" title="Morten Stenshorne" href="mailto:mstensho@chromium.org">
<style>
  .piece {
    position: absolute;
    left: 5px;
    top: 0;
    width: 95px;
    height: 100px;
    border: solid;
  }
  .start {
    top: 5px;
    height: 95px;
  }
</style>
<div style="position:relative; margin:50px;">
  <div class="piece start" style="border-width:0 5px 0 0"></div>
  <div class="piece" style="margin-left:120px; border-width:0 5px 0 0;"></div>
  <div class="piece" style="margin-left:240px; border-width:0 5px 5px 0;"></div>
</div>