Status: FAIL | Duration: 9ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/svg/painting/text-mask-transform.html
<!DOCTYPE html> <meta name="assert" content="There should be no hairline along the edges of mask bounding box"> <link rel="match" href="text-clip-path-transform-ref.html"> <style>body { margin: 0 }</style> <svg style="background: green" width="200" height="200" viewBox="0 0 150 150"> <defs> <mask id="mask"> <text fill="white"> <tspan x="120" y="25">A</tspan> <tspan x="8" y="140">B</tspan> </text> </mask> </defs> <rect style="will-change: transform; mask: url(#mask)" fill="red" x="0" y="0" width="200" height="200"> </svg> <!-- cover the non-interesting part which is difficult to match a ref. Overflow clip doesn't work to reproduce the issue. --> <div style="position: absolute; background: white; left: 100px; top: 0; width: 100px; height: 100px"></div> <div style="position: absolute; background: white; left: 0; top: 100px; width: 100px; height: 100px"></div>
/svg/painting/text-clip-path-transform-ref.html
<!DOCTYPE html> <div style="position: absolute; background: green; left: 0; top: 0; width: 100px; height: 100px"></div> <div style="position: absolute; background: green; left: 100px; top: 100px; width: 100px; height: 100px"></div>