Re: SVG12: get/setAttribute

* Ola Andersson wrote:
>MyEventListenerInitializer2 has been changed to:

Due to http://lists.w3.org/Archives/Public/www-svg/2005May/0254
I'm not sure whether this is correct, could you clarify?

>Example SVG 1.1 scripting has been changed to:
><svg xmlns="http://www.w3.org/2000/svg" version="1.1">
>    <rect id="myRect" x="10" y="20" width="200" height="300" fill="red"
>        onclick="var width =  parseFloat(
>        document.getElementById('myRect').getAttributeNS(null, 'width'));
>        document.getElementById('myRect').setAttributeNS(null, 'width', (width+10));"/>
></svg>

This seems overly complex to me, I think this should be

  <svg xmlns="http://www.w3.org/2000/svg" version="1.1">
    <rect x="10" y="20" width="200" height="300" fill="red"
        onclick="evt.target.width.baseVal.value += 10" />
  </svg>
-- 
Björn Höhrmann · mailto:bjoern@hoehrmann.de · http://bjoern.hoehrmann.de
Weinh. Str. 22 · Telefon: +49(0)621/4309674 · http://www.bjoernsworld.de
68309 Mannheim · PGP Pub. KeyID: 0xA4357E78 · http://www.websitedev.de/ 

Received on Saturday, 11 June 2005 22:51:12 UTC