html5/spec-author-view Overview.html,1.614,1.615 acknowledgements.html,1.561,1.562 fragment-links.js,1.12,1.13 iana.html,1.18,1.19 infrastructure.html,1.561,1.562 introduction.html,1.558,1.559 spec.html,1.619,1.620 syntax.html,1.561,1.562 the-iframe-element.html,1.15,1.16 urls.html,1.16,1.17

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

Modified Files:
	Overview.html acknowledgements.html fragment-links.js 
	iana.html infrastructure.html introduction.html spec.html 
	syntax.html the-iframe-element.html urls.html 
Log Message:
revert

[updated by splitter]


Index: infrastructure.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/infrastructure.html,v
retrieving revision 1.561
retrieving revision 1.562
diff -u -d -r1.561 -r1.562
--- infrastructure.html	12 Jan 2010 08:59:17 -0000	1.561
+++ infrastructure.html	14 Jan 2010 08:12:45 -0000	1.562
@@ -317,7 +317,8 @@
   matches the <code title="">media-type</code> rule defined in section
   3.7 "Media Types" of RFC 2616, but does not contain any U+003B
   SEMICOLON characters (;). In other words, if it consists only of a
-  type and subtype, with no MIME Type parameters. <a href="references.html#refsHTTP">[HTTP]</a></p><h4 id="xml"><span class="secno">2.1.2 </span>XML</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p id="html-namespace">To ease migration from HTML to XHTML, UAs
+  type and subtype, with no MIME Type parameters. <a href="references.html#refsHTTP">[HTTP]</a></p><p>The term <dfn id="html-mime-type">HTML MIME type</dfn> is used to refer to the <a href="#mime-type" title="MIME type">MIME types</a> <code><a href="iana.html#text-html">text/html</a></code> and
+  <code><a href="iana.html#text-html-sandboxed">text/html-sandboxed</a></code>.</p><h4 id="xml"><span class="secno">2.1.2 </span>XML</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p id="html-namespace">To ease migration from HTML to XHTML, UAs
   conforming to this specification will place elements in HTML in the
   <code>http://www.w3.org/1999/xhtml</code> namespace, at least for
   the purposes of the DOM and CSS. The term "<dfn id="html-elements">HTML

Index: the-iframe-element.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/the-iframe-element.html,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -d -r1.15 -r1.16
--- the-iframe-element.html	12 Jan 2010 08:59:20 -0000	1.15
+++ the-iframe-element.html	14 Jan 2010 08:12:46 -0000	1.16
@@ -381,7 +381,57 @@
    <pre>&lt;iframe sandbox="allow-same-origin allow-forms allow-scripts"
         src="http://maps.example.com/embedded.html"&gt;&lt;/iframe&gt;</pre>
 
-  </div><hr><!-- v2: Might be interesting to have a value on seamless that
+  </div><div class="example">
+
+   <p>Suppose a file A contained the following fragment:</p>
+
+   <pre>&lt;iframe sandbox="allow-same-origin allow-forms" src=B&gt;&lt;/iframe&gt;</pre>
+
+   <p>Suppose that file B contained an iframe also:</p>
+
+   <pre>&lt;iframe sandbox="allow-scripts" src=C&gt;&lt;/iframe&gt;</pre>
+
+   <p>Further, suppose that file C contained a link:</p>
+
+   <pre>&lt;a href=D&gt;Link&lt;/a&gt;</pre>
+
+   <p>For this example, suppose all the files were served as
+   <code><a href="iana.html#text-html">text/html</a></code>.</p>
+
+   <p>Page C in this scenario has all the sandboxing flags
+   set. Scripts are disabled, because the <code><a href="#the-iframe-element">iframe</a></code> in A has
+   scripts disabled, and this overrides the <code title="attr-iframe-sandbox-allow-scripts"><a href="#attr-iframe-sandbox-allow-scripts">allow-scripts</a></code>
+   keyword set on the <code><a href="#the-iframe-element">iframe</a></code> in B. Forms are also
+   disabled, because the inner <code><a href="#the-iframe-element">iframe</a></code> (in B) does not
+   have the <code title="attr-iframe-sandbox-allow-forms"><a href="#attr-iframe-sandbox-allow-forms">allow-forms</a></code> keyword
+   set.</p>
+
+   <p>Suppose now that a script in A removes all the <code title="attr-iframe-sandbox"><a href="#attr-iframe-sandbox">sandbox</a></code> attributes in A and
+   B. This would change nothing immediately. If the user clicked the
+   link in C, loading page D into the <code><a href="#the-iframe-element">iframe</a></code> in B, page D
+   would now act as if the <code><a href="#the-iframe-element">iframe</a></code> in B had the <code title="attr-iframe-sandbox-allow-same-origin"><a href="#attr-iframe-sandbox-allow-same-origin">allow-same-origin</a></code>
+   and <code title="attr-iframe-sandbox-allow-forms"><a href="#attr-iframe-sandbox-allow-forms">allow-forms</a></code> keywords
+   set, because that was the state of the <a href="browsers.html#nested-browsing-context">nested browsing
+   context</a> in the <code><a href="#the-iframe-element">iframe</a></code> in A when page B was
+   loaded.</p>
+
+   <p>Generally speaking, dynamically removing or changing the <code title="attr-iframe-sandbox"><a href="#attr-iframe-sandbox">sandbox</a></code> attribute is
+   ill-advised, because it can make it quite hard to reason about what
+   will be allowed and what will not.</p>
+
+  </div><p class="note">Potentially hostile files can be served from the
+  same server as the file containing the <code><a href="#the-iframe-element">iframe</a></code> element
+  by labeling them as <code><a href="iana.html#text-html-sandboxed">text/html-sandboxed</a></code> instead of
+  <code><a href="iana.html#text-html">text/html</a></code>. This ensures that scripts in the files are
+  unable to attack the site (as if they were actually served from
+  another server), even if the user is tricked into visiting those
+  pages directly, without the protection of the <code title="attr-iframe-sandbox"><a href="#attr-iframe-sandbox">sandbox</a></code> attribute.</p><p class="warning">If the <code title="attr-iframe-sandbox-allow-scripts"><a href="#attr-iframe-sandbox-allow-scripts">allow-scripts</a></code>
+  keyword is set along with <code title="attr-iframe-sandbox-allow-same-origin"><a href="#attr-iframe-sandbox-allow-same-origin">allow-same-origin</a></code>
+  keyword, and the file is from the <a href="#same-origin">same origin</a> as the
+  <code><a href="#the-iframe-element">iframe</a></code>'s <code>Document</code>, then a script in the
+  "sandboxed" iframe could just reach out, remove the <code title="attr-iframe-sandbox"><a href="#attr-iframe-sandbox">sandbox</a></code> attribute, and then
+  reload itself, effectively breaking out of the sandbox
+  altogether.</p><hr><!-- v2: Might be interesting to have a value on seamless that
   allowed event propagation of some sort, maybe based on the WICD
   work: http://www.w3.org/TR/WICD/ --><p>The <dfn id="attr-iframe-seamless" title="attr-iframe-seamless"><code>seamless</code></dfn>
   attribute is a <a href="common-microsyntaxes.html#boolean-attribute">boolean attribute</a>. When specified, it

Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/Overview.html,v
retrieving revision 1.614
retrieving revision 1.615
diff -u -d -r1.614 -r1.615
--- Overview.html	12 Jan 2010 08:59:16 -0000	1.614
+++ Overview.html	14 Jan 2010 08:12:45 -0000	1.615
@@ -264,7 +264,7 @@
    <h1>HTML5 (Author Edition)</h1>
    <h2 class="no-num no-toc" id="a-vocabulary-and-associated-apis-for-html-and-xhtml">A vocabulary and associated APIs for HTML and XHTML</h2>
 
-   <h2 class="no-num no-toc" id="editor-s-draft-12-january-2010">Editor's Draft 12 January 2010</h2>
+   <h2 class="no-num no-toc" id="editor-s-draft-13-january-2010">Editor's Draft 13 January 2010</h2>
    <dl><dt>Latest Published Version:</dt>
     <dd><a href="http://www.w3.org/TR/html5/">http://www.w3.org/TR/html5/</a></dd>
     <dt>Latest Editor's Draft:</dt>
@@ -283,7 +283,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 $Revision $.
+This is revision 1.3664.
    </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
@@ -363,7 +363,7 @@
   specification's progress along the W3C Recommendation
   track.
 
-  This specification is the 12 January 2010 Editor's Draft.
+  This specification is the 13 January 2010 Editor's Draft.
   </p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- relationship to other work (required) --><p>This specification is part of <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/">a
   larger specification</a> being produced by the <a href="http://www.whatwg.org/">WHATWG</a>.
   <!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST -->
@@ -822,11 +822,12 @@
    <li><a href="obsolete.html#non-conforming-features"><span class="secno">9.2 </span>Non-conforming features</a></li></ol></li>
  <li><a href="iana.html#iana"><span class="secno">10 </span>IANA considerations</a>
   <ol><li><a href="iana.html#text-html"><span class="secno">10.1 </span><code>text/html</code></a></li>
-   <li><a href="iana.html#application-xhtml-xml"><span class="secno">10.2 </span><code>application/xhtml+xml</code></a></li>
-   <li><a href="iana.html#text-cache-manifest"><span class="secno">10.3 </span><code>text/cache-manifest</code></a></li>
-   <li><a href="iana.html#text-ping"><span class="secno">10.4 </span><code>text/ping</code></a></li>
-   <li><a href="iana.html#ping-from"><span class="secno">10.5 </span><code>Ping-From</code></a></li>
-   <li><a href="iana.html#ping-to"><span class="secno">10.6 </span><code>Ping-To</code></a></li></ol></li>
+   <li><a href="iana.html#text-html-sandboxed"><span class="secno">10.2 </span><code>text/html-sandboxed</code></a></li>
+   <li><a href="iana.html#application-xhtml-xml"><span class="secno">10.3 </span><code>application/xhtml+xml</code></a></li>
+   <li><a href="iana.html#text-cache-manifest"><span class="secno">10.4 </span><code>text/cache-manifest</code></a></li>
+   <li><a href="iana.html#text-ping"><span class="secno">10.5 </span><code>text/ping</code></a></li>
+   <li><a href="iana.html#ping-from"><span class="secno">10.6 </span><code>Ping-From</code></a></li>
+   <li><a href="iana.html#ping-to"><span class="secno">10.7 </span><code>Ping-To</code></a></li></ol></li>
  <li><a class="no-num" href="index.html#index">Index</a>
   <ol><li><a class="no-num" href="index.html#elements-1">Elements</a></li>
    <li><a class="no-num" href="index.html#attributes-0">Attributes</a></li>

