Source code

Revision control

Copy as Markdown

Other Tools

Test Info:

SVG Preview (Scaled)

Preview of https://hg.mozilla.org/mozilla-central/raw-file/tip/layout/reftests/svg/filters/dynamic-filter-invalidation-02.svg
<!--
Any copyright is dedicated to the Public Domain.
-->
<svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait" onload="run_test();">
<script>
function run_test() {
document.documentElement.getBoundingClientRect();
document.getElementById("setFilterOnThis").setAttribute('filter', 'url(#filter)');
document.documentElement.removeAttribute("class");
}
</script>
<filter id="filter" x="20%" y="20%" width="100%" height="100%">
<feFlood flood-color="lime"/>
</filter>
<rect width="100%" height="100%" fill="lime"/>
<rect x="20" y="20" width="100" height="100" fill="red"/>
<rect width="100" height="100" fill="white" id="setFilterOnThis"/>
</svg>