2008-09-30 01:47:20 -07:00
|
|
|
<!--
|
|
|
|
Any copyright is dedicated to the Public Domain.
|
|
|
|
http://creativecommons.org/licenses/publicdomain/
|
|
|
|
-->
|
2009-02-05 00:16:00 -08:00
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" onload="startTest()" class="reftest-wait">
|
2008-09-30 01:47:20 -07:00
|
|
|
<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>
|
2009-02-05 00:16:00 -08:00
|
|
|
function startTest() {
|
|
|
|
document.addEventListener("MozReftestInvalidate", doTest, false);
|
|
|
|
// in case we're not gecko
|
|
|
|
setTimeout(doTest, 5000);
|
|
|
|
}
|
|
|
|
|
2008-09-30 01:47:20 -07:00
|
|
|
function doTest() {
|
|
|
|
document.getElementById("d").setAttribute("class", "foo");
|
|
|
|
document.documentElement.removeAttribute("class");
|
|
|
|
}
|
|
|
|
</script>
|
|
|
|
</svg>
|