- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 09 Aug 2011 22:46:31 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv29304 Modified Files: dnd.html offline.html spec.html the-iframe-element.html the-input-element.html tree-construction.html Log Message: reuse definition instead of being verbose (whatwg r6393) [updated by splitter] Index: the-iframe-element.html =================================================================== RCS file: /sources/public/html5/spec/the-iframe-element.html,v retrieving revision 1.86 retrieving revision 1.87 diff -u -d -r1.86 -r1.87 --- the-iframe-element.html 5 Aug 2011 23:46:22 -0000 1.86 +++ the-iframe-element.html 9 Aug 2011 22:46:28 -0000 1.87 @@ -6132,7 +6132,7 @@ </td></tr><tr><td><dfn id="handler-mediacontroller-onended" title="handler-MediaController-onended"><code>onended</code></dfn> </td><td> <code title="event-MediaController-ended"><a href="#event-mediacontroller-ended">ended</a></code> </td></tr><tr><td><dfn id="handler-mediacontroller-onwaiting" title="handler-MediaController-onwaiting"><code>onwaiting</code></dfn> </td><td> <code title="event-MediaController-waiting"><a href="#event-mediacontroller-waiting">waiting</a></code> </td></tr></tbody><tbody><tr><td><dfn id="handler-mediacontroller-ondurationchange" title="handler-MediaController-ondurationchange"><code>ondurationchange</code></dfn> </td><td> <code title="event-MediaController-durationchange"><a href="#event-mediacontroller-durationchange">durationchange</a></code> - </td></tr><tr><td><dfn id="handler-mediacontroller-ontimeupdate" title="handler-MediaController-ontimeupdate"><code>ontimeupdate</code></dfn> </td><td> <code title="event-MediaController-durationchange"><a href="#event-mediacontroller-durationchange">durationchange</a></code> + </td></tr><tr><td><dfn id="handler-mediacontroller-ontimeupdate" title="handler-MediaController-ontimeupdate"><code>ontimeupdate</code></dfn> </td><td> <code title="event-MediaController-timeupdate"><a href="#event-mediacontroller-timeupdate">timeupdate</a></code> </td></tr><tr><td><dfn id="handler-mediacontroller-onplay" title="handler-MediaController-onplay"><code>onplay</code></dfn> </td><td> <code title="event-MediaController-play"><a href="#event-mediacontroller-play">play</a></code> </td></tr><tr><td><dfn id="handler-mediacontroller-onpause" title="handler-MediaController-onpause"><code>onpause</code></dfn> </td><td> <code title="event-MediaController-pause"><a href="#event-mediacontroller-pause">pause</a></code> </td></tr><tr><td><dfn id="handler-mediacontroller-onratechange" title="handler-MediaController-onratechange"><code>onratechange</code></dfn> </td><td> <code title="event-MediaController-ratechange"><a href="#event-mediacontroller-ratechange">ratechange</a></code> Index: tree-construction.html =================================================================== RCS file: /sources/public/html5/spec/tree-construction.html,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- tree-construction.html 28 Jul 2011 01:46:31 -0000 1.13 +++ tree-construction.html 9 Aug 2011 22:46:29 -0000 1.14 @@ -2887,9 +2887,7 @@ <dd> <p>If any of the tokens in the <var><a href="#pending-table-character-tokens">pending table character - tokens</a></var> list are character tokens that are not one of U+0009 - CHARACTER TABULATION, U+000A LINE FEED (LF), U+000C FORM FEED - (FF), U+000D CARRIAGE RETURN (CR), or U+0020 SPACE, then reprocess + tokens</a></var> list are character tokens that are not <a href="common-microsyntaxes.html#space-character" title="space character">space characters</a>, then reprocess those character tokens using the rules given in the "anything else" entry in the <a href="#parsing-main-intable" title="insertion mode: in table">in table</a>" insertion mode.</p> Index: the-input-element.html =================================================================== RCS file: /sources/public/html5/spec/the-input-element.html,v retrieving revision 1.50 retrieving revision 1.51 diff -u -d -r1.50 -r1.51 --- the-input-element.html 28 Jul 2011 01:46:31 -0000 1.50 +++ the-input-element.html 9 Aug 2011 22:46:29 -0000 1.51 @@ -1282,7 +1282,9 @@ <a href="#concept-input-value-dirty-flag" title="concept-input-value-dirty-flag">dirty value flag</a> must be initially set to false when the element is created, and must be set to true whenever the user interacts with the control in a way - that changes the <a href="association-of-controls-and-forms.html#concept-fe-value" title="concept-fe-value">value</a>.</p> + that changes the <a href="association-of-controls-and-forms.html#concept-fe-value" title="concept-fe-value">value</a>. (It is + also set to true when the value is programmatically changed, as + described in the definition of the <code title="dom-input-value"><a href="common-input-element-attributes.html#dom-input-value">value</a></code> IDL attribute.)</p> </div><p>The <dfn id="attr-input-value" title="attr-input-value"><code>value</code></dfn> content attribute gives the default <a href="association-of-controls-and-forms.html#concept-fe-value" title="concept-fe-value">value</a> of the <code><a href="#the-input-element">input</a></code> Index: offline.html =================================================================== RCS file: /sources/public/html5/spec/offline.html,v retrieving revision 1.1043 retrieving revision 1.1044 diff -u -d -r1.1043 -r1.1044 --- offline.html 5 Aug 2011 23:46:22 -0000 1.1043 +++ offline.html 9 Aug 2011 22:46:28 -0000 1.1044 @@ -361,7 +361,8 @@ document.getElementById('clock').value = new Date(); }, 1000);</pre><p>If the user tries to open the "<code title="">clock.html</code>" page while offline, though, the user agent (unless it happens to - have it still in the local cache) will fail with an error.</p><p>The author can instead provide a manifest of the three files:</p><pre>CACHE MANIFEST + have it still in the local cache) will fail with an error.</p><p>The author can instead provide a manifest of the three files, say + "<code title="">clock.appcache</code>":</p><pre>CACHE MANIFEST clock.html clock.css clock.js</pre><p>With a small change to the HTML file, the manifest (served as Index: dnd.html =================================================================== RCS file: /sources/public/html5/spec/dnd.html,v retrieving revision 1.68 retrieving revision 1.69 diff -u -d -r1.68 -r1.69 --- dnd.html 28 Jul 2011 01:46:25 -0000 1.68 +++ dnd.html 9 Aug 2011 22:46:28 -0000 1.69 @@ -338,10 +338,10 @@ <em>drag-and-drop operation</em> actually is.</p><p>On a visual medium with a pointing device, a drag operation could be the default action of a <code title="event-mousedown">mousedown</code> event that is followed by a series of <code title="event-mousemove">mousemove</code> events, and - the drop could be triggered by the mouse being released.</p><p>On media without a pointing device, the user would probably have - to explicitly indicate his intention to perform a drag-and-drop - operation, stating what he wishes to drag and where he wishes to - drop it, respectively.</p><div class="impl"> + the drop could be triggered by the mouse being released.</p><p>When using an input modality other than a pointing device, users + would probably have to explicitly indicate their intention to + perform a drag-and-drop operation, stating what they wish to drag + and where they wish to drop it, respectively.</p><div class="impl"> <p>However it is implemented, drag-and-drop operations must have a starting point (e.g. where the mouse was clicked, or the start of Index: spec.html =================================================================== RCS file: /sources/public/html5/spec/spec.html,v retrieving revision 1.1595 retrieving revision 1.1596 diff -u -d -r1.1595 -r1.1596 --- spec.html 6 Aug 2011 07:46:27 -0000 1.1595 +++ spec.html 9 Aug 2011 22:46:28 -0000 1.1596 @@ -324,7 +324,7 @@ <h1>HTML5</h1> <h2 class="no-num no-toc" id="a-vocabulary-and-associated-apis-for-html-and-xhtml">A vocabulary and associated APIs for HTML and XHTML</h2> - <h2 class="no-num no-toc" id="editor-s-draft-6-august-2011">Editor's Draft 6 August 2011</h2> + <h2 class="no-num no-toc" id="editor-s-draft-9-august-2011">Editor's Draft 9 August 2011</h2> <dl><dt>Latest Published Version:</dt> <dd><a href="http://www.w3.org/TR/html5/">http://www.w3.org/TR/html5/</a></dd> <dt>Latest Editor's Draft:</dt> @@ -349,7 +349,7 @@ <a href="Overview.html">single page HTML</a>, <a href="spec.html">multipage HTML</a>, <a href="author/">web developer edition</a>. -This is revision 1.5095. +This is revision 1.5100. </p> <p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 2011 <a href="http://www.w3.org/"><abbr title="World Wide @@ -470,7 +470,7 @@ Group</a> is the W3C working group responsible for this specification's progress along the W3C Recommendation track. - This specification is the 6 August 2011 Editor's Draft. + This specification is the 9 August 2011 Editor's Draft. </p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><p>Work on this specification is also done at the <a href="http://www.whatwg.org/">WHATWG</a>. The W3C HTML working group actively pursues convergence with the WHATWG, as required by the <a href="http://www.w3.org/2007/03/HTML-WG-charter">W3C HTML working group charter</a>.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><p>This document was produced by a group operating under the <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5
Received on Tuesday, 9 August 2011 22:46:37 UTC