html5/spec-author-view Overview.html,1.558,1.559 common-microsyntaxes.html,1.9,1.10 fragment-links.js,1.2,1.3 spec.html,1.563,1.564 text-level-semantics.html,1.553,1.554

Update of /sources/public/html5/spec-author-view
In directory hutz:/tmp/cvs-serv14308

Modified Files:
	Overview.html common-microsyntaxes.html fragment-links.js 
	spec.html text-level-semantics.html 
Log Message:
Remove the magic for <progress> and <meter>. (whatwg r4458)

[updated by splitter]


Index: text-level-semantics.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/text-level-semantics.html,v
retrieving revision 1.553
retrieving revision 1.554
diff -u -d -r1.553 -r1.554
--- text-level-semantics.html	3 Jan 2010 15:15:07 -0000	1.553
+++ text-level-semantics.html	4 Jan 2010 23:47:19 -0000	1.554
@@ -1462,87 +1462,31 @@
   attribute specifies how much of the task has been completed, and the
   <dfn id="attr-progress-max" title="attr-progress-max"><code>max</code></dfn> attribute
   specifies how much work the task requires in total. The units are
-  arbitrary and not specified.</p><p>Instead of using the attributes, authors are recommended to
-  include the current value and the maximum value inline as text
-  inside the element.</p><div class="example">
+  arbitrary and not specified.</p><p>Authors are encouraged to also include the current value and the
+  maximum value inline as text inside the element, so that the
+  progress is made available to users of legacy user agents.</p><div class="example">
    <p>Here is a snippet of a Web application that shows the progress
    of some automated task:</p>
    <pre>&lt;section&gt;
  &lt;h2&gt;Task Progress&lt;/h2&gt;
- &lt;p&gt;Progress: &lt;progress&gt;&lt;span id="p"&gt;0&lt;/span&gt;%&lt;/progress&gt;&lt;/p&gt;
+ &lt;p&gt;Progress: &lt;progress id="p" max=100&gt;&lt;span&gt;0&lt;/span&gt;%&lt;/progress&gt;&lt;/p&gt;
  &lt;script&gt;
   var progressBar = document.getElementById('p');
   function updateProgress(newValue) {
-    progressBar.textContent = newValue;
+    progressBar.value = newValue;
+    progressBar.getElementsByTagName('span').textContent = newValue;
   }
  &lt;/script&gt;
 &lt;/section&gt;</pre>
    <p>(The <code>updateProgress()</code> method in this example would
    be called by some other code on the page to update the actual
    progress bar as the task progressed.)</p>
-  </div><p><code><a href="#the-progress-element">progress</a></code> element must match one of the following
-  conditions.</p><ul><li>Neither the <code title="attr-progress-value"><a href="#attr-progress-value">value</a></code>
-   attribute nor the <code title="attr-progress-max"><a href="#attr-progress-max">max</a></code>
-   attribute is specified, and the element's contents
-   contain no numbers.</li>
-
-   <li>Neither the <code title="attr-progress-value"><a href="#attr-progress-value">value</a></code>
-   attribute nor the <code title="attr-progress-max"><a href="#attr-progress-max">max</a></code>
-   attribute is specified, and the element's contents contain one
-   number, optionally followed by a <a href="common-microsyntaxes.html#valid-denominator-punctuation-character" title="valid denominator
-   punctuation character">denominator punctuation
-   character</a>.</li>
-
-   <li>Neither the <code title="attr-progress-value"><a href="#attr-progress-value">value</a></code>
-   attribute nor the <code title="attr-progress-max"><a href="#attr-progress-max">max</a></code>
-   attribute is specified, and the element's contents contain two
-   numbers, neither followed by a <a href="common-microsyntaxes.html#valid-denominator-punctuation-character" title="valid denominator
-   punctuation character">denominator punctuation
-   character</a>.</li>
-
-   <li>The <code title="attr-progress-value"><a href="#attr-progress-value">value</a></code> attribute is
-   not specified but the <code title="attr-progress-max"><a href="#attr-progress-max">max</a></code>
-   attribute is specified, and the element's contents
-   contain one number that is not followed by a <a href="common-microsyntaxes.html#valid-denominator-punctuation-character" title="valid
-   denominator punctuation character">denominator punctuation
-   character</a>.</li>
-
-   <li>The <code title="attr-progress-value"><a href="#attr-progress-value">value</a></code> attribute is
-   specified but the <code title="attr-progress-max"><a href="#attr-progress-max">max</a></code>
-   attribute is not specified, and the element's contents contain no
-   numbers.</li>
-
-   <li>The <code title="attr-progress-value"><a href="#attr-progress-value">value</a></code> attribute
-   and the <code title="attr-progress-max"><a href="#attr-progress-max">max</a></code> attribute are
-   both specified. (The contents of the element are ignored.)</li>
-
-  </ul><!-- next three paragraphs are also in the <meter> section --><p>For the purposes of these requirements, a number is a sequence of
-  characters in the range U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE
-  (9), optionally including a single U+002E FULL STOP character (.) in
-  some position after the first digit and before the last digit,
-  interpreted as a base ten number. Numbers must be separated from
-  other numbers by at least one character that isn't any of the
-  aforementioned. In addition, if the element is required to contain
-  numbers, then the contents of the element must not contain any
-  U+002E FULL STOP characters (.) that aren't part of numbers.</p><p>A number if said to be followed by a <a href="common-microsyntaxes.html#valid-denominator-punctuation-character" title="valid
-  denominator punctuation character">denominator punctuation
-  character</a> if it is followed by zero or more
-  <a href="#white_space">White_Space</a> characters and a <a href="common-microsyntaxes.html#valid-denominator-punctuation-character">valid denominator
-  punctuation character</a>.</p><p>The contents of the element consist of the concatenation of
-  the <a href="infrastructure.html#text-node" title="text node">text nodes</a> of all the descendants
-  of the element, in <a href="infrastructure.html#tree-order">tree order</a>.</p><!-- previous three paragraphs are also in the <meter> section --><p>The <code title="attr-progress-value"><a href="#attr-progress-value">value</a></code> and <code title="attr-progress-max"><a href="#attr-progress-max">max</a></code> attributes, when present, must
+  </div><p>The <code title="attr-progress-value"><a href="#attr-progress-value">value</a></code> and <code title="attr-progress-max"><a href="#attr-progress-max">max</a></code> attributes, when present, must
   have values that are <a href="common-microsyntaxes.html#valid-floating-point-number" title="valid floating point number">valid
   floating point numbers</a>. The <code title="attr-progress-value"><a href="#attr-progress-value">value</a></code> attribute, if present, must
   have a value equal to or greater than zero, and less than or equal
   to the value of the <code title="attr-progress-max"><a href="#attr-progress-max">max</a></code>
-  attribute, if present, or 1.0, otherwise. If the <code title="attr-progress-value"><a href="#attr-progress-value">value</a></code> attribute is not present,
-  but the element's contents contain a number, then the value of the
-  first number in the element's contents must be less than or equal to
-  the value of the second number in the element's contents, if any, or
-  the <a href="common-microsyntaxes.html#values-associated-with-denominator-punctuation-characters" title="values associated with denominator punctuation
-  characters">value associated with the denominator punctuation
-  character</a> that follows the first number in the element's
-  contents, if any, or 1.0, otherwise. The <code title="attr-progress-max"><a href="#attr-progress-max">max</a></code> attribute, if present, must
+  attribute, if present, or 1.0, otherwise. The <code title="attr-progress-max"><a href="#attr-progress-max">max</a></code> attribute, if present, must
   have a value greater than zero.</p><p class="note">The <code><a href="#the-progress-element">progress</a></code> element is the wrong
   element to use for something that is just a gauge, as opposed to
   task progress. For instance, indicating disk space usage using
@@ -1605,128 +1549,38 @@
   "high" value  then this indicates that the higher the value, the
   better; if it's lower than the "low" mark then it indicates that
   lower values are better, and naturally if it is in between then it
-  indicates that neither high nor low values are good.</p><p>Authoring requirements</p><p>One of the following conditions, along with all the requirements
-  that are listed with that condition, must be met:</p><dl><dt>There are exactly two numbers in the contents of the element,
-   and the <code title="attr-meter-value"><a href="#attr-meter-value">value</a></code>, <code title="attr-meter-min"><a href="#attr-meter-min">min</a></code>, and <code title="attr-meter-max"><a href="#attr-meter-max">max</a></code> attributes are all omitted</dt>
-
-   <dd>
-
-    <p>If specified, the <code title="attr-meter-low"><a href="#attr-meter-low">low</a></code>,
-    <code title="attr-meter-high"><a href="#attr-meter-high">high</a></code>, and <code title="attr-meter-optimum"><a href="#attr-meter-optimum">optimum</a></code> attributes must have
-    values greater than or equal to zero and less than or equal to the
-    bigger of the two numbers in the contents of the element.</p>
-
-    <p>If both the <code title="attr-meter-low"><a href="#attr-meter-low">low</a></code> and <code title="attr-meter-high"><a href="#attr-meter-high">high</a></code> attributes are specified, then
-    the <code title="attr-meter-low"><a href="#attr-meter-low">low</a></code> attribute's value must
-    be less than or equal to the value of the <code title="attr-meter-high"><a href="#attr-meter-high">high</a></code> attribute.</p>
-
-    <p>The numbers in the contents of the element must not be followed
-    by a <a href="common-microsyntaxes.html#valid-denominator-punctuation-character" title="valid denominator punctuation
-    character">denominator punctuation character</a>.</p>
-
-   </dd>
-
-   <dt>There is exactly one number followed by a <a href="common-microsyntaxes.html#valid-denominator-punctuation-character" title="valid
-   denominator punctuation character">denominator punctuation
-   character</a> in the contents of the element, and the <code title="attr-meter-value"><a href="#attr-meter-value">value</a></code>, <code title="attr-meter-min"><a href="#attr-meter-min">min</a></code>, and <code title="attr-meter-max"><a href="#attr-meter-max">max</a></code> attributes are all omitted</dt>
-
-   <dd>
-
-    <p>If specified, the <code title="attr-meter-low"><a href="#attr-meter-low">low</a></code>,
-    <code title="attr-meter-high"><a href="#attr-meter-high">high</a></code>, and <code title="attr-meter-optimum"><a href="#attr-meter-optimum">optimum</a></code> attributes must have
-    values greater than or equal to zero and less than or equal to the
-    <a href="common-microsyntaxes.html#values-associated-with-denominator-punctuation-characters" title="values associated with denominator punctuation
-    characters">value associated with the denominator punctuation
-    character</a>.</p>
-
-    <p>If both the <code title="attr-meter-low"><a href="#attr-meter-low">low</a></code> and <code title="attr-meter-high"><a href="#attr-meter-high">high</a></code> attributes are specified, then
-    the <code title="attr-meter-low"><a href="#attr-meter-low">low</a></code> attribute's value must
-    be less than or equal to the value of the <code title="attr-meter-high"><a href="#attr-meter-high">high</a></code> attribute.</p>
-
-    <p>There must not be more than one number in the contents of the
-    element.</p>
-
-   </dd>
-
-   <dt>There is exactly one number in the contents of the element, and
-   the <code title="attr-meter-value"><a href="#attr-meter-value">value</a></code> attribute is
-   omitted</dt>
-
-   <dt>There are no numbers in the contents of the element, and the
-   <code title="attr-meter-value"><a href="#attr-meter-value">value</a></code> attribute is
-   specified</dt>
-
-   <dd>
-
-    <p>If the <code title="attr-meter-min"><a href="#attr-meter-min">min</a></code> attribute
-    attribute is specified, then the <var title="">minimum</var> is
-    that attribute's value; otherwise, it is 0.</p>
-
-    <p>If the <code title="attr-meter-max"><a href="#attr-meter-max">max</a></code> attribute
-    attribute is specified, then the <var title="">maximum</var> is
-    that attribute's value; otherwise, it is 1.</p>
-
-    <p>If the <code title="attr-meter-value"><a href="#attr-meter-value">value</a></code> attribute is
-    specified, then the <var title="">value</var> is that attribute's
-    number; otherwise, there is exactly one number in the contents of
-    the element, and the <var title="">value</var> is that number.</p>
-
-    <p>The following inequalities must hold, as applicable:</p>
-
-    <ul class="brief"><li><var title="">minimum</var> &#8804; <var title="">value</var> &#8804; <var title="">maximum</var></li>
-     <li><var title="">minimum</var> &#8804; <code title="attr-meter-low"><a href="#attr-meter-low">low</a></code> &#8804; <var title="">maximum</var> (if <code title="attr-meter-low"><a href="#attr-meter-low">low</a></code> is specified)</li>
-     <li><var title="">minimum</var> &#8804; <code title="attr-meter-high"><a href="#attr-meter-high">high</a></code> &#8804; <var title="">maximum</var> (if <code title="attr-meter-high"><a href="#attr-meter-high">high</a></code> is specified)</li>
-     <li><var title="">minimum</var> &#8804; <code title="attr-meter-optimum"><a href="#attr-meter-optimum">optimum</a></code> &#8804; <var title="">maximum</var> (if <code title="attr-meter-optimum"><a href="#attr-meter-optimum">optimum</a></code> is specified)</li>
-    </ul><p>If both the <code title="attr-meter-low"><a href="#attr-meter-low">low</a></code> and <code title="attr-meter-high"><a href="#attr-meter-high">high</a></code> attributes are specified, then
-    the <code title="attr-meter-low"><a href="#attr-meter-low">low</a></code> attribute's value must
-    be less than or equal to the value of the <code title="attr-meter-high"><a href="#attr-meter-high">high</a></code> attribute.</p>
-
-    <p>If the <code title="attr-meter-value"><a href="#attr-meter-value">value</a></code> attribute is
-    not specified, the number in the contents of the element must not
-    be followed by a <a href="common-microsyntaxes.html#valid-denominator-punctuation-character" title="valid denominator punctuation
-    character">denominator punctuation character</a>. (Otherwise,
-    there is no restriction on what numbers can be in the contents of
-    the element.)</p>
-
-   </dd>
-
-  </dl><!-- next three paragraphs are also in the <progress> section --><p>For the purposes of these requirements, a number is a sequence of
-  characters in the range U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE
-  (9), optionally including a single U+002E FULL STOP character (.) in
-  some position after the first digit and before the last digit,
-  interpreted as a base ten number. Numbers must be separated from
-  other numbers by at least one character that isn't any of the
-  aforementioned. In addition, if the element is required to contain
-  numbers, then the contents of the element must not contain any
-  U+002E FULL STOP characters (.) that aren't part of numbers.</p><p>A number if said to be followed by a <a href="common-microsyntaxes.html#valid-denominator-punctuation-character" title="valid
-  denominator punctuation character">denominator punctuation
-  character</a> if it is followed by zero or more
-  <a href="#white_space">White_Space</a> characters and a <a href="common-microsyntaxes.html#valid-denominator-punctuation-character">valid denominator
-  punctuation character</a>.</p><p>The contents of the element consist of the concatenation of
-  the <a href="infrastructure.html#text-node" title="text node">text nodes</a> of all the descendants
-  of the element, in <a href="infrastructure.html#tree-order">tree order</a>.</p><!-- previous three paragraphs are also in the <progress> section --><p>The <code title="attr-meter-value"><a href="#attr-meter-value">value</a></code>, <code title="attr-meter-min"><a href="#attr-meter-min">min</a></code>, <code title="attr-meter-low"><a href="#attr-meter-low">low</a></code>, <code title="attr-meter-high"><a href="#attr-meter-high">high</a></code>, <code title="attr-meter-max"><a href="#attr-meter-max">max</a></code>, and <code title="attr-meter-optimum"><a href="#attr-meter-optimum">optimum</a></code> attributes, when present,
+  indicates that neither high nor low values are good.</p><p>Authoring requirements<code title="attr-meter-value"><a href="#attr-meter-value">value</a></code> attribute must be
+  specified. The <code title="attr-meter-value"><a href="#attr-meter-value">value</a></code>, <code title="attr-meter-min"><a href="#attr-meter-min">min</a></code>, <code title="attr-meter-low"><a href="#attr-meter-low">low</a></code>, <code title="attr-meter-high"><a href="#attr-meter-high">high</a></code>, <code title="attr-meter-max"><a href="#attr-meter-max">max</a></code>, and <code title="attr-meter-optimum"><a href="#attr-meter-optimum">optimum</a></code> attributes, when present,
   must have values that are <a href="common-microsyntaxes.html#valid-floating-point-number" title="valid floating point
-  number">valid floating point numbers</a>.</p><p class="note">If no minimum or maximum is specified, then the
+  number">valid floating point numbers</a>.</p><p>In addition, the attributes' values are further constrained:</p><p>Let <var title="">value</var> be the <code title="attr-meter-value"><a href="#attr-meter-value">value</a></code> attribute's number.</p><p>If the <code title="attr-meter-min"><a href="#attr-meter-min">min</a></code> attribute
+  attribute is specified, then let <var title="">minimum</var> be that
+  attribute's value; otherwise, let it be zero.</p><p>If the <code title="attr-meter-max"><a href="#attr-meter-max">max</a></code> attribute
+  attribute is specified, then let <var title="">maximum</var> be that
+  attribute's value; otherwise, let it be 1.0.</p><p>The following inequalities must hold, as applicable:</p><ul class="brief"><li><var title="">minimum</var> &#8804; <var title="">value</var> &#8804; <var title="">maximum</var></li>
+   <li><var title="">minimum</var> &#8804; <code title="attr-meter-low"><a href="#attr-meter-low">low</a></code> &#8804; <var title="">maximum</var> (if <code title="attr-meter-low"><a href="#attr-meter-low">low</a></code> is specified)</li>
+   <li><var title="">minimum</var> &#8804; <code title="attr-meter-high"><a href="#attr-meter-high">high</a></code> &#8804; <var title="">maximum</var> (if <code title="attr-meter-high"><a href="#attr-meter-high">high</a></code> is specified)</li>
+   <li><var title="">minimum</var> &#8804; <code title="attr-meter-optimum"><a href="#attr-meter-optimum">optimum</a></code> &#8804; <var title="">maximum</var> (if <code title="attr-meter-optimum"><a href="#attr-meter-optimum">optimum</a></code> is specified)</li>
+  </ul><p>If both the <code title="attr-meter-low"><a href="#attr-meter-low">low</a></code> and <code title="attr-meter-high"><a href="#attr-meter-high">high</a></code> attributes are specified, then
+  the <code title="attr-meter-low"><a href="#attr-meter-low">low</a></code> attribute's value must
+  be less than or equal to the value of the <code title="attr-meter-high"><a href="#attr-meter-high">high</a></code> attribute.</p><p class="note">If no minimum or maximum is specified, then the
   range is assumed to be 0..1, and the value thus has to be within
-  that range.</p><div class="example">
+  that range.</p><p>Authors are encouraged to include a textual representation of the
+  gauge's state in the element's contents, for users of user agents
+  that do not support the <code><a href="#the-meter-element">meter</a></code> element.</p><div class="example">
 
-   <p>The following examples all represent a measurement of three
-   quarters (of the maximum of whatever is being measured):</p>
+   <p>The following examples show three gauges that would all be
+   three-quarters full:</p>
 
-   <pre>&lt;meter&gt;75%&lt;/meter&gt;
-&lt;meter&gt;750&#8240;&lt;/meter&gt;
-&lt;meter&gt;3/4&lt;/meter&gt;
-&lt;meter&gt;6 blocks used (out of 8 total)&lt;/meter&gt;
-&lt;meter&gt;max: 100; current: 75&lt;/meter&gt;
-&lt;meter&gt;&lt;object data="graph75.png"&gt;0.75&lt;/object&gt;&lt;/meter&gt; &lt;!-- using <span class="bad">&lt;img alt="0.75" ...&gt;</span> wouldn't work; the alt would be ignored --&gt;
-&lt;meter min="0" max="100" value="75"&gt;&lt;/meter&gt;</pre>
+   <pre>Storage space usage: &lt;meter value=6 max=8&gt;6 blocks used (out of 8 total)&lt;/meter&gt;
+Voter turnout: &lt;meter value=0.75&gt;&lt;img alt="75%" src="graph75.png"&gt;&lt;/meter&gt;
+Tickets sold: &lt;meter min="0" max="100" value="75"&gt;&lt;/meter&gt;</pre>
 
    <p>The following example is incorrect use of the element, because
    it doesn't give a range (and since the default maximum is 1, both
    of the gauges would end up looking maxed out):</p>
 
