gecko/layout/reftests/svg/moz-only/zoom-invalidation-01.svg
Jonathan Watt b423e77002 Bug 407495 - Make SVG documents with percentage width/height respond to page zoom. r=roc.
--HG--
extra : rebase_source : c4c139693bb5d3b9086f7571dc3363c1c8b27ed5
2012-05-03 17:05:24 +01:00

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>