dynamic-text-08.svg 661 B

12345678910111213141516171819202122232425
  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" onload="m();">
  6. <title>Testcase to scaling from zero</title>
  7. <g id="g" transform="scale(0)">
  8. <text x="100" y="50" font-size="50" text-anchor="middle">ABC</text>
  9. </g>
  10. <script>
  11. function m()
  12. {
  13. // Force frame construction
  14. document.documentElement.getBoundingClientRect();
  15. // A dynamic change
  16. document.getElementById("g").removeAttribute("transform");
  17. document.documentElement.removeAttribute("class");
  18. }
  19. </script>
  20. </svg>