symbol-01.svg 543 B

12345678910111213141516
  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. <!--
  7. A basic test that referencing a <symbol> with a <use> works.
  8. Note that the fill specified on the <use> inherits into the
  9. <use> shadow tree.
  10. -->
  11. <symbol id='s' viewBox='100 100 10 10'>
  12. <circle cx='105' cy='105' r='4'/>
  13. </symbol>
  14. <use xlink:href='#s' x='0' y='0' width='100' height='100' fill='green'/>
  15. </svg>