Status: FAIL | Duration: 10ms | Subtests: 0/1 | Open test on wpt.live | Open ref on wpt.live | wpt.fyi
/css/filter-effects/effect-reference-on-span.html
<!DOCTYPE html> <html> <title>CSS Filters: filters on <span> elements</title> <link rel="author" title="Stephen White" href="mailto:senorblanco@chromium.org"> <link rel="help" href="https://drafts.fxtf.org/filter-effects-1/#FilterProperty"> <link rel="help" href="https://bugs.chromium.org/p/chromium/issues/detail?id=513408"> <link rel="match" href="reference/effect-reference-on-span-ref.html"> <meta name="assert" content="Check that a CSS filter to a <span> element works as expected."/> <body> <svg xmlns="http://www.w3.org/2000/svg" width="0" height="0" version="1.1"> <defs> <filter id="colormatrix" color-interpolation-filters="sRGB"> <feColorMatrix values="0 0 0 0 0, 0 0 0 0 0, 1 0 0 0 0, 0 0 0 1 0"/> </filter> </defs> </svg><span style="background-color: red; filter: url(#colormatrix);">This text's background should be blue.</span> </body> </html>
/css/filter-effects/reference/effect-reference-on-span-ref.html
<html> <body> <span style="background-color: blue;">This text's background should be blue.</span> </body> </html>