-   <pre class="bad">&lt;p&gt;The grapefruit pie had a radius of &lt;meter&gt;12cm&lt;/meter&gt;
-and a height of &lt;meter&gt;2cm&lt;/meter&gt;.&lt;/p&gt; &lt;!-- <strong>BAD!</strong> --&gt;</pre>
+   <pre class="bad">&lt;p&gt;The grapefruit pie had a radius of &lt;meter value=12&gt;12cm&lt;/meter&gt;
+and a height of &lt;meter value=2&gt;2cm&lt;/meter&gt;.&lt;/p&gt; &lt;!-- <strong>BAD!</strong> --&gt;</pre>
 
    <p>Instead, one would either not include the meter element, or use
    the meter element with a defined range to give the dimensions in
@@ -1788,9 +1642,7 @@
   </div><div class="example">
 
    <p>The following example shows how a gauge could fall back to
-   localized or pretty-printed text. The attributes have to be used in
-   this case, since the localized or pretty-printed numbers might not
-   match the simple expected syntax.</p>
+   localized or pretty-printed text.</p>
 
    <pre>&lt;p&gt;Disk usage: &lt;meter min=0 value=170261928 max=233257824&gt;170&#8201;261&#8201;928 bytes used
 out of 233&#8201;257&#8201;824 bytes available&lt;/meter&gt;&lt;/p&gt;</pre>
@@ -2046,11 +1898,11 @@
 
     </td></tr><tr><td><code><a href="#the-progress-element">progress</a></code>
      </td><td>Progress bar
-     </td><td><pre class="example">Copying: <strong>&lt;progress&gt;75%&lt;/progress&gt;</strong></pre>
+     </td><td><pre class="example">Copying: <strong>&lt;progress value=0.75&gt;75%&lt;/progress&gt;</strong></pre>
 
     </td></tr><tr><td><code><a href="#the-meter-element">meter</a></code>
      </td><td>Gauge
-     </td><td><pre class="example">Disk space remaining: <strong>&lt;meter&gt;75%&lt;meter&gt;</strong></pre>
+     </td><td><pre class="example">Disk space remaining: <strong>&lt;meter value=0.75&gt;75%&lt;meter&gt;</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

Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/Overview.html,v
retrieving revision 1.558
retrieving revision 1.559
diff -u -d -r1.558 -r1.559
--- Overview.html	4 Jan 2010 11:37:20 -0000	1.558
+++ Overview.html	4 Jan 2010 23:47:18 -0000	1.559
@@ -281,7 +281,7 @@
    </dl><p>This specification is available in the following formats: 
     <a href="spec.html">single page HTML</a>,
     <a href="Overview.html">multipage HTML</a>.
-This is revision 1.3557.
+This is revision 1.3558.
    </p>
    <p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
    &#169; 2009 <a href="http://www.w3.org/"><abbr title="World Wide
@@ -401,8 +401,7 @@
       <ol><li><a href="common-microsyntaxes.html#non-negative-integers"><span class="secno">2.4.3.1 </span>Non-negative integers</a></li>
        <li><a href="common-microsyntaxes.html#signed-integers"><span class="secno">2.4.3.2 </span>Signed integers</a></li>
        <li><a href="common-microsyntaxes.html#real-numbers"><span class="secno">2.4.3.3 </span>Real numbers</a></li>
-       <li><a href="common-microsyntaxes.html#ratios"><span class="secno">2.4.3.4 </span>Ratios</a></li>
-       <li><a href="common-microsyntaxes.html#lists-of-integers"><span class="secno">2.4.3.5 </span>Lists of integers</a></li></ol></li>
+       <li><a href="common-microsyntaxes.html#lists-of-integers"><span class="secno">2.4.3.4 </span>Lists of integers</a></li></ol></li>
      <li><a href="common-microsyntaxes.html#dates-and-times"><span class="secno">2.4.4 </span>Dates and times</a>
       <ol><li><a href="common-microsyntaxes.html#months"><span class="secno">2.4.4.1 </span>Months</a></li>
        <li><a href="common-microsyntaxes.html#dates"><span class="secno">2.4.4.2 </span>Dates</a></li>

