- From: SVG Working Group repository <cam+svgwgrepo@mcc.id.au>
- Date: Tue, 19 Nov 2013 04:51:47 -0800
- To: public-svg-wg@w3.org
details: https://svgwg.org/hg/svg2/rev/a4fb699cce91 branches: changeset: 559:a4fb699cce91 user: Erik Dahlstr?m <ed@opera.com> date: Tue Nov 19 13:49:43 2013 +0100 description: ACTION-3549: SVGLoad -> load. diffstat: master/animate.html | 2 +- master/script.html | 4 ++-- master/struct.html | 4 ++-- master/svgdom.html | 2 +- 4 files changed, 6 insertions(+), 6 deletions(-) diffs (126 lines): diff --git a/master/animate.html b/master/animate.html --- a/master/animate.html +++ b/master/animate.html @@ -211,17 +211,17 @@ as allowed in SMIL 3.0.</p> <p>SMIL Animation requires that the host language define the meaning for <em id='DocumentBegin'>document begin</em> and the <em id='DocumentEnd'>document end</em>. Since an <a>'svg'</a> is sometimes the root of the XML document tree and other times can be a component of a parent XML grammar, the document begin for a given SVG document fragment is defined to be the exact time at which the -<a>'svg'</a> element's <a href="interact.html#LoadEvent">SVGLoad event</a> is +<a>'svg'</a> element's <a href="interact.html#LoadEvent">load event</a> is triggered. The document end of an SVG document fragment is the point at which the document fragment has been released and is no longer being processed by the user agent. However, nested <a>'svg'</a> elements within an SVG document do not constitute document fragments in this sense, and do not define a separate document begin; all times within the nested SVG fragment are relative to the document time defined for the root <a>'svg'</a> element.</p> diff --git a/master/script.html b/master/script.html --- a/master/script.html +++ b/master/script.html @@ -221,17 +221,17 @@ occurred:</p> <p>The complete list of events that are part of the SVG language and SVG DOM and descriptions of those events is provided in <a href="interact.html#SVGEvents">Complete list of supported events</a>.</p> <p>The contents of event attributes are always interpreted as ECMAScript, as if processed with the media type <span class="attr-value">'application/ecmascript'</span>. [<a href="refs.html#ref-RFC2046">RFC2046</a>][<a href='refs.html#ref-RFC4329'>RFC4329</a>]</p> -<h3 id="LoadEvent">Event attribute for the SVGLoad event</h3> +<h3 id="LoadEvent">Event attribute for the load event</h3> <p>Below is the definition for the <a>'g/onload'</a> event attribute. It can be specified on all of the <a>animation elements</a> and most of the <a>graphics elements</a> and <a>container elements</a>. The <a>'g/onload'</a> event attribute is classified as both a <a>graphical event attribute</a> and an <a>animation event attribute</a>. (See the definition for each element to determine whether it can have a <a>graphical event attribute</a> specified on it.)</p> @@ -252,17 +252,17 @@ specified on it.)</p> <td><a><anything></a></td> <td>(none)</td> <td>no</td> </tr> </table> </dt> <dd> Specifies some script to execute when "bubbling" or "at target" - phase listeners for the SVGLoad event are fired on the element + phase listeners for the load event are fired on the element the attribute is specified on. </dd> </dl> <h3 id="GraphicsEvents">Event attributes on graphics and container elements</h3> <p>Below are the definitions for the <a>graphical event attributes</a>. These can be specified on most <a>graphics elements</a> and diff --git a/master/struct.html b/master/struct.html --- a/master/struct.html +++ b/master/struct.html @@ -2725,17 +2725,17 @@ paused state. <dd class="operation"> <div> Returns the current time in seconds relative to the start time for the current SVG document fragment. If <span class="dom-method-name">getCurrentTime</span> is called before the document timeline has begun (for example, by script running in a <a>'script'</a> element before the document's -<a href="interact.html#LoadEvent">SVGLoad</a> event is dispatched), +<a href="interact.html#LoadEvent">load</a> event is dispatched), then 0 is returned. </div> <dl class="operation"> <dt class="returns-header">Returns</dt> <dd> <div> The current time in seconds, or 0 if the document timeline has not yet begun. @@ -2750,17 +2750,17 @@ then 0 is returned. <dd class="operation"> <div> Adjusts the clock for this SVG document fragment, establishing a new current time. If <span class="dom-method-name">setCurrentTime</span> is called before the document timeline has begun (for example, by script running in a <a>'script'</a> element before the document's -<a href="interact.html#LoadEvent">SVGLoad</a> event is dispatched), +<a href="interact.html#LoadEvent">load</a> event is dispatched), then the value of <var>seconds</var> in the last invocation of the method gives the time that the document will seek to once the document timeline has begun. </div> <dl class="operation"> <dt class="parameters-header">Parameters</dt> diff --git a/master/svgdom.html b/master/svgdom.html --- a/master/svgdom.html +++ b/master/svgdom.html @@ -274,17 +274,17 @@ the following event types from, </ul> </li> <li> The SVG DOM defines the following SVG-specific custom event interfaces. These event interfaces are mandatory for SVG user agents: <ul> - <li><a href="interact.html#LoadEvent">SVGLoad</a></li> + <li><a href="interact.html#LoadEvent">load</a></li> <li><a href="interact.html#UnloadEvent">SVGUnload</a></li> <li><a href="interact.html#AbortEvent">SVGAbort</a></li> <li><a href="interact.html#ErrorEvent">SVGError</a></li> <li><a href="interact.html#ResizeEvent">SVGResize</a></li> <li><a href="interact.html#ScrollEvent">SVGScroll</a> (triggered by either scroll or pan user actions)</li> </ul> </li>
Received on Tuesday, 19 November 2013 12:52:14 UTC