- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Wed, 25 Aug 2010 00:16:35 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv17274 Modified Files: common-microsyntaxes.html history.html sections.html spec.html Log Message: clarify that history traversal happens in cases other than going back/forward (whatwg r5346) [updated by splitter] Index: history.html =================================================================== RCS file: /sources/public/html5/spec/history.html,v retrieving revision 1.1000 retrieving revision 1.1001 diff -u -d -r1.1000 -r1.1001 --- history.html 24 Aug 2010 22:26:33 -0000 1.1000 +++ history.html 25 Aug 2010 00:16:33 -0000 1.1001 @@ -1845,7 +1845,14 @@ <p>When a user agent is required to <dfn id="traverse-the-history">traverse the history</dfn> to a <i>specified entry</i>, optionally with <a href="#replacement-enabled">replacement - enabled</a>, the user agent must act as follows:</p> + enabled</a>, the user agent must act as follows.</p> + + <p class="note">This algorithm is not just invoked when <a href="#traverse-the-history-by-a-delta" title="traverse the history by a delta">explicitly going back or + forwards in the session history</a> — it is also invoked in + other situations, for example when <a href="#navigate" title="navigate">navigating + a browsing context</a>, as part of <a href="#update-the-session-history-with-the-new-page" title="update the session + history with the new page">updating the session history with the new + page</a>.</p> <ol><li><p>If there is no longer a <code><a href="infrastructure.html#document">Document</a></code> object for the entry in question, the user agent must <a href="#navigate">navigate</a> the Index: spec.html =================================================================== RCS file: /sources/public/html5/spec/spec.html,v retrieving revision 1.1174 retrieving revision 1.1175 diff -u -d -r1.1174 -r1.1175 --- spec.html 24 Aug 2010 23:46:32 -0000 1.1174 +++ spec.html 25 Aug 2010 00:16:33 -0000 1.1175 @@ -315,7 +315,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-24-august-2010">Editor's Draft 24 August 2010</h2> + <h2 class="no-num no-toc" id="editor-s-draft-25-august-2010">Editor's Draft 25 August 2010</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> @@ -336,7 +336,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.4261. +This is revision 1.4263. </p> <p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 2010 <a href="http://www.w3.org/"><abbr title="World Wide @@ -421,7 +421,7 @@ Group</a> is the W3C working group responsible for this specification's progress along the W3C Recommendation track. - This specification is the 24 August 2010 Editor's Draft. + This specification is the 25 August 2010 Editor's Draft. </p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- relationship to other work (required) --><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 --><!-- required patent boilerplate --><p>This document was produced by a group operating under the <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5 Index: sections.html =================================================================== RCS file: /sources/public/html5/spec/sections.html,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- sections.html 11 Aug 2010 03:56:45 -0000 1.11 +++ sections.html 25 Aug 2010 00:16:33 -0000 1.12 @@ -599,7 +599,7 @@ <em>...more content...</em> </div> <footer> - <p>Posted <time pubdate datetime="2009-10-10T14:36-08:00">Thursday</time>.</p> + <p>Posted <time pubdate="" datetime="2009-10-10T14:36-08:00">Thursday</time>.</p> </footer> </article> <em>...more blog posts...</em> Index: common-microsyntaxes.html =================================================================== RCS file: /sources/public/html5/spec/common-microsyntaxes.html,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- common-microsyntaxes.html 11 Aug 2010 03:56:43 -0000 1.11 +++ common-microsyntaxes.html 25 Aug 2010 00:16:33 -0000 1.12 @@ -408,7 +408,23 @@ match for the attribute's canonical name, with no leading or trailing whitespace.</p><p class="note">The values "true" and "false" are not allowed on boolean attributes. To represent a false value, the attribute has to - be omitted altogether.</p><h4 id="keywords-and-enumerated-attributes"><span class="secno">2.4.3 </span>Keywords and enumerated attributes</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>Some attributes are defined as taking one of a finite set of + be omitted altogether.</p><div class="example"> + + <p>Here is an example of a checkbox that is checked and disabled. + The <code title="attr-input-checked"><a href="the-input-element.html#attr-input-checked">checked</a></code> and <code title="attr-input-readonly"><a href="common-input-element-attributes.html#attr-input-readonly">readonly</a></code> attributes are the + boolean attributes.</p> + + <pre><label><input type=checkbox checked name=cheese disabled> Cheese</label></pre> + + <p>This could be equivalently written as this: + + </p><pre><label><input type=checkbox checked=checked name=cheese disabled=disabled> Cheese</label></pre> + + <p>You can also mix styles; the following is still equivalent:</p> + + <pre><label><input type='checkbox' checked name=cheese disabled=""> Cheese</label></pre> + + </div><h4 id="keywords-and-enumerated-attributes"><span class="secno">2.4.3 </span>Keywords and enumerated attributes</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>Some attributes are defined as taking one of a finite set of keywords. Such attributes are called <dfn id="enumerated-attribute" title="enumerated attribute">enumerated attributes</dfn>. The keywords are each defined to map to a particular <em>state</em> (several keywords
Received on Wednesday, 25 August 2010 00:16:37 UTC