mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
31 lines
844 B
XML
31 lines
844 B
XML
<!--
|
|
Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/licenses/publicdomain/
|
|
-->
|
|
<svg xmlns="http://www.w3.org/2000/svg" onload="startTest()" 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 startTest() {
|
|
document.addEventListener("MozReftestInvalidate", doTest, false);
|
|
// in case we're not gecko
|
|
setTimeout(doTest, 5000);
|
|
}
|
|
|
|
function doTest() {
|
|
document.getElementById("d").setAttribute("class", "foo");
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
</script>
|
|
</svg>
|