Fri, 16 Jan 2015 18:13:44 +0100
Integrate suggestion from review to improve consistency with existing code.
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('circle').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 | <circle id="circle" cx=".05" cy=".05" r=".05" |
michael@0 | 28 | fill="red" stroke="black" stroke-width="0.005" /> |
michael@0 | 29 | </g> |
michael@0 | 30 | </svg> |