Index: fragment-links.js
===================================================================
RCS file: /sources/public/html5/spec-author-view/fragment-links.js,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -d -r1.2 -r1.3
--- fragment-links.js	1 Jan 2010 04:47:29 -0000	1.2
+++ fragment-links.js	4 Jan 2010 23:47:18 -0000	1.3
@@ -1,4 +1,4 @@
-var fragment_links = { 'refsRFC1557':'references','attr-meter-high':'text-level-semantics','refsRFC1554':'references','dom-opener':'browsers','ports-and-garbage-collection':'comms','attr-label-for':'forms','htmlcommandelement':'interactive-elements','the-history-interface':'history','refsXHR':'references','attr-fs-method-delete-keyword':'association-of-controls-and-forms','htmlfieldsetelement':'forms','the-root-element':'semantics','command-facet-type':'commands','valid-non-negative-integer':'common-microsyntaxes','attr-fs-enctype-urlencoded':'association-of-controls-and-forms','activation':'editing','the-br-element':'grouping-content','case-sensitivity-and-string-comparison':'infrastructure','command-redo':'dnd','attr-meter-value':'text-level-semantics','dom-style-disabled':'semantics','attr-media-src':'video','concept-facet':'commands','hierarchy_request_err':'urls','attr-script-async':'scripting-1','a-graphical-representation-of-some-of-the-surrounding-text':'embedded-content-1','math':'the-map-element''refsIANAPERMHEADERS':'references','attr-br-clear':'obsolete','attr-iframe-longdesc':'obsolete','attr-input-usemap':'obsolete','posting-messages':'comms','attr-meta-http-equiv-content-language':'semantics','the-maxlength-attribute':'common-input-element-attributes','the-cite-element':'text-level-semantics','attr-button-type':'the-button-element','attr-input-type-button-keyword':'the-input-element','refsIEEE754':'references','attr-hr-align':'obsolete','custom-handlers':'timers','non-conforming-features':'obsolete','attr-textarea-wrap-soft':'the-button-element','concept-fe-disabled':'association-of-controls-and-forms','dom-feature-strings':'urls','root-element':'infrastructure','path':'the-canvas-element','attr-link-href':'semantics','spelling-and-grammar-checking':'editing','htmltitleelement':'semantics','canvaspattern':'the-canvas-element','character-references':'syntax','command-bold':'dnd','attr-hyperlink-media':'links','dom-context-2d-textbaseline-top':'the-canvas-element','attr-object-align':'obsolete',syntax-start-tag':'syntax','link-type-index':'links','refsHTTP':'references','strike':'obsolete','browsing-the-web':'history','encoding-microdata':'microdata','refsDOMRANGE':'references','attr-tr-bgcolor':'obsolete','the-img-element':'embedded-content-1','mq':'common-microsyntaxes','url-property-elements':'microdata','exceptions':'urls','scripting':'browsers','valid-browsing-context-name-or-keyword':'browsers','attr-meta-http-equiv-refresh':'semantics','the-dfn-element':'text-level-semantics','times':'common-microsyntaxes','attr-hr-noshade':'obsolete','attr-form-autocomplete-off-state':'forms','syntax-attributes':'syntax','canvas-context-2d':'the-canvas-element','command-facet-checkedstate':'commands','refsRFC3279':'references','attr-p-align':'obsolete','concept-datetime-digit':'common-microsyntaxes','edits-and-paragraphs':'edits','typographic-conventions':'introduction','attr-tdth-abbr':'obsolete','syntax-comments':'syntax','unknown-images':'embedded-content-1','attr-pre-width':'obsolete','the-details-elemnt':'interactive-elements','timers':'timers','meta-description':'semantics','valid-simple-color':'common-microsyntaxes','quota_exceeded_err':'urls','the-div-element':'grouping-content','the-session-history-of-browsing-contexts':'history','refsDOMVIEWS':'references','media-element-attributes':'video','element-level-focus-apis':'editing','htmlmenuelement':'interactive-elements','attributes-0':'index','scripting-1':'scripting-1','scripting-0':'infrastructure','attr-input-alt':'number-state','writing':'syntax','edits':'edits','relaxing-the-same-origin-restriction':'browsers','history-0':'history','history-1':'introduction','weeks':'common-microsyntaxes','valid-date-string-in-content-with-optional-time':'common-microsyntaxes','attr-textarea-cols':'the-button-element','attr-fieldset-disabled':'forms','htmldetailselement':'interactive-elements','shadows':'the-canvas-element','event-media-progress':'video','domtokenlist-0':'urls','attr-base-href':'semantics','command-insertorderedlist':'dnd','command-unlink':'dnd',the-blockquote-element':'grouping-content','attr-object-type':'the-iframe-element','dom-media-have_enough_data':'video','attr-input-type-email-keyword':'the-input-element','attr-textarea-readonly':'the-button-element','typed-items':'microdata','serialize_err':'urls','client-identification':'timers','attr-input-type-color-keyword':'the-input-element','concept-command':'commands','attr-ol-type':'obsolete','attr-fs-method-post-keyword':'association-of-controls-and-forms','htmlhrelement':'grouping-content','rb':'obsolete','standard-metadata-names':'semantics','command-insertparagraph':'dnd','attr-meta-http-equiv-default-style':'semantics','message-channels':'comms','htmltextareaelement':'the-button-element','default-media':'semantics','attr-itemid':'microdata','refsRFC3548':'references','no_modification_allowed_err':'urls','refsWEBLINK':'references','refsRFC2388':'references','refsPPUTF8':'references','attr-tdth-char':'obsolete','valid-e-mail-address-list':'states-of-the-type-attribute','r1':'tabular-data','r2''tabular-data','attr-fe-maxlength':'association-of-controls-and-forms','refsRFC3490':'references','sequential-focus-navigation':'editing','attr-fs-method-delete':'association-of-controls-and-forms','rank':'sections','network-states':'video','the-input-element':'the-input-element','the-footer-element':'sections','navigator':'timers','link-type-help':'links','set-of-comma-separated-tokens':'common-microsyntaxes','refsBECSS':'references','link-type-author':'links','attr-media-controls':'video','htmlmetaelement':'semantics','attr-script-charset':'scripting-1','htmlcollection-0':'urls','dom-location-hash':'history','dom-media-have_nothing':'video','attr-fe-autofocus':'association-of-controls-and-forms','in-a-document':'infrastructure','relevant-type':'microdata','table-example-1':'tabular-data','dynamic-markup-insertion':'apis-in-html-documents','classes':'elements','the-multiple-attribute':'common-input-element-attributes','syntax-ambiguous-ampersand':'syntax','top-level-browsing-context':'browsers','simple-colr':'common-microsyntaxes','attr-button-value':'the-button-element','navigatorabilities':'timers','event-media-ratechange':'video','link-type-nofollow':'links','event-drag':'dnd','refsRFC1345':'references','inuse_attribute_err':'urls','attr-object-declare':'obsolete','refsWIN31J':'references','the-title-element':'dom','event-definitions':'comms','radio-button-state':'number-state','acknowledgements':'acknowledgements','htmlmapelement':'the-map-element','dom':'dom','the-mark-element':'text-level-semantics','concept-fs-target':'association-of-controls-and-forms','not_found_err':'urls','concept-datetime-local':'common-microsyntaxes','syntax':'syntax','colors':'common-microsyntaxes','outerhtml':'apis-in-html-documents','propertyvaluearray':'urls','refsPROGRESS':'references','htmloptionscollection':'urls','radionodelist':'urls','domtokenlist':'urls','preferred-mime-name':'infrastructure','htmlstyleelement':'semantics','attr-th-scope-colgroup':'tabular-data','colors-and-styles':'the-canvas-element','attr-fs-enctyp':'association-of-controls-and-forms','attr-textarea-wrap-hard':'the-button-element','the-sub-and-sup-elements':'text-level-semantics','event-media-canplay':'video','refsFILEAPI':'references','concept-item':'microdata','the-col-element':'tabular-data','the-placeholder-attribute':'common-input-element-attributes','refsDOMCORE':'references','kinds-of-content':'content-models','the-td-element':'tabular-data','accessing-other-browsing-contexts':'browsers','creator-browsing-context':'browsers','event-dragstart':'dnd','event-media-waiting':'video','attr-itemref':'microdata','attr-tdth-headers':'tabular-data','attr-textarea-wrap-soft-state':'the-button-element','active-document':'browsers','article-example':'sections','hidden-state':'states-of-the-type-attribute','attr-li-value':'grouping-content','attr-command-type-keyword-checkbox':'interactive-elements','navigatoronline':'timers','refsORIGIN':'references','attr-button-type-button':'the-button-element','concept-option-value':'the-button-element','attr-head-profie':'obsolete','attr-tdth-charoff':'obsolete','form-associated-element':'forms','media-elements':'video','attr-tr-align':'obsolete','urls':'urls','mediaerror':'video','concept-section':'sections','attr-meter-optimum':'text-level-semantics','refsRFC3023':'references','attr-area-shape-rect':'the-map-element','radio-button-group':'number-state','attr-input-min':'common-input-element-attributes','e-mail-state':'states-of-the-type-attribute','gcop-lighter':'the-canvas-element','htmlheadelement':'semantics','attr-input-type-url-keyword':'the-input-element','htmlembedelement':'the-iframe-element','character-encoding-declaration':'semantics','attr-keygen-challenge':'the-button-element','htmlpropertiescollection':'urls','date-state':'states-of-the-type-attribute','link-type-tag':'links','attr-div-align':'obsolete','category-reset':'forms','the-dragevent-and-datatransfer-interfaces':'dnd','attr-input-type-text-keyword':'the-input-element','the-source-element':'video','attr-th-scope-col':'tabular-data','browsing-contex-name':'browsers','n':'tabular-data','attr-area-shape-circle':'the-map-element','element-definitions':'elements','items':'microdata','attr-fs-method-get':'association-of-controls-and-forms','command-delete':'dnd','concept-appcache-manifest-explicit':'offline','link-type-prev':'links','attr-fae-form':'association-of-controls-and-forms','attr-form-accept-charset':'forms','event-appcache-cached':'offline','attr-fs-formmethod':'association-of-controls-and-forms','xml-mime-type':'infrastructure','absolute-url':'urls','htmlbrelement':'grouping-content','attr-img-hspace':'obsolete','pixel-manipulation':'the-canvas-element','a-link-or-button-containing-nothing-but-the-image':'embedded-content-1','attr-img-border':'obsolete','htmlkeygenelement':'the-button-element','the-body-element':'dom','heading-content':'content-models','attr-html-manifest':'semantics','htmliframeelement':'the-iframe-element','the-output-element':'the-button-element','attr-input-type-image-keyword':'the-input-element','attr-tr-charoff':'obsolete,'attr-input-type-time-keyword':'the-input-element','attr-ol-compact':'obsolete','htmltimeelement':'text-level-semantics','the-address-element':'sections','item-type':'microdata','validation_err':'urls','category-label':'forms','collections':'urls','week-state':'states-of-the-type-attribute','unordered-set-of-unique-space-separated-tokens':'common-microsyntaxes','scriptingLanguages':'scripting-1','event-dragover':'dnd','attr-hx-align':'obsolete','valid-date-string-with-optional-time':'common-microsyntaxes','event-media-loadeddata':'video','background':'introduction','htmlobjectelement':'the-iframe-element','scrolling-elements-into-view':'editing','network_err':'urls','refsRFC4281':'references','security':'dom','refsRFC4329':'references','domstringmap-0':'urls','paragraphs':'content-models','the-ins-element':'edits','attr-embed-type':'the-iframe-element','manually-releasing-the-storage-mutex':'timers','comments':'syntax','attr-command-type-state-checkbox':'interactive-elements','refsATAG':'references','neste-browsing-context':'browsers','phrasing-content':'content-models','dnd':'dnd','attr-meter-min':'text-level-semantics','tag-clouds':'commands','event-media-seeking':'video','attr-command-disabled':'interactive-elements','event-dragenter':'dnd','months':'common-microsyntaxes','attr-script-type':'scripting-1','creator-document':'browsers','refsMIMESNIFF':'references','htmltableelement':'tabular-data','reflecting-content-attributes-in-idl-attributes':'urls','refsATOM':'references','attr-param-type':'obsolete','attr-button-type-submit':'the-button-element','remove-an-element-from-a-document':'infrastructure','the-readonly-attribute':'common-input-element-attributes','htmlscriptelement':'scripting-1','unquoted':'syntax','isindex-0':'obsolete','refsRFC1468':'references','attr-area-nohref':'obsolete','index_size_err':'urls','messageport':'comms','attr-fs-formenctype':'association-of-controls-and-forms','introduction-5':'comms','cdata-sections':'syntax','event-media-play':'video','command-facet-hiddenstate':'command','refsSVG':'references','introduction-2':'browsers','dom-media-network_no_source':'video','command-insertunorderedlist':'dnd','the-directionality':'elements','attr-select-size':'the-button-element','dom-mediaerror-media_err_aborted':'video','the-location-interface':'history','attr-q-cite':'text-level-semantics','willful-violation':'introduction','meta-generator':'semantics','attr-spellcheck':'editing','local-date-and-time-state':'states-of-the-type-attribute','the-canvas-state':'the-canvas-element','attr-a-charset':'obsolete','concept-datetime':'common-microsyntaxes','html-namespace':'infrastructure','a-group-of-images-that-form-a-single-larger-picture-with-links':'embedded-content-1','navigating-nested-browsing-contexts-in-the-dom':'browsers','link-type-sidebar':'links','attr-meta-content':'semantics','the-accesskey-attribute':'editing','command-italic':'dnd','focus':'editing','attr-caption-align':'obsolete','attr-textarea-placeholder':'the-button-element','sequential-link-types':'links','refsRFC1034':'reerences','attr-time-pubdate':'text-level-semantics','local-dates-and-times':'common-microsyntaxes','htmlselectelement':'the-button-element','valid-media-query':'common-microsyntaxes','beforeunloadevent':'history','command-undo':'dnd','dir':'obsolete','timeranges':'video','attr-hyperlink-href':'links','input-type-attr-summary':'the-input-element','obsolete':'obsolete','number-state':'number-state','event-media-playing':'video','secondary-browsing-contexts':'browsers','dom-media-have_current_data':'video','global-dates-and-times':'common-microsyntaxes','the-pre-element':'grouping-content','concept-submit-button':'forms','command-unselect':'dnd','refsSHIFTJIS':'references','htmldocument':'dom','concept-button':'forms','refsWEBADDRESSES':'references','attr-param-value':'the-iframe-element','refsECMA262':'references','command-selectall':'dnd','the-rt-element':'text-level-semantics','resource-metadata-management':'dom','link-type-license':'links','named-access-on-the-window-object':'browsers','attr-command-type-kyword-radio':'interactive-elements','sectioning-content':'content-models','syntax-tag-name':'syntax','set-of-space-separated-tokens':'common-microsyntaxes','browser-interface-elements':'browsers','canvaspixelarray':'the-canvas-element','iana':'iana','the-id-attribute':'elements','style-default-media':'semantics','attr-hr-size':'obsolete','htmlparagraphelement':'grouping-content','not_supported_err':'urls','charset512':'semantics','refsRFC2483':'references','messageevent':'comms','support-global-identifiers-for-items':'microdata','security_err':'urls','event-dragleave':'dnd','attr-object-standby':'obsolete','attr-mod-datetime':'edits','the-noscript-element':'scripting-1','attr-input-type-range-keyword':'the-input-element','live':'infrastructure','scope':'introduction','attr-input-readonly':'common-input-element-attributes','attr-area-shape-keyword-circle':'the-map-element','attr-tabindex':'editing','refsPSL':'references','printing':'timers','values':'microdata','attr-link-media':'semantics','syntax-attributevalue':'syntax','xml-compatible':'infrastructure','htmlbuttonelement':'the-button-element','attr-fs-novalidate':'association-of-controls-and-forms','attr-input-type-reset-keyword':'the-input-element','attr-optgroup-label':'the-button-element','dom-context-2d-textbaseline-ideographic':'the-canvas-element','context-menus':'interactive-elements','the-param-element':'the-iframe-element','charset':'semantics','ping':'links','auxiliary-browsing-context':'browsers','xhtml':'the-xhtml-syntax','the-option-element':'the-button-element','common-idioms-without-dedicated-elements':'commands','attr-script-src':'scripting-1','htmlareaelement':'the-map-element','refsCOOKIES':'references','refsPORTERDUFF':'references','attr-hyperlink-type':'links','appcacheevents':'offline','outline':'sections','attr-select-multiple':'the-button-element','attr-iframe-sandbox':'the-iframe-element','dom-location-pathname':'history','the-span-element':'text-level-semantics','definitions':'association-of-controls-and-forms','the-form-element':'orms','the-keygen-element':'the-button-element','refsRFC2313':'references','a-quick-introduction-to-html':'introduction','htmlquoteelement':'grouping-content','attr-input-autocomplete':'common-input-element-attributes','link-type-up':'links','user-prompts':'timers','forms':'forms','closing-the-input-stream':'apis-in-html-documents','window':'browsers','listing':'obsolete','attr-th-scope':'tabular-data','refsRFC1842':'references','attr-object-data':'the-iframe-element','conversations':'commands','attr-tdth-height':'obsolete','attr-table-align':'obsolete','refsWCAG':'references','category-listed':'forms','refsUTF8DET':'references','attr-hyperlink-usemap':'the-map-element','embedded-content-1':'embedded-content-1','embedded-content-0':'content-models','other-metadata-names':'semantics','the-required-attribute':'common-input-element-attributes','authors-using-xhtml':'infrastructure','manifests':'offline','dom-domhtmlimplementation-createhtmldocument':'dom','attr-command-radiogroup':'interactive-elements','canva':'the-canvas-element','command-formatblock':'dnd','attr-dl-compact':'obsolete','htmlhtmlelement':'semantics','htmlunknownelement':'elements','sectioning-root':'sections','the-size-attribute':'common-input-element-attributes','htmllinkelement':'semantics','heading-content-0':'content-models','language':'elements','text-html':'iana','copy-and-paste':'dnd','valid-list-of-integers':'common-microsyntaxes','attr-hr-width':'obsolete','the-style-attribute':'elements','image-maps':'the-map-element','the-document-s-current-address':'dom','blink':'obsolete','elements-0':'syntax','elements-1':'index','doctype-legacy-string':'syntax','error-codes':'video','the-q-element':'text-level-semantics','event-media-emptied':'video','complex-shapes-paths':'the-canvas-element','syntax-charref':'syntax','attr-input-type-radio-keyword':'the-input-element','the-figure-element':'embedded-content-1','semantics':'semantics','attr-tbody-valign':'obsolete','concept-time':'common-microsyntaxes','syntax-cdata':'syntax','htmltablecaptioneleent':'tabular-data','common-input-element-attributes':'common-input-element-attributes','refsRFC2237':'references','dates-and-times':'common-microsyntaxes','refsRFC5280':'references','gcop-copy':'the-canvas-element','optional-tags':'syntax','attr-link-sizes':'links','refsGRAPHICS':'references','the-document-s-address':'dom','canvasgradient':'the-canvas-element','attr-th-scope-row':'tabular-data','command-subscript':'dnd','type_mismatch_err':'urls','refsOPENSEARCH':'references','attr-form-autocomplete':'forms','property-names':'microdata','attr-fe-disabled':'association-of-controls-and-forms','general-guidelines':'embedded-content-1','the-bdo-element':'text-level-semantics','the-article-element':'sections','apis-in-html-documents':'apis-in-html-documents','attr-input-checked':'the-input-element','spacer':'obsolete','the-aside-element':'sections','a-sample-manifest':'offline','dom-mediaerror-media_err_src_not_supported':'video','attr-contenteditable':'editing','htmlheadingelement':'sections','xml':'infrastrucure','syntax_err':'urls','link-type-last':'links','refsWHATWGWIKI':'references','the-min-and-max-attributes':'common-input-element-attributes','category-submit':'forms','attr-area-shape-default':'the-map-element','xmp':'obsolete','attributes-common-to-form-controls':'association-of-controls-and-forms','image-map':'the-map-element','attr-output-for':'the-button-element','htmllegendelement':'forms','refsRFC3986':'references','refsRFC3987':'references','htmlspanelement':'text-level-semantics','textmetrics':'the-canvas-element','attr-iframe-align':'obsolete','command-insertlinebreak':'dnd','attr-map-name':'the-map-element','attributes-common-to-td-and-th-elements':'tabular-data','document.writeln':'apis-in-html-documents','gcop-source-atop':'the-canvas-element','attr-source-src':'video','the-var-element':'text-level-semantics','attr-script-language':'obsolete','the-undomanagerevent-interface-and-the-undo-and-redo-events':'dnd','refsGREGORIAN':'references','the-header-element':'sections','attr-option-selected':'he-button-element','infrastructure':'infrastructure','form-submission':'association-of-controls-and-forms','the-th-element':'tabular-data','svg-0':'the-map-element','dom-appcache-updateready':'offline','joint-session-history':'history','dates':'common-microsyntaxes','simple-shapes-rectangles':'the-canvas-element','s':'obsolete','attr-menu-compact':'obsolete','insert-an-element-into-a-document':'infrastructure','overview':'microdata','the-p-element':'grouping-content','concept-appcache-manifest-fallback':'offline','boolean-attribute':'common-microsyntaxes','interfaces-for-url-manipulation':'urls','attr-iframe-name':'the-iframe-element','aborting-a-document-load':'history','annotations-for-assistive-technology-products-aria':'content-models','tabular-data':'tabular-data','real-numbers':'common-microsyntaxes','making-entire-documents-editable':'editing','documentSelection':'editing','htmlbaseelement':'semantics','attr-media-loop':'video','the-area-element':'the-map-element','link-type-bookmark':'links','concep-input-required':'common-input-element-attributes','attr-keygen-keytype':'the-button-element','prefix-match':'infrastructure','refsTIS620':'references','image-button-state':'number-state','time-ranges':'video','plugin':'infrastructure','attr-area-shape-keyword-default':'the-map-element','refsWIN1254':'references','dom-document-open':'apis-in-html-documents','htmlbodyelement':'sections','boolean-attributes':'common-microsyntaxes','refsARIAIMPL':'references','domstring_size_err':'urls','refsCORS':'references','the-dt-element':'grouping-content','events':'browsers','table-descriptions':'tabular-data','gcop-destination-in':'the-canvas-element','the-map-element':'the-map-element','dom-canvas-getcontext':'the-canvas-element','the-progress-element':'text-level-semantics','the-window-object':'browsers','editing-apis':'dnd','the-object-element':'the-iframe-element','refsUTF7':'references','opener-browsing-context':'browsers','the-rp-element':'text-level-semantics','refsRFC2045':'references','refsRFC2046':'references,'refsBIDI':'references','attr-command-checked':'interactive-elements','refsSRGB':'references','the-li-element':'grouping-content','design-notes':'introduction','attr-hyperlink-hreflang':'links','element-restrictions':'syntax','refsNPAPI':'references','compliance-with-other-specifications':'introduction','the-thead-element':'tabular-data','parse_err':'urls','the-del-element':'edits','event-media-loadstart':'video','noembed':'obsolete','htmltablecolelement':'tabular-data','browsing-context':'browsers','refsWIN874':'references','audience':'introduction','color-state':'number-state','the-dl-element':'grouping-content','rel-sidebar-hyperlink':'links','x-that':'introduction','lists-of-integers':'common-microsyntaxes','external-resource-link':'semantics','refsGBK':'references','attr-base-target':'semantics','values-associated-with-denominator-punctuation-characters':'common-microsyntaxes','images':'the-canvas-element','refsJSON':'references','attributes-common-to-ins-and-del-elements':'edits','attr-table-summary''tabular-data','date-and-time-state':'states-of-the-type-attribute','concept-appcache-manifest-network':'offline','ordered-set-of-unique-space-separated-tokens':'common-microsyntaxes','attr-fs-method-post':'association-of-controls-and-forms','ratios':'common-microsyntaxes','dom-media-network_empty':'video','attr-object-code':'obsolete','title-on-style':'semantics','attr-link-charset':'obsolete','browsing-context-nested-through':'browsers','dom-trees':'infrastructure','the-command':'interactive-elements','drawing-state':'the-canvas-element','dom-mediaerror-media_err_decode':'video','parent-browsing-context':'browsers','references':'references','refsWEBIDL':'references','invalid_access_err':'urls','attr-optgroup-disabled':'the-button-element','event-media-suspend':'video','attr-command-type-state-command':'interactive-elements','event-media-stalled':'video','attr-input-type-month-keyword':'the-input-element','the-title-attribute':'elements','attr-source-type':'video','styling':'semantics','attr-input-autocompete-on-state':'common-input-element-attributes','inline-documentation-for-external-scripts':'scripting-1','the-code-element':'text-level-semantics','toolbar-state':'interactive-elements','htmlimageelement':'embedded-content-1','command-inserttext':'dnd','attr-img-align':'obsolete','attr-fs-formnovalidate':'association-of-controls-and-forms','syntax-text':'syntax','the-legend-element':'forms','attr-command-title':'interactive-elements','mathml':'the-map-element','undomanagerevent':'dnd','popstateevent':'history','attr-iframe-scrolling':'obsolete','link-type-noreferrer':'links','checkbox-state':'number-state','attr-fs-method-put':'association-of-controls-and-forms','the-properties-of-an-item':'microdata','the-time-element':'text-level-semantics','concept-id':'elements','obsolete-but-conforming-features':'obsolete','link-type-alternate':'links','refsXMLBASE':'references','an-image-not-intended-for-the-user':'embedded-content-1','dom-context-2d-textbaseline-alphabetic':'the-canvas-element','command-facet-action:'commands','dom-outerhtml':'apis-in-html-documents','htmlolistelement':'grouping-content','anonymous-command':'commands','fallback-content':'content-models','u':'obsolete','keywords-and-enumerated-attributes':'common-microsyntaxes','the-em-element':'text-level-semantics','attr-form-autocomplete-on-state':'forms','browsing-context-container':'browsers','refsRFC1922':'references','browsers':'browsers','alt':'embedded-content-1','tt':'obsolete','invalid_state_err':'urls','tree-order':'infrastructure','concept-input-type-file-selected':'number-state','foreign-elements':'syntax','the-ruby-element':'text-level-semantics','command-inserthtml':'dnd','application-cache-api':'offline','use-div-for-wrappers':'sections','imagedata':'the-canvas-element','message-ports':'comms','concept-fs-method':'association-of-controls-and-forms','attr-dim-width':'the-map-element','ascii-compatible-character-encoding':'infrastructure','form-submission-0':'association-of-controls-and-forms','the-meter-element':'text-level-semantics','ecurity-4':'comms','plugins':'infrastructure','refsMQ':'references','htmloptionscollection-0':'urls','terminology-0':'urls','typed-item':'microdata','attr-input-placeholder':'common-input-element-attributes','flow-content-0':'content-models','html-elements':'infrastructure','attr-meter-low':'text-level-semantics','attr-script-defer':'scripting-1','microdata':'microdata','attr-iframe-frameborder':'obsolete','windowtimers':'timers','states-of-the-type-attribute':'states-of-the-type-attribute','url_mismatch_err':'urls','attr-hr-color':'obsolete','attr-col-charoff':'obsolete','attr-tbody-align':'obsolete','attr-tdth-valign':'obsolete','concept-option-disabled':'the-button-element','inter-element-whitespace':'content-models','link-type-first':'links','attr-a-urn':'obsolete','event-media-timeupdate':'video','the-h1-h2-h3-h4-h5-and-h6-elements':'sections','attr-ul-type':'obsolete','namespace_err':'urls','introduction-4':'dnd','introduction-1':'microdata','introduction-3':'offline','the-button-element':'the-button-lement','the-ol-element':'grouping-content','void-elements':'syntax','attr-tdth-colspan':'tabular-data','refsABNF':'references','attr-col-span':'tabular-data','the-i-element':'text-level-semantics','the-embed-element':'the-iframe-element','file-upload-state':'number-state','paragraph':'content-models','dom-innerhtml':'apis-in-html-documents','refsCSSUI':'references','history':'history','ascii-case-insensitive':'infrastructure','numbers':'common-microsyntaxes','default-view':'browsers','writing-cache-manifests':'offline','undomanager':'dnd','attr-tdth-rowspan':'tabular-data','menus':'interactive-elements','creating-documents':'dom','attr-tdth-bgcolor':'obsolete','attr-mod-cite':'edits','enabling-and-disabling-form-controls':'association-of-controls-and-forms','reflect':'urls','htmlaudioelement':'video','refsXPATH10':'references','document-wide-default-language':'semantics','attr-style-type':'semantics','the-lang-and-xml:lang-attributes':'elements','htmlmodelement':'edits','meta-application-name':'semantics',dom-media-have_future_data':'video','dom-mediaerror-media_err_network':'video','examples-0':'tabular-data','examples-1':'microdata','edits-and-lists':'edits','attr-input-type-date-keyword':'the-input-element','the-2d-context':'the-canvas-element','valid-date-or-time-string-in-content':'common-microsyntaxes','refsCESU8':'references','interactive-content-0':'content-models','the-nav-element':'sections','seeking':'video','event-media-pause':'video','refsBOCU1':'references','conformance-requirements':'infrastructure','valid-global-date-and-time-string':'common-microsyntaxes','concept-option-label':'the-button-element','auxiliary-browsing-contexts':'browsers','attr-textarea-required':'the-button-element','refsRFC2119':'references','attr-progress-value':'text-level-semantics','attr-tbody-char':'obsolete','attr-area-shape-keyword-poly':'the-map-element','attr-option-value':'the-button-element','valid-url':'urls','attr-input-type-password-keyword':'the-input-element','attr-param-name':'the-iframe-element','the-selet-element':'the-button-element','attr-embed-align':'obsolete','attr-blockquote-cite':'grouping-content','attr-input-required':'common-input-element-attributes','invalid_modification_err':'urls','offline':'offline','the-microdata-model':'microdata','attr-img-src':'embedded-content-1','attr-lang':'elements','matches-the-environment':'common-microsyntaxes','gcop-source-out':'the-canvas-element','attr-option-label':'the-button-element','selection-0':'editing','expiring-application-caches':'offline','preceded-or-followed':'content-models','month-state':'states-of-the-type-attribute','attr-object-classid':'obsolete','refsBEZIER':'references','limiting-user-input-length':'association-of-controls-and-forms','attr-a-name':'obsolete','script':'scripting-1','introduction':'introduction','menus-intro':'interactive-elements','dom-context-2d-drawimage':'the-canvas-element','concept-input-value-default-range':'number-state','button-state':'number-state','list-state':'interactive-elements','attr-object-border':'obsolete','yperlink-link':'semantics','dragevent':'dnd','pragma-directives':'semantics','attr-body-text':'obsolete','a-purely-decorative-image-that-doesn-t-add-any-information':'embedded-content-1','transparent-content-models':'content-models','simple-dialogs':'timers','attr-li-type':'obsolete','text-content':'content-models','hierarchical-link-types':'links','attr-input-step':'common-input-element-attributes','dndevents':'dnd','the-a-element':'text-level-semantics','refsUNIVCHARDET':'references','phrasing-content-0':'content-models','htmloutputelement':'the-button-element','command-api':'commands','htmlallcollection':'urls','attr-tr-char':'obsolete','the-colgroup-element':'tabular-data','the-tr-element':'tabular-data','syntax-doctype':'syntax','attr-body-alink':'obsolete','range-state':'number-state','attr-area-shape-keyword-rect':'the-map-element','attr-fs-action':'association-of-controls-and-forms','session-history':'history','attr-table-border':'obsolete','attr-input-type-week-keyword':'the-input-element','maximumallowed-value-length':'association-of-controls-and-forms','htmlpreelement':'grouping-content','the-draggable-attribute':'dnd','attr-fs-method':'association-of-controls-and-forms','datatransfer':'dnd','attr-meta-name':'semantics','windows':'browsers','command-facet-label':'commands','attr-area-shape':'the-map-element','attr-style-title':'semantics','refsIANACHARSET':'references','attributes-for-form-submission':'association-of-controls-and-forms','htmlvideoelement':'video','attr-fs-method-put-keyword':'association-of-controls-and-forms','html-vs-xhtml':'introduction','the-xhtml-syntax':'the-xhtml-syntax','font':'obsolete','attr-option-disabled':'the-button-element','attr-a-shape':'obsolete','attr-body-background':'obsolete','text-ping':'iana','interactive-elements':'interactive-elements','the-abbr-element':'text-level-semantics','attr-style-scoped':'semantics','ping-to':'iana','domsettabletokenlist-0':'urls','the-autocomplete-attribute':'common-input-element-attributes','refsXMLNS':'references','attr-input-tpe-tel-keyword':'the-input-element','restrictions-for-contents-of-script-elements':'scripting-1','association-of-controls-and-forms':'association-of-controls-and-forms','attr-col-valign':'obsolete','the-label-element':'forms','canvasrenderingcontext2d':'the-canvas-element','furthest-ancestor-browsing-context':'browsers','dom-context-2d-textbaseline-middle':'the-canvas-element','attr-param-valuetype':'obsolete','attr-fs-enctype-formdata':'association-of-controls-and-forms','user-interface':'video','attr-hyperlink-rel':'links','text-node':'infrastructure','command-insertimage':'dnd','attr-ol-start':'grouping-content','formatblock-candidate':'dnd','refsEVENTSOURCE':'references','state-object':'history','attr-input-type-submit-keyword':'the-input-element','embedded-content':'content-models','interfaces':'index','collections-0':'urls','event-media-ended':'video','attr-link-title':'semantics','attr-menu-label':'interactive-elements','htmltablerowelement':'tabular-data','hyperlink':'links','refsRFC2781':'reference','refsCSSFONTS':'references','context':'the-canvas-element','document.write':'apis-in-html-documents','htmlsourceelement':'video','attr-html-version':'obsolete','domsettabletokenlist':'urls','attr-input-pattern':'common-input-element-attributes','transformations':'the-canvas-element','using-the-microdata-dom-api':'microdata','insertadjacenthtml':'apis-in-html-documents','tag-cloud':'commands','attr-th-scope-rowgroup':'tabular-data','dom-appcache-downloading':'offline','attr-object-codebase':'obsolete','refsSELECTORS':'references','htmlprogresselement':'text-level-semantics','attr-input-type-datetime-keyword':'the-input-element','propertynodelist':'urls','attr-embed-name':'obsolete','attr-textarea-wrap-hard-state':'the-button-element','global-identifiers-for-items':'microdata','the-table-element':'tabular-data','event-appcache-progress':'offline','dom-tree-accessors':'dom','attr-table-frame':'obsolete','attr-input-type-datetime-local-keyword':'the-input-element','attr-table-width':'obsolete','interpolation''the-canvas-element','concept-fs-enctype':'association-of-controls-and-forms','attr-tdth-align':'obsolete','ancestor-browsing-context':'browsers','url-decomposition-idl-attributes':'urls','attr-fs-formtarget':'association-of-controls-and-forms','domhtmlimplementation':'dom','a-short-phrase-or-label-with-an-alternative-graphical-representation:-icons-logos':'embedded-content-1','attr-table-cellspacing':'obsolete','attr-object-name':'the-iframe-element','attr-area-coords':'the-map-element','embedding-custom-non-visible-data':'elements','gcop-destination-over':'the-canvas-element','wrong_document_err':'urls','dom-location-protocol':'history','syntax-tags':'syntax','gcop-xor':'the-canvas-element','compatibility-caseless':'infrastructure','newlines':'syntax','attr-xml-lang':'elements','associating-names-with-items':'microdata','attr-input-maxlength':'common-input-element-attributes','the-ul-element':'grouping-content','metadata-content-0':'content-models','location':'history','event-media-abort':'video','conceptrel-extensions':'links','attr-form-name':'forms','big':'obsolete','attr-command-icon':'interactive-elements','dom-appcache-idle':'offline','the-caption-element':'tabular-data','case-sensitive':'infrastructure','facets':'commands','ignore':'infrastructure','valid-local-date-and-time-string':'common-microsyntaxes','dom-media-network_idle':'video','terminology':'infrastructure','the-title-element-0':'semantics','attr-source-media':'video','valid-floating-point-number':'common-microsyntaxes','refsECMA357':'references','examples':'the-canvas-element','naming-form-controls':'association-of-controls-and-forms','attr-input-type-keywords':'the-input-element','opening-the-input-stream':'apis-in-html-documents','refsCSSCOLOR':'references','names:-the-itemprop-attribute':'microdata','attr-textarea-rows':'the-button-element','the-list-attribute':'common-input-element-attributes','dom-media-have_metadata':'video','interactive-content':'content-models','dom-location-search':'history','attr-iframe-src':'the-iframe-element''refsRFC5322':'references','valid-browsing-context-name':'browsers','command-facet-accesskey':'commands','attr-input-type-number-keyword':'the-input-element','attr-fs-method-get-keyword':'association-of-controls-and-forms','location-of-the-media-resource':'video','refsRFC2646':'references','attr-link-sizes-any':'links','refsRFC2318':'references','telephone-state':'states-of-the-type-attribute','a-phrase-or-paragraph-with-an-alternative-graphical-representation:-charts-diagrams-graphs-maps-illustrations':'embedded-content-1','refsCHARMOD':'references','refsX690':'references','sections':'sections','dom-navigator-registerprotocolhandler':'timers','document-metadata':'semantics','refsCOMPUTABLE':'references','htmlulistelement':'grouping-content','attr-input-align':'obsolete','the-iframe-element':'the-iframe-element','concept-property-value':'microdata','refsMAILTO':'references','current-entry-of-the-joint-session-history':'history','htmlparamelement':'the-iframe-element','attr-hyperlink-target':'links','activatng-state-object-entries':'history','reset-button-state':'number-state','syntax-elements':'syntax','character-encodings':'infrastructure','attr-img-ismap':'embedded-content-1','gcop-destination-atop':'the-canvas-element','text-that-has-been-rendered-to-a-graphic-for-typographical-effect':'embedded-content-1','refsCSSOM':'references','intro-early-example':'introduction','refsISO885911':'references','attr-command-type':'interactive-elements','attr-col-char':'obsolete','valid-e-mail-address':'states-of-the-type-attribute','attr-th-scope-auto':'tabular-data','attr-input-list':'common-input-element-attributes','attr-colgroup-span':'tabular-data','attr-object-archive':'obsolete','event-appcache-noupdate':'offline','elements':'elements','mediaevents':'video','line-styles':'the-canvas-element','text-state-and-search-state':'states-of-the-type-attribute','non-negative-integers':'common-microsyntaxes','valid-month-string':'common-microsyntaxes','syntax-attribute-name':'syntax','htmloptgroupelement':'the-button-element,'documents-in-the-dom':'dom','svg':'the-map-element','attr-button-type-reset':'the-button-element','the-pattern-attribute':'common-input-element-attributes','source-default-media':'video','attr-input-max':'common-input-element-attributes','event-media-volumechange':'video','headings-and-sections':'sections','event-dragend':'dnd','concept-week':'common-microsyntaxes','resources':'infrastructure','syntax-newlines':'syntax','media-resource':'video','syntax-references':'common-microsyntaxes','attr-iframe-seamless':'the-iframe-element','event-media-error':'video','valid-week-string':'common-microsyntaxes','the-dd-element':'grouping-content','attr-data':'elements','gcop-source-over':'the-canvas-element','contenteditable':'editing','event-appcache-updateready':'offline','htmltableheadercellelement':'tabular-data','compositing':'the-canvas-element','unloading-documents':'history','dimension-attributes':'the-map-element','attr-embed-src':'the-iframe-element','video':'video','attr-img-name':'obsolete','index':'index,'attr-media-autobuffer':'video','the-hgroup-element':'sections','events-0':'index','attr-ol-reversed':'grouping-content','valid-mime-type':'infrastructure','acronym':'obsolete','attr-meter-max':'text-level-semantics','valid-time-string':'common-microsyntaxes','attr-contextmenu':'interactive-elements','context-menu-state':'interactive-elements','the-strong-element':'text-level-semantics','attr-fs-target':'association-of-controls-and-forms','event-media-durationchange':'video','the-head-element':'dom','a-key-part-of-the-content':'embedded-content-1','refsSCSU':'references','htmldivelement':'grouping-content','media-element':'video','the-constraint-validation-api':'association-of-controls-and-forms','link-type-pingback':'links','the-hr-element':'grouping-content','microdata-dom-api':'microdata','link-type-next':'links','child-browsing-context':'browsers','attr-fs-formaction':'association-of-controls-and-forms','navigating-auxiliary-browsing-contexts-in-the-dom':'browsers','htmlformcontrolscollection-0':'urls''htmlmeterelement':'text-level-semantics','noframes':'obsolete','gcop-source-in':'the-canvas-element','refsCSS':'references','the-step-attribute':'common-input-element-attributes','concept-meta-extensions':'semantics','text-field-selection':'editing','signed-integers':'common-microsyntaxes','htmllielement':'grouping-content','attr-img-vspace':'obsolete','windowmodal':'timers','number-of-days-in-month-month-of-year-year':'common-microsyntaxes','hyperlink-elements':'links','browser-state':'offline','the-canvas-element':'the-canvas-element','attr-meta-http-equiv-content-type':'semantics','attr-style-media':'semantics','refsRFC2806':'references','links':'links','refsDOMEVENTS':'references','event-appcache-checking':'offline','refsARIA':'references','attr-meta-http-equiv':'semantics','htmldatalistelement':'the-button-element','refsUTR36':'references','dom-appcache-obsolete':'offline','the-style-element':'semantics','refsISO8601':'references','refsRFC1494':'references','event-appcache-obsolete':'offline','attr-im-alt':'embedded-content-1','dom-appcache-checking':'offline','refsXML':'references','attr-iframe-marginwidth':'obsolete','the-link-element':'semantics','command-superscript':'dnd','applicationcache':'offline','comms':'comms','concept-fs-novalidate':'association-of-controls-and-forms','attr-tbody-charoff':'obsolete','attr-input-type-hidden-keyword':'the-input-element','htmlinputelement':'the-input-element','htmloptionelement':'the-button-element','attr-input-type-file-keyword':'the-input-element','the-base-element':'semantics','the-basic-syntax':'microdata','attr-input-type-checkbox-keyword':'the-input-element','transparent':'content-models','event-handler-content-attributes':'browsers','linkTypes':'links','text-0':'syntax','the-html-element':'dom','structure-of-this-specification':'introduction','refsMATHML':'references','concept-fs-action':'association-of-controls-and-forms','attr-progress-max':'text-level-semantics','link-type-archives':'links','attr-table-cellpadding':'obsolete','a-type-that-the-user-aget-knows-it-cannot-render':'video','constraints':'association-of-controls-and-forms','attr-input-multiple':'common-input-element-attributes','meta':'semantics','attr-link-type':'semantics','refsWEBWORKERS':'references','refsPNG':'references','dom-link-disabled':'semantics','the-hidden-attribute':'editing','attr-a-rev':'obsolete','attr-input-accept':'number-state','htmltablesectionelement':'tabular-data','secondary-browsing-context':'browsers','undo':'dnd','link-type-external':'links','command-facet-disabledstate':'commands','attr-a-methods':'obsolete','usage-summary':'text-level-semantics','top-level-microdata-items':'microdata','system-state-and-capabilities':'timers','attr-details-open':'interactive-elements','content-models':'content-models','htmltabledatacellelement':'tabular-data','footnotes':'commands','other-link-types':'links','attr-abbr-title':'text-level-semantics','refsABOUT':'references','no_data_allowed_err':'urls','a-group-of-images-that-form-a-single-larger-picture-with-no-links':'embedded-conent-1','apis-for-creating-and-navigating-browsing-contexts-by-name':'browsers','attr-area-alt':'the-map-element','represented-by-the-collection':'urls','the-xml:base-attribute-xml-only':'elements','event-media-loadedmetadata':'video','channel-messaging':'comms','sectioning-content-0':'content-models','htmlelement':'elements','refsRFC3864':'references','attr-img-longdesc':'obsolete','enumerated-attribute':'common-microsyntaxes','attr-input-size':'common-input-element-attributes','attr-dim-height':'the-map-element','space-separated-tokens':'common-microsyntaxes','htmlallcollection-0':'urls','refsPINGBACK':'references','xml-documents':'dom','attr-menu-type':'interactive-elements','attr-input-value':'the-input-element','semantics-0':'elements','htmlmediaelement':'video','plaintext':'obsolete','metadata-content':'content-models','attr-object-vspace':'obsolete','documents':'dom','invalid_character_err':'urls','attr-object-hspace':'obsolete','refsXSLT10':'references','attr-meta-charset':'semantics','attr-table-ruls':'obsolete','attr-command-type-state-radio':'interactive-elements','crossDocumentMessages':'comms','the-selection':'editing','attr-tdth-width':'obsolete','htmlcanvaselement':'the-canvas-element','refsJSURL':'references','url':'urls','valid-date-or-time-string':'common-microsyntaxes','the-ready-states':'video','selection':'editing','text':'the-canvas-element','attr-col-align':'obsolete','attr-time-datetime':'text-level-semantics','the-body-element-0':'sections','rcdata-elements':'syntax','html-documents':'dom','fully-active':'browsers','defined-property-name':'microdata','attr-dfn-title':'text-level-semantics','the-html-element-0':'semantics','dom-location-port':'history','attr-body-bgcolor':'obsolete','messagechannel':'comms','comma-separated-tokens':'common-microsyntaxes','ready-for-editing-host-commands':'dnd','dialogs-implemented-using-separate-documents':'timers','recommended-reading':'introduction','refsEUCKR':'references','gcop-destination-out':'the-canvas-element','password-state':'states-of-the-tye-attribute','the-kbd-element':'text-level-semantics','view':'browsers','selecting-names-when-defining-vocabularies':'microdata','the-head-element-0':'semantics','x-this':'introduction','global-identifier':'microdata','concept-month':'common-microsyntaxes','attr-video-poster':'video','normal-elements':'syntax','link-type-prefetch':'links','attr-itemtype':'microdata','the-tfoot-element':'tabular-data','basefont':'obsolete','the-datalist-element':'the-button-element','attr-table-bgcolor':'obsolete','attr-itemscope':'microdata','command-facet-id':'commands','commands':'commands','flow-content':'content-models','command-forwarddelete':'dnd','common-dom-interfaces':'urls','an-image-in-an-e-mail-or-private-document-intended-for-a-specific-person-who-is-known-to-be-able-to-view-images':'embedded-content-1','attr-meta-scheme':'obsolete','attributes':'syntax','refsBCP47':'references','htmlpropertiescollection-0':'urls','valid-date-string':'common-microsyntaxes','attr-canvas-width':'the-canvas-element','concept-date''common-microsyntaxes','abort_err':'urls','event-media-seeked':'video','form-owner':'association-of-controls-and-forms','refsWEBSOCKET':'references','dom-appcache-uncached':'offline','attr-input-src':'number-state','attr-col-width':'obsolete','attr-tr-valign':'obsolete','attr-input-type':'the-input-element','playing-the-media-resource':'video','defining-term':'text-level-semantics','the-textarea-element':'the-button-element','the-link-is-an-alternative-stylesheet':'links','valid-integer':'common-microsyntaxes','event-handlers':'browsers','attr-object-codetype':'obsolete','dom-media-network_loading':'video','nested-browsing-contexts':'browsers','command-createlink':'dnd','attr-media-autoplay':'video','htmldlistelement':'grouping-content','the-tbody-element':'tabular-data','link-type-search':'links','attr-body-vlink':'obsolete','other-pragma-directives':'semantics','htmlformcontrolscollection':'urls','concept-events-trusted':'infrastructure','valid-denominator-punctuation-character':'common-microsyntaxes','ceter':'obsolete','refsWIN1252':'references','textFieldSelection':'editing','audio':'video','event-media-canplaythrough':'video','htmlcollection':'urls','attr-tdth-nowrap':'obsolete','global-attributes':'elements','application-microdata-json':'iana','the-section-element':'sections','link-type-stylesheet':'links','week-number-of-the-last-day':'common-microsyntaxes','attr-input-autocomplete-off-state':'common-input-element-attributes','attr-fs-enctype-text':'association-of-controls-and-forms','autofocusing-a-form-control':'association-of-controls-and-forms','nextid':'obsolete','syntax-end-tag':'syntax','elements-in-the-dom':'elements','attr-link-hreflang':'semantics','raw-text-elements':'syntax','outlines':'sections','attr-area-shape-poly':'the-map-element','the-fieldset-element':'forms','innerhtml':'apis-in-html-documents','attr-a-coords':'obsolete','attr-link-target':'obsolete','dom-context-2d-textbaseline-hanging':'the-canvas-element','dom-navigator-registercontenthandler':'timers','ping-from':'iana','attr-cmmand-label':'interactive-elements','how-to-read-this-specification':'introduction','attr-link-rel':'semantics','htmlformelement':'forms','refsUAAG':'references','attr-body-link':'obsolete','attr-link-rev':'obsolete','attr-iframe-marginheight':'obsolete','htmlanchorelement':'text-level-semantics','attr-textarea-wrap':'the-button-element','the-dir-attribute':'elements','the-doctype':'syntax','dom-location-hostname':'history','common-microsyntaxes':'common-microsyntaxes','refsHTMLDIFF':'references','event-appcache-error':'offline','meta-author':'semantics','the-small-element':'text-level-semantics','event-message':'comms','custom-data-attribute':'elements','session-history-entry':'history','refsWIN949':'references','common-input-element-apis':'common-input-element-attributes','messageportarray':'comms','offsets-into-the-media-resource':'video','command-facet-icon':'commands','attr-ul-compact':'obsolete','attr-tdth-axis':'obsolete','navigatorid':'timers','url-state':'states-of-the-type-attribute','mime-type':'nfrastructure','valid-hash-name-reference':'common-microsyntaxes','attr-command-type-keyword-command':'interactive-elements','command-facet-hint':'commands','loading-the-media-resource':'video','time-state':'states-of-the-type-attribute','application-xhtml-xml':'iana','document-level-focus-apis':'editing','the-b-element':'text-level-semantics','vaguer-moments-in-time':'common-microsyntaxes','home-subtree':'infrastructure','media-data':'video','attr-fe-name':'association-of-controls-and-forms','event-drop':'dnd','text-level-semantics':'text-level-semantics','barprop':'browsers','serializability-of-script-execution':'introduction','attr-input-type-search-keyword':'the-input-element','editing':'editing','concept-http-equiv-extensions':'semantics','attr-textarea-maxlength':'the-button-element','dom-location-host':'history','the-undomanager-interface':'dnd','attr-legend-align':'obsolete','end-tags':'syntax','mime-types':'video','valid-lowercase-simple-color':'common-microsyntaxes','named-character-references':'nmed-character-references','dom-context-2d-textbaseline-bottom':'the-canvas-element','cdata-rcdata-restrictions':'syntax','rel-icon':'links','text-cache-manifest':'iana','htmltablecellelement':'tabular-data','the-samp-element':'text-level-semantics','grouping-content':'grouping-content','authors-using-html':'infrastructure','syntax-tag-omission':'syntax','event-appcache-downloading':'offline','the-optgroup-element':'the-button-element','attr-canvas-height':'the-canvas-element','current-entry':'history','refsUNICODE':'references','htmllabelelement':'forms','attr-input-autocomplete-default-state':'common-input-element-attributes','start-tags':'syntax','content-categories':'content-models','browsing-context-names':'browsers','submit-button-state':'number-state','concept-select-option-list':'the-button-element' };
+var fragment_links = { 'refsRFC1557':'references','attr-meter-high':'text-level-semantics','refsRFC1554':'references','dom-opener':'browsers','ports-and-garbage-collection':'comms','attr-label-for':'forms','htmlcommandelement':'interactive-elements','the-history-interface':'history','refsXHR':'references','attr-fs-method-delete-keyword':'association-of-controls-and-forms','htmlfieldsetelement':'forms','the-root-element':'semantics','command-facet-type':'commands','valid-non-negative-integer':'common-microsyntaxes','attr-fs-enctype-urlencoded':'association-of-controls-and-forms','activation':'editing','the-br-element':'grouping-content','case-sensitivity-and-string-comparison':'infrastructure','command-redo':'dnd','attr-meter-value':'text-level-semantics','dom-style-disabled':'semantics','attr-media-src':'video','concept-facet':'commands','hierarchy_request_err':'urls','attr-script-async':'scripting-1','a-graphical-representation-of-some-of-the-surrounding-text':'embedded-content-1','math':'the-map-element''refsIANAPERMHEADERS':'references','attr-br-clear':'obsolete','attr-iframe-longdesc':'obsolete','attr-input-usemap':'obsolete','posting-messages':'comms','attr-meta-http-equiv-content-language':'semantics','the-maxlength-attribute':'common-input-element-attributes','the-cite-element':'text-level-semantics','attr-button-type':'the-button-element','attr-input-type-button-keyword':'the-input-element','refsIEEE754':'references','attr-hr-align':'obsolete','custom-handlers':'timers','non-conforming-features':'obsolete','attr-textarea-wrap-soft':'the-button-element','concept-fe-disabled':'association-of-controls-and-forms','dom-feature-strings':'urls','root-element':'infrastructure','path':'the-canvas-element','attr-link-href':'semantics','spelling-and-grammar-checking':'editing','htmltitleelement':'semantics','canvaspattern':'the-canvas-element','character-references':'syntax','command-bold':'dnd','attr-hyperlink-media':'links','dom-context-2d-textbaseline-top':'the-canvas-element','attr-object-align':'obsolete',syntax-start-tag':'syntax','link-type-index':'links','refsHTTP':'references','strike':'obsolete','browsing-the-web':'history','encoding-microdata':'microdata','refsDOMRANGE':'references','attr-tr-bgcolor':'obsolete','the-img-element':'embedded-content-1','mq':'common-microsyntaxes','url-property-elements':'microdata','exceptions':'urls','scripting':'browsers','valid-browsing-context-name-or-keyword':'browsers','attr-meta-http-equiv-refresh':'semantics','the-dfn-element':'text-level-semantics','times':'common-microsyntaxes','attr-hr-noshade':'obsolete','attr-form-autocomplete-off-state':'forms','syntax-attributes':'syntax','canvas-context-2d':'the-canvas-element','command-facet-checkedstate':'commands','refsRFC3279':'references','attr-p-align':'obsolete','concept-datetime-digit':'common-microsyntaxes','edits-and-paragraphs':'edits','typographic-conventions':'introduction','attr-tdth-abbr':'obsolete','syntax-comments':'syntax','unknown-images':'embedded-content-1','attr-pre-width':'obsolete','the-details-elemnt':'interactive-elements','timers':'timers','meta-description':'semantics','valid-simple-color':'common-microsyntaxes','quota_exceeded_err':'urls','the-div-element':'grouping-content','the-session-history-of-browsing-contexts':'history','refsDOMVIEWS':'references','media-element-attributes':'video','element-level-focus-apis':'editing','htmlmenuelement':'interactive-elements','attributes-0':'index','scripting-1':'scripting-1','scripting-0':'infrastructure','attr-input-alt':'number-state','writing':'syntax','edits':'edits','relaxing-the-same-origin-restriction':'browsers','history-0':'history','history-1':'introduction','weeks':'common-microsyntaxes','valid-date-string-in-content-with-optional-time':'common-microsyntaxes','attr-textarea-cols':'the-button-element','attr-fieldset-disabled':'forms','htmldetailselement':'interactive-elements','shadows':'the-canvas-element','event-media-progress':'video','domtokenlist-0':'urls','attr-base-href':'semantics','command-insertorderedlist':'dnd','command-unlink':'dnd',the-blockquote-element':'grouping-content','attr-object-type':'the-iframe-element','dom-media-have_enough_data':'video','attr-input-type-email-keyword':'the-input-element','attr-textarea-readonly':'the-button-element','typed-items':'microdata','serialize_err':'urls','client-identification':'timers','attr-input-type-color-keyword':'the-input-element','concept-command':'commands','attr-ol-type':'obsolete','attr-fs-method-post-keyword':'association-of-controls-and-forms','htmlhrelement':'grouping-content','rb':'obsolete','standard-metadata-names':'semantics','command-insertparagraph':'dnd','attr-meta-http-equiv-default-style':'semantics','message-channels':'comms','htmltextareaelement':'the-button-element','default-media':'semantics','attr-itemid':'microdata','refsRFC3548':'references','no_modification_allowed_err':'urls','refsWEBLINK':'references','refsRFC2388':'references','refsPPUTF8':'references','attr-tdth-char':'obsolete','valid-e-mail-address-list':'states-of-the-type-attribute','r1':'tabular-data','r2''tabular-data','attr-fe-maxlength':'association-of-controls-and-forms','refsRFC3490':'references','sequential-focus-navigation':'editing','attr-fs-method-delete':'association-of-controls-and-forms','rank':'sections','network-states':'video','the-input-element':'the-input-element','the-footer-element':'sections','navigator':'timers','link-type-help':'links','set-of-comma-separated-tokens':'common-microsyntaxes','refsBECSS':'references','link-type-author':'links','attr-media-controls':'video','htmlmetaelement':'semantics','attr-script-charset':'scripting-1','htmlcollection-0':'urls','dom-location-hash':'history','dom-media-have_nothing':'video','attr-fe-autofocus':'association-of-controls-and-forms','in-a-document':'infrastructure','relevant-type':'microdata','table-example-1':'tabular-data','dynamic-markup-insertion':'apis-in-html-documents','classes':'elements','the-multiple-attribute':'common-input-element-attributes','syntax-ambiguous-ampersand':'syntax','top-level-browsing-context':'browsers','simple-colr':'common-microsyntaxes','attr-button-value':'the-button-element','navigatorabilities':'timers','event-media-ratechange':'video','link-type-nofollow':'links','event-drag':'dnd','refsRFC1345':'references','inuse_attribute_err':'urls','attr-object-declare':'obsolete','refsWIN31J':'references','the-title-element':'dom','event-definitions':'comms','radio-button-state':'number-state','acknowledgements':'acknowledgements','htmlmapelement':'the-map-element','dom':'dom','the-mark-element':'text-level-semantics','concept-fs-target':'association-of-controls-and-forms','not_found_err':'urls','concept-datetime-local':'common-microsyntaxes','syntax':'syntax','colors':'common-microsyntaxes','outerhtml':'apis-in-html-documents','propertyvaluearray':'urls','refsPROGRESS':'references','htmloptionscollection':'urls','radionodelist':'urls','domtokenlist':'urls','preferred-mime-name':'infrastructure','htmlstyleelement':'semantics','attr-th-scope-colgroup':'tabular-data','colors-and-styles':'the-canvas-element','attr-fs-enctyp':'association-of-controls-and-forms','attr-textarea-wrap-hard':'the-button-element','the-sub-and-sup-elements':'text-level-semantics','event-media-canplay':'video','refsFILEAPI':'references','concept-item':'microdata','the-col-element':'tabular-data','the-placeholder-attribute':'common-input-element-attributes','refsDOMCORE':'references','kinds-of-content':'content-models','the-td-element':'tabular-data','accessing-other-browsing-contexts':'browsers','creator-browsing-context':'browsers','event-dragstart':'dnd','event-media-waiting':'video','attr-itemref':'microdata','attr-tdth-headers':'tabular-data','attr-textarea-wrap-soft-state':'the-button-element','active-document':'browsers','article-example':'sections','hidden-state':'states-of-the-type-attribute','attr-li-value':'grouping-content','attr-command-type-keyword-checkbox':'interactive-elements','navigatoronline':'timers','refsORIGIN':'references','attr-button-type-button':'the-button-element','concept-option-value':'the-button-element','attr-head-profie':'obsolete','attr-tdth-charoff':'obsolete','form-associated-element':'forms','media-elements':'video','attr-tr-align':'obsolete','urls':'urls','mediaerror':'video','concept-section':'sections','attr-meter-optimum':'text-level-semantics','refsRFC3023':'references','attr-area-shape-rect':'the-map-element','radio-button-group':'number-state','attr-input-min':'common-input-element-attributes','e-mail-state':'states-of-the-type-attribute','gcop-lighter':'the-canvas-element','htmlheadelement':'semantics','attr-input-type-url-keyword':'the-input-element','htmlembedelement':'the-iframe-element','character-encoding-declaration':'semantics','attr-keygen-challenge':'the-button-element','htmlpropertiescollection':'urls','date-state':'states-of-the-type-attribute','link-type-tag':'links','attr-div-align':'obsolete','category-reset':'forms','the-dragevent-and-datatransfer-interfaces':'dnd','attr-input-type-text-keyword':'the-input-element','the-source-element':'video','attr-th-scope-col':'tabular-data','browsing-contex-name':'browsers','n':'tabular-data','attr-area-shape-circle':'the-map-element','element-definitions':'elements','items':'microdata','attr-fs-method-get':'association-of-controls-and-forms','command-delete':'dnd','concept-appcache-manifest-explicit':'offline','link-type-prev':'links','attr-fae-form':'association-of-controls-and-forms','attr-form-accept-charset':'forms','event-appcache-cached':'offline','attr-fs-formmethod':'association-of-controls-and-forms','xml-mime-type':'infrastructure','absolute-url':'urls','htmlbrelement':'grouping-content','attr-img-hspace':'obsolete','pixel-manipulation':'the-canvas-element','a-link-or-button-containing-nothing-but-the-image':'embedded-content-1','attr-img-border':'obsolete','htmlkeygenelement':'the-button-element','the-body-element':'dom','heading-content':'content-models','attr-html-manifest':'semantics','htmliframeelement':'the-iframe-element','the-output-element':'the-button-element','attr-input-type-image-keyword':'the-input-element','attr-tr-charoff':'obsolete,'attr-input-type-time-keyword':'the-input-element','attr-ol-compact':'obsolete','htmltimeelement':'text-level-semantics','the-address-element':'sections','item-type':'microdata','validation_err':'urls','category-label':'forms','collections':'urls','week-state':'states-of-the-type-attribute','unordered-set-of-unique-space-separated-tokens':'common-microsyntaxes','scriptingLanguages':'scripting-1','event-dragover':'dnd','attr-hx-align':'obsolete','valid-date-string-with-optional-time':'common-microsyntaxes','event-media-loadeddata':'video','background':'introduction','htmlobjectelement':'the-iframe-element','scrolling-elements-into-view':'editing','network_err':'urls','refsRFC4281':'references','security':'dom','refsRFC4329':'references','domstringmap-0':'urls','paragraphs':'content-models','the-ins-element':'edits','attr-embed-type':'the-iframe-element','manually-releasing-the-storage-mutex':'timers','comments':'syntax','attr-command-type-state-checkbox':'interactive-elements','refsATAG':'references','neste-browsing-context':'browsers','phrasing-content':'content-models','dnd':'dnd','attr-meter-min':'text-level-semantics','tag-clouds':'commands','event-media-seeking':'video','attr-command-disabled':'interactive-elements','event-dragenter':'dnd','months':'common-microsyntaxes','attr-script-type':'scripting-1','creator-document':'browsers','refsMIMESNIFF':'references','htmltableelement':'tabular-data','reflecting-content-attributes-in-idl-attributes':'urls','refsATOM':'references','attr-param-type':'obsolete','attr-button-type-submit':'the-button-element','remove-an-element-from-a-document':'infrastructure','the-readonly-attribute':'common-input-element-attributes','htmlscriptelement':'scripting-1','unquoted':'syntax','isindex-0':'obsolete','refsRFC1468':'references','attr-area-nohref':'obsolete','index_size_err':'urls','messageport':'comms','attr-fs-formenctype':'association-of-controls-and-forms','introduction-5':'comms','cdata-sections':'syntax','event-media-play':'video','command-facet-hiddenstate':'command','refsSVG':'references','introduction-2':'browsers','dom-media-network_no_source':'video','command-insertunorderedlist':'dnd','the-directionality':'elements','attr-select-size':'the-button-element','dom-mediaerror-media_err_aborted':'video','the-location-interface':'history','attr-q-cite':'text-level-semantics','willful-violation':'introduction','meta-generator':'semantics','attr-spellcheck':'editing','local-date-and-time-state':'states-of-the-type-attribute','the-canvas-state':'the-canvas-element','attr-a-charset':'obsolete','concept-datetime':'common-microsyntaxes','html-namespace':'infrastructure','a-group-of-images-that-form-a-single-larger-picture-with-links':'embedded-content-1','navigating-nested-browsing-contexts-in-the-dom':'browsers','link-type-sidebar':'links','attr-meta-content':'semantics','the-accesskey-attribute':'editing','command-italic':'dnd','focus':'editing','attr-caption-align':'obsolete','attr-textarea-placeholder':'the-button-element','sequential-link-types':'links','refsRFC1034':'reerences','attr-time-pubdate':'text-level-semantics','local-dates-and-times':'common-microsyntaxes','htmlselectelement':'the-button-element','valid-media-query':'common-microsyntaxes','beforeunloadevent':'history','command-undo':'dnd','dir':'obsolete','timeranges':'video','attr-hyperlink-href':'links','input-type-attr-summary':'the-input-element','obsolete':'obsolete','number-state':'number-state','event-media-playing':'video','secondary-browsing-contexts':'browsers','dom-media-have_current_data':'video','global-dates-and-times':'common-microsyntaxes','the-pre-element':'grouping-content','concept-submit-button':'forms','command-unselect':'dnd','refsSHIFTJIS':'references','htmldocument':'dom','concept-button':'forms','refsWEBADDRESSES':'references','attr-param-value':'the-iframe-element','refsECMA262':'references','command-selectall':'dnd','the-rt-element':'text-level-semantics','resource-metadata-management':'dom','link-type-license':'links','named-access-on-the-window-object':'browsers','attr-command-type-kyword-radio':'interactive-elements','sectioning-content':'content-models','syntax-tag-name':'syntax','set-of-space-separated-tokens':'common-microsyntaxes','browser-interface-elements':'browsers','canvaspixelarray':'the-canvas-element','iana':'iana','the-id-attribute':'elements','style-default-media':'semantics','attr-hr-size':'obsolete','htmlparagraphelement':'grouping-content','not_supported_err':'urls','charset512':'semantics','refsRFC2483':'references','messageevent':'comms','support-global-identifiers-for-items':'microdata','security_err':'urls','event-dragleave':'dnd','attr-object-standby':'obsolete','attr-mod-datetime':'edits','the-noscript-element':'scripting-1','attr-input-type-range-keyword':'the-input-element','live':'infrastructure','scope':'introduction','attr-input-readonly':'common-input-element-attributes','attr-area-shape-keyword-circle':'the-map-element','attr-tabindex':'editing','refsPSL':'references','printing':'timers','values':'microdata','attr-link-media':'semantics','syntax-attributevalue':'syntax','xml-compatible':'infrastructure','htmlbuttonelement':'the-button-element','attr-fs-novalidate':'association-of-controls-and-forms','attr-input-type-reset-keyword':'the-input-element','attr-optgroup-label':'the-button-element','dom-context-2d-textbaseline-ideographic':'the-canvas-element','context-menus':'interactive-elements','the-param-element':'the-iframe-element','charset':'semantics','ping':'links','auxiliary-browsing-context':'browsers','xhtml':'the-xhtml-syntax','the-option-element':'the-button-element','common-idioms-without-dedicated-elements':'commands','attr-script-src':'scripting-1','htmlareaelement':'the-map-element','refsCOOKIES':'references','refsPORTERDUFF':'references','attr-hyperlink-type':'links','appcacheevents':'offline','outline':'sections','attr-select-multiple':'the-button-element','attr-iframe-sandbox':'the-iframe-element','dom-location-pathname':'history','the-span-element':'text-level-semantics','definitions':'association-of-controls-and-forms','the-form-element':'orms','the-keygen-element':'the-button-element','refsRFC2313':'references','a-quick-introduction-to-html':'introduction','htmlquoteelement':'grouping-content','attr-input-autocomplete':'common-input-element-attributes','link-type-up':'links','user-prompts':'timers','forms':'forms','closing-the-input-stream':'apis-in-html-documents','window':'browsers','listing':'obsolete','attr-th-scope':'tabular-data','refsRFC1842':'references','attr-object-data':'the-iframe-element','conversations':'commands','attr-tdth-height':'obsolete','attr-table-align':'obsolete','refsWCAG':'references','category-listed':'forms','refsUTF8DET':'references','attr-hyperlink-usemap':'the-map-element','embedded-content-1':'embedded-content-1','embedded-content-0':'content-models','other-metadata-names':'semantics','the-required-attribute':'common-input-element-attributes','authors-using-xhtml':'infrastructure','manifests':'offline','dom-domhtmlimplementation-createhtmldocument':'dom','attr-command-radiogroup':'interactive-elements','canva':'the-canvas-element','command-formatblock':'dnd','attr-dl-compact':'obsolete','htmlhtmlelement':'semantics','htmlunknownelement':'elements','sectioning-root':'sections','the-size-attribute':'common-input-element-attributes','htmllinkelement':'semantics','heading-content-0':'content-models','language':'elements','text-html':'iana','copy-and-paste':'dnd','valid-list-of-integers':'common-microsyntaxes','attr-hr-width':'obsolete','the-style-attribute':'elements','image-maps':'the-map-element','the-document-s-current-address':'dom','blink':'obsolete','elements-0':'syntax','elements-1':'index','doctype-legacy-string':'syntax','error-codes':'video','the-q-element':'text-level-semantics','event-media-emptied':'video','complex-shapes-paths':'the-canvas-element','syntax-charref':'syntax','attr-input-type-radio-keyword':'the-input-element','the-figure-element':'embedded-content-1','semantics':'semantics','attr-tbody-valign':'obsolete','concept-time':'common-microsyntaxes','syntax-cdata':'syntax','htmltablecaptioneleent':'tabular-data','common-input-element-attributes':'common-input-element-attributes','refsRFC2237':'references','dates-and-times':'common-microsyntaxes','refsRFC5280':'references','gcop-copy':'the-canvas-element','optional-tags':'syntax','attr-link-sizes':'links','refsGRAPHICS':'references','the-document-s-address':'dom','canvasgradient':'the-canvas-element','attr-th-scope-row':'tabular-data','command-subscript':'dnd','type_mismatch_err':'urls','refsOPENSEARCH':'references','attr-form-autocomplete':'forms','property-names':'microdata','attr-fe-disabled':'association-of-controls-and-forms','general-guidelines':'embedded-content-1','the-bdo-element':'text-level-semantics','the-article-element':'sections','apis-in-html-documents':'apis-in-html-documents','attr-input-checked':'the-input-element','spacer':'obsolete','the-aside-element':'sections','a-sample-manifest':'offline','dom-mediaerror-media_err_src_not_supported':'video','attr-contenteditable':'editing','htmlheadingelement':'sections','xml':'infrastrucure','syntax_err':'urls','link-type-last':'links','refsWHATWGWIKI':'references','the-min-and-max-attributes':'common-input-element-attributes','category-submit':'forms','attr-area-shape-default':'the-map-element','xmp':'obsolete','attributes-common-to-form-controls':'association-of-controls-and-forms','image-map':'the-map-element','attr-output-for':'the-button-element','htmllegendelement':'forms','refsRFC3986':'references','refsRFC3987':'references','htmlspanelement':'text-level-semantics','textmetrics':'the-canvas-element','attr-iframe-align':'obsolete','command-insertlinebreak':'dnd','attr-map-name':'the-map-element','attributes-common-to-td-and-th-elements':'tabular-data','document.writeln':'apis-in-html-documents','gcop-source-atop':'the-canvas-element','attr-source-src':'video','the-var-element':'text-level-semantics','attr-script-language':'obsolete','the-undomanagerevent-interface-and-the-undo-and-redo-events':'dnd','refsGREGORIAN':'references','the-header-element':'sections','attr-option-selected':'he-button-element','infrastructure':'infrastructure','form-submission':'association-of-controls-and-forms','the-th-element':'tabular-data','svg-0':'the-map-element','dom-appcache-updateready':'offline','joint-session-history':'history','dates':'common-microsyntaxes','simple-shapes-rectangles':'the-canvas-element','s':'obsolete','attr-menu-compact':'obsolete','insert-an-element-into-a-document':'infrastructure','overview':'microdata','the-p-element':'grouping-content','concept-appcache-manifest-fallback':'offline','boolean-attribute':'common-microsyntaxes','interfaces-for-url-manipulation':'urls','attr-iframe-name':'the-iframe-element','aborting-a-document-load':'history','annotations-for-assistive-technology-products-aria':'content-models','tabular-data':'tabular-data','real-numbers':'common-microsyntaxes','making-entire-documents-editable':'editing','documentSelection':'editing','htmlbaseelement':'semantics','attr-media-loop':'video','the-area-element':'the-map-element','link-type-bookmark':'links','concep-input-required':'common-input-element-attributes','attr-keygen-keytype':'the-button-element','prefix-match':'infrastructure','refsTIS620':'references','image-button-state':'number-state','time-ranges':'video','plugin':'infrastructure','attr-area-shape-keyword-default':'the-map-element','refsWIN1254':'references','dom-document-open':'apis-in-html-documents','htmlbodyelement':'sections','boolean-attributes':'common-microsyntaxes','refsARIAIMPL':'references','domstring_size_err':'urls','refsCORS':'references','the-dt-element':'grouping-content','events':'browsers','table-descriptions':'tabular-data','gcop-destination-in':'the-canvas-element','the-map-element':'the-map-element','dom-canvas-getcontext':'the-canvas-element','the-progress-element':'text-level-semantics','the-window-object':'browsers','editing-apis':'dnd','the-object-element':'the-iframe-element','refsUTF7':'references','opener-browsing-context':'browsers','the-rp-element':'text-level-semantics','refsRFC2045':'references','refsRFC2046':'references,'refsBIDI':'references','attr-command-checked':'interactive-elements','refsSRGB':'references','the-li-element':'grouping-content','design-notes':'introduction','attr-hyperlink-hreflang':'links','element-restrictions':'syntax','refsNPAPI':'references','compliance-with-other-specifications':'introduction','the-thead-element':'tabular-data','parse_err':'urls','the-del-element':'edits','event-media-loadstart':'video','noembed':'obsolete','htmltablecolelement':'tabular-data','browsing-context':'browsers','refsWIN874':'references','audience':'introduction','color-state':'number-state','the-dl-element':'grouping-content','rel-sidebar-hyperlink':'links','x-that':'introduction','lists-of-integers':'common-microsyntaxes','external-resource-link':'semantics','refsGBK':'references','attr-base-target':'semantics','syntax-elements':'syntax','images':'the-canvas-element','refsJSON':'references','attributes-common-to-ins-and-del-elements':'edits','attr-table-summary':'tabular-data','date-and-time-state':'states-of-the-typ-attribute','concept-appcache-manifest-network':'offline','ordered-set-of-unique-space-separated-tokens':'common-microsyntaxes','attr-fs-method-post':'association-of-controls-and-forms','dom-media-network_empty':'video','attr-object-code':'obsolete','title-on-style':'semantics','attr-link-charset':'obsolete','browsing-context-nested-through':'browsers','dom-trees':'infrastructure','the-command':'interactive-elements','drawing-state':'the-canvas-element','dom-mediaerror-media_err_decode':'video','parent-browsing-context':'browsers','references':'references','refsWEBIDL':'references','invalid_access_err':'urls','attr-optgroup-disabled':'the-button-element','event-media-suspend':'video','attr-command-type-state-command':'interactive-elements','event-media-stalled':'video','attr-input-type-month-keyword':'the-input-element','the-title-attribute':'elements','attr-source-type':'video','styling':'semantics','attr-input-autocomplete-on-state':'common-input-element-attributes','inline-documentation-for-external-scrits':'scripting-1','the-code-element':'text-level-semantics','toolbar-state':'interactive-elements','htmlimageelement':'embedded-content-1','command-inserttext':'dnd','attr-img-align':'obsolete','attr-fs-formnovalidate':'association-of-controls-and-forms','syntax-text':'syntax','the-legend-element':'forms','attr-command-title':'interactive-elements','mathml':'the-map-element','undomanagerevent':'dnd','popstateevent':'history','attr-iframe-scrolling':'obsolete','link-type-noreferrer':'links','checkbox-state':'number-state','attr-fs-method-put':'association-of-controls-and-forms','the-properties-of-an-item':'microdata','the-time-element':'text-level-semantics','concept-id':'elements','obsolete-but-conforming-features':'obsolete','link-type-alternate':'links','refsXMLBASE':'references','an-image-not-intended-for-the-user':'embedded-content-1','dom-context-2d-textbaseline-alphabetic':'the-canvas-element','command-facet-action':'commands','dom-outerhtml':'apis-in-html-documents','htmlolistelement':'grouping-contet','anonymous-command':'commands','fallback-content':'content-models','u':'obsolete','keywords-and-enumerated-attributes':'common-microsyntaxes','the-em-element':'text-level-semantics','attr-form-autocomplete-on-state':'forms','browsing-context-container':'browsers','refsRFC1922':'references','browsers':'browsers','alt':'embedded-content-1','tt':'obsolete','invalid_state_err':'urls','tree-order':'infrastructure','concept-input-type-file-selected':'number-state','foreign-elements':'syntax','the-ruby-element':'text-level-semantics','command-inserthtml':'dnd','application-cache-api':'offline','use-div-for-wrappers':'sections','imagedata':'the-canvas-element','message-ports':'comms','concept-fs-method':'association-of-controls-and-forms','attr-dim-width':'the-map-element','ascii-compatible-character-encoding':'infrastructure','form-submission-0':'association-of-controls-and-forms','the-meter-element':'text-level-semantics','security-4':'comms','plugins':'infrastructure','refsMQ':'references','htmloptionscollecton-0':'urls','terminology-0':'urls','typed-item':'microdata','attr-input-placeholder':'common-input-element-attributes','flow-content-0':'content-models','html-elements':'infrastructure','attr-meter-low':'text-level-semantics','attr-script-defer':'scripting-1','microdata':'microdata','attr-iframe-frameborder':'obsolete','windowtimers':'timers','states-of-the-type-attribute':'states-of-the-type-attribute','url_mismatch_err':'urls','attr-hr-color':'obsolete','attr-col-charoff':'obsolete','attr-tbody-align':'obsolete','attr-tdth-valign':'obsolete','concept-option-disabled':'the-button-element','inter-element-whitespace':'content-models','link-type-first':'links','attr-a-urn':'obsolete','event-media-timeupdate':'video','the-h1-h2-h3-h4-h5-and-h6-elements':'sections','attr-ul-type':'obsolete','namespace_err':'urls','introduction-4':'dnd','introduction-1':'microdata','introduction-3':'offline','the-button-element':'the-button-element','the-ol-element':'grouping-content','void-elements':'syntax','attr-tdth-colspan:'tabular-data','refsABNF':'references','attr-col-span':'tabular-data','the-i-element':'text-level-semantics','the-embed-element':'the-iframe-element','file-upload-state':'number-state','paragraph':'content-models','dom-innerhtml':'apis-in-html-documents','refsCSSUI':'references','history':'history','ascii-case-insensitive':'infrastructure','numbers':'common-microsyntaxes','default-view':'browsers','writing-cache-manifests':'offline','undomanager':'dnd','attr-tdth-rowspan':'tabular-data','menus':'interactive-elements','creating-documents':'dom','attr-tdth-bgcolor':'obsolete','attr-mod-cite':'edits','enabling-and-disabling-form-controls':'association-of-controls-and-forms','reflect':'urls','htmlaudioelement':'video','refsXPATH10':'references','document-wide-default-language':'semantics','attr-style-type':'semantics','the-lang-and-xml:lang-attributes':'elements','htmlmodelement':'edits','meta-application-name':'semantics','dom-media-have_future_data':'video','dom-mediaerror-media_err_network':'video','example-0':'tabular-data','examples-1':'microdata','edits-and-lists':'edits','attr-input-type-date-keyword':'the-input-element','the-2d-context':'the-canvas-element','valid-date-or-time-string-in-content':'common-microsyntaxes','refsCESU8':'references','interactive-content-0':'content-models','the-nav-element':'sections','seeking':'video','event-media-pause':'video','refsBOCU1':'references','conformance-requirements':'infrastructure','valid-global-date-and-time-string':'common-microsyntaxes','concept-option-label':'the-button-element','auxiliary-browsing-contexts':'browsers','attr-textarea-required':'the-button-element','refsRFC2119':'references','attr-progress-value':'text-level-semantics','attr-tbody-char':'obsolete','attr-area-shape-keyword-poly':'the-map-element','attr-option-value':'the-button-element','valid-url':'urls','attr-input-type-password-keyword':'the-input-element','attr-param-name':'the-iframe-element','the-select-element':'the-button-element','attr-embed-align':'obsolete','attr-blockquote-cite':'gouping-content','attr-input-required':'common-input-element-attributes','invalid_modification_err':'urls','offline':'offline','the-microdata-model':'microdata','attr-img-src':'embedded-content-1','attr-lang':'elements','matches-the-environment':'common-microsyntaxes','gcop-source-out':'the-canvas-element','attr-option-label':'the-button-element','selection-0':'editing','expiring-application-caches':'offline','preceded-or-followed':'content-models','month-state':'states-of-the-type-attribute','attr-object-classid':'obsolete','refsBEZIER':'references','limiting-user-input-length':'association-of-controls-and-forms','attr-a-name':'obsolete','script':'scripting-1','introduction':'introduction','menus-intro':'interactive-elements','dom-context-2d-drawimage':'the-canvas-element','concept-input-value-default-range':'number-state','button-state':'number-state','list-state':'interactive-elements','attr-object-border':'obsolete','hyperlink-link':'semantics','dragevent':'dnd','pragma-directives':'semantics','attr-bodytext':'obsolete','a-purely-decorative-image-that-doesn-t-add-any-information':'embedded-content-1','transparent-content-models':'content-models','simple-dialogs':'timers','attr-li-type':'obsolete','text-content':'content-models','hierarchical-link-types':'links','attr-input-step':'common-input-element-attributes','dndevents':'dnd','the-a-element':'text-level-semantics','refsUNIVCHARDET':'references','phrasing-content-0':'content-models','htmloutputelement':'the-button-element','command-api':'commands','htmlallcollection':'urls','attr-tr-char':'obsolete','the-colgroup-element':'tabular-data','the-tr-element':'tabular-data','syntax-doctype':'syntax','attr-body-alink':'obsolete','range-state':'number-state','attr-area-shape-keyword-rect':'the-map-element','attr-fs-action':'association-of-controls-and-forms','session-history':'history','attr-table-border':'obsolete','attr-input-type-week-keyword':'the-input-element','maximum-allowed-value-length':'association-of-controls-and-forms','htmlpreelement':'grouping-cotent','the-draggable-attribute':'dnd','attr-fs-method':'association-of-controls-and-forms','datatransfer':'dnd','attr-meta-name':'semantics','windows':'browsers','command-facet-label':'commands','attr-area-shape':'the-map-element','attr-style-title':'semantics','refsIANACHARSET':'references','attributes-for-form-submission':'association-of-controls-and-forms','htmlvideoelement':'video','attr-fs-method-put-keyword':'association-of-controls-and-forms','html-vs-xhtml':'introduction','the-xhtml-syntax':'the-xhtml-syntax','font':'obsolete','attr-option-disabled':'the-button-element','attr-a-shape':'obsolete','attr-body-background':'obsolete','text-ping':'iana','interactive-elements':'interactive-elements','the-abbr-element':'text-level-semantics','attr-style-scoped':'semantics','ping-to':'iana','domsettabletokenlist-0':'urls','the-autocomplete-attribute':'common-input-element-attributes','refsXMLNS':'references','attr-input-type-tel-keyword':'the-input-element','restrictions-for-contents-of-script-elements':'scrpting-1','association-of-controls-and-forms':'association-of-controls-and-forms','attr-col-valign':'obsolete','the-label-element':'forms','canvasrenderingcontext2d':'the-canvas-element','furthest-ancestor-browsing-context':'browsers','dom-context-2d-textbaseline-middle':'the-canvas-element','attr-param-valuetype':'obsolete','attr-fs-enctype-formdata':'association-of-controls-and-forms','user-interface':'video','attr-hyperlink-rel':'links','text-node':'infrastructure','command-insertimage':'dnd','attr-ol-start':'grouping-content','formatblock-candidate':'dnd','refsEVENTSOURCE':'references','state-object':'history','attr-input-type-submit-keyword':'the-input-element','embedded-content':'content-models','interfaces':'index','collections-0':'urls','event-media-ended':'video','attr-link-title':'semantics','attr-menu-label':'interactive-elements','htmltablerowelement':'tabular-data','hyperlink':'links','refsRFC2781':'references','refsCSSFONTS':'references','context':'the-canvas-element','document.write':'apis-in-tml-documents','htmlsourceelement':'video','attr-html-version':'obsolete','domsettabletokenlist':'urls','attr-input-pattern':'common-input-element-attributes','transformations':'the-canvas-element','using-the-microdata-dom-api':'microdata','insertadjacenthtml':'apis-in-html-documents','tag-cloud':'commands','attr-th-scope-rowgroup':'tabular-data','dom-appcache-downloading':'offline','attr-object-codebase':'obsolete','refsSELECTORS':'references','htmlprogresselement':'text-level-semantics','attr-input-type-datetime-keyword':'the-input-element','propertynodelist':'urls','attr-embed-name':'obsolete','attr-textarea-wrap-hard-state':'the-button-element','global-identifiers-for-items':'microdata','the-table-element':'tabular-data','event-appcache-progress':'offline','dom-tree-accessors':'dom','attr-table-frame':'obsolete','attr-input-type-datetime-local-keyword':'the-input-element','attr-table-width':'obsolete','interpolation':'the-canvas-element','concept-fs-enctype':'association-of-controls-and-forms','attr-tdt-align':'obsolete','ancestor-browsing-context':'browsers','url-decomposition-idl-attributes':'urls','attr-fs-formtarget':'association-of-controls-and-forms','domhtmlimplementation':'dom','a-short-phrase-or-label-with-an-alternative-graphical-representation:-icons-logos':'embedded-content-1','attr-table-cellspacing':'obsolete','attr-object-name':'the-iframe-element','attr-area-coords':'the-map-element','embedding-custom-non-visible-data':'elements','gcop-destination-over':'the-canvas-element','wrong_document_err':'urls','dom-location-protocol':'history','syntax-tags':'syntax','gcop-xor':'the-canvas-element','compatibility-caseless':'infrastructure','newlines':'syntax','attr-xml-lang':'elements','associating-names-with-items':'microdata','attr-input-maxlength':'common-input-element-attributes','the-ul-element':'grouping-content','metadata-content-0':'content-models','location':'history','event-media-abort':'video','concept-rel-extensions':'links','attr-form-name':'forms','big':'obsolete','attr-command-icon':'nteractive-elements','dom-appcache-idle':'offline','the-caption-element':'tabular-data','case-sensitive':'infrastructure','facets':'commands','ignore':'infrastructure','valid-local-date-and-time-string':'common-microsyntaxes','dom-media-network_idle':'video','terminology':'infrastructure','the-title-element-0':'semantics','attr-source-media':'video','valid-floating-point-number':'common-microsyntaxes','refsECMA357':'references','examples':'the-canvas-element','naming-form-controls':'association-of-controls-and-forms','attr-input-type-keywords':'the-input-element','opening-the-input-stream':'apis-in-html-documents','refsCSSCOLOR':'references','names:-the-itemprop-attribute':'microdata','attr-textarea-rows':'the-button-element','the-list-attribute':'common-input-element-attributes','dom-media-have_metadata':'video','interactive-content':'content-models','dom-location-search':'history','attr-iframe-src':'the-iframe-element','refsRFC5322':'references','valid-browsing-context-name':'browsers','command-facet-acceskey':'commands','attr-input-type-number-keyword':'the-input-element','attr-fs-method-get-keyword':'association-of-controls-and-forms','location-of-the-media-resource':'video','refsRFC2646':'references','attr-link-sizes-any':'links','refsRFC2318':'references','telephone-state':'states-of-the-type-attribute','a-phrase-or-paragraph-with-an-alternative-graphical-representation:-charts-diagrams-graphs-maps-illustrations':'embedded-content-1','refsCHARMOD':'references','refsX690':'references','sections':'sections','dom-navigator-registerprotocolhandler':'timers','document-metadata':'semantics','refsCOMPUTABLE':'references','htmlulistelement':'grouping-content','attr-input-align':'obsolete','the-iframe-element':'the-iframe-element','concept-property-value':'microdata','refsMAILTO':'references','current-entry-of-the-joint-session-history':'history','htmlparamelement':'the-iframe-element','attr-hyperlink-target':'links','activating-state-object-entries':'history','reset-button-state':'number-state','character-encodngs':'infrastructure','attr-img-ismap':'embedded-content-1','gcop-destination-atop':'the-canvas-element','text-that-has-been-rendered-to-a-graphic-for-typographical-effect':'embedded-content-1','refsCSSOM':'references','intro-early-example':'introduction','refsISO885911':'references','attr-command-type':'interactive-elements','attr-col-char':'obsolete','valid-e-mail-address':'states-of-the-type-attribute','attr-th-scope-auto':'tabular-data','attr-input-list':'common-input-element-attributes','attr-colgroup-span':'tabular-data','attr-object-archive':'obsolete','event-appcache-noupdate':'offline','elements':'elements','mediaevents':'video','line-styles':'the-canvas-element','text-state-and-search-state':'states-of-the-type-attribute','non-negative-integers':'common-microsyntaxes','valid-month-string':'common-microsyntaxes','syntax-attribute-name':'syntax','htmloptgroupelement':'the-button-element','documents-in-the-dom':'dom','svg':'the-map-element','attr-button-type-reset':'the-button-element','the-pattern-atribute':'common-input-element-attributes','source-default-media':'video','attr-input-max':'common-input-element-attributes','event-media-volumechange':'video','headings-and-sections':'sections','event-dragend':'dnd','concept-week':'common-microsyntaxes','resources':'infrastructure','syntax-newlines':'syntax','media-resource':'video','syntax-references':'common-microsyntaxes','attr-iframe-seamless':'the-iframe-element','event-media-error':'video','valid-week-string':'common-microsyntaxes','the-dd-element':'grouping-content','attr-data':'elements','gcop-source-over':'the-canvas-element','contenteditable':'editing','event-appcache-updateready':'offline','htmltableheadercellelement':'tabular-data','compositing':'the-canvas-element','unloading-documents':'history','dimension-attributes':'the-map-element','attr-embed-src':'the-iframe-element','video':'video','attr-img-name':'obsolete','index':'index','attr-media-autobuffer':'video','the-hgroup-element':'sections','events-0':'index','attr-ol-reversed':'grouping-cntent','valid-mime-type':'infrastructure','acronym':'obsolete','attr-meter-max':'text-level-semantics','valid-time-string':'common-microsyntaxes','attr-contextmenu':'interactive-elements','context-menu-state':'interactive-elements','the-strong-element':'text-level-semantics','attr-fs-target':'association-of-controls-and-forms','event-media-durationchange':'video','the-head-element':'dom','a-key-part-of-the-content':'embedded-content-1','refsSCSU':'references','htmldivelement':'grouping-content','media-element':'video','the-constraint-validation-api':'association-of-controls-and-forms','link-type-pingback':'links','the-hr-element':'grouping-content','microdata-dom-api':'microdata','link-type-next':'links','child-browsing-context':'browsers','attr-fs-formaction':'association-of-controls-and-forms','navigating-auxiliary-browsing-contexts-in-the-dom':'browsers','htmlformcontrolscollection-0':'urls','htmlmeterelement':'text-level-semantics','noframes':'obsolete','gcop-source-in':'the-canvas-element','refsCSS':'rferences','the-step-attribute':'common-input-element-attributes','concept-meta-extensions':'semantics','text-field-selection':'editing','signed-integers':'common-microsyntaxes','htmllielement':'grouping-content','attr-img-vspace':'obsolete','windowmodal':'timers','number-of-days-in-month-month-of-year-year':'common-microsyntaxes','hyperlink-elements':'links','browser-state':'offline','the-canvas-element':'the-canvas-element','attr-meta-http-equiv-content-type':'semantics','attr-style-media':'semantics','refsRFC2806':'references','links':'links','refsDOMEVENTS':'references','event-appcache-checking':'offline','refsARIA':'references','attr-meta-http-equiv':'semantics','htmldatalistelement':'the-button-element','refsUTR36':'references','dom-appcache-obsolete':'offline','the-style-element':'semantics','refsISO8601':'references','refsRFC1494':'references','event-appcache-obsolete':'offline','attr-img-alt':'embedded-content-1','dom-appcache-checking':'offline','refsXML':'references','attr-iframe-marginwidth':'obslete','the-link-element':'semantics','command-superscript':'dnd','applicationcache':'offline','comms':'comms','concept-fs-novalidate':'association-of-controls-and-forms','attr-tbody-charoff':'obsolete','attr-input-type-hidden-keyword':'the-input-element','htmlinputelement':'the-input-element','htmloptionelement':'the-button-element','attr-input-type-file-keyword':'the-input-element','the-base-element':'semantics','the-basic-syntax':'microdata','attr-input-type-checkbox-keyword':'the-input-element','transparent':'content-models','event-handler-content-attributes':'browsers','linkTypes':'links','text-0':'syntax','the-html-element':'dom','structure-of-this-specification':'introduction','refsMATHML':'references','concept-fs-action':'association-of-controls-and-forms','attr-progress-max':'text-level-semantics','link-type-archives':'links','attr-table-cellpadding':'obsolete','a-type-that-the-user-agent-knows-it-cannot-render':'video','constraints':'association-of-controls-and-forms','attr-input-multiple':'common-nput-element-attributes','meta':'semantics','attr-link-type':'semantics','refsWEBWORKERS':'references','refsPNG':'references','dom-link-disabled':'semantics','the-hidden-attribute':'editing','attr-a-rev':'obsolete','attr-input-accept':'number-state','htmltablesectionelement':'tabular-data','secondary-browsing-context':'browsers','undo':'dnd','link-type-external':'links','command-facet-disabledstate':'commands','attr-a-methods':'obsolete','usage-summary':'text-level-semantics','top-level-microdata-items':'microdata','system-state-and-capabilities':'timers','attr-details-open':'interactive-elements','content-models':'content-models','htmltabledatacellelement':'tabular-data','footnotes':'commands','other-link-types':'links','attr-abbr-title':'text-level-semantics','refsABOUT':'references','no_data_allowed_err':'urls','a-group-of-images-that-form-a-single-larger-picture-with-no-links':'embedded-content-1','apis-for-creating-and-navigating-browsing-contexts-by-name':'browsers','attr-area-alt':'the-map-element','epresented-by-the-collection':'urls','the-xml:base-attribute-xml-only':'elements','event-media-loadedmetadata':'video','channel-messaging':'comms','sectioning-content-0':'content-models','htmlelement':'elements','refsRFC3864':'references','attr-img-longdesc':'obsolete','enumerated-attribute':'common-microsyntaxes','attr-input-size':'common-input-element-attributes','attr-dim-height':'the-map-element','space-separated-tokens':'common-microsyntaxes','htmlallcollection-0':'urls','refsPINGBACK':'references','xml-documents':'dom','attr-menu-type':'interactive-elements','attr-input-value':'the-input-element','semantics-0':'elements','htmlmediaelement':'video','plaintext':'obsolete','metadata-content':'content-models','attr-object-vspace':'obsolete','documents':'dom','invalid_character_err':'urls','attr-object-hspace':'obsolete','refsXSLT10':'references','attr-meta-charset':'semantics','attr-table-rules':'obsolete','attr-command-type-state-radio':'interactive-elements','crossDocumentMessages':'comms','the-selectio':'editing','attr-tdth-width':'obsolete','htmlcanvaselement':'the-canvas-element','refsJSURL':'references','url':'urls','valid-date-or-time-string':'common-microsyntaxes','the-ready-states':'video','selection':'editing','text':'the-canvas-element','attr-col-align':'obsolete','attr-time-datetime':'text-level-semantics','the-body-element-0':'sections','rcdata-elements':'syntax','html-documents':'dom','fully-active':'browsers','defined-property-name':'microdata','attr-dfn-title':'text-level-semantics','the-html-element-0':'semantics','dom-location-port':'history','attr-body-bgcolor':'obsolete','messagechannel':'comms','comma-separated-tokens':'common-microsyntaxes','ready-for-editing-host-commands':'dnd','dialogs-implemented-using-separate-documents':'timers','recommended-reading':'introduction','refsEUCKR':'references','gcop-destination-out':'the-canvas-element','password-state':'states-of-the-type-attribute','the-kbd-element':'text-level-semantics','view':'browsers','selecting-names-when-defining-vocabularie':'microdata','the-head-element-0':'semantics','x-this':'introduction','global-identifier':'microdata','concept-month':'common-microsyntaxes','attr-video-poster':'video','normal-elements':'syntax','link-type-prefetch':'links','attr-itemtype':'microdata','the-tfoot-element':'tabular-data','basefont':'obsolete','the-datalist-element':'the-button-element','attr-table-bgcolor':'obsolete','attr-itemscope':'microdata','command-facet-id':'commands','commands':'commands','flow-content':'content-models','command-forwarddelete':'dnd','common-dom-interfaces':'urls','an-image-in-an-e-mail-or-private-document-intended-for-a-specific-person-who-is-known-to-be-able-to-view-images':'embedded-content-1','attr-meta-scheme':'obsolete','attributes':'syntax','refsBCP47':'references','htmlpropertiescollection-0':'urls','valid-date-string':'common-microsyntaxes','attr-canvas-width':'the-canvas-element','concept-date':'common-microsyntaxes','abort_err':'urls','event-media-seeked':'video','form-owner':'association-of-controls-and-frms','refsWEBSOCKET':'references','dom-appcache-uncached':'offline','attr-input-src':'number-state','attr-col-width':'obsolete','attr-tr-valign':'obsolete','attr-input-type':'the-input-element','playing-the-media-resource':'video','defining-term':'text-level-semantics','the-textarea-element':'the-button-element','the-link-is-an-alternative-stylesheet':'links','valid-integer':'common-microsyntaxes','event-handlers':'browsers','attr-object-codetype':'obsolete','dom-media-network_loading':'video','nested-browsing-contexts':'browsers','command-createlink':'dnd','attr-media-autoplay':'video','htmldlistelement':'grouping-content','the-tbody-element':'tabular-data','link-type-search':'links','attr-body-vlink':'obsolete','other-pragma-directives':'semantics','htmlformcontrolscollection':'urls','concept-events-trusted':'infrastructure','center':'obsolete','refsWIN1252':'references','textFieldSelection':'editing','audio':'video','event-media-canplaythrough':'video','htmlcollection':'urls','attr-tdth-nowrap':'obsolete,'global-attributes':'elements','application-microdata-json':'iana','the-section-element':'sections','link-type-stylesheet':'links','week-number-of-the-last-day':'common-microsyntaxes','attr-input-autocomplete-off-state':'common-input-element-attributes','attr-fs-enctype-text':'association-of-controls-and-forms','autofocusing-a-form-control':'association-of-controls-and-forms','nextid':'obsolete','syntax-end-tag':'syntax','elements-in-the-dom':'elements','attr-link-hreflang':'semantics','raw-text-elements':'syntax','outlines':'sections','attr-area-shape-poly':'the-map-element','the-fieldset-element':'forms','innerhtml':'apis-in-html-documents','attr-a-coords':'obsolete','attr-link-target':'obsolete','dom-context-2d-textbaseline-hanging':'the-canvas-element','dom-navigator-registercontenthandler':'timers','ping-from':'iana','attr-command-label':'interactive-elements','how-to-read-this-specification':'introduction','attr-link-rel':'semantics','htmlformelement':'forms','refsUAAG':'references','attr-body-link':obsolete','attr-link-rev':'obsolete','attr-iframe-marginheight':'obsolete','htmlanchorelement':'text-level-semantics','attr-textarea-wrap':'the-button-element','the-dir-attribute':'elements','the-doctype':'syntax','dom-location-hostname':'history','common-microsyntaxes':'common-microsyntaxes','refsHTMLDIFF':'references','event-appcache-error':'offline','meta-author':'semantics','the-small-element':'text-level-semantics','event-message':'comms','custom-data-attribute':'elements','session-history-entry':'history','refsWIN949':'references','common-input-element-apis':'common-input-element-attributes','messageportarray':'comms','offsets-into-the-media-resource':'video','command-facet-icon':'commands','attr-ul-compact':'obsolete','attr-tdth-axis':'obsolete','navigatorid':'timers','url-state':'states-of-the-type-attribute','mime-type':'infrastructure','valid-hash-name-reference':'common-microsyntaxes','attr-command-type-keyword-command':'interactive-elements','command-facet-hint':'commands','loading-the-media-resurce':'video','time-state':'states-of-the-type-attribute','application-xhtml-xml':'iana','document-level-focus-apis':'editing','the-b-element':'text-level-semantics','vaguer-moments-in-time':'common-microsyntaxes','home-subtree':'infrastructure','media-data':'video','attr-fe-name':'association-of-controls-and-forms','event-drop':'dnd','text-level-semantics':'text-level-semantics','barprop':'browsers','serializability-of-script-execution':'introduction','attr-input-type-search-keyword':'the-input-element','editing':'editing','concept-http-equiv-extensions':'semantics','attr-textarea-maxlength':'the-button-element','dom-location-host':'history','the-undomanager-interface':'dnd','attr-legend-align':'obsolete','end-tags':'syntax','mime-types':'video','valid-lowercase-simple-color':'common-microsyntaxes','named-character-references':'named-character-references','dom-context-2d-textbaseline-bottom':'the-canvas-element','cdata-rcdata-restrictions':'syntax','rel-icon':'links','text-cache-manifest':'iana','htmltableellelement':'tabular-data','the-samp-element':'text-level-semantics','grouping-content':'grouping-content','authors-using-html':'infrastructure','syntax-tag-omission':'syntax','event-appcache-downloading':'offline','the-optgroup-element':'the-button-element','attr-canvas-height':'the-canvas-element','current-entry':'history','refsUNICODE':'references','htmllabelelement':'forms','attr-input-autocomplete-default-state':'common-input-element-attributes','start-tags':'syntax','content-categories':'content-models','browsing-context-names':'browsers','submit-button-state':'number-state','concept-select-option-list':'the-button-element' };
 
 var fragid = window.location.hash.substr(1);
 if (!fragid) { /* handle section-foo.html links from the old multipage version, and broken foo.html from the new version */

Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/spec.html,v
retrieving revision 1.563
retrieving revision 1.564
diff -u -d -r1.563 -r1.564
--- spec.html	4 Jan 2010 11:37:20 -0000	1.563
+++ spec.html	4 Jan 2010 23:47:18 -0000	1.564
@@ -279,7 +279,7 @@
    </dl><p>This specification is available in the following formats: 
     <a href=spec.html>single page HTML</a>,
     <a href=Overview.html>multipage HTML</a>.
-This is revision 1.3557.
+This is revision 1.3558.
    </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
@@ -407,8 +407,7 @@
        <li><a href=#non-negative-integers><span class=secno>2.4.3.1 </span>Non-negative integers</a></li>
        <li><a href=#signed-integers><span class=secno>2.4.3.2 </span>Signed integers</a></li>
        <li><a href=#real-numbers><span class=secno>2.4.3.3 </span>Real numbers</a></li>
-       <li><a href=#ratios><span class=secno>2.4.3.4 </span>Ratios</a></li>
-       <li><a href=#lists-of-integers><span class=secno>2.4.3.5 </span>Lists of integers</a></li></ol></li>
+       <li><a href=#lists-of-integers><span class=secno>2.4.3.4 </span>Lists of integers</a></li></ol></li>
      <li><a href=#dates-and-times><span class=secno>2.4.4 </span>Dates and times</a>
       <ol>
        <li><a href=#months><span class=secno>2.4.4.1 </span>Months</a></li>
@@ -1552,32 +1551,7 @@
   number if there is one). If there is no E, then the exponent is
   treated as zero.</p><p class=note>The Infinity and Not-a-Number (NaN) values are not
   <a href=#valid-floating-point-number title="valid floating point number">valid floating point
-  numbers</a>.</p><h5 id=ratios><span class=secno>2.4.3.4 </span>Ratios</h5><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p class=note>The algorithms described in this section are used by
-  the <code><a href=#the-progress-element>progress</a></code> and <code><a href=#the-meter-element>meter</a></code> elements.</p><p>A <dfn id=valid-denominator-punctuation-character>valid denominator punctuation character</dfn> is one of
-  the characters from the table below. There is <dfn id=values-associated-with-denominator-punctuation-characters title="values
-  associated with denominator punctuation characters">a value
-  associated with each denominator punctuation character</dfn>, as
-  shown in the table below.</p><table><thead><tr><th colspan=2>Denominator Punctuation Character</th>
-     <th>Value</th>
-    </tr></thead><tbody><tr><td>U+0025 PERCENT SIGN</td>
-     <td>%</td>
-     <td>100</td>
-    </tr><tr><td>U+066A ARABIC PERCENT SIGN</td>
-     <td>٪</td>
-     <td>100</td>
-    </tr><tr><td>U+FE6A SMALL PERCENT SIGN</td>
-     <td>﹪</td>
-     <td>100</td>
-    </tr><tr><td>U+FF05 FULLWIDTH PERCENT SIGN</td>
-     <td>%</td>
-     <td>100</td>
-    </tr><tr><td>U+2030 PER MILLE SIGN</td>
-     <td>‰</td>
-     <td>1000</td>
-    </tr><tr><td>U+2031 PER TEN THOUSAND SIGN</td>
-     <td>‱</td>
-     <td>10000</td>
-    </tr></tbody></table><h5 id=lists-of-integers><span class=secno>2.4.3.5 </span>Lists of integers</h5><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>A <dfn id=valid-list-of-integers>valid list of integers</dfn> is a number of <a href=#valid-integer title="valid integer">valid integers</a> separated by U+002C
+  numbers</a>.</p><h5 id=lists-of-integers><span class=secno>2.4.3.4 </span>Lists of integers</h5><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>A <dfn id=valid-list-of-integers>valid list of integers</dfn> is a number of <a href=#valid-integer title="valid integer">valid integers</a> separated by U+002C
   COMMA characters, with no other characters (e.g. no <a href=#space-character title="space character">space characters</a>). In addition, there
   might be restrictions on the number of integers that can be given,
   or on the range of values allowed.</p><h4 id=dates-and-times><span class=secno>2.4.4 </span>Dates and times</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>In the algorithms below, the <dfn id=number-of-days-in-month-month-of-year-year>number of days in month <var title="">month</var> of year <var title="">year</var></dfn> is:
@@ -8330,87 +8304,31 @@
   attribute specifies how much of the task has been completed, and the
   <dfn id=attr-progress-max title=attr-progress-max><code>max</code></dfn> attribute
   specifies how much work the task requires in total. The units are
-  arbitrary and not specified.</p><p>Instead of using the attributes, authors are recommended to
-  include the current value and the maximum value inline as text
-  inside the element.</p><div class=example>
+  arbitrary and not specified.</p><p>Authors are encouraged to also include the current value and the
+  maximum value inline as text inside the element, so that the
+  progress is made available to users of legacy user agents.</p><div class=example>
    <p>Here is a snippet of a Web application that shows the progress
    of some automated task:</p>
    <pre>&lt;section&gt;
  &lt;h2&gt;Task Progress&lt;/h2&gt;
- &lt;p&gt;Progress: &lt;progress&gt;&lt;span id="p"&gt;0&lt;/span&gt;%&lt;/progress&gt;&lt;/p&gt;
+ &lt;p&gt;Progress: &lt;progress id="p" max=100&gt;&lt;span&gt;0&lt;/span&gt;%&lt;/progress&gt;&lt;/p&gt;
  &lt;script&gt;
   var progressBar = document.getElementById('p');
   function updateProgress(newValue) {
-    progressBar.textContent = newValue;
+    progressBar.value = newValue;
+    progressBar.getElementsByTagName('span').textContent = newValue;
   }
  &lt;/script&gt;
 &lt;/section&gt;</pre>
    <p>(The <code>updateProgress()</code> method in this example would
    be called by some other code on the page to update the actual
    progress bar as the task progressed.)</p>
-  </div><p><code><a href=#the-progress-element>progress</a></code> element must match one of the following
-  conditions.</p><ul><li>Neither the <code title=attr-progress-value><a href=#attr-progress-value>value</a></code>
-   attribute nor the <code title=attr-progress-max><a href=#attr-progress-max>max</a></code>
-   attribute is specified, and the element's contents
-   contain no numbers.</li>
-
-   <li>Neither the <code title=attr-progress-value><a href=#attr-progress-value>value</a></code>
-   attribute nor the <code title=attr-progress-max><a href=#attr-progress-max>max</a></code>
-   attribute is specified, and the element's contents contain one
-   number, optionally followed by a <a href=#valid-denominator-punctuation-character title="valid denominator
-   punctuation character">denominator punctuation
-   character</a>.</li>
-
-   <li>Neither the <code title=attr-progress-value><a href=#attr-progress-value>value</a></code>
-   attribute nor the <code title=attr-progress-max><a href=#attr-progress-max>max</a></code>
-   attribute is specified, and the element's contents contain two
-   numbers, neither followed by a <a href=#valid-denominator-punctuation-character title="valid denominator
-   punctuation character">denominator punctuation
-   character</a>.</li>
-
-   <li>The <code title=attr-progress-value><a href=#attr-progress-value>value</a></code> attribute is
-   not specified but the <code title=attr-progress-max><a href=#attr-progress-max>max</a></code>
-   attribute is specified, and the element's contents
-   contain one number that is not followed by a <a href=#valid-denominator-punctuation-character title="valid
-   denominator punctuation character">denominator punctuation
-   character</a>.</li>
-
-   <li>The <code title=attr-progress-value><a href=#attr-progress-value>value</a></code> attribute is
-   specified but the <code title=attr-progress-max><a href=#attr-progress-max>max</a></code>
-   attribute is not specified, and the element's contents contain no
-   numbers.</li>
-
-   <li>The <code title=attr-progress-value><a href=#attr-progress-value>value</a></code> attribute
-   and the <code title=attr-progress-max><a href=#attr-progress-max>max</a></code> attribute are
-   both specified. (The contents of the element are ignored.)</li>
-
-  </ul><!-- next three paragraphs are also in the <meter> section --><p>For the purposes of these requirements, a number is a sequence of
-  characters in the range U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE
-  (9), optionally including a single U+002E FULL STOP character (.) in
-  some position after the first digit and before the last digit,
-  interpreted as a base ten number. Numbers must be separated from
-  other numbers by at least one character that isn't any of the
-  aforementioned. In addition, if the element is required to contain
-  numbers, then the contents of the element must not contain any
-  U+002E FULL STOP characters (.) that aren't part of numbers.</p><p>A number if said to be followed by a <a href=#valid-denominator-punctuation-character title="valid
-  denominator punctuation character">denominator punctuation
-  character</a> if it is followed by zero or more
-  <a href=#white_space>White_Space</a> characters and a <a href=#valid-denominator-punctuation-character>valid denominator
-  punctuation character</a>.</p><p>The contents of the element consist of the concatenation of
-  the <a href=#text-node title="text node">text nodes</a> of all the descendants
-  of the element, in <a href=#tree-order>tree order</a>.</p><!-- previous three paragraphs are also in the <meter> section --><p>The <code title=attr-progress-value><a href=#attr-progress-value>value</a></code> and <code title=attr-progress-max><a href=#attr-progress-max>max</a></code> attributes, when present, must
+  </div><p>The <code title=attr-progress-value><a href=#attr-progress-value>value</a></code> and <code title=attr-progress-max><a href=#attr-progress-max>max</a></code> attributes, when present, must
   have values that are <a href=#valid-floating-point-number title="valid floating point number">valid
   floating point numbers</a>. The <code title=attr-progress-value><a href=#attr-progress-value>value</a></code> attribute, if present, must
   have a value equal to or greater than zero, and less than or equal
   to the value of the <code title=attr-progress-max><a href=#attr-progress-max>max</a></code>
-  attribute, if present, or 1.0, otherwise. If the <code title=attr-progress-value><a href=#attr-progress-value>value</a></code> attribute is not present,
-  but the element's contents contain a number, then the value of the
-  first number in the element's contents must be less than or equal to
-  the value of the second number in the element's contents, if any, or
-  the <a href=#values-associated-with-denominator-punctuation-characters title="values associated with denominator punctuation
-  characters">value associated with the denominator punctuation
-  character</a> that follows the first number in the element's
-  contents, if any, or 1.0, otherwise. The <code title=attr-progress-max><a href=#attr-progress-max>max</a></code> attribute, if present, must
+  attribute, if present, or 1.0, otherwise. The <code title=attr-progress-max><a href=#attr-progress-max>max</a></code> attribute, if present, must
   have a value greater than zero.</p><p class=note>The <code><a href=#the-progress-element>progress</a></code> element is the wrong
   element to use for something that is just a gauge, as opposed to
   task progress. For instance, indicating disk space usage using
@@ -8473,128 +8391,38 @@
   "high" value  then this indicates that the higher the value, the
   better; if it's lower than the "low" mark then it indicates that
   lower values are better, and naturally if it is in between then it
-  indicates that neither high nor low values are good.</p><p>Authoring requirements</p><p>One of the following conditions, along with all the requirements
-  that are listed with that condition, must be met:</p><dl><dt>There are exactly two numbers in the contents of the element,
-   and the <code title=attr-meter-value><a href=#attr-meter-value>value</a></code>, <code title=attr-meter-min><a href=#attr-meter-min>min</a></code>, and <code title=attr-meter-max><a href=#attr-meter-max>max</a></code> attributes are all omitted</dt>
-
-   <dd>
-
-    <p>If specified, the <code title=attr-meter-low><a href=#attr-meter-low>low</a></code>,
-    <code title=attr-meter-high><a href=#attr-meter-high>high</a></code>, and <code title=attr-meter-optimum><a href=#attr-meter-optimum>optimum</a></code> attributes must have
-    values greater than or equal to zero and less than or equal to the
-    bigger of the two numbers in the contents of the element.</p>
-
-    <p>If both the <code title=attr-meter-low><a href=#attr-meter-low>low</a></code> and <code title=attr-meter-high><a href=#attr-meter-high>high</a></code> attributes are specified, then
-    the <code title=attr-meter-low><a href=#attr-meter-low>low</a></code> attribute's value must
-    be less than or equal to the value of the <code title=attr-meter-high><a href=#attr-meter-high>high</a></code> attribute.</p>
-
-    <p>The numbers in the contents of the element must not be followed
-    by a <a href=#valid-denominator-punctuation-character title="valid denominator punctuation
-    character">denominator punctuation character</a>.</p>
-
-   </dd>
-
-   <dt>There is exactly one number followed by a <a href=#valid-denominator-punctuation-character title="valid
-   denominator punctuation character">denominator punctuation
-   character</a> in the contents of the element, and the <code title=attr-meter-value><a href=#attr-meter-value>value</a></code>, <code title=attr-meter-min><a href=#attr-meter-min>min</a></code>, and <code title=attr-meter-max><a href=#attr-meter-max>max</a></code> attributes are all omitted</dt>
-
-   <dd>
-
-    <p>If specified, the <code title=attr-meter-low><a href=#attr-meter-low>low</a></code>,
-    <code title=attr-meter-high><a href=#attr-meter-high>high</a></code>, and <code title=attr-meter-optimum><a href=#attr-meter-optimum>optimum</a></code> attributes must have
-    values greater than or equal to zero and less than or equal to the
-    <a href=#values-associated-with-denominator-punctuation-characters title="values associated with denominator punctuation
-    characters">value associated with the denominator punctuation
-    character</a>.</p>
-
-    <p>If both the <code title=attr-meter-low><a href=#attr-meter-low>low</a></code> and <code title=attr-meter-high><a href=#attr-meter-high>high</a></code> attributes are specified, then
-    the <code title=attr-meter-low><a href=#attr-meter-low>low</a></code> attribute's value must
-    be less than or equal to the value of the <code title=attr-meter-high><a href=#attr-meter-high>high</a></code> attribute.</p>
-
-    <p>There must not be more than one number in the contents of the
-    element.</p>
-
-   </dd>
-
-   <dt>There is exactly one number in the contents of the element, and
-   the <code title=attr-meter-value><a href=#attr-meter-value>value</a></code> attribute is
-   omitted</dt>
-
-   <dt>There are no numbers in the contents of the element, and the
-   <code title=attr-meter-value><a href=#attr-meter-value>value</a></code> attribute is
-   specified</dt>
-
-   <dd>
-
-    <p>If the <code title=attr-meter-min><a href=#attr-meter-min>min</a></code> attribute
-    attribute is specified, then the <var title="">minimum</var> is
-    that attribute's value; otherwise, it is 0.</p>
-
-    <p>If the <code title=attr-meter-max><a href=#attr-meter-max>max</a></code> attribute
-    attribute is specified, then the <var title="">maximum</var> is
-    that attribute's value; otherwise, it is 1.</p>
-
-    <p>If the <code title=attr-meter-value><a href=#attr-meter-value>value</a></code> attribute is
-    specified, then the <var title="">value</var> is that attribute's
-    number; otherwise, there is exactly one number in the contents of
-    the element, and the <var title="">value</var> is that number.</p>
-
-    <p>The following inequalities must hold, as applicable:</p>
-
-    <ul class=brief><li><var title="">minimum</var> ≤ <var title="">value</var> ≤ <var title="">maximum</var></li>
-     <li><var title="">minimum</var> ≤ <code title=attr-meter-low><a href=#attr-meter-low>low</a></code> ≤ <var title="">maximum</var> (if <code title=attr-meter-low><a href=#attr-meter-low>low</a></code> is specified)</li>
-     <li><var title="">minimum</var> ≤ <code title=attr-meter-high><a href=#attr-meter-high>high</a></code> ≤ <var title="">maximum</var> (if <code title=attr-meter-high><a href=#attr-meter-high>high</a></code> is specified)</li>
-     <li><var title="">minimum</var> ≤ <code title=attr-meter-optimum><a href=#attr-meter-optimum>optimum</a></code> ≤ <var title="">maximum</var> (if <code title=attr-meter-optimum><a href=#attr-meter-optimum>optimum</a></code> is specified)</li>
-    </ul><p>If both the <code title=attr-meter-low><a href=#attr-meter-low>low</a></code> and <code title=attr-meter-high><a href=#attr-meter-high>high</a></code> attributes are specified, then
-    the <code title=attr-meter-low><a href=#attr-meter-low>low</a></code> attribute's value must
-    be less than or equal to the value of the <code title=attr-meter-high><a href=#attr-meter-high>high</a></code> attribute.</p>
-
-    <p>If the <code title=attr-meter-value><a href=#attr-meter-value>value</a></code> attribute is
-    not specified, the number in the contents of the element must not
-    be followed by a <a href=#valid-denominator-punctuation-character title="valid denominator punctuation
-    character">denominator punctuation character</a>. (Otherwise,
-    there is no restriction on what numbers can be in the contents of
-    the element.)</p>
-
-   </dd>
-
-  </dl><!-- next three paragraphs are also in the <progress> section --><p>For the purposes of these requirements, a number is a sequence of
-  characters in the range U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE
-  (9), optionally including a single U+002E FULL STOP character (.) in
-  some position after the first digit and before the last digit,
-  interpreted as a base ten number. Numbers must be separated from
-  other numbers by at least one character that isn't any of the
-  aforementioned. In addition, if the element is required to contain
-  numbers, then the contents of the element must not contain any
-  U+002E FULL STOP characters (.) that aren't part of numbers.</p><p>A number if said to be followed by a <a href=#valid-denominator-punctuation-character title="valid
-  denominator punctuation character">denominator punctuation
-  character</a> if it is followed by zero or more
-  <a href=#white_space>White_Space</a> characters and a <a href=#valid-denominator-punctuation-character>valid denominator
-  punctuation character</a>.</p><p>The contents of the element consist of the concatenation of
-  the <a href=#text-node title="text node">text nodes</a> of all the descendants
-  of the element, in <a href=#tree-order>tree order</a>.</p><!-- previous three paragraphs are also in the <progress> section --><p>The <code title=attr-meter-value><a href=#attr-meter-value>value</a></code>, <code title=attr-meter-min><a href=#attr-meter-min>min</a></code>, <code title=attr-meter-low><a href=#attr-meter-low>low</a></code>, <code title=attr-meter-high><a href=#attr-meter-high>high</a></code>, <code title=attr-meter-max><a href=#attr-meter-max>max</a></code>, and <code title=attr-meter-optimum><a href=#attr-meter-optimum>optimum</a></code> attributes, when present,
+  indicates that neither high nor low values are good.</p><p>Authoring requirements<code title=attr-meter-value><a href=#attr-meter-value>value</a></code> attribute must be
+  specified. The <code title=attr-meter-value><a href=#attr-meter-value>value</a></code>, <code title=attr-meter-min><a href=#attr-meter-min>min</a></code>, <code title=attr-meter-low><a href=#attr-meter-low>low</a></code>, <code title=attr-meter-high><a href=#attr-meter-high>high</a></code>, <code title=attr-meter-max><a href=#attr-meter-max>max</a></code>, and <code title=attr-meter-optimum><a href=#attr-meter-optimum>optimum</a></code> attributes, when present,
   must have values that are <a href=#valid-floating-point-number title="valid floating point
-  number">valid floating point numbers</a>.</p><p class=note>If no minimum or maximum is specified, then the
+  number">valid floating point numbers</a>.</p><p>In addition, the attributes' values are further constrained:</p><p>Let <var title="">value</var> be the <code title=attr-meter-value><a href=#attr-meter-value>value</a></code> attribute's number.</p><p>If the <code title=attr-meter-min><a href=#attr-meter-min>min</a></code> attribute
+  attribute is specified, then let <var title="">minimum</var> be that
+  attribute's value; otherwise, let it be zero.</p><p>If the <code title=attr-meter-max><a href=#attr-meter-max>max</a></code> attribute
+  attribute is specified, then let <var title="">maximum</var> be that
+  attribute's value; otherwise, let it be 1.0.</p><p>The following inequalities must hold, as applicable:</p><ul class=brief><li><var title="">minimum</var> ≤ <var title="">value</var> ≤ <var title="">maximum</var></li>
+   <li><var title="">minimum</var> ≤ <code title=attr-meter-low><a href=#attr-meter-low>low</a></code> ≤ <var title="">maximum</var> (if <code title=attr-meter-low><a href=#attr-meter-low>low</a></code> is specified)</li>
+   <li><var title="">minimum</var> ≤ <code title=attr-meter-high><a href=#attr-meter-high>high</a></code> ≤ <var title="">maximum</var> (if <code title=attr-meter-high><a href=#attr-meter-high>high</a></code> is specified)</li>
+   <li><var title="">minimum</var> ≤ <code title=attr-meter-optimum><a href=#attr-meter-optimum>optimum</a></code> ≤ <var title="">maximum</var> (if <code title=attr-meter-optimum><a href=#attr-meter-optimum>optimum</a></code> is specified)</li>
+  </ul><p>If both the <code title=attr-meter-low><a href=#attr-meter-low>low</a></code> and <code title=attr-meter-high><a href=#attr-meter-high>high</a></code> attributes are specified, then
+  the <code title=attr-meter-low><a href=#attr-meter-low>low</a></code> attribute's value must
+  be less than or equal to the value of the <code title=attr-meter-high><a href=#attr-meter-high>high</a></code> attribute.</p><p class=note>If no minimum or maximum is specified, then the
   range is assumed to be 0..1, and the value thus has to be within
-  that range.</p><div class=example>
+  that range.</p><p>Authors are encouraged to include a textual representation of the
+  gauge's state in the element's contents, for users of user agents
+  that do not support the <code><a href=#the-meter-element>meter</a></code> element.</p><div class=example>
 
-   <p>The following examples all represent a measurement of three
-   quarters (of the maximum of whatever is being measured):</p>
+   <p>The following examples show three gauges that would all be
+   three-quarters full:</p>
 
-   <pre>&lt;meter&gt;75%&lt;/meter&gt;
-&lt;meter&gt;750‰&lt;/meter&gt;
-&lt;meter&gt;3/4&lt;/meter&gt;
-&lt;meter&gt;6 blocks used (out of 8 total)&lt;/meter&gt;
-&lt;meter&gt;max: 100; current: 75&lt;/meter&gt;
-&lt;meter&gt;&lt;object data="graph75.png"&gt;0.75&lt;/object&gt;&lt;/meter&gt; &lt;!-- using <span class=bad>&lt;img alt="0.75" ...&gt;</span> wouldn't work; the alt would be ignored --&gt;
-&lt;meter min="0" max="100" value="75"&gt;&lt;/meter&gt;</pre>
+   <pre>Storage space usage: &lt;meter value=6 max=8&gt;6 blocks used (out of 8 total)&lt;/meter&gt;
+Voter turnout: &lt;meter value=0.75&gt;&lt;img alt="75%" src="graph75.png"&gt;&lt;/meter&gt;
+Tickets sold: &lt;meter min="0" max="100" value="75"&gt;&lt;/meter&gt;</pre>
 
    <p>The following example is incorrect use of the element, because
    it doesn't give a range (and since the default maximum is 1, both
    of the gauges would end up looking maxed out):</p>
 
