mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
b423e77002
--HG-- extra : rebase_source : c4c139693bb5d3b9086f7571dc3363c1c8b27ed5
27 lines
768 B
XML
27 lines
768 B
XML
<!--
|
|
Any copyright is dedicated to the Public Domain.
|
|
http://creativecommons.org/publicdomain/zero/1.0/
|
|
-->
|
|
<svg xmlns="http://www.w3.org/2000/svg"
|
|
reftest-zoom="2" class="reftest-wait"
|
|
width="50%" height="50%">
|
|
|
|
<title>Test invalidation of zoomed SVG</title>
|
|
|
|
<!-- From https://bugzilla.mozilla.org/show_bug.cgi?id=726928 -->
|
|
|
|
<script type="text/javascript">
|
|
|
|
document.addEventListener("MozReftestInvalidate", doTest, false);
|
|
|
|
function doTest() {
|
|
var redRect = document.getElementById('red-rect');
|
|
redRect.parentNode.removeChild(redRect);
|
|
document.documentElement.removeAttribute("class");
|
|
}
|
|
|
|
</script>
|
|
<rect width="100%" height="100%" fill="lime"/>
|
|
<rect id="red-rect" x="10" y="10" width="100" height="100" fill="red"/>
|
|
</svg>
|