Hello,

I have started to implement what I posted on my previous e-mail, and my 
first try has been a simple transparent wrapper element.

The idea:

<svg:svg>
<ext:wrapper>
<svg:circle />
</ext:wrapper>
</svg:svg>

should be rendered exactly as if it was:

<svg:svg>
<svg:circle />
</svg:svg>

Or more precisely, as:

<svg:svg>
<svg:g>
<svg:circle />
</svg:g>
</svg:svg>


What I did:

Created a DOM extension.
Created a bridge extension.
Created an element.
Created a bridge.

If I launch the browser loading a file which contains the <ext:wrapper> 
thing, I see the constructors being called, for the bridge, and for the 
element.

However, the bridge method for generating a GVT node are NEVER called.

Why is that?

Am I doing something wrong?


Thank you very much.


Antonio Fiol


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to