- From: Jon Ferraiolo <jferraio@Adobe.COM>
- Date: Wed, 28 Feb 2001 17:29:50 -0800
- To: Stephane Conversy <conversy@emn.fr>
- Cc: www-svg@w3.org
Shephane, I think this is explained in the text layout section, particularly with the paragraphs starting with http://www.w3.org/TR/SVG/text.html#CurrentTextPosition. Do you understand what happens with: <text x="74" y="63.75" style="fill:blue">You are a not a banana</text> If so, then just think about the intervening <tspan> as changing the color of the word "not" without impacting the layout. <text x="74" y="63.75" style="fill:blue">You are a <tspan fill="blue">not</tspan> a banana</text> The actual test case puts spaces inside the <tspan>, with xml:space="preserve", as follows: <text x="74" y="63.75" style="fill:blue">You are a<tspan fill="blue" xml:space="preserve"> not </tspan>a banana</text> Jon Ferraiolo SVG Editor jferraio@adobe.com At 11:10 AM 2/28/01 +0100, Stephane Conversy wrote: >Hello to all. > >in text-tspan-BE-02.svg > >we have: > ><text x="74" y="63.75" style="fill:blue"> > You are > <tspan style="font-weight:bold; fill:red" xml:space="preserve"> not ></tspan> > a banana. ></text> > >"a banana" is placed on the same base line than "You are" (i.e. same y) >and >right after " not " (in the "x" sense) , but I couldn't find >into the specs the rule for the placement of a PCDATA after a tspan >that explain this behavior. > >Is there someone able to point me ? > >thanks, > > stef > > >-- >stephane conversy >ecole des mines de nantes >
Received on Wednesday, 28 February 2001 23:34:55 UTC