wpt / css / css-borders / border-shape / border-shape-outline-with-border-ellipse.html

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

/css/css-borders/border-shape/border-shape-outline-with-border-ellipse.html

<!DOCTYPE html>
<title>CSS Borders Test: border-shape outline with tricky ellipses</title>
<link rel="help" href="https://drafts.csswg.org/css-borders-4/#border-shape">
<link rel="help" href="https://drafts.csswg.org/css-ui/#outline">
<link rel="match" href="border-shape-outline-with-border-ellipse-ref.html">
<meta name="fuzzy" content="maxDifference=0-170;totalPixels=0-5000">
<style>
body {
  margin: 0;
}
.container {
  padding: 40px;
}
.test1 {
  margin-left: 160px;
  margin-top: 200px;
  width: 20px;
  height: 100px;
  border: 5px solid blue;
  outline: 120px solid green;
  border-shape: ellipse(50% 50% at 50% 50%) border-box ellipse(50% 50% at 50% 50%) padding-box;
}
.test2 {
  margin: -100px 549px;
  width: 2px;
  height: 100px;
  border: 1px solid blue;
  outline: 120px solid green;
  border-shape: ellipse(50% 50% at 50% 50%) border-box ellipse(50% 50% at 50% 50%) padding-box;
}
</style>
<div class="container">
  <div class="test1"></div>
  <div class="test2"></div>
</div>

/css/css-borders/border-shape/border-shape-outline-with-border-ellipse-ref.html

<!DOCTYPE html>
<title>CSS Borders Reference: border-shape outline with tricky ellipses</title>
<style>
body {
  margin: 0;
}
.container {
  padding: 40px;
}
.test1 {
  margin-left: 160px;
  margin-top: 200px;
  width: 20px;
  height: 100px;
  border: 5px solid blue;
  outline: 120px solid green;
  border-radius: 50%;
}
.test2 {
  margin: -100px 549px;
  width: 2px;
  height: 100px;
  border: 1px solid blue;
  outline: 120px solid green;
  border-radius: 50%;
}
</style>
<div class="container">
  <div class="test1"></div>
  <div class="test2"></div>
</div>