tref bug !?

What's wrong with this ?

A file having an external reference.

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE svg PUBLIC "-//W3C//DTD SVG 20001102//EN"
   "http://www.w3.org/TR/2000/CR-SVG-20001102/DTD/svg-20001102.dtd">
<svg width="450" height="450">
  <g>
    <text x="75" y="200" style="font-size:18;font-family:Helvetica;
fill:green">
      <tref xlink:href="text-ext.svg#tref-external-reference"/>
    </text>
  </g>
</svg>


External file (called "text-ext.svg") containing the referenced text.

<svg xmlns:xlink="http://www.w3.org/1999/xlink"
xmlns="http://www.w3.org/2000/svg" >
  <g>
    <defs>
      <text id="tref-external-reference">Simple external referenced
text.</text>
    </defs>
  </g>
</svg>


It doesn't work.
I'm using Windows NT 4.0, Netscape 4.7/IE 6.0, Adobe SVG Viewer 3.0 build
76

Received on Monday, 25 March 2002 14:08:20 UTC