Wed, 31 Dec 2014 13:27:57 +0100
Ignore runtime configuration files generated during quality assurance.
1 <!--
2 Any copyright is dedicated to the Public Domain.
3 http://creativecommons.org/publicdomain/zero/1.0/
4 -->
5 <svg xmlns="http://www.w3.org/2000/svg" class="reftest-wait">
7 <title>Test repainting for opacity property changes</title>
9 <script>
11 function doTest() {
12 document.getElementById("r").style.opacity = 1;
13 document.documentElement.removeAttribute("class");
14 }
16 document.addEventListener("MozReftestInvalidate", doTest, false);
17 setTimeout(doTest, 4000); // fallback for running outside reftest
19 </script>
21 <rect width="100%" height="100%" fill="lime"/>
22 <rect width="100" height="100" fill="red"/>
23 <rect id="r" width="100" height="100" fill="lime" style="opacity:0.5"/>
25 </svg>