- From: Ian Hickson via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 21 Sep 2009 23:55:39 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv5703 Modified Files: Overview.html Log Message: an IDL, not a IDL. (whatwg r3945) Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec/Overview.html,v retrieving revision 1.3106 retrieving revision 1.3107 diff -u -d -r1.3106 -r1.3107 --- Overview.html 21 Sep 2009 23:43:32 -0000 1.3106 +++ Overview.html 21 Sep 2009 23:55:36 -0000 1.3107 @@ -1675,9 +1675,10 @@ an attribute to a value it already has does not change it.<h4 id="scripting-0"><span class="secno">2.1.4 </span>Scripting</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i><p>The construction "a <code>Foo</code> object", where <code>Foo</code> is actually an interface, is sometimes used instead of the more accurate "an object implementing the interface - <code>Foo</code>".<p>A IDL attribute is said to be <dfn title="">getting</dfn> when its value is - being retrieved (e.g. by author script), and is said to be - <dfn title="">setting</dfn> when a new value is assigned to it.<p>If a DOM object is said to be <dfn id="live">live</dfn>, then that means + <code>Foo</code>".<p>An IDL attribute is said to be <dfn title="">getting</dfn> when + its value is being retrieved (e.g. by author script), and is said to + be <dfn title="">setting</dfn> when a new value is assigned to + it.<p>If a DOM object is said to be <dfn id="live">live</dfn>, then that means that any attributes returning that object <span class="impl">must</span> always return the same object (not a new object each time), and the attributes and methods on that object <span class="impl">must</span> operate on the actual underlying @@ -2026,7 +2027,7 @@ required for conforming IDL fragments, as described in the Web IDL specification. <a href="#refsWEBIDL">[WEBIDL]</a></p> - <p id="float-nan">Unless otherwise specified, if a IDL attribute + <p id="float-nan">Unless otherwise specified, if an IDL attribute that is a floating point number type (<code title="">float</code>) is assigned an Infinity or Not-a-Number (NaN) value, a <code><a href="#not_supported_err">NOT_SUPPORTED_ERR</a></code> exception must be raised.</p> @@ -20747,7 +20748,7 @@ <ol><li><p>If the <a href="#media-element">media element</a>'s <code title="dom-media-readyState"><a href="#dom-media-readystate">readyState</a></code> is <code title="dom-media-HAVE_NOTHING"><a href="#dom-media-have_nothing">HAVE_NOTHING</a></code>, then the user agent must raise an <code><a href="#invalid_state_err">INVALID_STATE_ERR</a></code> exception (if - the seek was in response to a DOM method call or setting of a IDL + the seek was in response to a DOM method call or setting of an IDL attribute), and abort these steps.</li> <li><p>If the <var title="">new playback position</var> is later @@ -20761,7 +20762,7 @@ <li><p>If the (possibly now changed) <var title="">new playback position</var> is not in one of the ranges given in the <code title="dom-media-seekable"><a href="#dom-media-seekable">seekable</a></code> attribute, then the user agent must raise an <code><a href="#index_size_err">INDEX_SIZE_ERR</a></code> exception (if the - seek was in response to a DOM method call or setting of a IDL + seek was in response to a DOM method call or setting of an IDL attribute), and abort these steps.</li> <li><p>The <a href="#current-playback-position">current playback position</a> must be set to @@ -20789,7 +20790,7 @@ element.</li> <li><p>If the seek was in response to a DOM method call or setting - of a IDL attribute, then continue the script. The remainder of + of an IDL attribute, then continue the script. The remainder of these steps must be run asynchronously.</li> <li><p>The user agent must wait until it has established whether or
Received on Monday, 21 September 2009 23:55:48 UTC