wpt / svg / render / reftests / blending-svg-root.html

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

/svg/render/reftests/blending-svg-root.html

<!DOCTYPE html>
<title>'mix-blend-mode' for &lt;svg&gt;</title>
<link rel="help" href="https://www.w3.org/TR/SVG2/render.html#PaintersModel">
<link rel="match"  href="blending-svg-root-ref.html">
<div style="background: green">
  <div>Expected: a black square on green background.</div>
  <svg style="mix-blend-mode: multiply; width: 200px; height: 200px; background: red">
  </svg>
</div>

/svg/render/reftests/blending-svg-root-ref.html

<!DOCTYPE html>
<div style="background: green">
  <div>Expected: a black square on green background.</div>
  <svg style="width: 200px; height: 200px; background: black">
  </svg>
</div>