-   <pre class=bad>&lt;p&gt;The grapefruit pie had a radius of &lt;meter&gt;12cm&lt;/meter&gt;
-and a height of &lt;meter&gt;2cm&lt;/meter&gt;.&lt;/p&gt; &lt;!-- <strong>BAD!</strong> --&gt;</pre>
+   <pre class=bad>&lt;p&gt;The grapefruit pie had a radius of &lt;meter value=12&gt;12cm&lt;/meter&gt;
+and a height of &lt;meter value=2&gt;2cm&lt;/meter&gt;.&lt;/p&gt; &lt;!-- <strong>BAD!</strong> --&gt;</pre>
 
    <p>Instead, one would either not include the meter element, or use
    the meter element with a defined range to give the dimensions in
@@ -8656,9 +8484,7 @@
   </div><div class=example>
 
    <p>The following example shows how a gauge could fall back to
-   localized or pretty-printed text. The attributes have to be used in
-   this case, since the localized or pretty-printed numbers might not
-   match the simple expected syntax.</p>
+   localized or pretty-printed text.</p>
 
    <pre>&lt;p&gt;Disk usage: &lt;meter min=0 value=170261928 max=233257824&gt;170 261 928 bytes used
 out of 233 257 824 bytes available&lt;/meter&gt;&lt;/p&gt;</pre>
