wpt / svg / render / reftests / overflow-clip.html

Status: PASS | Duration: 5ms | Subtests: 1/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi

/svg/render/reftests/overflow-clip.html

<!DOCTYPE html>
<link rel="match" href="rect-ref.html">
<style>
svg {
  overflow: visible;
}
</style>
<svg style="overflow: clip; width: 100px; height: 100px">
  <rect width="200" height="200" fill="green">
</svg>

/svg/render/reftests/rect-ref.html

<!DOCTYPE html>
<svg xmlns="http://www.w3.org/2000/svg">
  <rect width="100" height="100" fill="green" />
</svg>