Source code
Revision control
Copy as Markdown
Other Tools
Test Info:
- Manifest: layout/reftests/svg/filters/reftest.list
<!--
Any copyright is dedicated to the Public Domain.
-->
<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>