Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- This WPT test may be referenced by the following Test IDs:
- /css/filter-effects/empty-element-with-filter-004.html - WPT Dashboard Interop Dashboard
<!DOCTYPE html>
<title>CSS Filter Effects: ref filters on zero-sized block elements with 'will-change: transform' and no visible content</title>
<link rel="match" href="reference/green-100x100.html">
<meta name="assert" content="This test ensures we properly render filters on block elements with 'will-change: transform' that are zero-sized with no visible content.">
<style>
.flood {
width: 0px;
height: 0px;
filter: url(#f_flood);
will-change: transform;
}
</style>
<div class="flood"></div>
<defs>
<filter id="f_flood" color-interpolation-filters="sRGB" filterUnits="userSpaceOnUse" x="0" y="0" width="100" height="100">
<feFlood flood-color="green"/>
</filter>
</defs>
</svg>