layout/reftests/svg/dynamic-opacity-property-01.svg

Thu, 15 Jan 2015 21:03:48 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 21:03:48 +0100
branch
TOR_BUG_9701
changeset 11
deefc01c0e14
permissions
-rw-r--r--

Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)

     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>

mercurial