- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Sat, 29 Aug 2009 00:56:28 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv20535
Modified Files:
acknowledgements.html browsers.html comms.html dom.html
editing.html embedded-content-0.html forms.html history.html
iana-considerations.html index.html infrastructure.html
interactive-elements.html introduction.html microdata.html
named-character-references.html no.html obsolete.html
offline.html references.html semantics.html spec.html
syntax.html tabular-data.html text-level-semantics.html
the-canvas-element.html the-xhtml-syntax.html toc-status.html
toc-status.xml video.html
Log Message:
Move <time> away from <meter>. (whatwg r3693)
[updated by splitter]
Index: infrastructure.html
===================================================================
RCS file: /sources/public/html5/spec/infrastructure.html,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -d -r1.175 -r1.176
--- infrastructure.html 29 Aug 2009 00:46:55 -0000 1.175
+++ infrastructure.html 29 Aug 2009 00:56:25 -0000 1.176
@@ -182,7 +182,7 @@
<a href="introduction.html">← 1 Introduction</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="dom.html">3 Semantics, structure, and APIs of HTML documents →</a>
- </nav><p>This is revision 1.2869.</p>
+ </nav><p>This is revision 1.2872.</p>
<h2 id="infrastructure"><span class="secno">2 </span>Common infrastructure</h2><h3 id="terminology"><span class="secno">2.1 </span>Terminology</h3><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><p>This specification refers to both HTML and XML attributes and DOM
Index: text-level-semantics.html
===================================================================
RCS file: /sources/public/html5/spec/text-level-semantics.html,v
retrieving revision 1.168
retrieving revision 1.169
diff -u -d -r1.168 -r1.169
--- text-level-semantics.html 29 Aug 2009 00:46:56 -0000 1.168
+++ text-level-semantics.html 29 Aug 2009 00:56:26 -0000 1.169
@@ -182,7 +182,7 @@
<a href="semantics.html">← 4 The elements of HTML</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="video.html">4.8.7 The video element →</a>
- </nav><p>This is revision 1.2869.</p>
+ </nav><p>This is revision 1.2872.</p>
<h3 id="text-level-semantics"><span class="secno">4.6 </span>Text-level semantics</h3><h4 id="the-a-element"><span class="secno">4.6.1 </span>The <dfn><code>a</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class="element"><dt>Categories</dt>
@@ -702,7 +702,7 @@
<dt>Contexts in which this element may be used:</dt>
<dd>Where <a href="dom.html#phrasing-content">phrasing content</a> is expected.</dd>
<dt>Content model:</dt>
- <dd><a href="dom.html#phrasing-content">Phrasing content</a>, but there must be no descendant <code><a href="#the-dfn-element">dfn</a></code> elements.</dd>
+ <dd><a href="dom.html#phrasing-content">Phrasing content</a>, but there must be no <code><a href="#the-dfn-element">dfn</a></code> element descendants.</dd>
<dt>Content attributes:</dt>
<dd><a href="dom.html#global-attributes">Global attributes</a></dd>
<dd>Also, the <code title="attr-dfn-title"><a href="#attr-dfn-title">title</a></code> attribute has special semantics on this element.</dd>
@@ -838,7 +838,213 @@
cause other <code><a href="#the-abbr-element">abbr</a></code> elements in the same document with the
same contents but without a <code title="attr-title"><a href="dom.html#the-title-attribute">title</a></code>
attribute to behave as if they had the same expansion. Every
- <code><a href="#the-abbr-element">abbr</a></code> element is independent.</p><h4 id="the-code-element"><span class="secno">4.6.9 </span>The <dfn><code>code</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed</i></p><dl class="element"><dt>Categories</dt>
+ <code><a href="#the-abbr-element">abbr</a></code> element is independent.</p><h4 id="the-time-element"><span class="secno">4.6.9 </span>The <dfn><code>time</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><dl class="element"><dt>Categories</dt>
+ <dd><a href="dom.html#flow-content">Flow content</a>.</dd>
+ <dd><a href="dom.html#phrasing-content">Phrasing content</a>.</dd>
+ <dt>Contexts in which this element may be used:</dt>
+ <dd>Where <a href="dom.html#phrasing-content">phrasing content</a> is expected.</dd>
+ <dt>Content model:</dt>
+ <dd><a href="dom.html#phrasing-content">Phrasing content</a>, but there must be no <code><a href="#the-time-element">time</a></code> element descendants.</dd>
+ <dt>Content attributes:</dt>
+ <dd><a href="dom.html#global-attributes">Global attributes</a></dd>
+ <dd><code title="attr-time-datetime"><a href="#attr-time-datetime">datetime</a></code></dd>
+ <dt>DOM interface:</dt>
+ <dd>
+<pre class="idl">interface <dfn id="htmltimeelement">HTMLTimeElement</dfn> : <a href="dom.html#htmlelement">HTMLElement</a> {
+ attribute DOMString <a href="#dom-time-datetime" title="dom-time-datetime">dateTime</a>;
+ readonly attribute <span>Date</span> <a href="#dom-time-date" title="dom-time-date">date</a>;
+ readonly attribute <span>Date</span> <a href="#dom-time-time" title="dom-time-time">time</a>;
+ readonly attribute <span>Date</span> <a href="#dom-time-timezone" title="dom-time-timezone">timezone</a>;
+};</pre>
+ </dd>
+ </dl><p>The <code><a href="#the-time-element">time</a></code> element <a href="the-xhtml-syntax.html#represents">represents</a> either a
+ time on a 24 hour clock, or a precise date in the proleptic
+ Gregorian calendar, optionally with a time and a time-zone
+ offset. <a href="references.html#refsGREGORIAN">[GREGORIAN]</a></p><p>This element is intended as a way to encode modern dates and
+ times in a machine-readable way so that user agents can offer to add
+ them to the user's calendar. For example, adding birthday reminders
+ or scheduling events.</p><!-- it's also intended for restyling to local conventions
+ (2000-12-31 vs 31-12-2000 vs 12-31-2000), but CSS doesn't support
+ that yet. --><div class="note">
+
+ <p>The <code><a href="#the-time-element">time</a></code> element is not intended for encoding times
+ for which a precise date or time cannot be established. For
+ example, it would be inappropriate for encoding times like "one
+ millisecond after the big bang", "the early part of the Jurassic
+ period", or "a winter around 250 BCE".</p>
+
+ <p>For dates before the introduction of the Gregorian calendar,
+ authors are encouraged to not use the <code><a href="#the-time-element">time</a></code> element, or
+ else to be very careful about converting dates and times from the
+ period to the Gregorian calendar. This is complicated by the manner
+ in which the Gregorian calendar was phased in, which occurred at
+ different times in different countries, ranging from partway
+ through the 16th century all the way to early in the 20th.</p>
+
+ </div><p>The <dfn id="attr-time-datetime" title="attr-time-datetime"><code>datetime</code></dfn>
+ attribute, if present, must contain a <a href="infrastructure.html#valid-date-or-time-string">valid date or time
+ string</a> that identifies the date or time being specified.</p><p>If the <code title="attr-time-datetime"><a href="#attr-time-datetime">datetime</a></code> attribute
+ is not present, then the date or time must be specified in the
+ content of the element, such that the element's
+ <code>textContent</code> is a <a href="infrastructure.html#valid-date-or-time-string-in-content">valid date or time string in
+ content</a>, and the date, if any, must be expressed using the
+ Gregorian calendar.</p><p>If the <code title="attr-time-datetime"><a href="#attr-time-datetime">datetime</a></code> attribute
+ is present, then the element may be empty, in which case the user
+ agent should convey the attribute's value to the user when rendering
+ the element.</p><div class="example">
+
+ <p>The <code><a href="#the-time-element">time</a></code> element can be used to encode dates, for
+ example in Microformats. The following shows a hypothetical way of
+ encoding an event using a variant on hCalendar that uses the
+ <code><a href="#the-time-element">time</a></code> element:</p>
+
+ <pre><div class="vevent">
+ <a class="url" href="http://www.web2con.com/">http://www.web2con.com/</a>
+ <span class="summary">Web 2.0 Conference</span>:
+ <time class="dtstart" datetime="2007-10-05">October 5</time> -
+ <time class="dtend" datetime="2007-10-20">19</time>,
+ at the <span class="location">Argent Hotel, San Francisco, CA</span>
+ </div></pre>
+
+ </div><div class="example">
+
+ <p>The <code><a href="#the-time-element">time</a></code> element is not necessary for encoding
+ dates or times. In the following snippet, the time is encoded using
+ <code><a href="#the-time-element">time</a></code>, so that it can be restyled (e.g. using XBL2) to
+ match local conventions, while the year is not marked up at all,
+ since marking it up would not be particularly useful.</p>
+
+ <pre><p>I usually have a snack at <time>16:00</time>.</p>
+<p>I've liked model trains since at least 1983.</p></pre>
+
+ <p>Using a styling technology that supports restyling times, the
+ first paragraph from the above snippet could be rendered as follows:</p>
+
+ <blockquote><p>I usually have a snack at 4pm.</p></blockquote>
+
+ <p>Or it could be rendered as follows:</p>
+
+ <blockquote><p>I usually have a snack at 16h00.</p></blockquote>
+
+ </div><div class="impl">
+
+ <p>The <dfn id="dom-time-datetime" title="dom-time-datetime"><code>dateTime</code></dfn> DOM
+ attribute must <a href="infrastructure.html#reflect">reflect</a> the <code title="attr-time-datetime"><a href="#attr-time-datetime">datetime</a></code> content attribute.</p>
+
+ <p>User agents, to obtain the <dfn id="concept-time-date" title="concept-time-date">date</dfn>, <dfn id="concept-time-time" title="concept-time-time">time</dfn>, and <dfn id="concept-time-timezone" title="concept-time-timezone">time-zone offset</dfn> represented by
+ a <code><a href="#the-time-element">time</a></code> element, must follow these steps:</p>
+
+ <ol><li>If the <code title="attr-time-datetime"><a href="#attr-time-datetime">datetime</a></code>
+ attribute is present, then use the rules to <a href="infrastructure.html#parse-a-date-or-time-string">parse a date or
+ time string</a> with the flag <i>in attribute</i> from the value
+ of that attribute, and let the result be <var title="">result</var>.</li>
+
+ <li>Otherwise, use the rules to <a href="infrastructure.html#parse-a-date-or-time-string">parse a date or time
+ string</a> with the flag <i>in content</i> from the element's
+ <code>textContent</code>, and let the result be <var title="">result</var>.</li>
+
+ <li>If <var title="">result</var> is empty (because the parsing
+ failed), then the <a href="#concept-time-date" title="concept-time-date">date</a> is
+ unknown, the <a href="#concept-time-time" title="concept-time-time">time</a> is
+ unknown, and the <a href="#concept-time-timezone" title="concept-time-timezone">time-zone
+ offset</a> is unknown.</li>
+
+ <li>Otherwise: if <var title="">result</var> contains a date, then
+ that is the <a href="#concept-time-date" title="concept-time-date">date</a>; if <var title="">result</var> contains a time, then that is the <a href="#concept-time-time" title="concept-time-time">time</a>; and if <var title="">result</var> contains a time-zone offset, then the
+ time-zone offset is the element's <a href="#concept-time-timezone" title="concept-time-timezone">time-zone offset</a>. (A time-zone
+ offset can only be present if both a date and a time are also
+ present.)</li>
+
+ </ol></div><dl class="domintro"><dt><var title="">time</var> . <code title="dom-time-date"><a href="#dom-time-date">date</a></code></dt>
+
+ <dd>
+
+ <p>Returns a <code>Date</code> object representing the date
+ component of the element's value, at midnight in the UTC
+ time zone.</p>
+
+ <p>Returns null if there is no date.</p>
+
+ </dd>
+
+ <dt><var title="">time</var> . <code title="dom-time-time"><a href="#dom-time-time">time</a></code></dt>
+
+ <dd>
+
+ <p>Returns a <code>Date</code> object representing the time
+ component of the element's value, on 1970-01-01 in the UTC
+ time zone.</p>
+
+ <p>Returns null if there is no time.</p>
+
+ </dd>
+
+ <dt><var title="">time</var> . <code title="dom-time-timezone"><a href="#dom-time-timezone">timezone</a></code></dt>
+
+ <dd>
+
+ <p>Returns a <code>Date</code> object representing the time
+ corresponding to 1970-01-01 00:00 UTC in the time zone given by the
+ element's value.</p>
+
+ <p>Returns null if there is no time zone.</p>
+
+ </dd>
+
+ </dl><div>
+
+ <p>The <dfn id="dom-time-date" title="dom-time-date"><code>date</code></dfn> DOM
+ attribute must return null if the <a href="#concept-time-date" title="concept-time-date">date</a> is unknown, and otherwise must
+ return the time corresponding to midnight UTC (i.e. the first
+ second) of the given <a href="#concept-time-date" title="concept-time-date">date</a>.</p>
+
+ <p>The <dfn id="dom-time-time" title="dom-time-time"><code>time</code></dfn> DOM attribute
+ must return null if the <a href="#concept-time-time" title="concept-time-time">time</a> is
+ unknown, and otherwise must return the time corresponding to the
+ given <a href="#concept-time-time" title="concept-time-time">time</a> of 1970-01-01, with
+ the time zone UTC.</p>
+
+ <p>The <dfn id="dom-time-timezone" title="dom-time-timezone"><code>timezone</code></dfn>
+ DOM attribute must return null if the <a href="#concept-time-timezone" title="concept-time-timezone">time-zone offset</a> is unknown,
+ and otherwise must return the time corresponding to 1970-01-01 00:00
+ UTC in the given <a href="#concept-time-timezone" title="concept-time-timezone">time-zone
+ offset</a>, with the time zone set to UTC (i.e. the time
+ corresponding to 1970-01-01 at 00:00 UTC plus the offset).</p>
+
+ </div><div class="example">
+
+ <p>In the following snippet:</p>
+
+ <pre><p>Our first date was <time datetime="2006-09-23">a Saturday</time>.</p></pre>
+
+ <p>...the <code><a href="#the-time-element">time</a></code> element's <code title="dom-time-date"><a href="#dom-time-date">date</a></code> attribute would have the value
+ 1,158,969,600,000ms, and the <code title="dom-time-time"><a href="#dom-time-time">time</a></code>
+ and <code title="dom-time-timezone"><a href="#dom-time-timezone">timezone</a></code> attributes would
+ return null.</p>
+
+
+ <p>In the following snippet:</p>
+
+ <pre><p>We stopped talking at <time datetime="2006-09-24T05:00-07:00">5am the next morning</time>.</p></pre>
+
+ <p>...the <code><a href="#the-time-element">time</a></code> element's <code title="dom-time-date"><a href="#dom-time-date">date</a></code> attribute would have the value
+ 1,159,056,000,000ms, the <code title="dom-time-time"><a href="#dom-time-time">time</a></code>
+ attribute would have the value 18,000,000ms, and the <code title="dom-time-timezone"><a href="#dom-time-timezone">timezone</a></code> attribute would return
+ −25,200,000ms. To obtain the actual time, the three attributes can
+ be added together, obtaining 1,159,048,800,000, which is the
+ specified date and time in UTC.</p>
+
+
+ <p>Finally, in the following snippet:</p>
+
+ <pre><p>Many people get up at <time>08:00</time>.</p></pre>
+
+ <p>...the <code><a href="#the-time-element">time</a></code> element's <code title="dom-time-date"><a href="#dom-time-date">date</a></code> attribute would have the value null,
+ the <code title="dom-time-time"><a href="#dom-time-time">time</a></code> attribute would have the
+ value 28,800,000ms, and the <code title="dom-time-timezone"><a href="#dom-time-timezone">timezone</a></code> attribute would return
+ null.</p>
+
+ </div><h4 id="the-code-element"><span class="secno">4.6.10 </span>The <dfn><code>code</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed</i></p><dl class="element"><dt>Categories</dt>
<dd><a href="dom.html#flow-content">Flow content</a>.</dd>
<dd><a href="dom.html#phrasing-content">Phrasing content</a>.</dd>
<dt>Contexts in which this element may be used:</dt>
@@ -887,7 +1093,7 @@
<p>A class is used in that example to indicate the language
used.</p>
- </div><p class="note">See the <code><a href="semantics.html#the-pre-element">pre</a></code> element for more details.</p><h4 id="the-var-element"><span class="secno">4.6.10 </span>The <dfn><code>var</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed</i></p><dl class="element"><dt>Categories</dt>
+ </div><p class="note">See the <code><a href="semantics.html#the-pre-element">pre</a></code> element for more details.</p><h4 id="the-var-element"><span class="secno">4.6.11 </span>The <dfn><code>var</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed</i></p><dl class="element"><dt>Categories</dt>
<dd><a href="dom.html#flow-content">Flow content</a>.</dd>
<dd><a href="dom.html#phrasing-content">Phrasing content</a>.</dd>
<dt>Contexts in which this element may be used:</dt>
@@ -934,7 +1140,7 @@
</figure></pre>
- </div><h4 id="the-samp-element"><span class="secno">4.6.11 </span>The <dfn><code>samp</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed</i></p><dl class="element"><dt>Categories</dt>
+ </div><h4 id="the-samp-element"><span class="secno">4.6.12 </span>The <dfn><code>samp</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed</i></p><dl class="element"><dt>Categories</dt>
<dd><a href="dom.html#flow-content">Flow content</a>.</dd>
<dd><a href="dom.html#phrasing-content">Phrasing content</a>.</dd>
<dt>Contexts in which this element may be used:</dt>
@@ -963,7 +1169,7 @@
Linux demo 2.6.10-grsec+gg3+e+fhs6b+nfs+gr0501+++p3+c4a+gr2b-reslog-v6.189 #1 SMP Tue Feb 1 11:22:36 PST 2005 i686 unknown
<span class="prompt">jdoe@demo:~$</span> <span class="cursor">_</span></samp></pre></pre>
- </div><h4 id="the-kbd-element"><span class="secno">4.6.12 </span>The <dfn><code>kbd</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed</i></p><dl class="element"><dt>Categories</dt>
+ </div><h4 id="the-kbd-element"><span class="secno">4.6.13 </span>The <dfn><code>kbd</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed</i></p><dl class="element"><dt>Categories</dt>
<dd><a href="dom.html#flow-content">Flow content</a>.</dd>
<dd><a href="dom.html#phrasing-content">Phrasing content</a>.</dd>
<dt>Contexts in which this element may be used:</dt>
@@ -1001,7 +1207,7 @@
<pre><p>To make George eat an apple, select <kbd>File | Eat Apple...</kbd></p></pre>
- </div><h4 id="the-sub-and-sup-elements"><span class="secno">4.6.13 </span>The <dfn><code>sub</code></dfn> and <dfn><code>sup</code></dfn> elements</h4><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed</i></p><dl class="element"><dt>Categories</dt>
+ </div><h4 id="the-sub-and-sup-elements"><span class="secno">4.6.14 </span>The <dfn><code>sub</code></dfn> and <dfn><code>sup</code></dfn> elements</h4><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed</i></p><dl class="element"><dt>Categories</dt>
<dd><a href="dom.html#flow-content">Flow content</a>.</dd>
<dd><a href="dom.html#phrasing-content">Phrasing content</a>.</dd>
<dt>Contexts in which these elements may be used:</dt>
@@ -1043,7 +1249,7 @@
detailed mathematical markup is not desired. <a href="references.html#refsMATHML">[MATHML]</a></p><div class="example">
<pre><var>E</var>=<var>m</var><var>c</var><sup>2</sup></pre>
<pre>f(<var>x</var>, <var>n</var>) = log<sub>4</sub><var>x</var><sup><var>n</var></sup></pre>
- </div><h4 id="the-i-element"><span class="secno">4.6.14 </span>The <dfn><code>i</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed</i></p><dl class="element"><dt>Categories</dt>
+ </div><h4 id="the-i-element"><span class="secno">4.6.15 </span>The <dfn><code>i</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed</i></p><dl class="element"><dt>Categories</dt>
<dd><a href="dom.html#flow-content">Flow content</a>.</dd>
<dd><a href="dom.html#phrasing-content">Phrasing content</a>.</dd>
<dt>Contexts in which this element may be used:</dt>
@@ -1089,7 +1295,7 @@
up the defining instance of a term.</p><p class="note">Style sheets can be used to format <code><a href="#the-i-element">i</a></code>
elements, just like any other element can be restyled. Thus, it is
not the case that content in <code><a href="#the-i-element">i</a></code> elements will
- necessarily be italicized.</p><h4 id="the-b-element"><span class="secno">4.6.15 </span>The <dfn><code>b</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed</i></p><dl class="element"><dt>Categories</dt>
+ necessarily be italicized.</p><h4 id="the-b-element"><span class="secno">4.6.16 </span>The <dfn><code>b</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed</i></p><dl class="element"><dt>Categories</dt>
<dd><a href="dom.html#flow-content">Flow content</a>.</dd>
<dd><a href="dom.html#phrasing-content">Phrasing content</a>.</dd>
<dt>Contexts in which this element may be used:</dt>
@@ -1140,7 +1346,7 @@
</div><p class="note">Style sheets can be used to format <code><a href="#the-b-element">b</a></code>
elements, just like any other element can be restyled. Thus, it is
not the case that content in <code><a href="#the-b-element">b</a></code> elements will
- necessarily be boldened.</p><h4 id="the-mark-element"><span class="secno">4.6.16 </span>The <dfn><code>mark</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><dl class="element"><dt>Categories</dt>
+ necessarily be boldened.</p><h4 id="the-mark-element"><span class="secno">4.6.17 </span>The <dfn><code>mark</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><dl class="element"><dt>Categories</dt>
<dd><a href="dom.html#flow-content">Flow content</a>.</dd>
<dd><a href="dom.html#phrasing-content">Phrasing content</a>.</dd>
<dt>Contexts in which this element may be used:</dt>
@@ -1260,13 +1466,13 @@
<p><mark>An obstruction in a gate will prevent it from accepting a
wormhole connection.</mark></p></pre>
- </div><h4 id="the-progress-element"><span class="secno">4.6.17 </span>The <dfn><code>progress</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><dl class="element"><dt>Categories</dt>
+ </div><h4 id="the-progress-element"><span class="secno">4.6.18 </span>The <dfn><code>progress</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><dl class="element"><dt>Categories</dt>
<dd><a href="dom.html#flow-content">Flow content</a>.</dd>
<dd><a href="dom.html#phrasing-content">Phrasing content</a>.</dd>
<dt>Contexts in which this element may be used:</dt>
<dd>Where <a href="dom.html#phrasing-content">phrasing content</a> is expected.</dd>
<dt>Content model:</dt>
- <dd><a href="dom.html#phrasing-content">Phrasing content</a>.</dd>
+ <dd><a href="dom.html#phrasing-content">Phrasing content</a>, but there must be no <code><a href="#the-progress-element">progress</a></code> element descendants.</dd>
<dt>Content attributes:</dt>
<dd><a href="dom.html#global-attributes">Global attributes</a></dd>
<dd><code title="attr-progress-value"><a href="#attr-progress-value">value</a></code></dd>
@@ -1421,13 +1627,13 @@
attribute must return −1. Otherwise, it must return the result of
dividing the current value by the maximum value.</p>
- </div><h4 id="the-meter-element"><span class="secno">4.6.18 </span>The <dfn><code>meter</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><!-- Keep this after <progress> and NOT close to <time> --><dl class="element"><dt>Categories</dt>
+ </div><h4 id="the-meter-element"><span class="secno">4.6.19 </span>The <dfn><code>meter</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><!-- Keep this after <progress> and NOT close to <time> --><dl class="element"><dt>Categories</dt>
<dd><a href="dom.html#flow-content">Flow content</a>.</dd>
<dd><a href="dom.html#phrasing-content">Phrasing content</a>.</dd>
<dt>Contexts in which this element may be used:</dt>
<dd>Where <a href="dom.html#phrasing-content">phrasing content</a> is expected.</dd>
<dt>Content model:</dt>
- <dd><a href="dom.html#phrasing-content">Phrasing content</a>.</dd>
+ <dd><a href="dom.html#phrasing-content">Phrasing content</a>, but there must be no <code><a href="#the-meter-element">meter</a></code> element descendants.</dd>
<dt>Content attributes:</dt>
<dd><a href="dom.html#global-attributes">Global attributes</a></dd>
<dd><code title="attr-meter-value"><a href="#attr-meter-value">value</a></code></dd>
@@ -1818,212 +2024,6 @@
attributes must return zero. The value parsed from the
<code>textContent</code> never affects the DOM values.</p>
- </div><h4 id="the-time-element"><span class="secno">4.6.19 </span>The <dfn><code>time</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><dl class="element"><dt>Categories</dt>
- <dd><a href="dom.html#flow-content">Flow content</a>.</dd>
- <dd><a href="dom.html#phrasing-content">Phrasing content</a>.</dd>
- <dt>Contexts in which this element may be used:</dt>
- <dd>Where <a href="dom.html#phrasing-content">phrasing content</a> is expected.</dd>
- <dt>Content model:</dt>
- <dd><a href="dom.html#phrasing-content">Phrasing content</a>.</dd>
- <dt>Content attributes:</dt>
- <dd><a href="dom.html#global-attributes">Global attributes</a></dd>
- <dd><code title="attr-time-datetime"><a href="#attr-time-datetime">datetime</a></code></dd>
- <dt>DOM interface:</dt>
- <dd>
-<pre class="idl">interface <dfn id="htmltimeelement">HTMLTimeElement</dfn> : <a href="dom.html#htmlelement">HTMLElement</a> {
- attribute DOMString <a href="#dom-time-datetime" title="dom-time-datetime">dateTime</a>;
- readonly attribute <span>Date</span> <a href="#dom-time-date" title="dom-time-date">date</a>;
- readonly attribute <span>Date</span> <a href="#dom-time-time" title="dom-time-time">time</a>;
- readonly attribute <span>Date</span> <a href="#dom-time-timezone" title="dom-time-timezone">timezone</a>;
-};</pre>
- </dd>
- </dl><p>The <code><a href="#the-time-element">time</a></code> element <a href="the-xhtml-syntax.html#represents">represents</a> either a
- time on a 24 hour clock, or a precise date in the proleptic
- Gregorian calendar, optionally with a time and a time-zone
- offset. <a href="references.html#refsGREGORIAN">[GREGORIAN]</a></p><p>This element is intended as a way to encode modern dates and
- times in a machine-readable way so that user agents can offer to add
- them to the user's calendar. For example, adding birthday reminders
- or scheduling events.</p><!-- it's also intended for restyling to local conventions
- (2000-12-31 vs 31-12-2000 vs 12-31-2000), but CSS doesn't support
- that yet. --><div class="note">
-
- <p>The <code><a href="#the-time-element">time</a></code> element is not intended for encoding times
- for which a precise date or time cannot be established. For
- example, it would be inappropriate for encoding times like "one
- millisecond after the big bang", "the early part of the Jurassic
- period", or "a winter around 250 BCE".</p>
-
- <p>For dates before the introduction of the Gregorian calendar,
- authors are encouraged to not use the <code><a href="#the-time-element">time</a></code> element, or
- else to be very careful about converting dates and times from the
- period to the Gregorian calendar. This is complicated by the manner
- in which the Gregorian calendar was phased in, which occurred at
- different times in different countries, ranging from partway
- through the 16th century all the way to early in the 20th.</p>
-
- </div><p>The <dfn id="attr-time-datetime" title="attr-time-datetime"><code>datetime</code></dfn>
- attribute, if present, must contain a <a href="infrastructure.html#valid-date-or-time-string">valid date or time
- string</a> that identifies the date or time being specified.</p><p>If the <code title="attr-time-datetime"><a href="#attr-time-datetime">datetime</a></code> attribute
- is not present, then the date or time must be specified in the
- content of the element, such that the element's
- <code>textContent</code> is a <a href="infrastructure.html#valid-date-or-time-string-in-content">valid date or time string in
- content</a>, and the date, if any, must be expressed using the
- Gregorian calendar.</p><p>If the <code title="attr-time-datetime"><a href="#attr-time-datetime">datetime</a></code> attribute
- is present, then the element may be empty, in which case the user
- agent should convey the attribute's value to the user when rendering
- the element.</p><div class="example">
-
- <p>The <code><a href="#the-time-element">time</a></code> element can be used to encode dates, for
- example in Microformats. The following shows a hypothetical way of
- encoding an event using a variant on hCalendar that uses the
- <code><a href="#the-time-element">time</a></code> element:</p>
-
- <pre><div class="vevent">
- <a class="url" href="http://www.web2con.com/">http://www.web2con.com/</a>
- <span class="summary">Web 2.0 Conference</span>:
- <time class="dtstart" datetime="2007-10-05">October 5</time> -
- <time class="dtend" datetime="2007-10-20">19</time>,
- at the <span class="location">Argent Hotel, San Francisco, CA</span>
- </div></pre>
-
- </div><div class="example">
-
- <p>The <code><a href="#the-time-element">time</a></code> element is not necessary for encoding
- dates or times. In the following snippet, the time is encoded using
- <code><a href="#the-time-element">time</a></code>, so that it can be restyled (e.g. using XBL2) to
- match local conventions, while the year is not marked up at all,
- since marking it up would not be particularly useful.</p>
-
- <pre><p>I usually have a snack at <time>16:00</time>.</p>
-<p>I've liked model trains since at least 1983.</p></pre>
-
- <p>Using a styling technology that supports restyling times, the
- first paragraph from the above snippet could be rendered as follows:</p>
-
- <blockquote><p>I usually have a snack at 4pm.</p></blockquote>
-
- <p>Or it could be rendered as follows:</p>
-
- <blockquote><p>I usually have a snack at 16h00.</p></blockquote>
-
- </div><div class="impl">
-
- <p>The <dfn id="dom-time-datetime" title="dom-time-datetime"><code>dateTime</code></dfn> DOM
- attribute must <a href="infrastructure.html#reflect">reflect</a> the <code title="attr-time-datetime"><a href="#attr-time-datetime">datetime</a></code> content attribute.</p>
-
- <p>User agents, to obtain the <dfn id="concept-time-date" title="concept-time-date">date</dfn>, <dfn id="concept-time-time" title="concept-time-time">time</dfn>, and <dfn id="concept-time-timezone" title="concept-time-timezone">time-zone offset</dfn> represented by
- a <code><a href="#the-time-element">time</a></code> element, must follow these steps:</p>
-
- <ol><li>If the <code title="attr-time-datetime"><a href="#attr-time-datetime">datetime</a></code>
- attribute is present, then use the rules to <a href="infrastructure.html#parse-a-date-or-time-string">parse a date or
- time string</a> with the flag <i>in attribute</i> from the value
- of that attribute, and let the result be <var title="">result</var>.</li>
-
- <li>Otherwise, use the rules to <a href="infrastructure.html#parse-a-date-or-time-string">parse a date or time
- string</a> with the flag <i>in content</i> from the element's
- <code>textContent</code>, and let the result be <var title="">result</var>.</li>
-
- <li>If <var title="">result</var> is empty (because the parsing
- failed), then the <a href="#concept-time-date" title="concept-time-date">date</a> is
- unknown, the <a href="#concept-time-time" title="concept-time-time">time</a> is
- unknown, and the <a href="#concept-time-timezone" title="concept-time-timezone">time-zone
- offset</a> is unknown.</li>
-
- <li>Otherwise: if <var title="">result</var> contains a date, then
- that is the <a href="#concept-time-date" title="concept-time-date">date</a>; if <var title="">result</var> contains a time, then that is the <a href="#concept-time-time" title="concept-time-time">time</a>; and if <var title="">result</var> contains a time-zone offset, then the
- time-zone offset is the element's <a href="#concept-time-timezone" title="concept-time-timezone">time-zone offset</a>. (A time-zone
- offset can only be present if both a date and a time are also
- present.)</li>
-
- </ol></div><dl class="domintro"><dt><var title="">time</var> . <code title="dom-time-date"><a href="#dom-time-date">date</a></code></dt>
-
- <dd>
-
- <p>Returns a <code>Date</code> object representing the date
- component of the element's value, at midnight in the UTC
- time zone.</p>
-
- <p>Returns null if there is no date.</p>
-
- </dd>
-
- <dt><var title="">time</var> . <code title="dom-time-time"><a href="#dom-time-time">time</a></code></dt>
-
- <dd>
-
- <p>Returns a <code>Date</code> object representing the time
- component of the element's value, on 1970-01-01 in the UTC
- time zone.</p>
-
- <p>Returns null if there is no time.</p>
-
- </dd>
-
- <dt><var title="">time</var> . <code title="dom-time-timezone"><a href="#dom-time-timezone">timezone</a></code></dt>
-
- <dd>
-
- <p>Returns a <code>Date</code> object representing the time
- corresponding to 1970-01-01 00:00 UTC in the time zone given by the
- element's value.</p>
-
- <p>Returns null if there is no time zone.</p>
-
- </dd>
-
- </dl><div>
-
- <p>The <dfn id="dom-time-date" title="dom-time-date"><code>date</code></dfn> DOM
- attribute must return null if the <a href="#concept-time-date" title="concept-time-date">date</a> is unknown, and otherwise must
- return the time corresponding to midnight UTC (i.e. the first
- second) of the given <a href="#concept-time-date" title="concept-time-date">date</a>.</p>
-
- <p>The <dfn id="dom-time-time" title="dom-time-time"><code>time</code></dfn> DOM attribute
- must return null if the <a href="#concept-time-time" title="concept-time-time">time</a> is
- unknown, and otherwise must return the time corresponding to the
- given <a href="#concept-time-time" title="concept-time-time">time</a> of 1970-01-01, with
- the time zone UTC.</p>
-
- <p>The <dfn id="dom-time-timezone" title="dom-time-timezone"><code>timezone</code></dfn>
- DOM attribute must return null if the <a href="#concept-time-timezone" title="concept-time-timezone">time-zone offset</a> is unknown,
- and otherwise must return the time corresponding to 1970-01-01 00:00
- UTC in the given <a href="#concept-time-timezone" title="concept-time-timezone">time-zone
- offset</a>, with the time zone set to UTC (i.e. the time
- corresponding to 1970-01-01 at 00:00 UTC plus the offset).</p>
-
- </div><div class="example">
-
- <p>In the following snippet:</p>
-
- <pre><p>Our first date was <time datetime="2006-09-23">a Saturday</time>.</p></pre>
-
- <p>...the <code><a href="#the-time-element">time</a></code> element's <code title="dom-time-date"><a href="#dom-time-date">date</a></code> attribute would have the value
- 1,158,969,600,000ms, and the <code title="dom-time-time"><a href="#dom-time-time">time</a></code>
- and <code title="dom-time-timezone"><a href="#dom-time-timezone">timezone</a></code> attributes would
- return null.</p>
-
-
- <p>In the following snippet:</p>
-
- <pre><p>We stopped talking at <time datetime="2006-09-24T05:00-07:00">5am the next morning</time>.</p></pre>
-
- <p>...the <code><a href="#the-time-element">time</a></code> element's <code title="dom-time-date"><a href="#dom-time-date">date</a></code> attribute would have the value
- 1,159,056,000,000ms, the <code title="dom-time-time"><a href="#dom-time-time">time</a></code>
- attribute would have the value 18,000,000ms, and the <code title="dom-time-timezone"><a href="#dom-time-timezone">timezone</a></code> attribute would return
- −25,200,000ms. To obtain the actual time, the three attributes can
- be added together, obtaining 1,159,048,800,000, which is the
- specified date and time in UTC.</p>
-
-
- <p>Finally, in the following snippet:</p>
-
- <pre><p>Many people get up at <time>08:00</time>.</p></pre>
-
- <p>...the <code><a href="#the-time-element">time</a></code> element's <code title="dom-time-date"><a href="#dom-time-date">date</a></code> attribute would have the value null,
- the <code title="dom-time-time"><a href="#dom-time-time">time</a></code> attribute would have the
- value 28,800,000ms, and the <code title="dom-time-timezone"><a href="#dom-time-timezone">timezone</a></code> attribute would return
- null.</p>
-
</div><h4 id="the-ruby-element"><span class="secno">4.6.20 </span>The <dfn><code>ruby</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><dl class="element"><dt>Categories</dt>
<dd><a href="dom.html#flow-content">Flow content</a>.</dd>
<dd><a href="dom.html#phrasing-content">Phrasing content</a>.</dd>
@@ -2250,6 +2250,10 @@
</td><td>Abbreviations
</td><td><pre class="example">Organic food in Ireland is certified by the <strong><abbr title="Irish Organic Farmers and Growers Association">IOFGA</abbr></strong>.</pre>
+ </td></tr><tr><td><code><a href="#the-time-element">time</a></code>
+ </td><td>Date and/or time
+ </td><td><pre class="example">Published <strong><time>2009-10-21</time></strong>.</pre>
+
</td></tr><tr><td><code><a href="#the-code-element">code</a></code>
</td><td>Computer code
</td><td><pre class="example">The <strong><code>fruitdb</code></strong> program can be used for tracking fruit production.</pre>
@@ -2294,10 +2298,6 @@
</td><td>Gauge
</td><td><pre class="example">Disk space remaining: <meter>75%<meter></pre>
- </td></tr><tr><td><code><a href="#the-time-element">time</a></code>
- </td><td>Date and/or time
- </td><td><pre class="example">Published <strong><time>2009-10-21</time></strong>.</pre>
-
</td></tr><tr><td><code><a href="#the-ruby-element">ruby</a></code>, <code><a href="#the-rt-element">rt</a></code>, <code><a href="#the-rp-element">rp</a></code>
</td><td>Ruby annotations
</td><td><pre class="example"><strong><ruby> OJ <rp>(<rt>Orange Juice<rp>)</ruby></strong></pre>
@@ -2730,7 +2730,7 @@
<legend>The castle through the ages: 1423, 1858, and 1999 respectively.</legend>
</figure></pre>
- </div><h4 id="the-img-element"><span class="secno">4.8.2 </span>The <dfn><code>img</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/66">ISSUE-66</a> (image-analysis) and <a href="http://www.w3.org/html/wg/tracker/issues/30">ISSUE-30</a> (longdesc) block progress to Last Call</span></p><dl class="element"><dt>Categories</dt>
+ </div><h4 id="the-img-element"><span class="secno">4.8.2 </span>The <dfn><code>img</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/30">ISSUE-30</a> (longdesc) and <a href="http://www.w3.org/html/wg/tracker/issues/66">ISSUE-66</a> (image-analysis) block progress to Last Call</span></p><dl class="element"><dt>Categories</dt>
<dd><a href="dom.html#flow-content">Flow content</a>.</dd>
<dd><a href="dom.html#phrasing-content">Phrasing content</a>.</dd>
<dd><a href="embedded-content-0.html#embedded-content">Embedded content</a>.</dd>
Index: the-canvas-element.html
===================================================================
RCS file: /sources/public/html5/spec/the-canvas-element.html,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -d -r1.37 -r1.38
--- the-canvas-element.html 29 Aug 2009 00:46:56 -0000 1.37
+++ the-canvas-element.html 29 Aug 2009 00:56:26 -0000 1.38
@@ -182,7 +182,7 @@
<a href="video.html">← 4.8.7 The video element</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="tabular-data.html">4.9 Tabular data →</a>
- </nav><p>This is revision 1.2869.</p>
+ </nav><p>This is revision 1.2872.</p>
<h4 id="the-canvas-element"><span class="secno">4.8.11 </span>The <dfn id="canvas"><code>canvas</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/74">ISSUE-74</a> (canvas-accessibility) blocks progress to Last Call</span></p><dl class="element"><dt>Categories</dt>
Index: toc-status.xml
===================================================================
RCS file: /sources/public/html5/spec/toc-status.xml,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- toc-status.xml 25 Aug 2009 09:34:44 -0000 1.2
+++ toc-status.xml 29 Aug 2009 00:56:26 -0000 1.3
@@ -391,27 +391,27 @@
<code>dfn</code> element</a></li>
<li><a href="#the-abbr-element" shape="rect"><span class="secno">4.6.8</span>
The <code>abbr</code> element</a></li>
-<li><a href="#the-code-element" shape="rect"><span class="secno">4.6.9</span>
+<li><a href="#the-time-element" shape="rect"><span class="secno">4.6.9</span>
+The <code>time</code> element</a></li>
+<li><a href="#the-code-element" shape="rect"><span class="secno">4.6.10</span>
The <code>code</code> element</a></li>
-<li><a href="#the-var-element" shape="rect"><span class="secno">4.6.10</span>
+<li><a href="#the-var-element" shape="rect"><span class="secno">4.6.11</span>
The <code>var</code> element</a></li>
-<li><a href="#the-samp-element" shape="rect"><span class="secno">4.6.11</span>
+<li><a href="#the-samp-element" shape="rect"><span class="secno">4.6.12</span>
The <code>samp</code> element</a></li>
-<li><a href="#the-kbd-element" shape="rect"><span class="secno">4.6.12</span>
+<li><a href="#the-kbd-element" shape="rect"><span class="secno">4.6.13</span>
The <code>kbd</code> element</a></li>
-<li><a href="#the-sub-and-sup-elements" shape="rect"><span class="secno">4.6.13</span> The <code>sub</code> and <code>sup</code>
+<li><a href="#the-sub-and-sup-elements" shape="rect"><span class="secno">4.6.14</span> The <code>sub</code> and <code>sup</code>
elements</a></li>
-<li><a href="#the-i-element" shape="rect"><span class="secno">4.6.14</span> The
+<li><a href="#the-i-element" shape="rect"><span class="secno">4.6.15</span> The
<code>i</code> element</a></li>
-<li><a href="#the-b-element" shape="rect"><span class="secno">4.6.15</span> The
+<li><a href="#the-b-element" shape="rect"><span class="secno">4.6.16</span> The
<code>b</code> element</a></li>
-<li><a href="#the-mark-element" shape="rect"><span class="secno">4.6.16</span>
+<li><a href="#the-mark-element" shape="rect"><span class="secno">4.6.17</span>
The <code>mark</code> element</a></li>
-<li><a href="#the-progress-element" shape="rect"><span class="secno">4.6.17</span> The <code>progress</code> element</a></li>
-<li><a href="#the-meter-element" shape="rect"><span class="secno">4.6.18</span>
+<li><a href="#the-progress-element" shape="rect"><span class="secno">4.6.18</span> The <code>progress</code> element</a></li>
+<li><a href="#the-meter-element" shape="rect"><span class="secno">4.6.19</span>
The <code>meter</code> element</a></li>
-<li><a href="#the-time-element" shape="rect"><span class="secno">4.6.19</span>
-The <code>time</code> element</a></li>
<li><a href="#the-ruby-element" shape="rect"><span class="secno">4.6.20</span>
The <code>ruby</code> element</a></li>
<li><a href="#the-rt-element" shape="rect"><span class="secno">4.6.21</span> The
Index: tabular-data.html
===================================================================
RCS file: /sources/public/html5/spec/tabular-data.html,v
retrieving revision 1.169
retrieving revision 1.170
diff -u -d -r1.169 -r1.170
--- tabular-data.html 29 Aug 2009 00:46:56 -0000 1.169
+++ tabular-data.html 29 Aug 2009 00:56:26 -0000 1.170
@@ -182,7 +182,7 @@
<a href="the-canvas-element.html">← 4.8.11 The canvas element</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="forms.html">4.10 Forms →</a>
- </nav><p>This is revision 1.2869.</p>
+ </nav><p>This is revision 1.2872.</p>
<h3 id="tabular-data"><span class="secno">4.9 </span>Tabular data</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/32">ISSUE-32</a> (table-summary) blocks progress to Last Call</span></p><h4 id="the-table-element"><span class="secno">4.9.1 </span>The <dfn><code>table</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class="element"><dt>Categories</dt>
Index: microdata.html
===================================================================
RCS file: /sources/public/html5/spec/microdata.html,v
retrieving revision 1.129
retrieving revision 1.130
diff -u -d -r1.129 -r1.130
--- microdata.html 29 Aug 2009 00:46:55 -0000 1.129
+++ microdata.html 29 Aug 2009 00:56:25 -0000 1.130
@@ -182,7 +182,7 @@
<a href="interactive-elements.html">← 4.11 Interactive elements</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="browsers.html">6 Web browsers →</a>
- </nav><p>This is revision 1.2869.</p>
+ </nav><p>This is revision 1.2872.</p>
<h2 id="microdata"><span class="secno">5 </span><dfn>Microdata</dfn></h2><p class="XXX annotation"><b>Status: </b><i>First draft. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/76">ISSUE-76</a> (Microdata/RDFa) blocks progress to Last Call</span></p><!-- v2
Index: embedded-content-0.html
===================================================================
RCS file: /sources/public/html5/spec/embedded-content-0.html,v
retrieving revision 1.165
retrieving revision 1.166
diff -u -d -r1.165 -r1.166
--- embedded-content-0.html 29 Aug 2009 00:46:55 -0000 1.165
+++ embedded-content-0.html 29 Aug 2009 00:56:25 -0000 1.166
@@ -182,7 +182,7 @@
<a href="dom.html">← 3 Semantics, structure, and APIs of HTML documents</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="semantics.html">4 The elements of HTML →</a>
- </nav><p>This is revision 1.2869.</p>
+ </nav><p>This is revision 1.2872.</p>
<h6 id="embedded-content-0"><span class="secno">3.2.5.1.6 </span>Embedded content</h6><p><dfn id="embedded-content">Embedded content</dfn> is content that imports another
Index: dom.html
===================================================================
RCS file: /sources/public/html5/spec/dom.html,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -d -r1.175 -r1.176
--- dom.html 29 Aug 2009 00:46:54 -0000 1.175
+++ dom.html 29 Aug 2009 00:56:25 -0000 1.176
@@ -182,7 +182,7 @@
<a href="infrastructure.html">← 2 Common infrastructure</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="embedded-content-0.html">3.2.5.1.6 Embedded content →</a>
- </nav><p>This is revision 1.2869.</p>
+ </nav><p>This is revision 1.2872.</p>
<h2 id="dom"><span class="secno">3 </span>Semantics, structure, and APIs of HTML documents</h2><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><h3 id="documents"><span class="secno">3.1 </span>Documents</h3><p>Every XML and HTML document in an HTML UA is represented by a
Index: acknowledgements.html
===================================================================
RCS file: /sources/public/html5/spec/acknowledgements.html,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -d -r1.175 -r1.176
--- acknowledgements.html 29 Aug 2009 00:46:54 -0000 1.175
+++ acknowledgements.html 29 Aug 2009 00:56:25 -0000 1.176
@@ -180,7 +180,7 @@
</div><nav>
<a href="references.html">← References</a> –
<a href="spec.html#contents">Table of contents</a>
- </nav><p>This is revision 1.2869.</p>
+ </nav><p>This is revision 1.2872.</p>
<h2 class="no-num" id="acknowledgements">Acknowledgements</h2><p class="XXX annotation"><b>Status: </b><i>Being edited right now</i></p><!-- ACKS --><p>Thanks to
Index: history.html
===================================================================
RCS file: /sources/public/html5/spec/history.html,v
retrieving revision 1.169
retrieving revision 1.170
diff -u -d -r1.169 -r1.170
--- history.html 29 Aug 2009 00:46:55 -0000 1.169
+++ history.html 29 Aug 2009 00:56:25 -0000 1.170
@@ -182,7 +182,7 @@
<a href="offline.html">← 6.9 Offline Web applications</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="editing.html">7 User Interaction →</a>
- </nav><p>This is revision 1.2869.</p>
+ </nav><p>This is revision 1.2872.</p>
<h3 id="history"><span class="secno">6.10 </span>Session history and navigation</h3><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><h4 id="the-session-history-of-browsing-contexts"><span class="secno">6.10.1 </span>The session history of browsing contexts</h4><p>The sequence of <code>Document</code>s in a <a href="browsers.html#browsing-context">browsing
@@ -1756,7 +1756,7 @@
<a href="#source-browsing-context">source browsing context</a>.</p>
- <h5 id="hyperlink-auditing"><span class="secno">6.12.2.1 </span><dfn>Hyperlink auditing</dfn></h5><p class="XXX annotation"><b>Status: </b><i>Controversial Working Draft. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/63">ISSUE-63</a> (origin-req-scope), <a href="http://www.w3.org/html/wg/tracker/issues/1">ISSUE-1</a> (PINGPOST) and <a href="http://www.w3.org/html/wg/tracker/issues/2">ISSUE-2</a> (PINGUI) block progress to Last Call</span></p>
+ <h5 id="hyperlink-auditing"><span class="secno">6.12.2.1 </span><dfn>Hyperlink auditing</dfn></h5><p class="XXX annotation"><b>Status: </b><i>Controversial Working Draft. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/1">ISSUE-1</a> (PINGPOST), <a href="http://www.w3.org/html/wg/tracker/issues/63">ISSUE-63</a> (origin-req-scope) and <a href="http://www.w3.org/html/wg/tracker/issues/2">ISSUE-2</a> (PINGUI) block progress to Last Call</span></p>
<p>If an <code><a href="text-level-semantics.html#the-a-element">a</a></code> or <code><a href="the-canvas-element.html#the-area-element">area</a></code> hyperlink element has a
<code title="attr-hyperlink-ping"><a href="#ping">ping</a></code> attribute, and the
Index: iana-considerations.html
===================================================================
RCS file: /sources/public/html5/spec/iana-considerations.html,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- iana-considerations.html 29 Aug 2009 00:46:55 -0000 1.18
+++ iana-considerations.html 29 Aug 2009 00:56:25 -0000 1.19
@@ -182,7 +182,7 @@
<a href="no.html">← 13 Things that you can't do with this specification because they are better handled using other technologies that are further described herein</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="index.html">Index →</a>
- </nav><p>This is revision 1.2869.</p>
+ </nav><p>This is revision 1.2872.</p>
<h2 class="no-num" id="iana-considerations">IANA considerations</h2><p class="XXX annotation"><b>Status: </b><i>First draft</i></p><!-- http://www.w3.org/2002/06/registering-mediatype.html --><p>This registration is for community review and will be submitted
Index: forms.html
===================================================================
RCS file: /sources/public/html5/spec/forms.html,v
retrieving revision 1.169
retrieving revision 1.170
diff -u -d -r1.169 -r1.170
--- forms.html 29 Aug 2009 00:46:55 -0000 1.169
+++ forms.html 29 Aug 2009 00:56:25 -0000 1.170
@@ -182,7 +182,7 @@
<a href="tabular-data.html">← 4.9 Tabular data</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="interactive-elements.html">4.11 Interactive elements →</a>
- </nav><p>This is revision 1.2869.</p>
+ </nav><p>This is revision 1.2872.</p>
<h3 id="forms"><span class="secno">4.10 </span>Forms</h3><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><p>Forms allow unscripted client-server interaction: given a form, a
Index: interactive-elements.html
===================================================================
RCS file: /sources/public/html5/spec/interactive-elements.html,v
retrieving revision 1.169
retrieving revision 1.170
diff -u -d -r1.169 -r1.170
--- interactive-elements.html 29 Aug 2009 00:46:55 -0000 1.169
+++ interactive-elements.html 29 Aug 2009 00:56:25 -0000 1.170
@@ -182,7 +182,7 @@
<a href="forms.html">← 4.10 Forms</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="microdata.html">5 Microdata →</a>
- </nav><p>This is revision 1.2869.</p>
+ </nav><p>This is revision 1.2872.</p>
<h3 id="interactive-elements"><span class="secno">4.11 </span>Interactive elements</h3><h4 id="the-details-element"><span class="secno">4.11.1 </span>The <dfn><code>details</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class="element"><dt>Categories</dt>
Index: editing.html
===================================================================
RCS file: /sources/public/html5/spec/editing.html,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -d -r1.175 -r1.176
--- editing.html 29 Aug 2009 00:46:54 -0000 1.175
+++ editing.html 29 Aug 2009 00:56:25 -0000 1.176
@@ -182,7 +182,7 @@
<a href="history.html">← 6.10 Session history and navigation</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="comms.html">8 Communication →</a>
- </nav><p>This is revision 1.2869.</p>
+ </nav><p>This is revision 1.2872.</p>
<h2 id="editing"><span class="secno">7 </span><dfn>User Interaction</dfn></h2><p>This section describes various features that allow authors to
Index: video.html
===================================================================
RCS file: /sources/public/html5/spec/video.html,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -d -r1.44 -r1.45
--- video.html 29 Aug 2009 00:46:56 -0000 1.44
+++ video.html 29 Aug 2009 00:56:26 -0000 1.45
@@ -182,7 +182,7 @@
<a href="text-level-semantics.html">← 4.6 Text-level semantics</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="the-canvas-element.html">4.8.11 The canvas element →</a>
- </nav><p>This is revision 1.2869.</p>
+ </nav><p>This is revision 1.2872.</p>
<h4 id="video"><span class="secno">4.8.7 </span>The <dfn><code>video</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/9">ISSUE-9</a> (video-synchronization), <a href="http://www.w3.org/html/wg/tracker/issues/10">ISSUE-10</a> (video-smil) and <a href="http://www.w3.org/html/wg/tracker/issues/7">ISSUE-7</a> (video-codecs) block progress to Last Call</span></p><dl class="element"><dt>Categories</dt>
Index: browsers.html
===================================================================
RCS file: /sources/public/html5/spec/browsers.html,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -d -r1.175 -r1.176
--- browsers.html 29 Aug 2009 00:46:54 -0000 1.175
+++ browsers.html 29 Aug 2009 00:56:25 -0000 1.176
@@ -182,7 +182,7 @@
<a href="microdata.html">← 5 Microdata</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="offline.html">6.9 Offline Web applications →</a>
- </nav><p>This is revision 1.2869.</p>
+ </nav><p>This is revision 1.2872.</p>
<h2 id="browsers"><span class="secno">6 </span>Web browsers</h2><div class="impl">
Index: the-xhtml-syntax.html
===================================================================
RCS file: /sources/public/html5/spec/the-xhtml-syntax.html,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -d -r1.175 -r1.176
--- the-xhtml-syntax.html 29 Aug 2009 00:46:56 -0000 1.175
+++ the-xhtml-syntax.html 29 Aug 2009 00:56:26 -0000 1.176
@@ -182,7 +182,7 @@
<a href="named-character-references.html">← 9.6 Named character references</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="obsolete.html">12 Obsolete features →</a>
- </nav><p>This is revision 1.2869.</p>
+ </nav><p>This is revision 1.2872.</p>
<h2 id="the-xhtml-syntax"><span class="secno">10 </span><dfn id="xhtml">The XHTML syntax</dfn></h2><p class="note">This section only describes the rules for XML
Index: offline.html
===================================================================
RCS file: /sources/public/html5/spec/offline.html,v
retrieving revision 1.170
retrieving revision 1.171
diff -u -d -r1.170 -r1.171
--- offline.html 29 Aug 2009 00:46:55 -0000 1.170
+++ offline.html 29 Aug 2009 00:56:26 -0000 1.171
@@ -182,7 +182,7 @@
<a href="browsers.html">← 6 Web browsers</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="history.html">6.10 Session history and navigation →</a>
- </nav><p>This is revision 1.2869.</p>
+ </nav><p>This is revision 1.2872.</p>
<h3 id="offline"><span class="secno">6.9 </span>Offline Web applications</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><!-- v2 ideas for appcache:
Index: syntax.html
===================================================================
RCS file: /sources/public/html5/spec/syntax.html,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -d -r1.175 -r1.176
--- syntax.html 29 Aug 2009 00:46:55 -0000 1.175
+++ syntax.html 29 Aug 2009 00:56:26 -0000 1.176
@@ -182,7 +182,7 @@
<a href="comms.html">← 8 Communication</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="named-character-references.html">9.6 Named character references →</a>
- </nav><p>This is revision 1.2869.</p>
+ </nav><p>This is revision 1.2872.</p>
<h2 id="syntax"><span class="secno">9 </span><dfn>The HTML syntax</dfn></h2><p class="note">This section only describes the rules for
Index: obsolete.html
===================================================================
RCS file: /sources/public/html5/spec/obsolete.html,v
retrieving revision 1.167
retrieving revision 1.168
diff -u -d -r1.167 -r1.168
--- obsolete.html 29 Aug 2009 00:46:55 -0000 1.167
+++ obsolete.html 29 Aug 2009 00:56:26 -0000 1.168
@@ -182,7 +182,7 @@
<a href="the-xhtml-syntax.html">← 10 The XHTML syntax</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="no.html">13 Things that you can't do with this specification because they are better handled using other technologies that are further described herein →</a>
- </nav><p>This is revision 1.2869.</p>
+ </nav><p>This is revision 1.2872.</p>
<h2 id="obsolete"><span class="secno">12 </span>Obsolete features</h2><h3 id="obsolete-but-conforming-features"><span class="secno">12.1 </span>Obsolete but conforming features</h3><p>Features listed in this section will trigger warnings in
Index: toc-status.html
===================================================================
RCS file: /sources/public/html5/spec/toc-status.html,v
retrieving revision 1.64
retrieving revision 1.65
diff -u -d -r1.64 -r1.65
--- toc-status.html 25 Aug 2009 09:34:44 -0000 1.64
+++ toc-status.html 29 Aug 2009 00:56:26 -0000 1.65
@@ -424,27 +424,27 @@
dfn element</a> <span class="id">(the-dfn-element)</span></li>
<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/edit-section.html?section=the-abbr-element" class="status REC">REC</a> <a href="../spec/#the-abbr-element">4.6.8
The abbr element</a> <span class="id">(the-abbr-element)</span></li>
-<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/edit-section.html?section=the-code-element" class="status REC">REC</a> <a href="../spec/#the-code-element">4.6.9
+<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/edit-section.html?section=the-time-element" class="status WD">WD</a> <a href="../spec/#the-time-element">4.6.9
+The time element</a> <span class="id">(the-time-element)</span></li>
+<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/edit-section.html?section=the-code-element" class="status REC">REC</a> <a href="../spec/#the-code-element">4.6.10
The code element</a> <span class="id">(the-code-element)</span></li>
-<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/edit-section.html?section=the-var-element" class="status REC">REC</a> <a href="../spec/#the-var-element">4.6.10
+<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/edit-section.html?section=the-var-element" class="status REC">REC</a> <a href="../spec/#the-var-element">4.6.11
The var element</a> <span class="id">(the-var-element)</span></li>
-<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/edit-section.html?section=the-samp-element" class="status REC">REC</a> <a href="../spec/#the-samp-element">4.6.11
+<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/edit-section.html?section=the-samp-element" class="status REC">REC</a> <a href="../spec/#the-samp-element">4.6.12
The samp element</a> <span class="id">(the-samp-element)</span></li>
-<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/edit-section.html?section=the-kbd-element" class="status REC">REC</a> <a href="../spec/#the-kbd-element">4.6.12
+<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/edit-section.html?section=the-kbd-element" class="status REC">REC</a> <a href="../spec/#the-kbd-element">4.6.13
The kbd element</a> <span class="id">(the-kbd-element)</span></li>
-<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/edit-section.html?section=the-sub-and-sup-elements" class="status REC">REC</a> <a href="../spec/#the-sub-and-sup-elements">4.6.13 The sub and sup
+<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/edit-section.html?section=the-sub-and-sup-elements" class="status REC">REC</a> <a href="../spec/#the-sub-and-sup-elements">4.6.14 The sub and sup
elements</a> <span class="id">(the-sub-and-sup-elements)</span></li>
-<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/edit-section.html?section=the-i-element" class="status REC">REC</a> <a href="../spec/#the-i-element">4.6.14 The
+<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/edit-section.html?section=the-i-element" class="status REC">REC</a> <a href="../spec/#the-i-element">4.6.15 The
i element</a> <span class="id">(the-i-element)</span></li>
-<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/edit-section.html?section=the-b-element" class="status REC">REC</a> <a href="../spec/#the-b-element">4.6.15 The
+<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/edit-section.html?section=the-b-element" class="status REC">REC</a> <a href="../spec/#the-b-element">4.6.16 The
b element</a> <span class="id">(the-b-element)</span></li>
-<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/edit-section.html?section=the-mark-element" class="status WD">WD</a> <a href="../spec/#the-mark-element">4.6.16
+<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/edit-section.html?section=the-mark-element" class="status WD">WD</a> <a href="../spec/#the-mark-element">4.6.17
The mark element</a> <span class="id">(the-mark-element)</span></li>
-<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/edit-section.html?section=the-progress-element" class="status WD">WD</a> <a href="../spec/#the-progress-element">4.6.17 The progress element</a> <span class="id">(the-progress-element)</span></li>
-<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/edit-section.html?section=the-meter-element" class="status WD">WD</a> <a href="../spec/#the-meter-element">4.6.18
+<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/edit-section.html?section=the-progress-element" class="status WD">WD</a> <a href="../spec/#the-progress-element">4.6.18 The progress element</a> <span class="id">(the-progress-element)</span></li>
+<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/edit-section.html?section=the-meter-element" class="status WD">WD</a> <a href="../spec/#the-meter-element">4.6.19
The meter element</a> <span class="id">(the-meter-element)</span></li>
-<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/edit-section.html?section=the-time-element" class="status WD">WD</a> <a href="../spec/#the-time-element">4.6.19
-The time element</a> <span class="id">(the-time-element)</span></li>
<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/edit-section.html?section=the-ruby-element" class="status WD">WD</a> <a href="../spec/#the-ruby-element">4.6.20
The ruby element</a> <span class="id">(the-ruby-element)</span></li>
<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/edit-section.html?section=the-rt-element" class="status WD">WD</a> <a href="../spec/#the-rt-element">4.6.21 The
Index: named-character-references.html
===================================================================
RCS file: /sources/public/html5/spec/named-character-references.html,v
retrieving revision 1.168
retrieving revision 1.169
diff -u -d -r1.168 -r1.169
--- named-character-references.html 29 Aug 2009 00:46:55 -0000 1.168
+++ named-character-references.html 29 Aug 2009 00:56:26 -0000 1.169
@@ -182,7 +182,7 @@
<a href="syntax.html">← 9 The HTML syntax</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="the-xhtml-syntax.html">10 The XHTML syntax →</a>
- </nav><p>This is revision 1.2869.</p>
+ </nav><p>This is revision 1.2872.</p>
<h3 id="named-character-references"><span class="secno">9.6 </span><dfn>Named character references</dfn></h3><p>This table lists the character reference names that are supported
Index: references.html
===================================================================
RCS file: /sources/public/html5/spec/references.html,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -d -r1.175 -r1.176
--- references.html 29 Aug 2009 00:46:55 -0000 1.175
+++ references.html 29 Aug 2009 00:56:26 -0000 1.176
@@ -182,7 +182,7 @@
<a href="index.html">← Index</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="acknowledgements.html">Acknowledgements →</a>
- </nav><p>This is revision 1.2869.</p>
+ </nav><p>This is revision 1.2872.</p>
<h2 class="no-num" id="references">References</h2><p class="XXX annotation"><b>Status: </b><i>First draft</i></p><!--REFS--><p>All references are normative unless marked "Non-normative".</p><dl><dt id="refsABNF">[ABNF]</dt>
Index: semantics.html
===================================================================
RCS file: /sources/public/html5/spec/semantics.html,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -d -r1.175 -r1.176
--- semantics.html 29 Aug 2009 00:46:55 -0000 1.175
+++ semantics.html 29 Aug 2009 00:56:26 -0000 1.176
@@ -182,7 +182,7 @@
<a href="embedded-content-0.html">← 3.2.5.1.6 Embedded content</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="text-level-semantics.html">4.6 Text-level semantics →</a>
- </nav><p>This is revision 1.2869.</p>
+ </nav><p>This is revision 1.2872.</p>
<h2 id="semantics"><span class="secno">4 </span>The elements of HTML</h2><h3 id="the-root-element"><span class="secno">4.1 </span>The root element</h3><h4 id="the-html-element-0"><span class="secno">4.1.1 </span>The <dfn><code>html</code></dfn> element</h4><dl class="element"><dt>Categories</dt>
@@ -3304,9 +3304,7 @@
<pre class="idl">interface <dfn id="htmlbrelement">HTMLBRElement</dfn> : <a href="dom.html#htmlelement">HTMLElement</a> {};</pre>
</dd>
</dl><p>The <code><a href="#the-br-element">br</a></code> element <a href="the-xhtml-syntax.html#represents">represents</a> a line
- break.</p><p><code><a href="#the-br-element">br</a></code> elements must be empty. Any content inside
- <code><a href="#the-br-element">br</a></code> elements must not be considered part of the
- surrounding text.</p><p><code><a href="#the-br-element">br</a></code> elements must be used only for line breaks that
+ break.</p><p><code><a href="#the-br-element">br</a></code> elements must be used only for line breaks that
are actually part of the content, as in poems or addresses.</p><div class="example">
<p>The following example is correct usage of the <code><a href="#the-br-element">br</a></code>
@@ -3339,7 +3337,12 @@
</div><p>If a <a href="embedded-content-0.html#paragraph">paragraph</a> consists of nothing but a single
<code><a href="#the-br-element">br</a></code> element, it represents a placeholder blank line
(e.g. as in a template). Such blank lines must not be used for
- presentation purposes.</p><h4 id="the-pre-element"><span class="secno">4.5.4 </span>The <dfn><code>pre</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed</i></p><dl class="element"><dt>Categories</dt>
+ presentation purposes.</p><div class="impl">
+
+ <p>Any content inside <code><a href="#the-br-element">br</a></code> elements must not be
+ considered part of the surrounding text.</p>
+
+ </div><h4 id="the-pre-element"><span class="secno">4.5.4 </span>The <dfn><code>pre</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed</i></p><dl class="element"><dt>Categories</dt>
<dd><a href="dom.html#flow-content">Flow content</a>.</dd>
<dd><a href="editing.html#formatblock-candidate"><code title="">formatBlock</code> candidate</a>.</dd>
<dt>Contexts in which this element may be used:</dt>
Index: index.html
===================================================================
RCS file: /sources/public/html5/spec/index.html,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -d -r1.175 -r1.176
--- index.html 29 Aug 2009 00:46:55 -0000 1.175
+++ index.html 29 Aug 2009 00:56:25 -0000 1.176
@@ -182,7 +182,7 @@
<a href="iana-considerations.html">← IANA considerations</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="references.html">References →</a>
- </nav><p>This is revision 1.2869.</p>
+ </nav><p>This is revision 1.2872.</p>
<h2 class="no-num" id="index">Index</h2><p class="XXX annotation"><b>Status: </b><i>First draft</i></p><p><i>This section is non-normative.</i></p><table><caption>List of elements</caption>
Index: comms.html
===================================================================
RCS file: /sources/public/html5/spec/comms.html,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -d -r1.175 -r1.176
--- comms.html 29 Aug 2009 00:46:54 -0000 1.175
+++ comms.html 29 Aug 2009 00:56:25 -0000 1.176
@@ -182,7 +182,7 @@
<a href="editing.html">← 7 User Interaction</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="syntax.html">9 The HTML syntax →</a>
- </nav><p>This is revision 1.2869.</p>
+ </nav><p>This is revision 1.2872.</p>
<h2 id="comms"><span class="secno">8 </span>Communication</h2><h3 id="event-definitions"><span class="secno">8.1 </span>Event definitions</h3><!-- XXX cross-references for SSE and WS need fixing now that this is cross-spec --><p>Messages in <span>server-sent events</span>, <span>Web
Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec/spec.html,v
retrieving revision 1.177
retrieving revision 1.178
diff -u -d -r1.177 -r1.178
--- spec.html 29 Aug 2009 00:46:55 -0000 1.177
+++ spec.html 29 Aug 2009 00:56:26 -0000 1.178
@@ -199,7 +199,7 @@
</dl><p>This specification is available in the following formats:
<a href="Overview.html">single page HTML</a>,
<a href="spec.html">multipage HTML</a>.
-This is revision 1.2869.
+This is revision 1.2872.
</p>
<p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
© 2009 <a href="http://www.w3.org/"><abbr title="World Wide
@@ -470,17 +470,17 @@
<li><a href="text-level-semantics.html#the-q-element"><span class="secno">4.6.6 </span>The <code>q</code> element</a></li>
<li><a href="text-level-semantics.html#the-dfn-element"><span class="secno">4.6.7 </span>The <code>dfn</code> element</a></li>
<li><a href="text-level-semantics.html#the-abbr-element"><span class="secno">4.6.8 </span>The <code>abbr</code> element</a></li>
- <li><a href="text-level-semantics.html#the-code-element"><span class="secno">4.6.9 </span>The <code>code</code> element</a></li>
- <li><a href="text-level-semantics.html#the-var-element"><span class="secno">4.6.10 </span>The <code>var</code> element</a></li>
- <li><a href="text-level-semantics.html#the-samp-element"><span class="secno">4.6.11 </span>The <code>samp</code> element</a></li>
- <li><a href="text-level-semantics.html#the-kbd-element"><span class="secno">4.6.12 </span>The <code>kbd</code> element</a></li>
- <li><a href="text-level-semantics.html#the-sub-and-sup-elements"><span class="secno">4.6.13 </span>The <code>sub</code> and <code>sup</code> elements</a></li>
- <li><a href="text-level-semantics.html#the-i-element"><span class="secno">4.6.14 </span>The <code>i</code> element</a></li>
- <li><a href="text-level-semantics.html#the-b-element"><span class="secno">4.6.15 </span>The <code>b</code> element</a></li>
- <li><a href="text-level-semantics.html#the-mark-element"><span class="secno">4.6.16 </span>The <code>mark</code> element</a></li>
- <li><a href="text-level-semantics.html#the-progress-element"><span class="secno">4.6.17 </span>The <code>progress</code> element</a></li>
- <li><a href="text-level-semantics.html#the-meter-element"><span class="secno">4.6.18 </span>The <code>meter</code> element</a></li>
- <li><a href="text-level-semantics.html#the-time-element"><span class="secno">4.6.19 </span>The <code>time</code> element</a></li>
+ <li><a href="text-level-semantics.html#the-time-element"><span class="secno">4.6.9 </span>The <code>time</code> element</a></li>
+ <li><a href="text-level-semantics.html#the-code-element"><span class="secno">4.6.10 </span>The <code>code</code> element</a></li>
+ <li><a href="text-level-semantics.html#the-var-element"><span class="secno">4.6.11 </span>The <code>var</code> element</a></li>
+ <li><a href="text-level-semantics.html#the-samp-element"><span class="secno">4.6.12 </span>The <code>samp</code> element</a></li>
+ <li><a href="text-level-semantics.html#the-kbd-element"><span class="secno">4.6.13 </span>The <code>kbd</code> element</a></li>
+ <li><a href="text-level-semantics.html#the-sub-and-sup-elements"><span class="secno">4.6.14 </span>The <code>sub</code> and <code>sup</code> elements</a></li>
+ <li><a href="text-level-semantics.html#the-i-element"><span class="secno">4.6.15 </span>The <code>i</code> element</a></li>
+ <li><a href="text-level-semantics.html#the-b-element"><span class="secno">4.6.16 </span>The <code>b</code> element</a></li>
+ <li><a href="text-level-semantics.html#the-mark-element"><span class="secno">4.6.17 </span>The <code>mark</code> element</a></li>
+ <li><a href="text-level-semantics.html#the-progress-element"><span class="secno">4.6.18 </span>The <code>progress</code> element</a></li>
+ <li><a href="text-level-semantics.html#the-meter-element"><span class="secno">4.6.19 </span>The <code>meter</code> element</a></li>
<li><a href="text-level-semantics.html#the-ruby-element"><span class="secno">4.6.20 </span>The <code>ruby</code> element</a></li>
<li><a href="text-level-semantics.html#the-rt-element"><span class="secno">4.6.21 </span>The <code>rt</code> element</a></li>
<li><a href="text-level-semantics.html#the-rp-element"><span class="secno">4.6.22 </span>The <code>rp</code> element</a></li>
Index: introduction.html
===================================================================
RCS file: /sources/public/html5/spec/introduction.html,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -d -r1.175 -r1.176
--- introduction.html 29 Aug 2009 00:46:55 -0000 1.175
+++ introduction.html 29 Aug 2009 00:56:25 -0000 1.176
@@ -180,7 +180,7 @@
</div><nav>
<a href="spec.html#contents">Table of contents</a> –
<a href="infrastructure.html">2 Common infrastructure →</a>
- </nav><p>This is revision 1.2869.</p>
+ </nav><p>This is revision 1.2872.</p>
<h2 id="introduction"><span class="secno">1 </span>Introduction</h2><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><h3 id="background"><span class="secno">1.1 </span>Background</h3><p><i>This section is non-normative.</i></p><p>The World Wide Web's markup language has always been HTML. HTML
Index: no.html
===================================================================
RCS file: /sources/public/html5/spec/no.html,v
retrieving revision 1.175
retrieving revision 1.176
diff -u -d -r1.175 -r1.176
--- no.html 29 Aug 2009 00:46:55 -0000 1.175
+++ no.html 29 Aug 2009 00:56:26 -0000 1.176
@@ -182,7 +182,7 @@
<a href="obsolete.html">← 12 Obsolete features</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="iana-considerations.html">IANA considerations →</a>
- </nav><p>This is revision 1.2869.</p>
+ </nav><p>This is revision 1.2872.</p>
<h2 id="no"><span class="secno">13 </span>Things that you can't do with this specification because
Received on Saturday, 29 August 2009 00:56:41 UTC