script-empty-01.svg 441 B

123456789101112131415
  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" xmlns:xlink="http://www.w3.org/1999/xlink">
  6. <title>Testcase for that xlink:href attribute overrides script content</title>
  7. <rect id="r" width="100%" height="100%" fill="lime"/>
  8. <script xlink:href="">
  9. document.getElementById("r").style.fill = "red";
  10. </script>
  11. </svg>