wpt / css / css-borders / border-shape / border-shape-shadow-circle.html

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

/css/css-borders/border-shape/border-shape-shadow-circle.html

<!doctype html>
<title>CSS Borders: border-shape circle with box-shadow</title>
<link rel="help" href="https://drafts.csswg.org/css-borders-4/#border-shape">
<link rel="match" href="border-shape-shadow-circle-ref.html">
<meta name="assert" content="box-shadow on a circle border-shape should match the same shadow drawn around a border-radius circle.">
<style>
  #target {
    margin: 100px;
    width: 100px;
    height: 100px;
    border-shape: circle(50px at 50% 50%);
    box-shadow: 0 0 10px 0 black;
  }
</style>
<div id="target"></div>

/css/css-borders/border-shape/border-shape-shadow-circle-ref.html

<!doctype html>
<title>CSS Borders: border-shape circle with box-shadow reference</title>
<style>
  .ref {
    margin: 100px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    box-shadow: 0 0 10px 0 black;
  }
</style>
<div class="ref"></div>