2012-02-04 17:58:46 +04:00
|
|
|
<?xml version="1.0"?>
|
|
|
|
<!--
|
|
|
|
Any copyright is dedicated to the Public Domain.
|
|
|
|
http://creativecommons.org/licenses/publicdomain/
|
|
|
|
-->
|
2012-02-06 16:57:12 +04:00
|
|
|
<svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait">
|
2012-03-20 16:15:53 +04:00
|
|
|
<title>Test that suspendRedraw doesn't apply after the end of a script</title>
|
|
|
|
<!-- https://bugzilla.mozilla.org/show_bug.cgi?id=734079 -->
|
2012-02-04 17:58:46 +04:00
|
|
|
|
2012-02-06 16:57:12 +04:00
|
|
|
<script type="text/javascript">
|
|
|
|
<![CDATA[
|
|
|
|
|
|
|
|
document.addEventListener("MozReftestInvalidate", doTest, false);
|
|
|
|
// in case we're not gecko
|
|
|
|
setTimeout(doTest, 5000);
|
|
|
|
|
|
|
|
function doTest() {
|
2012-02-04 17:58:46 +04:00
|
|
|
var svg = document.documentElement;
|
2012-02-06 16:57:12 +04:00
|
|
|
svg.suspendRedraw(10000);
|
2012-03-20 16:15:53 +04:00
|
|
|
document.getElementById("r").setAttribute("fill", "lime");
|
2012-02-04 17:58:46 +04:00
|
|
|
setTimeout(function() {
|
2012-02-06 16:57:12 +04:00
|
|
|
svg.removeAttribute("class");
|
|
|
|
}, 50);
|
2012-02-04 17:58:46 +04:00
|
|
|
}
|
2012-02-06 16:57:12 +04:00
|
|
|
]]>
|
2012-02-04 17:58:46 +04:00
|
|
|
</script>
|
2012-03-20 16:15:53 +04:00
|
|
|
<rect id="r" width="100%" height="100%" fill="red"/>
|
2012-02-04 17:58:46 +04:00
|
|
|
</svg>
|