@@ -8914,11 +8740,11 @@
 
     </td></tr><tr><td><code><a href=#the-progress-element>progress</a></code>
      </td><td>Progress bar
-     </td><td><pre class=example>Copying: <strong>&lt;progress&gt;75%&lt;/progress&gt;</strong></pre>
+     </td><td><pre class=example>Copying: <strong>&lt;progress value=0.75&gt;75%&lt;/progress&gt;</strong></pre>
 
     </td></tr><tr><td><code><a href=#the-meter-element>meter</a></code>
      </td><td>Gauge
-     </td><td><pre class=example>Disk space remaining: <strong>&lt;meter&gt;75%&lt;meter&gt;</strong></pre>
+     </td><td><pre class=example>Disk space remaining: <strong>&lt;meter value=0.75&gt;75%&lt;meter&gt;</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

Index: common-microsyntaxes.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/common-microsyntaxes.html,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- common-microsyntaxes.html	3 Jan 2010 15:15:05 -0000	1.9
+++ common-microsyntaxes.html	4 Jan 2010 23:47:18 -0000	1.10
@@ -269,7 +269,7 @@
    <a href="urls.html">2.5 URLs &#8594;</a>
   <ol class="toc"><li><ol><li><a href="common-microsyntaxes.html#common-microsyntaxes"><span class="secno">2.4 </span>Common microsyntaxes</a>
     <ol><li><a href="common-microsyntaxes.html#boolean-attributes"><span class="secno">2.4.1 </span>Boolean attributes</a></li><li><a href="common-microsyntaxes.html#keywords-and-enumerated-attributes"><span class="secno">2.4.2 </span>Keywords and enumerated attributes</a></li><li><a href="common-microsyntaxes.html#numbers"><span class="secno">2.4.3 </span>Numbers</a>
