Bug or Spec?

I couldn't get this to work:

<text id="TBA">TBA</text>
<g id="listing">
	...
	<tref x="+146" dy="+25" fill="white" xlink:href="#TBA"/>
</g>

<use xlink:href="#listing" x="0" y="345"/>

Until I modified it to be this:

<text id="TBA">TBA</text>
<g id="listing">
	...
	<text x="+146" dy="+25" fill="white"><tref
xlink:href="#TBA"/></text>
</g>

<use xlink:href="#listing" x="0" y="345"/>

Is this correct behavior, or is it a bug.  I was under the impression that
the 'tref' element
could stand alone.  Also, I don't recall any limitation on nesting
references.

Received on Friday, 16 July 2004 11:59:25 UTC