- From: SVG Working Group repository <cam+svgwgrepo@mcc.id.au>
- Date: Wed, 20 Nov 2013 09:40:05 -0800
- To: public-svg-wg@w3.org
details: https://svgwg.org/hg/svg2/rev/a226e08560d3 branches: changeset: 565:a226e08560d3 user: Richard Schwerdtfeger <schwer@us.ibm.com> date: Wed Nov 20 11:38:02 2013 -0600 description: remove onactivate, onkeypress, and keypress events diffstat: master/interact.html | 13 ------------- master/script.html | 9 --------- 2 files changed, 0 insertions(+), 22 deletions(-) diffs (81 lines): diff --git a/master/interact.html b/master/interact.html --- a/master/interact.html +++ b/master/interact.html @@ -230,29 +230,16 @@ required to fire for every element.</p> <td>(same)</td> <td><a href="http://www.w3.org/TR/uievents/#keyboard-event-interface"> KeyboardEvent</a></td> <td><a href="script.html#OnKeyDownEventAttribute">onkeydown</a></td> </tr> <tr> - <td id="KeyPressEvent"><p class="event-name"><strong>keypress</strong></p> - <p> Occures when a key is pressed down, if and only if that key normally produces - a character value. The keypress event type is device dependent and relies on the - capabilities of the input devices and how they are mapped in the operating system. - </p></td> - <td>(same)</td> - <td><a - href="http://www.w3.org/TR/uievents/#keyboard-event-interface"> - KeyboardEvent</a></td> - <td><a - href="script.html#OnKeyPressEventAttribute">onkeypress</a></td> - </tr> - <tr> <td id="KeyUpEvent"><p class="event-name"><strong>keyup</strong></p> <p>A user agent must dispatch this event when a key is released. The keyup event type is device dependent and relies on the capabilities of the input devices and how they are mapped in the operating system. </p></td> <td>(same)</td> <td><a href="http://www.w3.org/TR/uievents/#keyboard-event-interface"> diff --git a/master/script.html b/master/script.html --- a/master/script.html +++ b/master/script.html @@ -66,23 +66,16 @@ defined within any <a>'script'</a> eleme entire current document.</p> <p id="ExampleScript01"><span class="example-ref">Example script01</span> defines a function <code>circle_click</code> which is called by the <a>'onclick'</a> event attribute on the <a>'circle'</a> element. The drawing below on the left is the initial image. The drawing below on the right shows the result after clicking on the circle.</p> -<p>Note that this example demonstrates the use of the <a>'onclick'</a> event -attribute for explanatory purposes. The example presupposes the presence of an -input device with the same behavioral characteristics as a mouse, which will -not always be the case. To support the widest range of users, the -<a>'onactivate'</a> event attribute should be used instead of the -<a>'onclick'</a> event attribute.</p> - <p id="ScriptElementExecution">Before attempting to execute the <a>'script'</a> element the resolved media type value for <a>'script/type'</a> must be inspected. If the <a>SVG user agent</a> does not support the scripting language then the <a>'script'</a> element must not be executed.</p> <pre class="xml"><![CDATA[ <?xml version="1.0" standalone="no"?> <svg width="6cm" height="5cm" viewBox="0 0 600 500" @@ -283,20 +276,18 @@ specified on it.)</p> <th>Value</th> <th>Lacuna value</th> <th>Animatable</th> </tr> <tr> <td> <dfn id="OnFocusInEventAttribute">onfocusin</dfn>, <dfn id="OnFocusOutEventAttribute">onfocusout</dfn>, - <dfn id="OnActivateEventAttribute">onactivate</dfn>, <dfn id="OnClickEventAttribute">onclick</dfn>, <dfn id="OnKeyDownEventAttribute">onkeydown</dfn>, - <dfn id="OnKeyPressEventAttribute">onkeypress</dfn>, <dfn id="OnKeyUpEventAttribute">onkeyup</dfn>, <dfn id="OnMouseDownEventAttribute">onmousedown</dfn>, <dfn id="OnMouseUpEventAttribute">onmouseup</dfn>, <dfn id="OnMouseOverEventAttribute">onmouseover</dfn>, <dfn id="OnMouseMoveEventAttribute">onmousemove</dfn>, <dfn id="OnMouseOutEventAttribute">onmouseout</dfn> </td> <td><a><anything></a></td>
Received on Wednesday, 20 November 2013 17:40:32 UTC