-      <ol><li><a href="common-microsyntaxes.html#non-negative-integers"><span class="secno">2.4.3.1 </span>Non-negative integers</a></li><li><a href="common-microsyntaxes.html#signed-integers"><span class="secno">2.4.3.2 </span>Signed integers</a></li><li><a href="common-microsyntaxes.html#real-numbers"><span class="secno">2.4.3.3 </span>Real numbers</a></li><li><a href="common-microsyntaxes.html#ratios"><span class="secno">2.4.3.4 </span>Ratios</a></li><li><a href="common-microsyntaxes.html#lists-of-integers"><span class="secno">2.4.3.5 </span>Lists of integers</a></li></ol></li><li><a href="common-microsyntaxes.html#dates-and-times"><span class="secno">2.4.4 </span>Dates and times</a>
+      <ol><li><a href="common-microsyntaxes.html#non-negative-integers"><span class="secno">2.4.3.1 </span>Non-negative integers</a></li><li><a href="common-microsyntaxes.html#signed-integers"><span class="secno">2.4.3.2 </span>Signed integers</a></li><li><a href="common-microsyntaxes.html#real-numbers"><span class="secno">2.4.3.3 </span>Real numbers</a></li><li><a href="common-microsyntaxes.html#lists-of-integers"><span class="secno">2.4.3.4 </span>Lists of integers</a></li></ol></li><li><a href="common-microsyntaxes.html#dates-and-times"><span class="secno">2.4.4 </span>Dates and times</a>
       <ol><li><a href="common-microsyntaxes.html#months"><span class="secno">2.4.4.1 </span>Months</a></li><li><a href="common-microsyntaxes.html#dates"><span class="secno">2.4.4.2 </span>Dates</a></li><li><a href="common-microsyntaxes.html#times"><span class="secno">2.4.4.3 </span>Times</a></li><li><a href="common-microsyntaxes.html#local-dates-and-times"><span class="secno">2.4.4.4 </span>Local dates and times</a></li><li><a href="common-microsyntaxes.html#global-dates-and-times"><span class="secno">2.4.4.5 </span>Global dates and times</a></li><li><a href="common-microsyntaxes.html#weeks"><span class="secno">2.4.4.6 </span>Weeks</a></li><li><a href="common-microsyntaxes.html#vaguer-moments-in-time"><span class="secno">2.4.4.7 </span>Vaguer moments in time</a></li></ol></li><li><a href="common-microsyntaxes.html#colors"><span class="secno">2.4.5 </span>Colors</a></li><li><a href="common-microsyntaxes.html#space-separated-tokens"><span class="secno">2.4.6 </span>Space-separated tokens</a></li><li><a href=common-microsyntaxes.html#comma-separated-tokens"><span class="secno">2.4.7 </span>Comma-separated tokens</a></li><li><a href="common-microsyntaxes.html#syntax-references"><span class="secno">2.4.8 </span>References</a></li><li><a href="common-microsyntaxes.html#mq"><span class="secno">2.4.9 </span>Media queries</a></li></ol></li></ol></li></ol></div>
 
   <h3 id="common-microsyntaxes"><span class="secno">2.4 </span>Common microsyntaxes</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>There are various places in HTML that accept particular data
