layout/reftests/svg/dynamic-small-object-scaled-up-02.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.)

michael@0 1 <!--
michael@0 2 Any copyright is dedicated to the Public Domain.
michael@0 3 http://creativecommons.org/publicdomain/zero/1.0/
michael@0 4 -->
michael@0 5 <svg xmlns="http://www.w3.org/2000/svg" version="1.1" class="reftest-wait">
michael@0 6 <title>Test invalidation of very small objects that have been scaled up</title>
michael@0 7 <!--
michael@0 8 From https://bugzilla.mozilla.org/show_bug.cgi?id=465996
michael@0 9
michael@0 10 The very small graphic that has been scaled up to be visible should
michael@0 11 invalidate correctly when moved.
michael@0 12 -->
michael@0 13 <script type="text/javascript">//<![CDATA[
michael@0 14
michael@0 15 function move_small_object()
michael@0 16 {
michael@0 17 document.getElementById('path').setAttribute("transform", "translate(-.2, -.2)");
michael@0 18 document.documentElement.removeAttribute('class');
michael@0 19 }
michael@0 20
michael@0 21 document.addEventListener("MozReftestInvalidate", move_small_object, false);
michael@0 22 setTimeout(move_small_object, 4000); // fallback for running outside reftest
michael@0 23
michael@0 24 //]]></script>
michael@0 25 <rect width="100%" height="100%" fill="lime"/>
michael@0 26 <g transform="scale(300, 300)">
michael@0 27 <path id="path" transform="translate(.2, .2)" fill="red" stroke="black" stroke-width="0.005"
michael@0 28 d="M 0.05 0 C 0.05 0.06666666 -0.05 0.06666666 -0.05 0 C -0.05 -0.0666666666 0.05 -0.06666666 0.05 0"/>
michael@0 29 </g>
michael@0 30 </svg>

mercurial