418139-1.svg 492 B

1234567891011121314151617181920212223
  1. <svg xmlns="http://www.w3.org/2000/svg"
  2. xmlns:xlink="http://www.w3.org/1999/xlink"
  3. xmlns:xul="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
  4. onload="boom();">
  5. <script type="text/javascript">
  6. function boom()
  7. {
  8. document.getElementById("b").style.position = "absolute";
  9. document.getElementById("a").style.color = "green";
  10. }
  11. </script>
  12. <defs>
  13. <g id="a"><xul:listbox/></g>
  14. </defs>
  15. <g id="b"><use xlink:href="#a"/></g>
  16. </svg>