Index: urls.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/urls.html,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- urls.html	12 Jan 2010 08:59:20 -0000	1.16
+++ urls.html	14 Jan 2010 08:12:46 -0000	1.17
@@ -667,8 +667,8 @@
    <li value="81"><dfn id="parse_err"><code>PARSE_ERR</code></dfn></li> <!-- actually defined in dom3ls -->
    <li value="82"><dfn id="serialize_err"><code>SERIALIZE_ERR</code></dfn></li> <!-- actually defined in dom3ls -->
   </ol><h3 id="namespaces"><span class="secno">2.7 </span>Namespaces</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>The <dfn id="html-namespace-0">HTML namespace</dfn> is: <code>http://www.w3.org/1999/xhtml</code></p><p>The <dfn id="mathml-namespace">MathML namespace</dfn> is: <code>http://www.w3.org/1998/Math/MathML</code></p><p>The <dfn id="svg-namespace">SVG namespace</dfn> is: <code>http://www.w3.org/2000/svg</code></p><p>The <dfn id="xlink-namespace">XLink namespace</dfn> is: <code>http://www.w3.org/1999/xlink</code></p><p>The <dfn id="xml-namespace">XML namespace</dfn> is: <code>http://www.w3.org/XML/1998/namespace</code></p><p>The <dfn id="xmlns-namespace">XMLNS namespace</dfn> is: <code>http://www.w3.org/2000/xmlns/</code></p><hr><p>Data mining tools and other user agents that perform operations
-  on <code><a href="iana.html#text-html">text/html</a></code> content without running scripts,
-  evaluating CSS or XPath expressions, or otherwise exposing the
-  resulting DOM to arbitrary content, may "support namespaces" by just
-  asserting that their DOM node analogues are in certain namespaces,
-  without actually exposing the above strings.</p></body></html>
\ No newline at end of file
+  on content without running scripts, evaluating CSS or XPath
+  expressions, or otherwise exposing the resulting DOM to arbitrary
+  content, may "support namespaces" by just asserting that their DOM
+  node analogues are in certain namespaces, without actually exposing
+  the above strings.</p></body></html>
\ No newline at end of file

Index: iana.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/iana.html,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- iana.html	12 Jan 2010 08:59:17 -0000	1.18
+++ iana.html	14 Jan 2010 08:12:45 -0000	1.19
@@ -270,7 +270,7 @@
    <a href="Overview.html#contents">Table of contents</a> &#8211;
    <a href="index.html">Index &#8594;</a>
   <ol class="toc"><li><a href="iana.html#iana"><span class="secno">10 </span>IANA considerations</a>
-  <ol><li><a href="iana.html#text-html"><span class="secno">10.1 </span><code>text/html</code></a></li><li><a href="iana.html#application-xhtml-xml"><span class="secno">10.2 </span><code>application/xhtml+xml</code></a></li><li><a href="iana.html#text-cache-manifest"><span class="secno">10.3 </span><code>text/cache-manifest</code></a></li><li><a href="iana.html#text-ping"><span class="secno">10.4 </span><code>text/ping</code></a></li><li><a href="iana.html#ping-from"><span class="secno">10.5 </span><code>Ping-From</code></a></li><li><a href="iana.html#ping-to"><span class="secno">10.6 </span><code>Ping-To</code></a></li></ol></li></ol></div>
+  <ol><li><a href="iana.html#text-html"><span class="secno">10.1 </span><code>text/html</code></a></li><li><a href="iana.html#text-html-sandboxed"><span class="secno">10.2 </span><code>text/html-sandboxed</code></a></li><li><a href="iana.html#application-xhtml-xml"><span class="secno">10.3 </span><code>application/xhtml+xml</code></a></li><li><a href="iana.html#text-cache-manifest"><span class="secno">10.4 </span><code>text/cache-manifest</code></a></li><li><a href="iana.html#text-ping"><span class="secno">10.5 </span><code>text/ping</code></a></li><li><a href="iana.html#ping-from"><span class="secno">10.6 </span><code>Ping-From</code></a></li><li><a href="iana.html#ping-to"><span class="secno">10.7 </span><code>Ping-To</code></a></li></ol></li></ol></div>
 
   <h2 id="iana"><span class="secno">10 </span>IANA considerations</h2><!-- http://www.w3.org/2002/06/registering-mediatype.html --><h3 id="text-html"><span class="secno">10.1 </span><dfn><code>text/html</code></dfn></h3><p>This registration is for community review and will be submitted
   to the IESG for review, approval, and registration with IANA.</p><!--
@@ -373,7 +373,71 @@
    <dt>Change controller:</dt>
    <dd>W3C and WHATWG</dd>
   </dl><p>Fragment identifiers used with <code><a href="#text-html">text/html</a></code> resources
-  refer to <a href="#the-indicated-part-of-the-document">the indicated part of the document</a>.</p><h3 id="application-xhtml-xml"><span class="secno">10.2 </span><dfn><code>application/xhtml+xml</code></dfn></h3><p>This registration is for community review and will be submitted
+  refer to <a href="#the-indicated-part-of-the-document">the indicated part of the document</a>.</p><h3 id="text-html-sandboxed"><span class="secno">10.2 </span><dfn><code>text/html-sandboxed</code></dfn></h3><p>This registration is for community review and will be submitted
+  to the IESG for review, approval, and registration with IANA.</p><!--
+   To: ietf-types@iana.org
+   Subject: Registration of media type text/html-sandboxed
+  --><dl><dt>Type name:</dt>
+   <dd>text</dd>
+   <dt>Subtype name:</dt>
+   <dd>html-sandboxed</dd>
+   <dt>Required parameters:</dt>
+   <dd>No required parameters</dd>
+   <dt>Optional parameters:</dt>
+   <dd>Same as for <code><a href="#text-html">text/html</a></code></dd>
+   <dt>Encoding considerations:</dt>
+   <dd>Same as for <code><a href="#text-html">text/html</a></code></dd>
+   <dt>Security considerations:</dt>
+   <dd>
+    <p>The purpose of the <code><a href="#text-html-sandboxed">text/html-sandboxed</a></code> MIME type
+    is to provide a way for content providers to indicate that they
+    want the file to be interpreted in a manner that does not give the
+    file's contents access to the rest of the site. This is achieved
+    by assigning the <code>Document</code> objects generated from
+    resources labeled as <code><a href="#text-html-sandboxed">text/html-sandboxed</a></code> unique
+    origins.</p>
+    <p>To avoid having legacy user agents treating resources labeled
+    as <code><a href="#text-html-sandboxed">text/html-sandboxed</a></code> as regular
+    <code><a href="#text-html">text/html</a></code> files, authors should avoid using the <code title="">.html</code> or <code title="">.htm</code> extensions for
+    resources labeled as <code><a href="#text-html-sandboxed">text/html-sandboxed</a></code>.</p>
+    <p>Beyond this, the type is identical to <code><a href="#text-html">text/html</a></code>,
+    and the same considerations apply.</p>
+   </dd>
+   <dt>Interoperability considerations:</dt>
+   <dd>Same as for <code><a href="#text-html">text/html</a></code></dd>
+   <dt>Published specification:</dt>
+   <dd>
+    This document is the relevant specification. Labeling a resource
+    with the <code><a href="#text-html-sandboxed">text/html-sandboxed</a></code> type asserts that the
+    resource is an <a href="dom.html#html-documents" title="HTML documents">HTML document</a>
+    using <a href="syntax.html#syntax">the HTML syntax</a>.
+   </dd>
+   <dt>Applications that use this media type:</dt>
+   <dd>Same as for <code><a href="#text-html">text/html</a></code></dd>
+   <dt>Additional information:</dt>
+   <dd>
+    <dl><dt>Magic number(s):</dt>
+     <dd>Documents labeled as <code><a href="#text-html-sandboxed">text/html-sandboxed</a></code> are
+     heuristically indistinguishable from those labeled as
+     <code><a href="#text-html">text/html</a></code>.</dd>
+     <dt>File extension(s):</dt>
+     <dd>"<code title="">sandboxed</code>"</dd>
+     <dt>Macintosh file type code(s):</dt>
+     <dd><code title="">TEXT</code></dd>
+    </dl></dd>
+   <dt>Person &amp; email address to contact for further information:</dt>
+   <dd>Ian Hickson &lt;ian@hixie.ch&gt;</dd>
+   <dt>Intended usage:</dt>
+   <dd>Common</dd>
+   <dt>Restrictions on usage:</dt>
+   <dd>No restrictions apply.</dd>
+   <dt>Author:</dt>
+   <dd>Ian Hickson &lt;ian@hixie.ch&gt;</dd>
+   <dt>Change controller:</dt>
+   <dd>W3C and WHATWG</dd>
+  </dl><p>Fragment identifiers used with <code><a href="#text-html-sandboxed">text/html-sandboxed</a></code>
+  resources refer to <a href="#the-indicated-part-of-the-document">the indicated part of the
+  document</a>.</p><h3 id="application-xhtml-xml"><span class="secno">10.3 </span><dfn><code>application/xhtml+xml</code></dfn></h3><p>This registration is for community review and will be submitted
   to the IESG for review, approval, and registration with IANA.</p><!--
    To: ietf-types@iana.org
    Subject: Registration of media type application/xhtml+xml
@@ -427,7 +491,7 @@
    <dd>W3C and WHATWG</dd>
   </dl><p>Fragment identifiers used with <code><a href="#application-xhtml-xml">application/xhtml+xml</a></code>
   resources have the same semantics as with any <a href="infrastructure.html#xml-mime-type">XML MIME
-  type</a>. <a href="references.html#refsRFC3023">[RFC3023]</a></p><h3 id="text-cache-manifest"><span class="secno">10.3 </span><dfn><code>text/cache-manifest</code></dfn></h3><p>This registration is for community review and will be submitted
+  type</a>. <a href="references.html#refsRFC3023">[RFC3023]</a></p><h3 id="text-cache-manifest"><span class="secno">10.4 </span><dfn><code>text/cache-manifest</code></dfn></h3><p>This registration is for community review and will be submitted
   to the IESG for review, approval, and registration with IANA.</p><!--
    To: ietf-types@iana.org
    Subject: Registration of media type text/cache-manifest