@@ -360,32 +360,7 @@
   number if there is one). If there is no E, then the exponent is
   treated as zero.</p><p class="note">The Infinity and Not-a-Number (NaN) values are not
   <a href="#valid-floating-point-number" title="valid floating point number">valid floating point
-  numbers</a>.</p><h5 id="ratios"><span class="secno">2.4.3.4 </span>Ratios</h5><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p class="note">The algorithms described in this section are used by
-  the <code><a href="text-level-semantics.html#the-progress-element">progress</a></code> and <code><a href="text-level-semantics.html#the-meter-element">meter</a></code> elements.</p><p>A <dfn id="valid-denominator-punctuation-character">valid denominator punctuation character</dfn> is one of
-  the characters from the table below. There is <dfn id="values-associated-with-denominator-punctuation-characters" title="values
-  associated with denominator punctuation characters">a value
-  associated with each denominator punctuation character</dfn>, as
-  shown in the table below.</p><table><thead><tr><th colspan="2">Denominator Punctuation Character</th>
-     <th>Value</th>
-    </tr></thead><tbody><tr><td>U+0025 PERCENT SIGN</td>
-     <td>%</td>
-     <td>100</td>
-    </tr><tr><td>U+066A ARABIC PERCENT SIGN</td>
-     <td>&#1642;</td>
-     <td>100</td>
-    </tr><tr><td>U+FE6A SMALL PERCENT SIGN</td>
-     <td>&#65130;</td>
-     <td>100</td>
-    </tr><tr><td>U+FF05 FULLWIDTH PERCENT SIGN</td>
-     <td>&#65285;</td>
-     <td>100</td>
-    </tr><tr><td>U+2030 PER MILLE SIGN</td>
-     <td>&#8240;</td>
-     <td>1000</td>
-    </tr><tr><td>U+2031 PER TEN THOUSAND SIGN</td>
-     <td>&#8241;</td>
-     <td>10000</td>
-    </tr></tbody></table><h5 id="lists-of-integers"><span class="secno">2.4.3.5 </span>Lists of integers</h5><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>A <dfn id="valid-list-of-integers">valid list of integers</dfn> is a number of <a href="#valid-integer" title="valid integer">valid integers</a> separated by U+002C
+  numbers</a>.</p><h5 id="lists-of-integers"><span class="secno">2.4.3.4 </span>Lists of integers</h5><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>A <dfn id="valid-list-of-integers">valid list of integers</dfn> is a number of <a href="#valid-integer" title="valid integer">valid integers</a> separated by U+002C
   COMMA characters, with no other characters (e.g. no <a href="#space-character" title="space character">space characters</a>). In addition, there
   might be restrictions on the number of integers that can be given,
   or on the range of values allowed.</p><h4 id="dates-and-times"><span class="secno">2.4.4 </span>Dates and times</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>In the algorithms below, the <dfn id="number-of-days-in-month-month-of-year-year">number of days in month <var title="">month</var> of year <var title="">year</var></dfn> is:

Received on Monday, 4 January 2010 23:47:28 UTC