Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

<!DOCTYPE html>
<title>CSS Filters: feImage and CSS reference filters.</title>
<link rel="match" href="reference/effect-reference-feimage-004-ref.html">
<meta name="assert" content="This test ensures that CSS reference filters with 'will-change: filter' supports feImage."/>
<style>
#filtered {
width: 160px;
height: 90px;
filter: url(#imagereplace);
will-change: filter;
}
</style>
<div id="filtered"></div>
<svg width="0" height="0">
<filter id="imagereplace" color-interpolation-filters="sRGB" x="0%" y="0%" width="100%" height="100%">
<feimage xlink:href="support/color-palette.png"/>
</filter>
</svg>