@@ -488,7 +552,7 @@
    <dt>Change controller:</dt>
    <dd>W3C and WHATWG</dd>
   </dl><p>Fragment identifiers have no meaning with
-  <code><a href="#text-cache-manifest">text/cache-manifest</a></code> resources.</p><h3 id="text-ping"><span class="secno">10.4 </span><dfn><code>text/ping</code></dfn></h3><p>This registration is for community review and will be submitted
+  <code><a href="#text-cache-manifest">text/cache-manifest</a></code> resources.</p><h3 id="text-ping"><span class="secno">10.5 </span><dfn><code>text/ping</code></dfn></h3><p>This registration is for community review and will be submitted
   to the IESG for review, approval, and registration with IANA.</p><!--
    To: ietf-types@iana.org
    Subject: Registration of media type text/ping
@@ -542,7 +606,7 @@
    <dt>Change controller:</dt>
    <dd>W3C and WHATWG</dd>
   </dl><p>Fragment identifiers have no meaning with
-  <code><a href="#text-ping">text/ping</a></code> resources.</p><h3 id="ping-from"><span class="secno">10.5 </span><dfn title="http-ping-from"><code>Ping-From</code></dfn></h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>This section describes a header field for registration in the
+  <code><a href="#text-ping">text/ping</a></code> resources.</p><h3 id="ping-from"><span class="secno">10.6 </span><dfn title="http-ping-from"><code>Ping-From</code></dfn></h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>This section describes a header field for registration in the
   Permanent Message Header Field Registry.  <a href="references.html#refsRFC3864">[RFC3864]</a></p><dl><dt>Header field name</dt>
    <dd>Ping-From</dd>
    <dt>Applicable protocol</dt>
@@ -557,7 +621,7 @@
    </dd>
    <dt>Related information</dt>
    <dd>None.</dd>   
-  </dl><h3 id="ping-to"><span class="secno">10.6 </span><dfn title="http-ping-to"><code>Ping-To</code></dfn></h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>This section describes a header field for registration in the
+  </dl><h3 id="ping-to"><span class="secno">10.7 </span><dfn title="http-ping-to"><code>Ping-To</code></dfn></h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>This section describes a header field for registration in the
   Permanent Message Header Field Registry.  <a href="references.html#refsRFC3864">[RFC3864]</a></p><dl><dt>Header field name</dt>
    <dd>Ping-To</dd>
    <dt>Applicable protocol</dt>

