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-01.svg
<!--
Any copyright is dedicated to the Public Domain.
-->
<svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait">
<script>
var NS_SVG = 'http://www.w3.org/2000/svg';
function run_test() {
var gNode = document.createElementNS(NS_SVG, "g");
gNode.setAttribute('filter', 'url(#filter)');
var rect = document.createElementNS(NS_SVG, 'rect');
rect.setAttribute('width', '100');
rect.setAttribute('height', '100');
rect.setAttribute('fill', 'white');
gNode.appendChild(rect);
document.documentElement.appendChild(gNode);
document.documentElement.removeAttribute("class");
}
document.addEventListener("MozReftestInvalidate", run_test);
setTimeout(run_test, 4000); // fallback for running outside reftest
</script>
<filter id="filter" x="20" y="20" width="100" height="100"
filterUnits="userSpaceOnUse"
primitiveUnits="userSpaceOnUse">
<feFlood flood-color="lime"/>
</filter>
<rect width="100%" height="100%" fill="lime"/>
<rect x="20" y="20" width="100" height="100" fill="red"/>
</svg>