mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
25 lines
694 B
XML
25 lines
694 B
XML
<!--
|
|
Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/licenses/publicdomain/
|
|
-->
|
|
<svg xmlns="http://www.w3.org/2000/svg" onload="setTimeout(doTest,500)" class="reftest-wait">
|
|
<style>
|
|
.foo .maskrect { fill:white; }
|
|
</style>
|
|
|
|
<defs id="d">
|
|
<mask id="m1" maskUnits="objectBoundingBox" maskContentUnits="objectBoundingBox">
|
|
<rect class="maskrect" width="1" height="1"/>
|
|
</mask>
|
|
</defs>
|
|
|
|
<rect id="rect" width="100%" height="100%" fill="lime" mask="url(#m1)"/>
|
|
|
|
<script>
|
|
function doTest() {
|
|
document.getElementById("d").setAttribute("class", "foo");
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
</script>
|
|
</svg>
|