dynamic-attr-removal-1.svg 646 B

123456789101112131415161718192021222324252627
  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" version="1.1">
  6. <defs>
  7. <style type="text/css">
  8. rect { fill: lime; }
  9. rect[transform="scale(2)"] { fill: red }
  10. </style>
  11. </defs>
  12. <g fill="lime">
  13. <rect id="rect" transform="scale(2)" width="100%" height="100%" />
  14. </g>
  15. <script>
  16. window.addEventListener(
  17. "load",
  18. function() { document.getElementById("rect").removeAttributeNS(null, "transform"); },
  19. false
  20. );
  21. </script>
  22. </svg>