You are viewing a plain text version of this content. The canonical link for it is here.
Posted to batik-dev@xmlgraphics.apache.org by Thierry Kormann <Th...@sophia.inria.fr> on 2000/11/07 19:18:16 UTC

regression on event

I have just checkout the whole CVS tree and I had regression on events.
When loading a document, I had a DOMException all the time.

I have fixed the error that was (in JSVGCanvas) :

Event evt = document.createEvent("SVGEvents");

instead of Event evt = document.createEvent("SVGEvent");

"SVGEvent" without the 's'.

What's that name ? The name of the interface ?
I haven't found this in http://www.w3.org/TR/2000/CR-SVG-20001102/interact.html

Regards,
Thierry.

-- 
Thierry Kormann
email: Thierry.Kormann@sophia.inria.fr  http://www.inria.fr/koala/tkormann/
Koala/Dyade/Bull @ INRIA - Sophia Antipolis






Re: regression on event

Posted by Christophe Jolif <cj...@ilog.fr>.
Thierry,

Sorry the problem was coming from me. I commited
SVGDOMImplementation.java with "SVGEvents" string (the right one) but
let JSVGCanvas.java with "SVGEvent" (the wrong one).

Thierry Kormann wrote:
> 
> I have just checkout the whole CVS tree and I had regression on events.
> When loading a document, I had a DOMException all the time.
> 
> I have fixed the error that was (in JSVGCanvas) :
> 
> Event evt = document.createEvent("SVGEvents");
> 
> instead of Event evt = document.createEvent("SVGEvent");
> 
> "SVGEvent" without the 's'.
> 
> What's that name ? The name of the interface ?
> I haven't found this in http://www.w3.org/TR/2000/CR-SVG-20001102/interact.html
> 
> Regards,
> Thierry.
> 
> --
> Thierry Kormann
> email: Thierry.Kormann@sophia.inria.fr  http://www.inria.fr/koala/tkormann/
> Koala/Dyade/Bull @ INRIA - Sophia Antipolis
> 
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: batik-dev-unsubscribe@xml.apache.org
> For additional commands, e-mail: batik-dev-help@xml.apache.org

-- 
Christophe