Index: fragment-links.js
===================================================================
RCS file: /sources/public/html5/spec-author-view/fragment-links.js,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -d -r1.12 -r1.13
--- fragment-links.js	12 Jan 2010 08:59:17 -0000	1.12
+++ fragment-links.js	14 Jan 2010 08:12:45 -0000	1.13
@@ -1,4 +1,4 @@
-var fragment_links = { 'refsRFC1557':'references','attr-meter-high':'the-button-element','refsRFC1554':'references','dom-opener':'browsers','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','namespaces':'urls','command-redo':'dnd','attr-meter-value':'the-button-element','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-iframe-longdesc':'obsolete','attr-input-usemap':'obsolete','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','attr-hr-align':'obsolete','valid-mime-type-with-no-parameters':'infrastructure','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','attr-link-href':'semantics','spelling-and-grammar-checking':'editing','htmltitleelement':'semantics','character-references':'syntax','command-bold':'dnd','attr-hyperlink-media':'links','attr-object-align':'obsolete','u':'obsolete','syntax-start-tag':'syntax','link-type-index':'links','command-facet-disabledstate':'commands','strike':'obsolete','browsing-the-web':'history','refsDOMRANGE':'references','attr-tr-bcolor':'obsolete','the-img-element':'embedded-content-1','mq':'common-microsyntaxes','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','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-element':'interactive-elements','timers':'timers','meta-description':'semantics','valid-simple-color':'common-microsyntaxes','quota_exceeded_err':'urls','the-div-element':'grouping-content','use-div-for-wrappers':'sections','refsWHATWGWIKI':'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','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','serialize_err':'urls','client-identification':'timers','attr-input-type-color-keyword':'the-input-elemet','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','htmltextareaelement':'the-button-element','default-media':'semantics','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-mirosyntaxes','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','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-color':'common-microsyntaxes','attr-button-value':'the-button-element','navigatorabilities':'timers','event-media-ratechange':'video','link-type-nofollow':'links','event-drag':'dnd','event-media-emptied':'video','inuse_attribute_err':'urls','attr-object-declare':'obsolete','refsWIN31J':'references','the-title-element':'dom','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','refsPROGRESS':'references','htmloptionscollection':'urls','radionodelist':'urls','domtokenlist':'urls','preferred-mime-name':'infrastructure','htmlstyleelement':'semantics','attr-th-scope-colgroup':'tabular-data','attr-fs-enctype':'association-of-controls-and-forms','attr-textarea-wrap-hard':'the-button-element','custom-handlers':'timers','mathml-namespace':'urls','event-media-canplay':'video','refsFILEAPI':'references','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-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-profile':'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':'the-button-element','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','htmlheadelement':'semantics','attr-input-type-url-keyword':'the-input-element','htmlembedelement':'the-iframe-element','htmlmediaelemen':'video','character-encoding-declaration':'semantics','attr-keygen-challenge':'the-button-element','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-context-name':'browsers','n':'tabular-data','attr-area-shape-circle':'the-map-element','element-definitions':'elements','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','a-link-or-button-containing-nothing-but-the-image':'embeded-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-col-charoff':'obsolete','htmltimeelement':'text-level-semantics','the-address-element':'sections','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','ecurity':'dom','facets':'commands','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','nested-browsing-context':'browsers','phrasing-content':'content-models','dnd':'dnd','attr-meter-min':'the-button-element','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','attr-source-media':'video','attr-area-nohref':'obsolete','index_size_err':'urls','attr-fs-formenctype':'association-of-controls-and-forms','attr-fs-action':'association-of-controls-and-forms','cdata-sections':'syntax','event-media-play':'video','command-facet-hiddenstate':'commands','refsSVG':'references','introduction-2':'offline','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','dom-mediaerror-media_err_decode':'video','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','command-italic':'dnd','focus':'editing','attr-caption-align':'obsolete','attr-textarea-placeholder':'the-button-element','sequential-link-types':'links','attr-time-pubdate':'text-level-semantics','local-dates-and-times':'common-microsyntaxes','htmlselectelement':'the-button-element','valid-media-query':'common-microsyntaxes','beforeunloadevent':'history','xml-namespace':'urls','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','noembed':'obsolete','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','attrparam-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-keyword-radio':'interactive-elements','sectioning-content':'content-models','syntax-tag-name':'syntax','set-of-space-separated-tokens':'common-microsyntaxes','browser-interface-elements':'browsers','iana':'iana','the-id-attribute':'elements','style-default-media':'semantics','attr-hr-size':'obsolete','htmlparagraphelement':'grouping-content','not_supported_err':'urls','charset512':'semantics','security_err':'urls','event-dragleave':'dnd','attr-object-standby':'obsolete','attr-mod-datetime':'edits','dom-media-have_metadata':'video','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':'editng','printing':'timers','attr-link-media':'semantics','syntax-attribute-value':'syntax','xml-compatible':'infrastructure','htmlbuttonelement':'the-button-element','attr-fs-novalidate':'association-of-controls-and-forms','refsRFC2806':'references','attr-optgroup-label':'the-button-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','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':'forms','the-keygen-element':'the-button-elemen','location-of-the-media-resource':'video','a-quick-introduction-to-html':'introduction','htmlquoteelement':'grouping-content','attr-input-autocomplete':'common-input-element-attributes','command-facet-id':'commands','user-prompts':'timers','forms':'forms','closing-the-input-stream':'apis-in-html-documents','window':'browsers','listing':'obsolete','attr-th-scope':'tabular-data','attr-object-data':'the-iframe-element','conversations':'commands','attr-tdth-height':'obsolete','attr-table-align':'obsolete','refsWCAG':'references','refsRFC3864':'references','refsEUCKR':'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':'iana','manifests':'offline','dom-domhtmlimplementation-createhtmldocument':'dom','attr-command-radiogroup':'interactive-elements','canvas':'the-canvas-element','command-formatblock':'dnd','attr-dl-copact':'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','refsRFC1345':'references','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','htmltablecaptionelement':'tabular-data','common-input-element-attributes':'common-input-element-attributes','refsRFC2237':'refereces','dates-and-times':'common-microsyntaxes','refsRFC5280':'references','optional-tags':'syntax','attr-link-sizes':'links','refsGRAPHICS':'references','the-document-s-address':'dom','attr-th-scope-row':'tabular-data','type_mismatch_err':'urls','refsOPENSEARCH':'references','attr-form-autocomplete':'forms','attr-fe-disabled':'association-of-controls-and-forms','general-guidelines':'embedded-content-1','the-bdo-element':'text-level-semantics','the-article-element':'sections','bgsound':'obsolete','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':'infrastructure','syntax_err':'urls','link-type-last':'links','refsDOMVIEWS':'references','the-min-and-max-attributes':'common-input-element-attributes','category-submit':'forms','attr-area-shape-default':'the-map-element','xm':'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','nobr':'obsolete','attr-iframe-align':'obsolete','command-insertlinebreak':'dnd','svg-namespace':'urls','attr-map-name':'the-map-element','attributes-common-to-td-and-th-elements':'tabular-data','document.writeln':'apis-in-html-documents','command-subscript':'dnd','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':'the-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','s':'obsolete','attr-menu-compact':'obsolete','insert-an-element-into-a-document':'infrastructure','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','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','concept-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-ope':'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','the-map-element':'the-map-element','dom-canvas-getcontext':'the-canvas-element','the-progress-element':'the-button-element','the-window-object':'browsers','editing-apis':'dnd','the-object-element':'the-iframe-element','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-lodstart':'video','refsWEBWORKERS':'references','htmltablecolelement':'tabular-data','wbr':'obsolete','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','elements':'elements','attr-base-target':'semantics','syntax-elements':'syntax','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','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','parent-bowsing-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-scripts':'scripting-1','the-code-element':'text-level-semantics','toolbar-state':'interactive-elements','htmlimageelement':'embedded-content-1','attr-table-rules':'obsolete','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-sate':'number-state','attr-fs-method-put':'association-of-controls-and-forms','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','refsUTF7':'references','command-facet-action':'commands','dom-outerhtml':'apis-in-html-documents','htmlolistelement':'grouping-content','anonymous-command':'commands','fallback-content':'content-models','refsRFC1034':'references','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','applicaton-cache-api':'offline','the-session-history-of-browsing-contexts':'history','concept-fs-method':'association-of-controls-and-forms','the-link-is-an-alternative-stylesheet':'links','ascii-compatible-character-encoding':'infrastructure','attr-fs-enctype-formdata':'association-of-controls-and-forms','form-submission-0':'association-of-controls-and-forms','the-meter-element':'the-button-element','plugins':'infrastructure','refsMQ':'references','htmloptionscollection-0':'urls','terminology-0':'urls','attr-input-placeholder':'common-input-element-attributes','flow-content-0':'content-models','html-elements':'infrastructure','attr-meter-low':'the-button-element','attr-script-defer':'scripting-1','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-ol-compact':'obsolete','attr-tbody-align':'obsolete','attr-tdth-valign':'obsolete','concept-option-disabled':'the-button-element','inter-elemnt-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-1':'browsers','introduction-3':'dnd','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','telephone-state':'states-of-the-type-attribute','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-od-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','edits-and-lists':'edits','attr-input-type-date-keyword':'the-input-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','the-tbody-element':'tabular-daa','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':'grouping-content','attr-input-required':'common-input-element-attributes','invalid_modification_err':'urls','offline':'offline','attr-img-src':'embedded-content-1','attr-lang':'elements','matches-the-environment':'common-microsyntaxes','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','limiting-user-input-length':'association-of-controls-and-forms','attr-a-name':'obsolete','script':'scripting-1','introduction':'introduction','menus-intro':'interactive-elements','concept-input-value-default-range':'number-state','utton-state':'number-state','list-state':'interactive-elements','attr-object-border':'obsolete','hyperlink-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','html-namespace-0':'urls','attr-body-alink':'obsolete','range-state':'number-state','attr-area-shape-keyword-rect':'the-map-element','session-history':'history','transparent':'contnt-models','attr-table-border':'obsolete','xlink-namespace':'urls','attr-input-type-week-keyword':'the-input-element','maximum-allowed-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','domsetabletokenlist-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':'scripting-1','association-of-controls-and-forms':'association-of-controls-and-forms','attr-col-valign':'obsolete','the-label-element':'forms','furthest-ancestor-browsing-context':'browsers','refsHATOM':'references','attr-param-valuetype':'obsolete','attr-br-clear':'obsolete','user-interface':'video','attr-hyperlink-rel':'links','text-node':'infrastructure','command-insertimage':'dnd','attr-ol-start':'grouping-content','formatblock-candidate':'dnd','state-object':'history','attr-input-type-submit-keyword':'the-input-element','attr-input-maxlength':'common-input-element-attributes','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','hyperlik':'links','refsRFC2781':'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','the-accesskey-attribute':'editing','insertadjacenthtml':'apis-in-html-documents','tag-cloud':'commands','attr-th-scope-rowgroup':'tabular-data','xmlns-namespace':'urls','dom-appcache-downloading':'offline','attr-object-codebase':'obsolete','refsSELECTORS':'references','htmlprogresselement':'the-button-element','attr-input-type-datetime-keyword':'the-input-element','attr-embed-name':'obsolete','attr-textarea-wrap-hard-state':'the-button-element','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','multicol':'obsolete','attr-table-width':'obsolete','concept-fs-enctype':'association-of-controls-and-forms','attr-tdth-align':'bsolete','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','wrong_document_err':'urls','dom-location-protocol':'history','syntax-tags':'syntax','compatibility-caseless':'infrastructure','newlines':'syntax','attr-xml-lang':'elements','refsRFC2483':'references','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':'interactive-elements','dom-appcache-idle':'offline','the-caption-element':'tabular-data','case-sensitive':'infrastructure','refsRFC4329':'references','ignore':'nfrastructure','valid-local-date-and-time-string':'common-microsyntaxes','dom-media-network_idle':'video','terminology':'infrastructure','the-title-element-0':'semantics','refsRFC1468':'references','valid-floating-point-number':'common-microsyntaxes','refsECMA357':'references','examples':'tabular-data','naming-form-controls':'association-of-controls-and-forms','refsCSSATTR':'references','attr-input-type-keywords':'the-input-element','opening-the-input-stream':'apis-in-html-documents','refsCSSCOLOR':'references','attr-textarea-rows':'the-button-element','the-list-attribute':'common-input-element-attributes','the-noscript-element':'scripting-1','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','refsRFC2313':'references','refsRFC264':'references','attr-link-sizes-any':'links','refsRFC2318':'references','refsRFC1842':'references','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','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-encodings':'infrastructure','attr-img-ismap':'embedded-content-1','text-that-has-been-rendered-to-a-graphic-for-typographical-effect':'embedded-content-1','refsCSSOM':'references','intro-early-example':'introduction','refsISO885911':'references','attr-ommand-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','refsGBK':'references','mediaevents':'video','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-resourc':'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','contenteditable':'editing','event-appcache-updateready':'offline','htmltableheadercellelement':'tabular-data','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':'the-button-element','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-partof-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','dom-media-network_no_source':'video','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':'the-button-element','noframes':'obsolete','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-mta-http-equiv-content-type':'semantics','attr-style-media':'semantics','attr-input-type-reset-keyword':'the-input-element','links':'links','refsDOMEVENTS':'references','event-appcache-checking':'offline','refsARIA':'references','attr-meta-http-equiv':'semantics','htmldatalistelement':'the-button-element','refsUTR36':'references','the-sub-and-sup-elements':'text-level-semantics','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':'obsolete','the-link-element':'semantics','command-superscript':'dnd','applicationcache':'offline','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-lement','the-base-element':'semantics','attr-input-type-checkbox-keyword':'the-input-element','outlines':'sections','event-handler-content-attributes':'browsers','linkTypes':'links','ping-from':'iana','the-html-element':'dom','structure-of-this-specification':'introduction','refsMATHML':'references','concept-fs-action':'association-of-controls-and-forms','attr-progress-max':'the-button-element','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-input-element-attributes','meta':'semantics','attr-link-type':'semantics','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','refsHTTP':'references','attr-a-methods':'obsolete','usage-summary':'text-lvel-semantics','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','represented-by-the-collection':'urls','the-xml:base-attribute-xml-only':'elements','event-media-loadedmetadata':'video','sectioning-content-0':'content-models','htmlelement':'elements','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':'interactiveelements','attr-input-value':'the-input-element','semantics-0':'elements','list-of-the-descendant-browsing-contexts':'browsers','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','command-inserttext':'dnd','attr-command-type-state-radio':'interactive-elements','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':'syntax','attr-col-align':'obsolete','attr-time-datetime':'text-level-semantics','the-body-element-0':'sections','rcdata-elements':'syntax','html-documents':'dom','fully-active':'browsers','attr-dfn-title':'text-level-semantics','the-html-element-0':'semantics','dom-location-port':'history','attr-body-bgcolor':'obsolete','refsPSL':'referenes','comma-separated-tokens':'common-microsyntaxes','ready-for-editing-host-commands':'dnd','dialogs-implemented-using-separate-documents':'timers','recommended-reading':'introduction','refsUTF8DET':'references','password-state':'states-of-the-type-attribute','the-kbd-element':'text-level-semantics','view':'browsers','the-head-element-0':'semantics','x-this':'introduction','concept-month':'common-microsyntaxes','attr-video-poster':'video','normal-elements':'syntax','link-type-prefetch':'links','the-tfoot-element':'tabular-data','basefont':'obsolete','the-datalist-element':'the-button-element','attr-table-bgcolor':'obsolete','aborting-a-document-load':'history','link-type-up':'links','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','vaid-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','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','attr-dim-width':'the-map-element','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','attr-progress-value':'the-button-element','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','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','category-listed':'forms','attr-area-shape-poly':'the-map-element','dom-function-call':'browsers','the-fieldset-element':'forms','innerhtml':'apis-in-html-documents','attr-a-coords':'obsolete','attr-link-target':'obsolete','dom-navigator-registercontenthandler':'timers','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','custom-data-attribute':'elements','session-history-entry':'history','refsWIN949':'references','common-input-element-apis':'common-input-element-attributes','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','commandfacet-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','function':'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','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':'iana','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':'the-button-element','refsRFC1554':'references','dom-opener':'browsers','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','namespaces':'urls','command-redo':'dnd','attr-meter-value':'the-button-element','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-iframe-longdesc':'obsolete','attr-input-usemap':'obsolete','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','attr-hr-align':'obsolete','valid-mime-type-with-no-parameters':'infrastructure','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','attr-link-href':'semantics','spelling-and-grammar-checking':'editing','htmltitleelement':'semantics','character-references':'syntax','command-bold':'dnd','attr-hyperlink-media':'links','attr-object-align':'obsolete','u':'obsolete','syntax-start-tag':'syntax','html-mime-type':'infrastructure','link-type-index':'links','command-facet-disabledstate':'commands','strike':'obsolete','browsing-the-web':'history','refDOMRANGE':'references','attr-tr-bgcolor':'obsolete','the-img-element':'embedded-content-1','mq':'common-microsyntaxes','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','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-element':'interactive-elements','dnd':'dnd','timers':'timers','meta-description':'semantics','valid-simple-color':'common-microsyntaxes','quota_exceeded_err':'urls','the-div-element':'grouping-content','use-div-for-wrappers':'sections','refsWHATGWIKI':'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','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','serialize_err':'urls','client-identification':'timers','atr-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','htmltextareaelement':'the-button-element','default-media':'semantics','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':'lins','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','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-color':'common-microsyntaxes','attr-button-value':'the-button-element','navigatorabilities':'timers','event-media-ratechange':'video','link-type-nofollow':'links','event-drag':'dnd','event-media-emptied':'video','inuse_attribute_err':'urls','attr-object-declare':'obsolete','refsWIN31J':'references','the-title-element':'dom','radio-button-state':'number-state','acknowledgements':'acknoledgements','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','refsPROGRESS':'references','htmloptionscollection':'urls','radionodelist':'urls','domtokenlist':'urls','preferred-mime-name':'infrastructure','htmlstyleelement':'semantics','attr-th-scope-colgroup':'tabular-data','attr-fs-enctype':'association-of-controls-and-forms','attr-textarea-wrap-hard':'the-button-element','custom-handlers':'timers','mathml-namespace':'urls','event-media-canplay':'video','refsFILEAPI':'references','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-ragstart':'dnd','event-media-waiting':'video','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-profile':'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':'the-button-element','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','htmlheadelement':'semantics','attr-input-type-url-keyword':'the-input-element','htmlembedlement':'the-iframe-element','htmlmediaelement':'video','character-encoding-declaration':'semantics','attr-keygen-challenge':'the-button-element','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-context-name':'browsers','n':'tabular-data','attr-area-shape-circle':'the-map-element','element-definitions':'elements','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','a-link-or-utton-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-col-charoff':'obsolete','htmltimeelement':'text-level-semantics','the-address-element':'sections','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','nework_err':'urls','refsRFC4281':'references','security':'dom','facets':'commands','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','nested-browsing-context':'browsers','phrasing-content':'content-models','text-html-sandboxed':'iana','attr-meter-min':'the-button-element','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-lement-attributes','htmlscriptelement':'scripting-1','unquoted':'syntax','isindex-0':'obsolete','attr-source-media':'video','attr-area-nohref':'obsolete','index_size_err':'urls','attr-fs-formenctype':'association-of-controls-and-forms','attr-fs-action':'association-of-controls-and-forms','cdata-sections':'syntax','event-media-play':'video','command-facet-hiddenstate':'commands','refsSVG':'references','introduction-2':'offline','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','dom-mediaerror-media_err_decode':'video','attr-a-charset':'obsolete','concept-datetime':'common-microsyntaxes','html-namespace':'infrastructure','a-group-of-images-that-form-a-single-larger-picture-with-links':'embeded-content-1','navigating-nested-browsing-contexts-in-the-dom':'browsers','link-type-sidebar':'links','attr-meta-content':'semantics','command-italic':'dnd','focus':'editing','attr-caption-align':'obsolete','attr-textarea-placeholder':'the-button-element','sequential-link-types':'links','attr-time-pubdate':'text-level-semantics','local-dates-and-times':'common-microsyntaxes','htmlselectelement':'the-button-element','valid-media-query':'common-microsyntaxes','beforeunloadevent':'history','xml-namespace':'urls','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','noembed':'obsolete','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-keyword-radio':'interactive-elements','sectioning-content':'content-models','syntax-tag-name':'syntax','set-of-space-separated-tokens':'common-microsyntaxes','browser-interface-elements':'browsers','iana':'iana','the-id-attribute':'elements','style-default-media':'semantics','attr-hr-size':'obsolete','htmlparagraphelement':'grouping-content','not_supported_err':'urls','charset512':'semantics','security_err':'urls','event-dragleave':'dnd','attr-object-standby':'obsolete','attr-mod-datetime':'edits','dom-media-have_metadata':'video','attr-input-type-range-keyword':'the-input-element','live':'infrastructure','scope':'introduction','attr-input-readonly':'common-input-element-attributes','attr-are-shape-keyword-circle':'the-map-element','attr-tabindex':'editing','printing':'timers','attr-link-media':'semantics','syntax-attribute-value':'syntax','xml-compatible':'infrastructure','htmlbuttonelement':'the-button-element','attr-fs-novalidate':'association-of-controls-and-forms','refsRFC2806':'references','attr-optgroup-label':'the-button-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','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','th-form-element':'forms','the-keygen-element':'the-button-element','location-of-the-media-resource':'video','a-quick-introduction-to-html':'introduction','htmlquoteelement':'grouping-content','attr-input-autocomplete':'common-input-element-attributes','command-facet-id':'commands','user-prompts':'timers','forms':'forms','closing-the-input-stream':'apis-in-html-documents','window':'browsers','listing':'obsolete','attr-th-scope':'tabular-data','attr-object-data':'the-iframe-element','conversations':'commands','attr-tdth-height':'obsolete','attr-table-align':'obsolete','refsWCAG':'references','refsRFC3864':'references','refsEUCKR':'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':'iana','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','refsRFC1345':'references','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','htmltablecaptionelement':'tabular-data','common-input-element-attrbutes':'common-input-element-attributes','refsRFC2237':'references','dates-and-times':'common-microsyntaxes','refsRFC5280':'references','optional-tags':'syntax','attr-link-sizes':'links','refsGRAPHICS':'references','the-document-s-address':'dom','attr-th-scope-row':'tabular-data','type_mismatch_err':'urls','refsOPENSEARCH':'references','attr-form-autocomplete':'forms','attr-fe-disabled':'association-of-controls-and-forms','general-guidelines':'embedded-content-1','the-bdo-element':'text-level-semantics','the-article-element':'sections','bgsound':'obsolete','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':'infrastructure','syntax_err':'urls','link-type-last':'links','refsDOMVIEWS':'references','the-min-and-max-attributes':'common-input-element-attributes','category-ubmit':'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','nobr':'obsolete','attr-iframe-align':'obsolete','command-insertlinebreak':'dnd','svg-namespace':'urls','attr-map-name':'the-map-element','attributes-common-to-td-and-th-elements':'tabular-data','document.writeln':'apis-in-html-documents','command-subscript':'dnd','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':'the-button-element','infrastructure':'infrastructure','form-submission':'association-of-controls-and-forms','the-th-element':'tabular-data','svg-0':'the-map-elemet','dom-appcache-updateready':'offline','joint-session-history':'history','dates':'common-microsyntaxes','s':'obsolete','attr-menu-compact':'obsolete','insert-an-element-into-a-document':'infrastructure','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','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','concept-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','the-map-element':'the-map-element','dom-canvas-getcontext':'the-canvas-element','the-progress-element':'the-button-element','the-window-object':'browsers','editing-apis':'dnd','the-object-element':'the-iframe-element','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-dat','parse_err':'urls','the-del-element':'edits','event-media-loadstart':'video','refsWEBWORKERS':'references','htmltablecolelement':'tabular-data','wbr':'obsolete','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','elements':'elements','attr-base-target':'semantics','syntax-elements':'syntax','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','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','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-scripts':'scripting-1','the-code-element':'text-level-semantics','toolbar-state':'interactive-elements','htmlimageelement':'embedded-content-1','attr-table-rules':'obsolete','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-srolling':'obsolete','link-type-noreferrer':'links','checkbox-state':'number-state','attr-fs-method-put':'association-of-controls-and-forms','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','refsUTF7':'references','command-facet-action':'commands','dom-outerhtml':'apis-in-html-documents','htmlolistelement':'grouping-content','anonymous-command':'commands','fallback-content':'content-models','refsRFC1034':'references','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-elemet':'text-level-semantics','command-inserthtml':'dnd','application-cache-api':'offline','the-session-history-of-browsing-contexts':'history','concept-fs-method':'association-of-controls-and-forms','the-link-is-an-alternative-stylesheet':'links','ascii-compatible-character-encoding':'infrastructure','attr-fs-enctype-formdata':'association-of-controls-and-forms','form-submission-0':'association-of-controls-and-forms','the-meter-element':'the-button-element','plugins':'infrastructure','refsMQ':'references','htmloptionscollection-0':'urls','terminology-0':'urls','attr-input-placeholder':'common-input-element-attributes','flow-content-0':'content-models','html-elements':'infrastructure','attr-meter-low':'the-button-element','attr-script-defer':'scripting-1','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-ol-compact':'obsolete','attr-tbody-align':'obsolete','attr-tdth-valign':'obsolte','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-1':'browsers','introduction-3':'dnd','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','telephone-state':'states-of-the-type-attribute','numbers':'common-microsyntaxes','default-view':'browsers','writing-cache-manifests':'offline','undomanager':'dnd','attr-tdth-rowspan':'tabular-data','menus':'interactive-elements','reating-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','edits-and-lists':'edits','attr-input-type-date-keyword':'the-input-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-elemnt','refsRFC2119':'references','the-tbody-element':'tabular-data','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':'grouping-content','attr-input-required':'common-input-element-attributes','invalid_modification_err':'urls','offline':'offline','attr-img-src':'embedded-content-1','attr-lang':'elements','matches-the-environment':'common-microsyntaxes','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','limiting-user-input-length':'association-of-controls-and-forms','attr-a-name':'obsolete','script':'scripting-1','introduction':'introduction','menus-intro':'interactiveelements','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-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','html-namespace-0':'urls','attr-body-alink':'obsolete','range-state':'number-state','attr-area-shape-keyword-rect':'te-map-element','session-history':'history','transparent':'content-models','attr-table-border':'obsolete','xlink-namespace':'urls','attr-input-type-week-keyword':'the-input-element','maximum-allowed-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-semntics','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':'scripting-1','association-of-controls-and-forms':'association-of-controls-and-forms','attr-col-valign':'obsolete','the-label-element':'forms','furthest-ancestor-browsing-context':'browsers','refsHATOM':'references','attr-param-valuetype':'obsolete','attr-br-clear':'obsolete','user-interface':'video','attr-hyperlink-rel':'links','text-node':'infrastructure','command-insertimage':'dnd','attr-ol-start':'grouping-content','formatblock-candidate':'dnd','state-object':'history','attr-input-type-submit-keyword':'the-input-element','attr-input-maxlength':'common-input-element-attributes','embedded-content':'content-models','interfaces':'index','collections-0':'urls','event-media-ended':'video','attr-link-title':'semantics','attr-menu-label':'inteactive-elements','htmltablerowelement':'tabular-data','hyperlink':'links','refsRFC2781':'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','the-accesskey-attribute':'editing','insertadjacenthtml':'apis-in-html-documents','tag-cloud':'commands','attr-th-scope-rowgroup':'tabular-data','xmlns-namespace':'urls','dom-appcache-downloading':'offline','attr-object-codebase':'obsolete','refsSELECTORS':'references','htmlprogresselement':'the-button-element','attr-input-type-datetime-keyword':'the-input-element','attr-embed-name':'obsolete','attr-textarea-wrap-hard-state':'the-button-element','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','multicol':'obsolete','attr-table-width':'obsolete','concept-fs-ectype':'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','wrong_document_err':'urls','dom-location-protocol':'history','syntax-tags':'syntax','compatibility-caseless':'infrastructure','newlines':'syntax','attr-xml-lang':'elements','refsRFC2483':'references','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':'interactive-elements','dom-appcache-idle':'offline','the-caption-element':'tabular-data','case-sesitive':'infrastructure','refsRFC4329':'references','ignore':'infrastructure','valid-local-date-and-time-string':'common-microsyntaxes','dom-media-network_idle':'video','terminology':'infrastructure','the-title-element-0':'semantics','refsRFC1468':'references','valid-floating-point-number':'common-microsyntaxes','refsECMA357':'references','examples':'tabular-data','naming-form-controls':'association-of-controls-and-forms','refsCSSATTR':'references','attr-input-type-keywords':'the-input-element','opening-the-input-stream':'apis-in-html-documents','refsCSSCOLOR':'references','attr-textarea-rows':'the-button-element','the-list-attribute':'common-input-element-attributes','the-noscript-element':'scripting-1','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':'associatio-of-controls-and-forms','refsRFC2313':'references','refsRFC2646':'references','attr-link-sizes-any':'links','refsRFC2318':'references','refsRFC1842':'references','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','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-encodings':'infrastructure','attr-img-ismap':'embedded-content-1','text-that-has-been-rendered-to-a-graphic-for-typographical-effect':'embedded-content-1','refsCSSOM':'references','intro-ealy-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','refsGBK':'references','mediaevents':'video','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','resoures':'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','contenteditable':'editing','event-appcache-updateready':'offline','htmltableheadercellelement':'tabular-data','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':'the-button-element','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-meda-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','dom-media-network_no_source':'video','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':'the-button-element','noframes':'obsolete','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-stae':'offline','the-canvas-element':'the-canvas-element','attr-meta-http-equiv-content-type':'semantics','attr-style-media':'semantics','attr-input-type-reset-keyword':'the-input-element','links':'links','refsDOMEVENTS':'references','event-appcache-checking':'offline','refsARIA':'references','attr-meta-http-equiv':'semantics','htmldatalistelement':'the-button-element','refsUTR36':'references','the-sub-and-sup-elements':'text-level-semantics','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':'obsolete','the-link-element':'semantics','command-superscript':'dnd','applicationcache':'offline','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','attr-input-type-checkbox-keyword':'the-input-element','outlines':'sections','event-handler-content-attributes':'browsers','linkTypes':'links','ping-from':'iana','the-html-element':'dom','structure-of-this-specification':'introduction','refsMATHML':'references','concept-fs-action':'association-of-controls-and-forms','attr-progress-max':'the-button-element','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-input-element-attributes','meta':'semantics','attr-link-type':'semantics','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','refsHTTP':'eferences','attr-a-methods':'obsolete','usage-summary':'text-level-semantics','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','represented-by-the-collection':'urls','the-xml:base-attribute-xml-only':'elements','event-media-loadedmetadata':'video','sectioning-content-0':'content-models','htmlelement':'elements','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':'eferences','xml-documents':'dom','attr-menu-type':'interactive-elements','attr-input-value':'the-input-element','semantics-0':'elements','list-of-the-descendant-browsing-contexts':'browsers','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','command-inserttext':'dnd','attr-command-type-state-radio':'interactive-elements','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':'syntax','attr-col-align':'obsolete','attr-time-datetime':'text-level-semantics','the-body-element-0':'sections','rcdata-elements':'syntax','html-documents':'dom','fully-active':'browsers','attr-dfn-title':'text-level-semantics','the-html-element-0':'semantics','dom-location-pot':'history','attr-body-bgcolor':'obsolete','refsPSL':'references','comma-separated-tokens':'common-microsyntaxes','ready-for-editing-host-commands':'dnd','dialogs-implemented-using-separate-documents':'timers','recommended-reading':'introduction','refsUTF8DET':'references','password-state':'states-of-the-type-attribute','the-kbd-element':'text-level-semantics','view':'browsers','the-head-element-0':'semantics','x-this':'introduction','concept-month':'common-microsyntaxes','attr-video-poster':'video','normal-elements':'syntax','link-type-prefetch':'links','the-tfoot-element':'tabular-data','basefont':'obsolete','the-datalist-element':'the-button-element','attr-table-bgcolor':'obsolete','aborting-a-document-load':'history','link-type-up':'links','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','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','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','attr-dim-width':'the-map-element','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','attr-progress-value':'the-button-element','link-type-search':'links','attr-body-vlink':'obsolete','other-pragma-directives':'semantics','htmlformcontrolscolletion':'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','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','category-listed':'forms','attr-area-shape-poly':'the-map-element','dom-function-call':'browsers','the-fieldset-element':'forms','innerhtml':'apis-in-html-documents','attr-a-coords':'obsolete','attr-link-target':'obsolete','dom-navigator-registercontenthandler':'timers','attr-command-label':'interctive-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','custom-data-attribute':'elements','session-history-entry':'history','refsWIN949':'references','common-input-element-apis':'common-input-element-attributes','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','att-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','function':'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','cdata-rcdata-restrictons':'syntax','rel-icon':'links','text-cache-manifest':'iana','htmltablecellelement':'tabular-data','the-samp-element':'text-level-semantics','grouping-content':'grouping-content','authors-using-html':'iana','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.619
retrieving revision 1.620
diff -u -d -r1.619 -r1.620
--- spec.html	12 Jan 2010 08:59:18 -0000	1.619
+++ spec.html	14 Jan 2010 08:12:45 -0000	1.620
@@ -262,7 +262,7 @@
    <h1>HTML5 (Author Edition)</h1>
    <h2 class="no-num no-toc" id=a-vocabulary-and-associated-apis-for-html-and-xhtml>A vocabulary and associated APIs for HTML and XHTML</h2>
 
-   <h2 class="no-num no-toc" id=editor-s-draft-12-january-2010>Editor's Draft 12 January 2010</h2>
+   <h2 class="no-num no-toc" id=editor-s-draft-13-january-2010>Editor's Draft 13 January 2010</h2>
    <dl><dt>Latest Published Version:</dt>
     <dd><a href=http://www.w3.org/TR/html5/>http://www.w3.org/TR/html5/</a></dd>
     <dt>Latest Editor's Draft:</dt>
@@ -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 $Revision $.
+This is revision 1.3664.
    </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
@@ -361,7 +361,7 @@
   specification's progress along the W3C Recommendation
   track.
 
-  This specification is the 12 January 2010 Editor's Draft.
+  This specification is the 13 January 2010 Editor's Draft.
   </p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- relationship to other work (required) --><p>This specification is part of <a href=http://www.whatwg.org/specs/web-apps/current-work/multipage/>a
   larger specification</a> being produced by the <a href=http://www.whatwg.org/>WHATWG</a>.
   <!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST -->
@@ -893,11 +893,12 @@
  <li><a href=#iana><span class=secno>10 </span>IANA considerations</a>
   <ol>
    <li><a href=#text-html><span class=secno>10.1 </span><code>text/html</code></a></li>
-   <li><a href=#application-xhtml-xml><span class=secno>10.2 </span><code>application/xhtml+xml</code></a></li>
-   <li><a href=#text-cache-manifest><span class=secno>10.3 </span><code>text/cache-manifest</code></a></li>
-   <li><a href=#text-ping><span class=secno>10.4 </span><code>text/ping</code></a></li>
-   <li><a href=#ping-from><span class=secno>10.5 </span><code>Ping-From</code></a></li>
-   <li><a href=#ping-to><span class=secno>10.6 </span><code>Ping-To</code></a></li></ol></li>
+   <li><a href=#text-html-sandboxed><span class=secno>10.2 </span><code>text/html-sandboxed</code></a></li>
+   <li><a href=#application-xhtml-xml><span class=secno>10.3 </span><code>application/xhtml+xml</code></a></li>
+   <li><a href=#text-cache-manifest><span class=secno>10.4 </span><code>text/cache-manifest</code></a></li>
+   <li><a href=#text-ping><span class=secno>10.5 </span><code>text/ping</code></a></li>
+   <li><a href=#ping-from><span class=secno>10.6 </span><code>Ping-From</code></a></li>
+   <li><a href=#ping-to><span class=secno>10.7 </span><code>Ping-To</code></a></li></ol></li>
  <li><a class=no-num href=#index>Index</a>
   <ol>
    <li><a class=no-num href=#elements-1>Elements</a></li>
@@ -1036,10 +1037,10 @@
   resources that use this abstract language, two of which are defined
   in this specification.</p><p>The first such concrete syntax is the HTML syntax. This is the
   format suggested for most authors. It is compatible with most legacy
-  Web browsers. If a document is transmitted with the <a href=#mime-type>MIME
-  type</a> <code><a href=#text-html>text/html</a></code>, then it will be processed as an
-  HTML document by Web browsers. This specification defines version 5
-  of the HTML syntax, known as "HTML5".</p><p>The second concrete syntax is the XHTML syntax, which is an
+  Web browsers. If a document is transmitted with an <a href=#html-mime-type>HTML MIME
+  type</a>, such as <code><a href=#text-html>text/html</a></code>, then it will be
+  processed as an HTML document by Web browsers. This specification
+  defines version 5 of the HTML syntax, known as "HTML5".</p><p>The second concrete syntax is the XHTML syntax, which is an
   application of XML. When a document is transmitted with an <a href=#xml-mime-type>XML
   MIME type</a>, such as <code><a href=#application-xhtml-xml>application/xhtml+xml</a></code>, then
   it is treated as an XML document by Web browsers, to be parsed by an
@@ -1297,7 +1298,8 @@
   matches the <code title="">media-type</code> rule defined in section
   3.7 "Media Types" of RFC 2616, but does not contain any U+003B
   SEMICOLON characters (;). In other words, if it consists only of a
-  type and subtype, with no MIME Type parameters. <a href=#refsHTTP>[HTTP]</a></p><h4 id=xml><span class=secno>2.1.2 </span>XML</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p id=html-namespace>To ease migration from HTML to XHTML, UAs
+  type and subtype, with no MIME Type parameters. <a href=#refsHTTP>[HTTP]</a></p><p>The term <dfn id=html-mime-type>HTML MIME type</dfn> is used to refer to the <a href=#mime-type title="MIME type">MIME types</a> <code><a href=#text-html>text/html</a></code> and
+  <code><a href=#text-html-sandboxed>text/html-sandboxed</a></code>.</p><h4 id=xml><span class=secno>2.1.2 </span>XML</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p id=html-namespace>To ease migration from HTML to XHTML, UAs
   conforming to this specification will place elements in HTML in the
   <code>http://www.w3.org/1999/xhtml</code> namespace, at least for
   the purposes of the DOM and CSS. The term "<dfn id=html-elements>HTML
@@ -2168,11 +2170,11 @@
    <li value=81><dfn id=parse_err><code>PARSE_ERR</code></dfn></li> <!-- actually defined in dom3ls -->
    <li value=82><dfn id=serialize_err><code>SERIALIZE_ERR</code></dfn></li> <!-- actually defined in dom3ls -->
   </ol><h3 id=namespaces><span class=secno>2.7 </span>Namespaces</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>The <dfn id=html-namespace-0>HTML namespace</dfn> is: <code>http://www.w3.org/1999/xhtml</code></p><p>The <dfn id=mathml-namespace>MathML namespace</dfn> is: <code>http://www.w3.org/1998/Math/MathML</code></p><p>The <dfn id=svg-namespace>SVG namespace</dfn> is: <code>http://www.w3.org/2000/svg</code></p><p>The <dfn id=xlink-namespace>XLink namespace</dfn> is: <code>http://www.w3.org/1999/xlink</code></p><p>The <dfn id=xml-namespace>XML namespace</dfn> is: <code>http://www.w3.org/XML/1998/namespace</code></p><p>The <dfn id=xmlns-namespace>XMLNS namespace</dfn> is: <code>http://www.w3.org/2000/xmlns/</code></p><hr><p>Data mining tools and other user agents that perform operations
-  on <code><a href=#text-html>text/html</a></code> content without running scripts,
-  evaluating CSS or XPath expressions, or otherwise exposing the
-  resulting DOM to arbitrary content, may "support namespaces" by just
-  asserting that their DOM node analogues are in certain namespaces,
-  without actually exposing the above strings.</p><h2 id=dom><span class=secno>3 </span>Semantics, structure, and APIs of HTML documents</h2><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><h3 id=documents><span class=secno>3.1 </span>Documents</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>Every XML and HTML document in an HTML UA is represented by a
+  on content without running scripts, evaluating CSS or XPath
+  expressions, or otherwise exposing the resulting DOM to arbitrary
+  content, may "support namespaces" by just asserting that their DOM
+  node analogues are in certain namespaces, without actually exposing
+  the above strings.</p><h2 id=dom><span class=secno>3 </span>Semantics, structure, and APIs of HTML documents</h2><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><h3 id=documents><span class=secno>3.1 </span>Documents</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>Every XML and HTML document in an HTML UA is represented by a
   <code>Document</code> object. <a href=#refsDOMCORE>[DOMCORE]</a></p><p><dfn id=the-document-s-address>The document's address</dfn> is an <a href=#absolute-url>absolute URL</a>
   that is set when the <code>Document</code> is created. <dfn id=the-document-s-current-address>The
   document's current address</dfn> is an <a href=#absolute-url>absolute URL</a>
@@ -9797,7 +9799,57 @@
    <pre>&lt;iframe sandbox="allow-same-origin allow-forms allow-scripts"
         src="http://maps.example.com/embedded.html"&gt;&lt;/iframe&gt;</pre>
 
-  </div><hr><!-- v2: Might be interesting to have a value on seamless that
+  </div><div class=example>
+
+   <p>Suppose a file A contained the following fragment:</p>
+
+   <pre>&lt;iframe sandbox="allow-same-origin allow-forms" src=B&gt;&lt;/iframe&gt;</pre>
+
+   <p>Suppose that file B contained an iframe also:</p>
+
+   <pre>&lt;iframe sandbox="allow-scripts" src=C&gt;&lt;/iframe&gt;</pre>
+
+   <p>Further, suppose that file C contained a link:</p>
+
+   <pre>&lt;a href=D&gt;Link&lt;/a&gt;</pre>
+
+   <p>For this example, suppose all the files were served as
+   <code><a href=#text-html>text/html</a></code>.</p>
+
+   <p>Page C in this scenario has all the sandboxing flags
+   set. Scripts are disabled, because the <code><a href=#the-iframe-element>iframe</a></code> in A has
+   scripts disabled, and this overrides the <code title=attr-iframe-sandbox-allow-scripts><a href=#attr-iframe-sandbox-allow-scripts>allow-scripts</a></code>
+   keyword set on the <code><a href=#the-iframe-element>iframe</a></code> in B. Forms are also
+   disabled, because the inner <code><a href=#the-iframe-element>iframe</a></code> (in B) does not
+   have the <code title=attr-iframe-sandbox-allow-forms><a href=#attr-iframe-sandbox-allow-forms>allow-forms</a></code> keyword
+   set.</p>
+
+   <p>Suppose now that a script in A removes all the <code title=attr-iframe-sandbox><a href=#attr-iframe-sandbox>sandbox</a></code> attributes in A and
+   B. This would change nothing immediately. If the user clicked the
+   link in C, loading page D into the <code><a href=#the-iframe-element>iframe</a></code> in B, page D
+   would now act as if the <code><a href=#the-iframe-element>iframe</a></code> in B had the <code title=attr-iframe-sandbox-allow-same-origin><a href=#attr-iframe-sandbox-allow-same-origin>allow-same-origin</a></code>
+   and <code title=attr-iframe-sandbox-allow-forms><a href=#attr-iframe-sandbox-allow-forms>allow-forms</a></code> keywords
+   set, because that was the state of the <a href=#nested-browsing-context>nested browsing
+   context</a> in the <code><a href=#the-iframe-element>iframe</a></code> in A when page B was
+   loaded.</p>
+
+   <p>Generally speaking, dynamically removing or changing the <code title=attr-iframe-sandbox><a href=#attr-iframe-sandbox>sandbox</a></code> attribute is
+   ill-advised, because it can make it quite hard to reason about what
+   will be allowed and what will not.</p>
+
+  </div><p class=note>Potentially hostile files can be served from the
+  same server as the file containing the <code><a href=#the-iframe-element>iframe</a></code> element
+  by labeling them as <code><a href=#text-html-sandboxed>text/html-sandboxed</a></code> instead of
+  <code><a href=#text-html>text/html</a></code>. This ensures that scripts in the files are
+  unable to attack the site (as if they were actually served from
+  another server), even if the user is tricked into visiting those
+  pages directly, without the protection of the <code title=attr-iframe-sandbox><a href=#attr-iframe-sandbox>sandbox</a></code> attribute.</p><p class=warning>If the <code title=attr-iframe-sandbox-allow-scripts><a href=#attr-iframe-sandbox-allow-scripts>allow-scripts</a></code>
+  keyword is set along with <code title=attr-iframe-sandbox-allow-same-origin><a href=#attr-iframe-sandbox-allow-same-origin>allow-same-origin</a></code>
+  keyword, and the file is from the <a href=#same-origin>same origin</a> as the
+  <code><a href=#the-iframe-element>iframe</a></code>'s <code>Document</code>, then a script in the
+  "sandboxed" iframe could just reach out, remove the <code title=attr-iframe-sandbox><a href=#attr-iframe-sandbox>sandbox</a></code> attribute, and then
+  reload itself, effectively breaking out of the sandbox
+  altogether.</p><hr><!-- v2: Might be interesting to have a value on seamless that
   allowed event propagation of some sort, maybe based on the WICD
   work: http://www.w3.org/TR/WICD/ --><p>The <dfn id=attr-iframe-seamless title=attr-iframe-seamless><code>seamless</code></dfn>
   attribute is a <a href=#boolean-attribute>boolean attribute</a>. When specified, it
@@ -23842,9 +23894,9 @@
 v2 (well, really v0):
  "forecolor", "hilitecolor", "fontname", "fontsize", "justifyleft",
  "justifycenter", "justifyright", "justifyfull", "indent", "outdent"
---><h2 id=syntax><span class=secno>7 </span><dfn>The HTML syntax</dfn></h2><p class=note>This section only describes the rules for
-  <code><a href=#text-html>text/html</a></code> resources. Rules for XML resources are
-  discussed in the section below entitled "<a href=#the-xhtml-syntax>The XHTML
+--><h2 id=syntax><span class=secno>7 </span><dfn>The HTML syntax</dfn></h2><p class=note>This section only describes the rules for resources
+  labeled with an <a href=#html-mime-type>HTML MIME type</a>. Rules for XML resources
+  are discussed in the section below entitled "<a href=#the-xhtml-syntax>The XHTML
   syntax</a>".</p><h3 id=writing><span class=secno>7.1 </span>Writing HTML documents</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>Documents must consist of the following parts, in the given
   order:</p><ol><li>Optionally, a single U+FEFF BYTE ORDER MARK (BOM) character.</li>
 
@@ -24818,7 +24870,71 @@
    <dt>Change controller:</dt>
    <dd>W3C and WHATWG</dd>
   </dl><p>Fragment identifiers used with <code><a href=#text-html>text/html</a></code> resources
-  refer to <a href=#the-indicated-part-of-the-document>the indicated part of the document</a>.</p><h3 id=application-xhtml-xml><span class=secno>10.2 </span><dfn><code>application/xhtml+xml</code></dfn></h3><p>This registration is for community review and will be submitted
+  refer to <a href=#the-indicated-part-of-the-document>the indicated part of the document</a>.</p><h3 id=text-html-sandboxed><span class=secno>10.2 </span><dfn><code>text/html-sandboxed</code></dfn></h3><p>This registration is for community review and will be submitted
+  to the IESG for review, approval, and registration with IANA.</p><!--
+   To: ietf-types@iana.org
+   Subject: Registration of media type text/html-sandboxed
+  --><dl><dt>Type name:</dt>
+   <dd>text</dd>
+   <dt>Subtype name:</dt>
+   <dd>html-sandboxed</dd>
+   <dt>Required parameters:</dt>
+   <dd>No required parameters</dd>
+   <dt>Optional parameters:</dt>
+   <dd>Same as for <code><a href=#text-html>text/html</a></code></dd>
+   <dt>Encoding considerations:</dt>
+   <dd>Same as for <code><a href=#text-html>text/html</a></code></dd>
+   <dt>Security considerations:</dt>
+   <dd>
+    <p>The purpose of the <code><a href=#text-html-sandboxed>text/html-sandboxed</a></code> MIME type
+    is to provide a way for content providers to indicate that they
+    want the file to be interpreted in a manner that does not give the
+    file's contents access to the rest of the site. This is achieved
+    by assigning the <code>Document</code> objects generated from
+    resources labeled as <code><a href=#text-html-sandboxed>text/html-sandboxed</a></code> unique
+    origins.</p>
+    <p>To avoid having legacy user agents treating resources labeled
+    as <code><a href=#text-html-sandboxed>text/html-sandboxed</a></code> as regular
+    <code><a href=#text-html>text/html</a></code> files, authors should avoid using the <code title="">.html</code> or <code title="">.htm</code> extensions for
+    resources labeled as <code><a href=#text-html-sandboxed>text/html-sandboxed</a></code>.</p>
+    <p>Beyond this, the type is identical to <code><a href=#text-html>text/html</a></code>,
+    and the same considerations apply.</p>
+   </dd>
+   <dt>Interoperability considerations:</dt>
+   <dd>Same as for <code><a href=#text-html>text/html</a></code></dd>
+   <dt>Published specification:</dt>
+   <dd>
+    This document is the relevant specification. Labeling a resource
+    with the <code><a href=#text-html-sandboxed>text/html-sandboxed</a></code> type asserts that the
+    resource is an <a href=#html-documents title="HTML documents">HTML document</a>
+    using <a href=#syntax>the HTML syntax</a>.
+   </dd>
+   <dt>Applications that use this media type:</dt>
+   <dd>Same as for <code><a href=#text-html>text/html</a></code></dd>
+   <dt>Additional information:</dt>
+   <dd>
+    <dl><dt>Magic number(s):</dt>
+     <dd>Documents labeled as <code><a href=#text-html-sandboxed>text/html-sandboxed</a></code> are
+     heuristically indistinguishable from those labeled as
+     <code><a href=#text-html>text/html</a></code>.</dd>
+     <dt>File extension(s):</dt>
+     <dd>"<code title="">sandboxed</code>"</dd>
+     <dt>Macintosh file type code(s):</dt>
+     <dd><code title="">TEXT</code></dd>
+    </dl></dd>
+   <dt>Person &amp; email address to contact for further information:</dt>
+   <dd>Ian Hickson &lt;ian@hixie.ch&gt;</dd>
+   <dt>Intended usage:</dt>
+   <dd>Common</dd>
+   <dt>Restrictions on usage:</dt>
+   <dd>No restrictions apply.</dd>
+   <dt>Author:</dt>
+   <dd>Ian Hickson &lt;ian@hixie.ch&gt;</dd>
+   <dt>Change controller:</dt>
+   <dd>W3C and WHATWG</dd>
+  </dl><p>Fragment identifiers used with <code><a href=#text-html-sandboxed>text/html-sandboxed</a></code>
+  resources refer to <a href=#the-indicated-part-of-the-document>the indicated part of the
+  document</a>.</p><h3 id=application-xhtml-xml><span class=secno>10.3 </span><dfn><code>application/xhtml+xml</code></dfn></h3><p>This registration is for community review and will be submitted
   to the IESG for review, approval, and registration with IANA.</p><!--
    To: ietf-types@iana.org
    Subject: Registration of media type application/xhtml+xml
@@ -24872,7 +24988,7 @@
    <dd>W3C and WHATWG</dd>
   </dl><p>Fragment identifiers used with <code><a href=#application-xhtml-xml>application/xhtml+xml</a></code>
   resources have the same semantics as with any <a href=#xml-mime-type>XML MIME
-  type</a>. <a href=#refsRFC3023>[RFC3023]</a></p><h3 id=text-cache-manifest><span class=secno>10.3 </span><dfn><code>text/cache-manifest</code></dfn></h3><p>This registration is for community review and will be submitted
+  type</a>. <a href=#refsRFC3023>[RFC3023]</a></p><h3 id=text-cache-manifest><span class=secno>10.4 </span><dfn><code>text/cache-manifest</code></dfn></h3><p>This registration is for community review and will be submitted
   to the IESG for review, approval, and registration with IANA.</p><!--
    To: ietf-types@iana.org
    Subject: Registration of media type text/cache-manifest
@@ -24933,7 +25049,7 @@
    <dt>Change controller:</dt>
    <dd>W3C and WHATWG</dd>
   </dl><p>Fragment identifiers have no meaning with
-  <code><a href=#text-cache-manifest>text/cache-manifest</a></code> resources.</p><h3 id=text-ping><span class=secno>10.4 </span><dfn><code>text/ping</code></dfn></h3><p>This registration is for community review and will be submitted
+  <code><a href=#text-cache-manifest>text/cache-manifest</a></code> resources.</p><h3 id=text-ping><span class=secno>10.5 </span><dfn><code>text/ping</code></dfn></h3><p>This registration is for community review and will be submitted
   to the IESG for review, approval, and registration with IANA.</p><!--
    To: ietf-types@iana.org
    Subject: Registration of media type text/ping
@@ -24987,7 +25103,7 @@
    <dt>Change controller:</dt>
    <dd>W3C and WHATWG</dd>
   </dl><p>Fragment identifiers have no meaning with
-  <code><a href=#text-ping>text/ping</a></code> resources.</p><h3 id=ping-from><span class=secno>10.5 </span><dfn title=http-ping-from><code>Ping-From</code></dfn></h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>This section describes a header field for registration in the
+  <code><a href=#text-ping>text/ping</a></code> resources.</p><h3 id=ping-from><span class=secno>10.6 </span><dfn title=http-ping-from><code>Ping-From</code></dfn></h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>This section describes a header field for registration in the
   Permanent Message Header Field Registry.  <a href=#refsRFC3864>[RFC3864]</a></p><dl><dt>Header field name</dt>
    <dd>Ping-From</dd>
    <dt>Applicable protocol</dt>
@@ -25002,7 +25118,7 @@
    </dd>
    <dt>Related information</dt>
    <dd>None.</dd>   
-  </dl><h3 id=ping-to><span class=secno>10.6 </span><dfn title=http-ping-to><code>Ping-To</code></dfn></h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>This section describes a header field for registration in the
+  </dl><h3 id=ping-to><span class=secno>10.7 </span><dfn title=http-ping-to><code>Ping-To</code></dfn></h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>This section describes a header field for registration in the
   Permanent Message Header Field Registry.  <a href=#refsRFC3864>[RFC3864]</a></p><dl><dt>Header field name</dt>
    <dd>Ping-To</dd>
    <dt>Applicable protocol</dt>
@@ -28227,6 +28343,7 @@
   Daniel Bratell,
   Daniel Brooks,
   Daniel Brumbaugh Keeney,
+  Daniel Cheng,
   Daniel Davis,
   Daniel Glazman,
   Daniel Peng,

Index: introduction.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/introduction.html,v
retrieving revision 1.558
retrieving revision 1.559
diff -u -d -r1.558 -r1.559
--- introduction.html	12 Jan 2010 08:59:17 -0000	1.558
+++ introduction.html	14 Jan 2010 08:12:45 -0000	1.559
@@ -403,10 +403,10 @@
   resources that use this abstract language, two of which are defined
   in this specification.</p><p>The first such concrete syntax is the HTML syntax. This is the
   format suggested for most authors. It is compatible with most legacy
-  Web browsers. If a document is transmitted with the <a href="infrastructure.html#mime-type">MIME
-  type</a> <code><a href="iana.html#text-html">text/html</a></code>, then it will be processed as an
-  HTML document by Web browsers. This specification defines version 5
-  of the HTML syntax, known as "HTML5".</p><p>The second concrete syntax is the XHTML syntax, which is an
+  Web browsers. If a document is transmitted with an <a href="infrastructure.html#html-mime-type">HTML MIME
+  type</a>, such as <code><a href="iana.html#text-html">text/html</a></code>, then it will be
+  processed as an HTML document by Web browsers. This specification
+  defines version 5 of the HTML syntax, known as "HTML5".</p><p>The second concrete syntax is the XHTML syntax, which is an
   application of XML. When a document is transmitted with an <a href="infrastructure.html#xml-mime-type">XML
   MIME type</a>, such as <code><a href="iana.html#application-xhtml-xml">application/xhtml+xml</a></code>, then
   it is treated as an XML document by Web browsers, to be parsed by an

Index: acknowledgements.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/acknowledgements.html,v
retrieving revision 1.561
retrieving revision 1.562
diff -u -d -r1.561 -r1.562
--- acknowledgements.html	12 Jan 2010 08:59:16 -0000	1.561
+++ acknowledgements.html	14 Jan 2010 08:12:45 -0000	1.562
@@ -379,6 +379,7 @@
   Daniel Bratell,
   Daniel Brooks,
   Daniel Brumbaugh Keeney,
+  Daniel Cheng,
   Daniel Davis,
   Daniel Glazman,
   Daniel Peng,

Index: syntax.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/syntax.html,v
retrieving revision 1.561
retrieving revision 1.562
diff -u -d -r1.561 -r1.562
--- syntax.html	12 Jan 2010 08:59:19 -0000	1.561
+++ syntax.html	14 Jan 2010 08:12:46 -0000	1.562
@@ -275,9 +275,9 @@
       <ol><li><a href="syntax.html#start-tags"><span class="secno">7.1.2.1 </span>Start tags</a></li><li><a href="syntax.html#end-tags"><span class="secno">7.1.2.2 </span>End tags</a></li><li><a href="syntax.html#attributes"><span class="secno">7.1.2.3 </span>Attributes</a></li><li><a href="syntax.html#optional-tags"><span class="secno">7.1.2.4 </span>Optional tags</a></li><li><a href="syntax.html#element-restrictions"><span class="secno">7.1.2.5 </span>Restrictions on content models</a></li><li><a href="syntax.html#cdata-rcdata-restrictions"><span class="secno">7.1.2.6 </span>Restrictions on the contents of raw text and RCDATA elements</a></li></ol></li><li><a href="syntax.html#text"><span class="secno">7.1.3 </span>Text</a>
       <ol><li><a href="syntax.html#newlines"><span class="secno">7.1.3.1 </span>Newlines</a></li></ol></li><li><a href="syntax.html#character-references"><span class="secno">7.1.4 </span>Character references</a></li><li><a href="syntax.html#cdata-sections"><span class="secno">7.1.5 </span>CDATA sections</a></li><li><a href="syntax.html#comments"><span class="secno">7.1.6 </span>Comments</a></li></ol></li></ol></li></ol></div>
 
-  <h2 id="syntax"><span class="secno">7 </span><dfn>The HTML syntax</dfn></h2><p class="note">This section only describes the rules for
-  <code><a href="iana.html#text-html">text/html</a></code> resources. Rules for XML resources are
-  discussed in the section below entitled "<a href="the-xhtml-syntax.html#the-xhtml-syntax">The XHTML
+  <h2 id="syntax"><span class="secno">7 </span><dfn>The HTML syntax</dfn></h2><p class="note">This section only describes the rules for resources
+  labeled with an <a href="infrastructure.html#html-mime-type">HTML MIME type</a>. Rules for XML resources
+  are discussed in the section below entitled "<a href="the-xhtml-syntax.html#the-xhtml-syntax">The XHTML
   syntax</a>".</p><h3 id="writing"><span class="secno">7.1 </span>Writing HTML documents</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>Documents must consist of the following parts, in the given
   order:</p><ol><li>Optionally, a single U+FEFF BYTE ORDER MARK (BOM) character.</li>
 

Received on Thursday, 14 January 2010 08:12:57 UTC