|
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"> |
|
6 |
|
7 <title>Test repainting for opacity property changes</title> |
|
8 |
|
9 <script> |
|
10 |
|
11 function doTest() { |
|
12 document.getElementById("r").style.opacity = 1; |
|
13 document.documentElement.removeAttribute("class"); |
|
14 } |
|
15 |
|
16 document.addEventListener("MozReftestInvalidate", doTest, false); |
|
17 setTimeout(doTest, 4000); // fallback for running outside reftest |
|
18 |
|
19 </script> |
|
20 |
|
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"/> |
|
24 |
|
25 </svg> |