- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 16 Feb 2010 08:36:28 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec In directory hutz:/tmp/cvs-serv19838 Modified Files: acknowledgements.html browsers.html dom.html editing.html embedded-content-0.html forms.html fragment-links.js history.html iana.html index.html infrastructure.html interactive-elements.html introduction.html named-character-references.html obsolete.html offline.html references.html semantics.html spec.html syntax.html tabular-data.html text-level-semantics.html the-canvas-element.html the-xhtml-syntax.html video.html Log Message: Add some <dfn>s to make DOM Core and DOM Events xrefs work a bit. If you find other cross-spec things in complete.html that aren't linking, let me know and I'll add them here. (cross-spec links for internal things, like html to microdata, postmsg to websocket, or whatnot, will be dealt with automatically at some later date) (whatwg r4748) [updated by splitter] Index: infrastructure.html =================================================================== RCS file: /sources/public/html5/spec/infrastructure.html,v retrieving revision 1.811 retrieving revision 1.812 diff -u -d -r1.811 -r1.812 --- infrastructure.html 16 Feb 2010 08:26:31 -0000 1.811 +++ infrastructure.html 16 Feb 2010 08:36:24 -0000 1.812 @@ -290,7 +290,7 @@ <a href="introduction.html">← 1 Introduction</a> – <a href="spec.html#contents">Table of contents</a> – <a href="dom.html">3 Semantics, structure, and APIs of HTML documents →</a> - </nav><p>This is revision 1.3795.</p> + </nav><p>This is revision 1.3796.</p> <h2 id="infrastructure"><span class="secno">2 </span>Common infrastructure</h2><h3 id="terminology"><span class="secno">2.1 </span>Terminology</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>This specification refers to both HTML and XML attributes and IDL @@ -361,10 +361,10 @@ document, then the node's <a href="#root-element">root element</a> is indeed the document's root element; however, if the node is not currently part of the document tree, the root element will be an orphaned node.</p><p>A node's <dfn id="home-subtree">home subtree</dfn> is the subtree rooted at that - node's <a href="#root-element">root element</a>.</p><p>The <code>Document</code> of a <code>Node</code> (such as an - element) is the <code>Document</code> that the <code>Node</code>'s + node's <a href="#root-element">root element</a>.</p><p>The <code><a href="#document">Document</a></code> of a <code>Node</code> (such as an + element) is the <code><a href="#document">Document</a></code> that the <code>Node</code>'s <code title="">ownerDocument</code> IDL attribute returns.</p><p>When an element's <a href="#root-element">root element</a> is the <a href="#root-element">root - element</a> of a <code>Document</code>, it is said to be <dfn id="in-a-document">in + element</a> of a <code><a href="#document">Document</a></code>, it is said to be <dfn id="in-a-document">in a <code>Document</code></dfn>. An element is said to have been <dfn id="insert-an-element-into-a-document" title="insert an element into a document">inserted into a document</dfn> when its <a href="#root-element">root element</a> changes and is now the document's <a href="#root-element">root element</a>. Analogously, an element is @@ -372,9 +372,9 @@ document">removed from a document</dfn> when its <a href="#root-element">root element</a> changes from being the document's <a href="#root-element">root element</a> to being another element.</p><p>If a <code>Node</code> is <a href="#in-a-document">in a <code>Document</code></a> - then that <code>Document</code> is always the <code>Node</code>'s - <code>Document</code>, and the <code>Node</code>'s <code title="">ownerDocument</code> IDL attribute thus always returns that - <code>Document</code>.</p><p>The term <dfn id="tree-order">tree order</dfn> means a pre-order, depth-first + then that <code><a href="#document">Document</a></code> is always the <code>Node</code>'s + <code><a href="#document">Document</a></code>, and the <code>Node</code>'s <code title="">ownerDocument</code> IDL attribute thus always returns that + <code><a href="#document">Document</a></code>.</p><p>The term <dfn id="tree-order">tree order</dfn> means a pre-order, depth-first traversal of DOM nodes involved (through the <code title="">parentNode</code>/<code title="">childNodes</code> relationship).</p><p>When it is stated that some element or attribute is <dfn id="ignore" title="ignore">ignored</dfn>, or treated as some other value, or handled as if it was something else, this refers only to the @@ -399,10 +399,10 @@ defined by the DOM Events specification. <!-- http://krijnhoetmer.nl/irc-logs/webapps/20091218 --> <a href="references.html#refsDOMEVENTS">[DOMEVENTS]</a></p><h4 id="plugins"><span class="secno">2.1.5 </span>Plugins</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>The term <dfn id="plugin">plugin</dfn> is used to mean any content handler that supports displaying content as part of the user agent's - rendering of a <code>Document</code> object, but that neither acts + rendering of a <code><a href="#document">Document</a></code> object, but that neither acts as a <a href="browsers.html#child-browsing-context">child browsing context</a> of the - <code>Document</code> nor introduces any <code>Node</code> objects - to the <code>Document</code>'s DOM.</p><p>Typically such content handlers are provided by third parties, + <code><a href="#document">Document</a></code> nor introduces any <code>Node</code> objects + to the <code><a href="#document">Document</a></code>'s DOM.</p><p>Typically such content handlers are provided by third parties, though a user agent can designate content handlers to be plugins.</p><p class="example">One example of a plugin would be a PDF viewer that is instantiated in a <a href="browsers.html#browsing-context">browsing context</a> when the @@ -743,9 +743,19 @@ <p>Implementations must support some version of DOM Core and DOM Events, because this specification is defined in terms of the DOM, and some of the features are defined as extensions to the DOM Core - interfaces. <a href="references.html#refsDOMCORE">[DOMCORE]</a> <a href="references.html#refsDOMCORE">[DOMEVENTS]</a></p> + interfaces. <a href="references.html#refsDOMCORE">[DOMCORE]</a> <a href="references.html#refsDOMEVENTS">[DOMEVENTS]</a></p> - </dd> + <p>In particular, the following features are defined in the DOM + Core specification: <a href="references.html#refsDOMCORE">[DOMCORE]</a></p> + <ul class="brief"><li><dfn id="document">Document</dfn></li> + <li><dfn id="element">Element</dfn></li> + <li><dfn id="nodelist">NodeList</dfn></li> + <li><dfn id="textcontent">textContent</dfn></li> + </ul><p>The following features are defined in the DOM Events + specification: <a href="references.html#refsDOMEVENTS">[DOMEVENTS]</a></p> + <ul class="brief"><li><dfn id="event">Event</dfn></li> + <li><dfn id="eventtarget">EventTarget</dfn></li> + </ul></dd> <dt>Web IDL</dt> @@ -2845,7 +2855,7 @@ the user agent must use the <span>resolve a Web address</span> algorithm defined by the Web addresses specification. <a href="references.html#refsWEBADDRESSES">[WEBADDRESSES]</a></p> - <p>The <dfn id="document-base-url">document base URL</dfn> of a <code>Document</code> + <p>The <dfn id="document-base-url">document base URL</dfn> of a <code><a href="#document">Document</a></code> object is the <a href="#absolute-url">absolute URL</a> obtained by running these substeps:</p> @@ -2862,7 +2872,7 @@ context's creation. --> <p>If <var title="">fallback base url</var> is - <code><a href="#about:blank">about:blank</a></code>, and the <code>Document</code>'s + <code><a href="#about:blank">about:blank</a></code>, and the <code><a href="#document">Document</a></code>'s <a href="browsers.html#browsing-context">browsing context</a> has a <a href="browsers.html#creator-browsing-context">creator browsing context</a>, then let <var title="">fallback base url</var> be the <a href="#document-base-url">document base URL</a> of the <a href="browsers.html#creator-document">creator @@ -3182,7 +3192,7 @@ <p>Generate the <i>address of the resource from which Request-URIs are obtained</i> as required by HTTP for the <code title="http-referer">Referer</code> (sic) header from <a href="dom.html#the-document-s-current-address">the document's current address</a> of the appropriate - <code>Document</code> as given by the following list. <a href="references.html#refsHTTP">[HTTP]</a></p> + <code><a href="#document">Document</a></code> as given by the following list. <a href="references.html#refsHTTP">[HTTP]</a></p> <dl class="switch"><dt>When <a href="history.html#navigate" title="navigate">navigating</a></dt> @@ -3191,7 +3201,7 @@ <dt>When fetching resources for an element</dt> - <dd>The element's <code>Document</code>.</dd> + <dd>The element's <code><a href="#document">Document</a></code>.</dd> <dt>When fetching resources in response to a call to an API</dt> @@ -3205,7 +3215,7 @@ NOT include a fragment." (section 14.36) --> <p>If the <a href="browsers.html#origin">origin</a> of the appropriate - <code>Document</code> is not a scheme/host/port tuple, then the + <code><a href="#document">Document</a></code> is not a scheme/host/port tuple, then the <code title="http-referer">Referer</code> (sic) header must be omitted, regardless of its value.</p> @@ -3794,7 +3804,7 @@ caller getter object <a href="#dom-htmlformcontrolscollection-nameditem" title="dom-HTMLFormControlsCollection-namedItem">namedItem</a>(in DOMString name); // overrides inherited namedItem() }; -interface <dfn id="radionodelist">RadioNodeList</dfn> : <span>NodeList</span> { +interface <dfn id="radionodelist">RadioNodeList</dfn> : <a href="#nodelist">NodeList</a> { attribute DOMString <a href="#dom-radionodelist-value" title="dom-RadioNodeList-value">value</a>; };</pre><dl class="domintro"><dt><var title="">collection</var> . <code title="dom-HTMLCollection-length"><a href="#dom-htmlcollection-length">length</a></code></dt> <dd> @@ -3856,8 +3866,8 @@ <li>Return that <code><a href="#radionodelist">RadioNodeList</a></code> object.</li> </ol><hr><p>Members of the <code><a href="#radionodelist">RadioNodeList</a></code> interface inherited - from the <code>NodeList</code> interface must behave as they would - on a <code>NodeList</code> object.</p> + from the <code><a href="#nodelist">NodeList</a></code> interface must behave as they would + on a <code><a href="#nodelist">NodeList</a></code> object.</p> <p>The <dfn id="dom-radionodelist-value" title="dom-RadioNodeList-value"><code>value</code></dfn> IDL attribute on the <code><a href="#radionodelist">RadioNodeList</a></code> object, on getting, @@ -3926,7 +3936,7 @@ <dt><var title="">collection</var>(<var title="">name</var>)</dt> <dd> <p>Returns the item with <a href="dom.html#concept-id" title="concept-id">ID</a> or <code title="attr-option-name">name</code> <var title="">name</var> from the collection.</p> - <p>If there are multiple matching items, then a <code>NodeList</code> object containing all those elements is returned.</p> + <p>If there are multiple matching items, then a <code><a href="#nodelist">NodeList</a></code> object containing all those elements is returned.</p> <p>Returns null if no element with that <a href="dom.html#concept-id" title="concept-id">ID</a> could be found.</p> </dd> @@ -3991,16 +4001,16 @@ either an <code title="attr-id"><a href="dom.html#the-id-attribute">id</a></code> attribute or a <code title="attr-option-name">name</code> attribute equal to <var title="">name</var>, then return null and stop the algorithm.</li> <!-- IE returns an HTMLCollection instead; we may need to change to that for compat --> - <li>Otherwise, create a <code>NodeList</code> object representing a + <li>Otherwise, create a <code><a href="#nodelist">NodeList</a></code> object representing a live view of the <code><a href="#htmloptionscollection">HTMLOptionsCollection</a></code> object, further - filtered so that the only nodes in the <code>NodeList</code> object + filtered so that the only nodes in the <code><a href="#nodelist">NodeList</a></code> object are those that have either an <code title="attr-id"><a href="dom.html#the-id-attribute">id</a></code> attribute or a <code title="attr-option-name">name</code> attribute equal to <var title="">name</var>. The nodes in the - <code>NodeList</code> object must be sorted in <a href="#tree-order">tree + <code><a href="#nodelist">NodeList</a></code> object must be sorted in <a href="#tree-order">tree order</a>.</li> - <li>Return that <code>NodeList</code> object.</li> + <li>Return that <code><a href="#nodelist">NodeList</a></code> object.</li> </ol><p>The <dfn id="dom-htmloptionscollection-add" title="dom-HTMLOptionsCollection-add"><code>add(<var title="">element</var>, <var title="">before</var>)</code></dfn> method must act according to the following algorithm:</p> @@ -4490,11 +4500,11 @@ <div class="example"> <p>For example, the <code>document.location</code> attribute means - that there is a strong reference from a <code>Document</code> + that there is a strong reference from a <code><a href="#document">Document</a></code> object to its <code><a href="history.html#location">Location</a></code> object. Similarly, there is - always a strong reference from a <code>Document</code> to any + always a strong reference from a <code><a href="#document">Document</a></code> to any descendant nodes, and from any node to its owner - <code>Document</code>.</p> + <code><a href="#document">Document</a></code>.</p> </div> Index: text-level-semantics.html =================================================================== RCS file: /sources/public/html5/spec/text-level-semantics.html,v retrieving revision 1.804 retrieving revision 1.805 diff -u -d -r1.804 -r1.805 --- text-level-semantics.html 16 Feb 2010 08:26:32 -0000 1.804 +++ text-level-semantics.html 16 Feb 2010 08:36:26 -0000 1.805 @@ -290,7 +290,7 @@ <a href="semantics.html">← 4 The elements of HTML</a> – <a href="spec.html#contents">Table of contents</a> – <a href="video.html">4.8.6 The video element →</a> - </nav><p>This is revision 1.3795.</p> + </nav><p>This is revision 1.3796.</p> <h3 id="text-level-semantics"><span class="secno">4.6 </span>Text-level semantics</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><h4 id="the-a-element"><span class="secno">4.6.1 </span>The <dfn><code>a</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class="element"><dt>Categories</dt> @@ -412,7 +412,7 @@ <dd> - <p>Same as <code>textContent</code>.</p> + <p>Same as <code><a href="infrastructure.html#textcontent">textContent</a></code>.</p> </dd> @@ -428,8 +428,8 @@ <p>The <dfn id="dom-a-text" title="dom-a-text"><code>text</code></dfn> IDL attribute, on getting, must return the same value as the - <code>textContent</code> IDL attribute on the element, and on - setting, must act as if the <code>textContent</code> IDL attribute + <code><a href="infrastructure.html#textcontent">textContent</a></code> IDL attribute on the element, and on + setting, must act as if the <code><a href="infrastructure.html#textcontent">textContent</a></code> IDL attribute on the element had been set to the new value.</p> <p>The <code><a href="#the-a-element">a</a></code> element also supports the complement of @@ -844,7 +844,7 @@ child <a href="infrastructure.html#text-node" title="text node">text nodes</a>, and that child element is an <code><a href="#the-abbr-element">abbr</a></code> element with a <code title="attr-abbr-title"><a href="#attr-abbr-title">title</a></code> attribute, then the exact value of <em>that</em> attribute is the term being defined. Otherwise, it - is the exact <code>textContent</code> of the <code><a href="#the-dfn-element">dfn</a></code> + is the exact <code><a href="infrastructure.html#textcontent">textContent</a></code> of the <code><a href="#the-dfn-element">dfn</a></code> element that gives the term being defined.</p><!-- note that this means <dfn>x \n x</dfn> won't match <span>x x</span> --><p>If the <code title="attr-dfn-title"><a href="#attr-dfn-title">title</a></code> attribute of the <code><a href="#the-dfn-element">dfn</a></code> element is present, then it must contain only the term being defined.</p><p class="note">The <code title="attr-title"><a href="dom.html#the-title-attribute">title</a></code> attribute @@ -1016,7 +1016,7 @@ each <code><a href="semantics.html#the-article-element">article</a></code> element, there must no more than one <code><a href="#the-time-element">time</a></code> element with a <code title="attr-time-pubdate"><a href="#attr-time-pubdate">pubdate</a></code> attribute whose nearest ancestor is that <code><a href="semantics.html#the-article-element">article</a></code> element. Furthermore, for each - <code>Document</code>, there must be no more than one + <code><a href="infrastructure.html#document">Document</a></code>, there must be no more than one <code><a href="#the-time-element">time</a></code> element with a <code title="attr-time-pubdate"><a href="#attr-time-pubdate">pubdate</a></code> attribute that does not have an ancestor <code><a href="semantics.html#the-article-element">article</a></code> element.</p><p>The <dfn id="attr-time-datetime" title="attr-time-datetime"><code>datetime</code></dfn> attribute, if present, gives the date or time being @@ -1024,11 +1024,11 @@ contents.</p><p>If the element <i><a href="#needs-a-date">needs a date</a></i>, and the <code title="attr-time-datetime"><a href="#attr-time-datetime">datetime</a></code> attribute is present, then the attribute's value must be a <a href="infrastructure.html#valid-date-string-with-optional-time">valid date string with optional time</a>.</p><p>If the element <i><a href="#needs-a-date">needs a date</a></i>, but the <code title="attr-time-datetime"><a href="#attr-time-datetime">datetime</a></code> attribute is not present, - then the element's <code>textContent</code> must be a <a href="infrastructure.html#valid-date-string-in-content-with-optional-time">valid + then the element's <code><a href="infrastructure.html#textcontent">textContent</a></code> must be a <a href="infrastructure.html#valid-date-string-in-content-with-optional-time">valid date string in content with optional time</a>.</p><p>If the element does not <i>need a date</i>, and the <code title="attr-time-datetime"><a href="#attr-time-datetime">datetime</a></code> attribute is present, then the attribute's value must be a <a href="infrastructure.html#valid-date-or-time-string">valid date or time string</a>.</p><p>If the element does not <i>need a date</i>, but the <code title="attr-time-datetime"><a href="#attr-time-datetime">datetime</a></code> attribute is not present, - then the element's <code>textContent</code> must be a <a href="infrastructure.html#valid-date-or-time-string-in-content">valid + then the element's <code><a href="infrastructure.html#textcontent">textContent</a></code> must be a <a href="infrastructure.html#valid-date-or-time-string-in-content">valid date or time string in content</a>.</p><p>The date, if any, must be expressed using the Gregorian calendar.</p><div class="impl"> @@ -1093,7 +1093,7 @@ <li>Otherwise, use the rules to <a href="infrastructure.html#parse-a-date-or-time-string">parse a date or time string</a> with the flag <i>in content</i> from the element's - <code>textContent</code>, and let the result be <var title="">result</var>.</li> + <code><a href="infrastructure.html#textcontent">textContent</a></code>, and let the result be <var title="">result</var>.</li> <li>If <var title="">result</var> is empty (because the parsing failed), then the <a href="#concept-time-date" title="concept-time-date">date</a> is @@ -2247,7 +2247,7 @@ <em>not</em> <i title="img-available"><a href="#img-available">available</a></i>.</p> <p class="note">An image might be <i title="img-available"><a href="#img-available">available</a></i> in one <a href="browsers.html#view">view</a> but not - another. For instance, a <code>Document</code> could be rendered by + another. For instance, a <code><a href="infrastructure.html#document">Document</a></code> could be rendered by a screen reader providing a speech synthesis view of the output of a Web browser using the screen media. In this case, the image would be <i title="img-available"><a href="#img-available">available</a></i> in the Web browser's screen @@ -3408,7 +3408,7 @@ </ol><p>For <code><a href="#the-iframe-element">iframe</a></code> elements in <a href="dom.html#xml-documents">XML documents</a>, the attribute, if present, must have a value that matches the - production labeled <code>document</code> in the XML + production labeled <code><a href="infrastructure.html#document">document</a></code> in the XML specification. <a href="references.html#refsXML">[XML]</a></p><p>If the <code title="attr-iframe-src"><a href="#attr-iframe-src">src</a></code> attribute and the <code title="attr-iframe-srcdoc"><a href="#attr-iframe-srcdoc">srcdoc</a></code> attribute are both specified together, the <code title="attr-iframe-srcdoc"><a href="#attr-iframe-srcdoc">srcdoc</a></code> @@ -3496,7 +3496,7 @@ initial <code><a href="infrastructure.html#about:blank">about:blank</a></code> page.</p><p class="note">If the user <a href="history.html#navigate" title="navigate">navigates</a> away from this page, the <code><a href="#the-iframe-element">iframe</a></code>'s corresponding <code><a href="browsers.html#windowproxy">WindowProxy</a></code> object will proxy new <code><a href="browsers.html#window">Window</a></code> - objects for new <code>Document</code> objects, but the <code title="attr-iframe-src"><a href="#attr-iframe-src">src</a></code> attribute will not change.</p><div class="example"> + objects for new <code><a href="infrastructure.html#document">Document</a></code> objects, but the <code title="attr-iframe-src"><a href="#attr-iframe-src">src</a></code> attribute will not change.</p><div class="example"> <p>Here a blog uses the <code title="attr-iframe-srcdoc"><a href="#attr-iframe-srcdoc">srcdoc</a></code> attribute in conjunction with the <code title="attr-iframe-sandbox"><a href="#attr-iframe-sandbox">sandbox</a></code> and <code title="attr-iframe-seamless"><a href="#attr-iframe-seamless">seamless</a></code> attributes described @@ -3616,8 +3616,8 @@ the following list set. In addition, any browsing contexts <a href="browsers.html#nested-browsing-context" title="nested browsing context">nested</a> within an <code><a href="#the-iframe-element">iframe</a></code>, either directly or indirectly, must have all the flags set on them as were set on the <code><a href="#the-iframe-element">iframe</a></code>'s - <code>Document</code>'s <a href="browsers.html#browsing-context">browsing context</a> when the - <code><a href="#the-iframe-element">iframe</a></code>'s <code>Document</code> was created.</p> + <code><a href="infrastructure.html#document">Document</a></code>'s <a href="browsers.html#browsing-context">browsing context</a> when the + <code><a href="#the-iframe-element">iframe</a></code>'s <code><a href="infrastructure.html#document">Document</a></code> was created.</p> <dl><dt>The <dfn id="sandboxed-navigation-browsing-context-flag">sandboxed navigation browsing context flag</dfn></dt> @@ -3827,7 +3827,7 @@ 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="browsers.html#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 + <code><a href="#the-iframe-element">iframe</a></code>'s <code><a href="infrastructure.html#document">Document</a></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 @@ -3839,9 +3839,9 @@ be part of the containing document (seamlessly included in the parent document). <span class="impl">Specifically, when the attribute is set on an <code><a href="#the-iframe-element">iframe</a></code> element whose owner - <code>Document</code>'s <a href="browsers.html#browsing-context">browsing context</a> did not have + <code><a href="infrastructure.html#document">Document</a></code>'s <a href="browsers.html#browsing-context">browsing context</a> did not have the <a href="#sandboxed-seamless-iframes-flag">sandboxed seamless iframes flag</a> set when that - <code>Document</code> was created, and while either the + <code><a href="infrastructure.html#document">Document</a></code> was created, and while either the <a href="browsers.html#browsing-context">browsing context</a>'s <a href="browsers.html#active-document">active document</a> has the <a href="browsers.html#same-origin">same origin</a> as the <code><a href="#the-iframe-element">iframe</a></code> element's document, or the <a href="browsers.html#browsing-context">browsing context</a>'s <a href="browsers.html#active-document">active @@ -3977,7 +3977,7 @@ name.</p> <p>The <dfn id="dom-iframe-contentdocument" title="dom-iframe-contentDocument"><code>contentDocument</code></dfn> - IDL attribute must return the <code>Document</code> object of the + IDL attribute must return the <code><a href="infrastructure.html#document">Document</a></code> object of the <a href="browsers.html#active-document">active document</a> of the <code><a href="#the-iframe-element">iframe</a></code> element's <a href="browsers.html#nested-browsing-context">nested browsing context</a>.</p> @@ -4063,11 +4063,11 @@ </p><ul><li>the <a href="#sandboxed-plugins-browsing-context-flag">sandboxed plugins browsing context flag</a> was set on the <a href="browsers.html#browsing-context">browsing context</a> for which the - <code><a href="#the-embed-element">embed</a></code> element's <code>Document</code> is the - <a href="browsers.html#active-document">active document</a> when that <code>Document</code> was + <code><a href="#the-embed-element">embed</a></code> element's <code><a href="infrastructure.html#document">Document</a></code> is the + <a href="browsers.html#active-document">active document</a> when that <code><a href="infrastructure.html#document">Document</a></code> was created, or</li> - <li>the <code><a href="#the-embed-element">embed</a></code> element's <code>Document</code> was + <li>the <code><a href="#the-embed-element">embed</a></code> element's <code><a href="infrastructure.html#document">Document</a></code> was parsed from a resource whose <a href="infrastructure.html#content-type-sniffing-0" title="Content-Type sniffing">sniffed type</a> as determined during <a href="history.html#navigate" title="navigate">navigation</a> is <code><a href="iana.html#text-html-sandboxed">text/html-sandboxed</a></code></li> @@ -4090,10 +4090,10 @@ following conditions are all met simultaneously:</p> <ul class="brief"><li>The element is <a href="infrastructure.html#in-a-document" title="in a document">in a <code>Document</code></a>.</li> - <li>The element's <code>Document</code> is <a href="browsers.html#fully-active">fully active</a>.</li> + <li>The element's <code><a href="infrastructure.html#document">Document</a></code> is <a href="browsers.html#fully-active">fully active</a>.</li> <li>The element has either a <code title="attr-embed-src"><a href="#attr-embed-src">src</a></code> attribute set or a <code title="attr-embed-type"><a href="#attr-embed-type">type</a></code> attribute set (or both).</li> - <li>The element is not in a <code>Document</code> whose <a href="browsers.html#browsing-context">browsing context</a> had the <a href="#sandboxed-plugins-browsing-context-flag">sandboxed plugins browsing context flag</a> set when the <code>Document</code> was created (unless this has been overrriden as described above).</li> - <li>The element's <code>Document</code> was not parsed from a resource whose <a href="infrastructure.html#content-type-sniffing-0" title="Content-Type sniffing">sniffed type</a> as determined during <a href="history.html#navigate" title="navigate">navigation</a> is <code><a href="iana.html#text-html-sandboxed">text/html-sandboxed</a></code> (unless this has been overrriden as described above).</li> + <li>The element is not in a <code><a href="infrastructure.html#document">Document</a></code> whose <a href="browsers.html#browsing-context">browsing context</a> had the <a href="#sandboxed-plugins-browsing-context-flag">sandboxed plugins browsing context flag</a> set when the <code><a href="infrastructure.html#document">Document</a></code> was created (unless this has been overrriden as described above).</li> + <li>The element's <code><a href="infrastructure.html#document">Document</a></code> was not parsed from a resource whose <a href="infrastructure.html#content-type-sniffing-0" title="Content-Type sniffing">sniffed type</a> as determined during <a href="history.html#navigate" title="navigate">navigation</a> is <code><a href="iana.html#text-html-sandboxed">text/html-sandboxed</a></code> (unless this has been overrriden as described above).</li> <li>The element is not a descendant of a <a href="video.html#media-element">media element</a>.</li> <li>The element is not a descendant of an <code><a href="#the-object-element">object</a></code> element that is not showing its <a href="embedded-content-0.html#fallback-content">fallback content</a>.</li> </ul><p>Whenever an <code><a href="#the-embed-element">embed</a></code> element that was not <a href="#concept-embed-active" title="concept-embed-active">potentially active</a> becomes <a href="#concept-embed-active" title="concept-embed-active">potentially active</a>, and whenever @@ -4311,7 +4311,7 @@ element is <a href="infrastructure.html#insert-an-element-into-a-document" title="insert an element into a document">inserted into a document</a> or <a href="infrastructure.html#remove-an-element-from-a-document" title="remove an element from a document">removed from a document</a>; and whenever the element's - <code>Document</code> changes whether it is <a href="browsers.html#fully-active">fully + <code><a href="infrastructure.html#document">Document</a></code> changes whether it is <a href="browsers.html#fully-active">fully active</a>; and whenever an ancestor <code><a href="#the-object-element">object</a></code> element changes to or from showing its <a href="embedded-content-0.html#fallback-content">fallback content</a>; and whenever the element's <code title="attr-object-classid"><a href="obsolete.html#attr-object-classid">classid</a></code> attribute is set, @@ -4345,7 +4345,7 @@ has an ancestor <code><a href="#the-object-element">object</a></code> element that is <em>not</em> showing its <a href="embedded-content-0.html#fallback-content">fallback content</a>, or if the element is not <a href="infrastructure.html#in-a-document" title="in a document">in a <code>Document</code></a>, - or if the element's <code>Document</code> is not <a href="browsers.html#fully-active">fully + or if the element's <code><a href="infrastructure.html#document">Document</a></code> is not <a href="browsers.html#fully-active">fully active</a>, then jump to the last step in the overall set of steps (fallback).</p> @@ -4694,11 +4694,11 @@ <p id="sandboxPluginObject">If either:</p> <ul><li>the <a href="#sandboxed-plugins-browsing-context-flag">sandboxed plugins browsing context flag</a> was - set on the <code><a href="#the-object-element">object</a></code> element's <code>Document</code>'s - <a href="browsers.html#browsing-context">browsing context</a> when the <code>Document</code> was + set on the <code><a href="#the-object-element">object</a></code> element's <code><a href="infrastructure.html#document">Document</a></code>'s + <a href="browsers.html#browsing-context">browsing context</a> when the <code><a href="infrastructure.html#document">Document</a></code> was created, or</li> - <li>the <code><a href="#the-object-element">object</a></code> element's <code>Document</code> was + <li>the <code><a href="#the-object-element">object</a></code> element's <code><a href="infrastructure.html#document">Document</a></code> was parsed from a resource whose <a href="infrastructure.html#content-type-sniffing-0" title="Content-Type sniffing">sniffed type</a> as determined during <a href="history.html#navigate" title="navigate">navigation</a> is <code><a href="iana.html#text-html-sandboxed">text/html-sandboxed</a></code></li> @@ -4749,7 +4749,7 @@ name.</p> <p>The <dfn id="dom-object-contentdocument" title="dom-object-contentDocument"><code>contentDocument</code></dfn> - IDL attribute must return the <code>Document</code> object of the + IDL attribute must return the <code><a href="infrastructure.html#document">Document</a></code> object of the <a href="browsers.html#active-document">active document</a> of the <code><a href="#the-object-element">object</a></code> element's <a href="browsers.html#nested-browsing-context">nested browsing context</a>, if it has one; otherwise, it must return null.</p> Index: the-canvas-element.html =================================================================== RCS file: /sources/public/html5/spec/the-canvas-element.html,v retrieving revision 1.673 retrieving revision 1.674 diff -u -d -r1.673 -r1.674 --- the-canvas-element.html 16 Feb 2010 08:26:32 -0000 1.673 +++ the-canvas-element.html 16 Feb 2010 08:36:26 -0000 1.674 @@ -290,7 +290,7 @@ <a href="video.html">← 4.8.6 The video element</a> – <a href="spec.html#contents">Table of contents</a> – <a href="tabular-data.html">4.9 Tabular data →</a> - </nav><p>This is revision 1.3795.</p> + </nav><p>This is revision 1.3796.</p> <h4 id="the-canvas-element"><span class="secno">4.8.10 </span>The <dfn id="canvas"><code>canvas</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/74">ISSUE-74</a> (canvas-accessibility) blocks progress to Last Call</span></p><dl class="element"><dt>Categories</dt> @@ -551,7 +551,7 @@ called with an <code><a href="text-level-semantics.html#htmlimageelement">HTMLImageElement</a></code> or an <code><a href="video.html#htmlvideoelement">HTMLVideoElement</a></code> whose <a href="browsers.html#origin">origin</a> is not the <a href="browsers.html#same-origin" title="same origin">same</a> as that of the - <code>Document</code> object that owns the <code><a href="#the-canvas-element">canvas</a></code> + <code><a href="infrastructure.html#document">Document</a></code> object that owns the <code><a href="#the-canvas-element">canvas</a></code> element.</p></li> <li><p>The element's 2D context's <code title="dom-context-2d-drawImage">drawImage()</code> method is @@ -562,7 +562,7 @@ to a <code>CanvasPattern</code> object that was created from an <code><a href="text-level-semantics.html#htmlimageelement">HTMLImageElement</a></code> or an <code><a href="video.html#htmlvideoelement">HTMLVideoElement</a></code> whose <a href="browsers.html#origin">origin</a> was not the <a href="browsers.html#same-origin" title="same - origin">same</a> as that of the <code>Document</code> object + origin">same</a> as that of the <code><a href="infrastructure.html#document">Document</a></code> object that owns the <code><a href="#the-canvas-element">canvas</a></code> element when the pattern was created.</p></li> @@ -575,7 +575,7 @@ set to a <code>CanvasPattern</code> object that was created from an <code><a href="text-level-semantics.html#htmlimageelement">HTMLImageElement</a></code> or an <code><a href="video.html#htmlvideoelement">HTMLVideoElement</a></code> whose <a href="browsers.html#origin">origin</a> was not the <a href="browsers.html#same-origin" title="same - origin">same</a> as that of the <code>Document</code> object + origin">same</a> as that of the <code><a href="infrastructure.html#document">Document</a></code> object that owns the <code><a href="#the-canvas-element">canvas</a></code> element when the pattern was created.</p></li> @@ -652,7 +652,7 @@ <p>The <dfn id="dom-map-images" title="dom-map-images"><code>images</code></dfn> attribute must return an <code><a href="infrastructure.html#htmlcollection">HTMLCollection</a></code> rooted at the - <code>Document</code> node, whose filter matches only + <code><a href="infrastructure.html#document">Document</a></code> node, whose filter matches only <code><a href="text-level-semantics.html#the-img-element">img</a></code> and <code><a href="text-level-semantics.html#the-object-element">object</a></code> elements that are associated with this <code><a href="#the-map-element">map</a></code> element according to the <a href="#image-map">image map</a> processing model.</p> @@ -1053,7 +1053,7 @@ </ol><p>Mouse clicks on an image associated with a set of layered shapes per the above algorithm must be dispatched to the top-most shape covering the point that the pointing device indicated (if any), and - then, must be dispatched again (with a new <code>Event</code> + then, must be dispatched again (with a new <code><a href="infrastructure.html#event">Event</a></code> object) to the image element itself. User agents may also allow individual <code><a href="#the-area-element">area</a></code> elements representing <a href="interactive-elements.html#hyperlink" title="hyperlink">hyperlinks</a> to be selected and activated (e.g. using a keyboard); events from this are not also propagated to Index: tabular-data.html =================================================================== RCS file: /sources/public/html5/spec/tabular-data.html,v retrieving revision 1.805 retrieving revision 1.806 diff -u -d -r1.805 -r1.806 --- tabular-data.html 16 Feb 2010 08:26:32 -0000 1.805 +++ tabular-data.html 16 Feb 2010 08:36:25 -0000 1.806 @@ -290,7 +290,7 @@ <a href="the-canvas-element.html">← 4.8.10 The canvas element</a> – <a href="spec.html#contents">Table of contents</a> – <a href="forms.html">4.10 Forms →</a> - </nav><p>This is revision 1.3795.</p> + </nav><p>This is revision 1.3796.</p> <h3 id="tabular-data"><span class="secno">4.9 </span>Tabular data</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/32">ISSUE-32</a> (table-summary) blocks progress to Last Call</span></p><h4 id="the-table-element"><span class="secno">4.9.1 </span>The <dfn><code>table</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/92">ISSUE-92</a> (cleanuptable) blocks progress to Last Call</span></p><dl class="element"><dt>Categories</dt> @@ -2115,7 +2115,7 @@ <!-- support headers="" to <td> for legacy compat --> <!-- note that it's not conforming though --> <p>For each token in the <var title="">id list</var>, if the - first element in the <code>Document</code> with an ID equal to + first element in the <code><a href="infrastructure.html#document">Document</a></code> with an ID equal to the token is a cell in the same <a href="#concept-table" title="concept-table">table</a>, and that cell is not the <var title="">principal cell</var>, then add that cell to <var title="">header list</var>.</p> Index: embedded-content-0.html =================================================================== RCS file: /sources/public/html5/spec/embedded-content-0.html,v retrieving revision 1.801 retrieving revision 1.802 diff -u -d -r1.801 -r1.802 --- embedded-content-0.html 16 Feb 2010 08:26:30 -0000 1.801 +++ embedded-content-0.html 16 Feb 2010 08:36:23 -0000 1.802 @@ -290,7 +290,7 @@ <a href="dom.html">← 3 Semantics, structure, and APIs of HTML documents</a> – <a href="spec.html#contents">Table of contents</a> – <a href="semantics.html">4 The elements of HTML →</a> - </nav><p>This is revision 1.3795.</p> + </nav><p>This is revision 1.3796.</p> <h6 id="embedded-content-0"><span class="secno">3.2.5.1.6 </span>Embedded content</h6><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p><dfn id="embedded-content">Embedded content</dfn> is content that imports another @@ -1075,27 +1075,27 @@ <dd> - <p>Causes the <code>Document</code> to be replaced in-place, as if - it was a new <code>Document</code> object, but reusing the + <p>Causes the <code><a href="infrastructure.html#document">Document</a></code> to be replaced in-place, as if + it was a new <code><a href="infrastructure.html#document">Document</a></code> object, but reusing the previous object, which is then returned.</p> <p>If the <var title="">type</var> argument is omitted or has the value "<code><a href="iana.html#text-html">text/html</a></code>", then the resulting - <code>Document</code> has an HTML parser associated with it, which + <code><a href="infrastructure.html#document">Document</a></code> has an HTML parser associated with it, which can be given data to parse using <code title="dom-document-write"><a href="#dom-document-write">document.write()</a></code>. Otherwise, all content passed to <code title="dom-document-write"><a href="#dom-document-write">document.write()</a></code> will be parsed as plain text.</p> <p>If the <var title="">replace</var> argument is present and has the value "<code title="">replace</code>", the existing entries in - the session history for the <code>Document</code> object are + the session history for the <code><a href="infrastructure.html#document">Document</a></code> object are removed.</p> - <p>The method has no effect if the <code>Document</code> is still + <p>The method has no effect if the <code><a href="infrastructure.html#document">Document</a></code> is still being parsed.</p> <p>Throws an <code><a href="infrastructure.html#invalid_state_err">INVALID_STATE_ERR</a></code> exception if the - <code>Document</code> is an <a href="dom.html#xml-documents" title="XML documents">XML + <code><a href="infrastructure.html#document">Document</a></code> is an <a href="dom.html#xml-documents" title="XML documents">XML document</a>.</p> </dd> @@ -1114,7 +1114,7 @@ <p>When called with two or fewer arguments, the method must act as follows:</p> - <ol><li>If the <code>Document</code> object is not flagged as an <a href="dom.html#html-documents" title="HTML documents">HTML document</a>, throw an + <ol><li>If the <code><a href="infrastructure.html#document">Document</a></code> object is not flagged as an <a href="dom.html#html-documents" title="HTML documents">HTML document</a>, throw an <code><a href="infrastructure.html#invalid_state_err">INVALID_STATE_ERR</a></code> exception and abort these steps.</li> @@ -1133,7 +1133,7 @@ point</a> associated with that parser's <a href="syntax.html#the-input-stream">input stream</a> is not undefined (that is, it <em>does</em> point to somewhere in the input stream), then the method does - nothing. Abort these steps and return the <code>Document</code> + nothing. Abort these steps and return the <code><a href="infrastructure.html#document">Document</a></code> object on which the method was invoked.</p> <p class="note">This basically causes <code title="dom-document-open"><a href="#dom-document-open">document.open()</a></code> to be ignored @@ -1147,12 +1147,12 @@ <li><p>Release the <a href="webappapis.html#storage-mutex">storage mutex</a>.</p></li> <li><p><a href="history.html#prompt-to-unload-a-document" title="prompt to unload a document">Prompt to - unload</a> the <code>Document</code> object. If the user + unload</a> the <code><a href="infrastructure.html#document">Document</a></code> object. If the user <a href="history.html#refused-to-allow-the-document-to-be-unloaded">refused to allow the document to be unloaded</a>, then these steps must be aborted.</p></li> <li><p><a href="history.html#unload-a-document" title="unload a document">Unload</a> the - <code>Document</code> object, with the <var title="">recycle</var> + <code><a href="infrastructure.html#document">Document</a></code> object, with the <var title="">recycle</var> parameter set to true.</p></li> <li><p>If the document has an <a href="dom.html#active-parser">active parser</a>, then @@ -1160,10 +1160,10 @@ <a href="syntax.html#the-input-stream">input stream</a>.</p></li> <li><p>Unregister all event listeners registered on the - <code>Document</code> node and its descendants.</p> + <code><a href="infrastructure.html#document">Document</a></code> node and its descendants.</p> </li><li><p>Remove any <a href="webappapis.html#concept-task" title="concept-task">tasks</a> - associated with the <code>Document</code> in any <a href="webappapis.html#task-source">task + associated with the <code><a href="infrastructure.html#document">Document</a></code> in any <a href="webappapis.html#task-source">task source</a>.</p></li> <!-- removes callbacks that fired between this algorithm starting and the times and databases being aborted in the "unload" step above --> @@ -1172,7 +1172,7 @@ mutation events.</p></li> <!-- as of 2009-03-30, only WebKit fired mutation events here. --> - <li><p>Replace the <code>Document</code>'s singleton objects with + <li><p>Replace the <code><a href="infrastructure.html#document">Document</a></code>'s singleton objects with new instances of those objects. (This includes in particular the <code><a href="browsers.html#window">Window</a></code>, <code><a href="history.html#location">Location</a></code>, <code><a href="history.html#history-0">History</a></code>, <code><a href="offline.html#applicationcache">ApplicationCache</a></code>, <code><a href="editing.html#undomanager">UndoManager</a></code>, @@ -1180,7 +1180,7 @@ various <code><a href="browsers.html#barprop">BarProp</a></code> objects, the two <code>Storage</code> objects, and the various <code><a href="infrastructure.html#htmlcollection">HTMLCollection</a></code> objects. It also includes all the Web IDL prototypes in the JavaScript binding, - including the <code>Document</code> object's prototype.)</p></li> + including the <code><a href="infrastructure.html#document">Document</a></code> object's prototype.)</p></li> <!-- http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C!DOCTYPE%20html%3E...%3Ciframe%20src%3D%22document%22%3E%3C%2Fiframe%3E%0A%3Cscript%3Eonload%20%3D%20function%20()%20%7B%20f%20%3D%20document.getElementsByTagName('iframe')%5B0%5D%3B%20d%20%3D%20f.contentWindow.document%3B%20%7D%3C%2Fscript%3E%0A%3Cinput%20type%3Dbutton%20onclick%3D%22w(d.documentElement.innerHTML)%22%20value%3D%22dump%22%3E%0A%3Cinput%20type%3Dbutton%20onclick%3D%22d.open()%3B%20d.write('%3Cscript%3Evar%20x%20%3D%20new%20XMLHttpRequest()%3Bx.open(%26quot%3BGET%26quot%3B%2C%20%26quot%3BGET%26quot%3B)%3Bx.onreadystatechange%3Dfunction()%20%7B%20alert(x.readyState)%3B%20%7D%3Bx.send(null)%3B%3C%2Fscript%3E')%3Bd.close()%3B%20setTimeout(function()%20%7B%20d.open()%3B%20d.write('%3Cp%3Etest%3C%2Fp%3E')%3B%20d.close()%20%7D%2C%200)%3B%22%20value%3D%22xhr%22%3E%0A%3Cinput%20type%3Dbutton%20onclick%3D%22d.onclick%20%3D%20function()%20%7B%20w('click')%20%7D%22%20value%3D%22add%20click%20handler%22%3E%0A%3Cinput%20type%3Dbutton%20oncick%3D%22d.open()%3B%20d.write('%3Cp%3Etest%3C%2Fp%3E')%3B%20d.close()%22%20value%3D%22replace%22%3E%0A%3Cinput%20type%3Dbutton%20onclick%3D%22d.open()%3B%20d.write('%3Cp%3E%3Cscript%3Ei%20%3D%200%3B%20setTimeout(%26quot%3Bparent.w(i%2B%2B)%26quot%3B%2C%202000)%3C%2Fscript%3E%3C%2Fp%3E')%3B%20d.close()%22%20value%3D%22replace%20with%20timer%22%3E --> <!-- http://software.hixie.ch/utilities/js/live-dom-viewer/?%3C!DOCTYPE%20html%3E%0D%0A...%3Ciframe%3E%3C%2Fiframe%3E%0D%0A%3Cscript%3E%0D%0Aonload%20%3D%20function%20()%20%7B%0D%0A%20frames%5B0%5D.test%20%3D%201%0D%0A%20w(frames%5B0%5D.test)%3B%0D%0A%20var%20a%20%3D%20frames%5B0%5D.document.location.assign%3B%0D%0A%20w(a)%3B%0D%0A%20w(frames%5B0%5D.document.location.assign%20%3D%3D%3D%20a)%3B%0D%0A%20frames%5B0%5D.document.open()%3B%0D%0A%20frames%5B0%5D.document.write('%3Cscript%3Edocument.write(test)%3C%5C%2Fscript%3E')%3B%0D%0A%20frames%5B0%5D.document.close()%3B%0D%0A%20w(frames%5B0%5D.test)%3B%0D%0A%20w(frames%5B0%5D.document.location.assign%20%3D%3D%3D%20a)%3B%0D%0A%7D%0D%0A%3C%2Fscript%3E --> @@ -1244,12 +1244,12 @@ the <a href="webappapis.html#history-traversal-task-source">history traversal task source</a>.</p></li> <li>Remove any earlier entries that share the same - <code>Document</code>.</li> + <code><a href="infrastructure.html#document">Document</a></code>.</li> <li><p>If <var title="">replace</var> is false, then add a new entry, just before the last entry, and associate with the new entry the text that was parsed by the previous parser associated with the - <code>Document</code> object, as well as the state of the document + <code><a href="infrastructure.html#document">Document</a></code> object, as well as the state of the document at the start of these steps. (This allows the user to step backwards in the session history to see the page before it was blown away by the <code title="dom-document-open"><a href="#dom-document-open">document.open()</a></code> call.)</p></li> @@ -1258,7 +1258,7 @@ just before the end of the <a href="syntax.html#the-input-stream">input stream</a> (which at this point will be empty).</p></li> - <li><p>Return the <code>Document</code> on which the method was + <li><p>Return the <code><a href="infrastructure.html#document">Document</a></code> on which the method was invoked.</p></li> </ol><p>When called with three or more arguments, the <code title="dom-document-open"><a href="#dom-document-open">open()</a></code> method on the @@ -1276,7 +1276,7 @@ <p>Closes the input stream that was opened by the <code title="dom-document-open"><a href="#dom-document-open">document.open()</a></code> method.</p> <p>Throws an <code><a href="infrastructure.html#invalid_state_err">INVALID_STATE_ERR</a></code> exception if the - <code>Document</code> is an <a href="dom.html#xml-documents" title="XML documents">XML + <code><a href="infrastructure.html#document">Document</a></code> is an <a href="dom.html#xml-documents" title="XML documents">XML document</a>.</p> </dd> @@ -1286,7 +1286,7 @@ <p>The <dfn id="dom-document-close" title="dom-document-close"><code>close()</code></dfn> method must run the following steps:</p> - <ol><li><p>If the <code>Document</code> object is not flagged as an + <ol><li><p>If the <code><a href="infrastructure.html#document">Document</a></code> object is not flagged as an <a href="dom.html#html-documents" title="HTML documents">HTML document</a>, throw an <code><a href="infrastructure.html#invalid_state_err">INVALID_STATE_ERR</a></code> exception and abort these steps.</p></li> @@ -1309,7 +1309,7 @@ <dd> - <p>Adds the given string(s) to the <code>Document</code>'s input + <p>Adds the given string(s) to the <code><a href="infrastructure.html#document">Document</a></code>'s input stream. If necessary, calls the <code title="dom-document-open"><a href="#dom-document-open">open()</a></code> method implicitly first.</p> @@ -1339,7 +1339,7 @@ <li> <p>If the <a href="syntax.html#insertion-point">insertion point</a> is undefined, the <code title="dom-document-open"><a href="#dom-document-open">open()</a></code> method must be called - (with no arguments) on the <code title="Document">document</code> + (with no arguments) on the <code title="Document"><a href="infrastructure.html#document">document</a></code> object. If the user <a href="history.html#refused-to-allow-the-document-to-be-unloaded">refused to allow the document to be unloaded</a>, then these steps must be aborted. Otherwise, the <a href="syntax.html#insertion-point">insertion point</a> will point at just before the end of @@ -1390,7 +1390,7 @@ <dd> - <p>Adds the given string(s) to the <code>Document</code>'s input + <p>Adds the given string(s) to the <code><a href="infrastructure.html#document">Document</a></code>'s input stream, followed by a newline character. If necessary, calls the <code title="dom-document-open"><a href="#dom-document-open">open()</a></code> method implicitly first.</p> @@ -1413,13 +1413,13 @@ <dd> <p>Returns a fragment of HTML or XML that represents the - <code>Document</code>.</p> + <code><a href="infrastructure.html#document">Document</a></code>.</p> - <p>Can be set, to replace the <code>Document</code>'s contents + <p>Can be set, to replace the <code><a href="infrastructure.html#document">Document</a></code>'s contents with the result of parsing the given string.</p> <p>In the case of <a href="dom.html#xml-documents">XML documents</a>, will throw an - <code><a href="infrastructure.html#invalid_state_err">INVALID_STATE_ERR</a></code> if the <code>Document</code> cannot + <code><a href="infrastructure.html#invalid_state_err">INVALID_STATE_ERR</a></code> if the <code><a href="infrastructure.html#document">Document</a></code> cannot be serialized to XML, and a <code><a href="infrastructure.html#syntax_err">SYNTAX_ERR</a></code> if the given string is not well-formed.</p> @@ -1466,7 +1466,7 @@ algorithm</a>.</p> <p>In either case, the algorithm must be invoked with the string - being assigned into the <code title="dom-innerHTML"><a href="#dom-innerhtml">innerHTML</a></code> attribute as the <var title="">input</var>. If the node is an <code>Element</code> + being assigned into the <code title="dom-innerHTML"><a href="#dom-innerhtml">innerHTML</a></code> attribute as the <var title="">input</var>. If the node is an <code><a href="infrastructure.html#element">Element</a></code> node, then, in addition, that element must be passed as the <var title="">context</var> element.</p> <p>If this raises an exception, then abort these steps.</p> @@ -1478,7 +1478,7 @@ <li> - <p>If the attribute is being set on a <code>Document</code> node, + <p>If the attribute is being set on a <code><a href="infrastructure.html#document">Document</a></code> node, and that document has an <a href="dom.html#active-parser">active parser</a>, then abort that parser.</p> @@ -1493,12 +1493,12 @@ <li> - <p>If the attribute is being set on a <code>Document</code> + <p>If the attribute is being set on a <code><a href="infrastructure.html#document">Document</a></code> node, let <var title="">target document</var> be that - <code>Document</code> node. Otherwise, the attribute is being - set on an <code>Element</code> node; let <var title="">target + <code><a href="infrastructure.html#document">Document</a></code> node. Otherwise, the attribute is being + set on an <code><a href="infrastructure.html#element">Element</a></code> node; let <var title="">target document</var> be the <code title="">ownerDocument</code> of - that <code>Element</code>.</p> + that <code><a href="infrastructure.html#element">Element</a></code>.</p> </li> @@ -1536,7 +1536,7 @@ well-formed.</p> <p>Throws a <code><a href="infrastructure.html#no_modification_allowed_err">NO_MODIFICATION_ALLOWED_ERR</a></code> exception if - the parent of the element is the <code>Document</code> + the parent of the element is the <code><a href="infrastructure.html#document">Document</a></code> node.</p> </dd> @@ -1573,7 +1573,7 @@ <li> <p>If <var title="">target</var>'s parent node is a - <code>Document</code> object, throw a + <code><a href="infrastructure.html#document">Document</a></code> object, throw a <code><a href="infrastructure.html#no_modification_allowed_err">NO_MODIFICATION_ALLOWED_ERR</a></code> exception and abort these steps.</p> @@ -1649,7 +1649,7 @@ <p>Throws a <code><a href="infrastructure.html#no_modification_allowed_err">NO_MODIFICATION_ALLOWED_ERR</a></code> exception if the given position isn't possible (e.g. inserting elements after - the root element of a <code>Document</code>).</p> + the root element of a <code><a href="infrastructure.html#document">Document</a></code>).</p> </dd> @@ -1687,7 +1687,7 @@ these steps.</p> <p>If <var title="">target</var>'s parent node is a - <code>Document</code> object, then throw a + <code><a href="infrastructure.html#document">Document</a></code> object, then throw a <code><a href="infrastructure.html#no_modification_allowed_err">NO_MODIFICATION_ALLOWED_ERR</a></code> exception and abort these steps. Index: dom.html =================================================================== RCS file: /sources/public/html5/spec/dom.html,v retrieving revision 1.811 retrieving revision 1.812 diff -u -d -r1.811 -r1.812 --- dom.html 16 Feb 2010 08:26:30 -0000 1.811 +++ dom.html 16 Feb 2010 08:36:23 -0000 1.812 @@ -290,41 +290,41 @@ <a href="infrastructure.html">← 2 Common infrastructure</a> – <a href="spec.html#contents">Table of contents</a> – <a href="embedded-content-0.html">3.2.5.1.6 Embedded content →</a> - </nav><p>This is revision 1.3795.</p> + </nav><p>This is revision 1.3796.</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="references.html#refsDOMCORE">[DOMCORE]</a></p><p><dfn id="the-document-s-address">The document's address</dfn> is an <a href="infrastructure.html#absolute-url">absolute URL</a> - that is set when the <code>Document</code> is created. <dfn id="the-document-s-current-address">The + <code><a href="infrastructure.html#document">Document</a></code> object. <a href="references.html#refsDOMCORE">[DOMCORE]</a></p><p><dfn id="the-document-s-address">The document's address</dfn> is an <a href="infrastructure.html#absolute-url">absolute URL</a> + that is set when the <code><a href="infrastructure.html#document">Document</a></code> is created. <dfn id="the-document-s-current-address">The document's current address</dfn> is an <a href="infrastructure.html#absolute-url">absolute URL</a> - that can change during the lifetime of the <code>Document</code>, + that can change during the lifetime of the <code><a href="infrastructure.html#document">Document</a></code>, for example when the user <a href="history.html#navigate" title="navigate">navigates</a> to a <a href="history.html#scroll-to-fragid" title="navigate-fragid">fragment identifier</a> on the page or when the <code title="dom-history-pushState"><a href="history.html#dom-history-pushstate">pushState()</a></code> method is called with a new <a href="infrastructure.html#url">URL</a>. <span class="impl"><a href="#the-document-s-current-address">The document's current address</a> must be set to <a href="#the-document-s-address">the document's - address</a> when the <code>Document</code> is created.</span></p><p class="note">Interactive user agents typically expose <a href="#the-document-s-current-address">the - document's current address</a> in their user interface.</p><p>When a <code>Document</code> is created by a <a href="webappapis.html#concept-script" title="concept-script">script</a> using the <code title="dom-DOMImplementation-createDocument">createDocument()</code> + address</a> when the <code><a href="infrastructure.html#document">Document</a></code> is created.</span></p><p class="note">Interactive user agents typically expose <a href="#the-document-s-current-address">the + document's current address</a> in their user interface.</p><p>When a <code><a href="infrastructure.html#document">Document</a></code> is created by a <a href="webappapis.html#concept-script" title="concept-script">script</a> using the <code title="dom-DOMImplementation-createDocument">createDocument()</code> or <code title="dom-DOMHTMLImplementation-createHTMLDocument"><a href="#dom-domhtmlimplementation-createhtmldocument">createHTMLDocument()</a></code> APIs, <a href="#the-document-s-address">the document's address</a> is the same as <a href="#the-document-s-address">the document's address</a> of the <a href="browsers.html#active-document">active document</a> of the - <a href="webappapis.html#script-s-browsing-context">script's browsing context</a>.</p><p><code>Document</code> objects are assumed to be <dfn id="xml-documents">XML + <a href="webappapis.html#script-s-browsing-context">script's browsing context</a>.</p><p><code><a href="infrastructure.html#document">Document</a></code> objects are assumed to be <dfn id="xml-documents">XML documents</dfn> unless they are flagged as being <dfn id="html-documents">HTML documents</dfn> when they are created. Whether a document is an <a href="#html-documents" title="HTML documents">HTML document</a> or an <a href="#xml-documents" title="XML documents">XML document</a> affects the behavior of - certain APIs and the case-sensitivity of some selectors.</p><h4 id="documents-in-the-dom"><span class="secno">3.1.1 </span>Documents in the DOM</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>All <code>Document</code> objects (in user agents implementing + certain APIs and the case-sensitivity of some selectors.</p><h4 id="documents-in-the-dom"><span class="secno">3.1.1 </span>Documents in the DOM</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>All <code><a href="infrastructure.html#document">Document</a></code> objects (in user agents implementing this specification) <span class="impl">must</span> also implement the <code><a href="#htmldocument">HTMLDocument</a></code> interface, available using binding-specific methods. (This is the case whether or not the document in question is an <a href="#html-documents" title="HTML documents">HTML document</a> or indeed whether it contains any <a href="infrastructure.html#html-elements">HTML - elements</a> at all.) <code>Document</code> objects <span class="impl">must</span> also implement the document-level interface + elements</a> at all.) <code><a href="infrastructure.html#document">Document</a></code> objects <span class="impl">must</span> also implement the document-level interface of any other namespaces that the UA supports.</p><p class="example">For example, if an HTML implementation also - supports SVG, then the <code>Document</code> object implements both + supports SVG, then the <code><a href="infrastructure.html#document">Document</a></code> object implements both <code><a href="#htmldocument">HTMLDocument</a></code> and <code>SVGDocument</code>.</p><p class="note">Because the <code><a href="#htmldocument">HTMLDocument</a></code> interface is now obtained using binding-specific casting methods instead of simply being the primary interface of the document object, it is no - longer defined as inheriting from <code>Document</code>.</p><pre class="idl">[OverrideBuiltins] + longer defined as inheriting from <code><a href="infrastructure.html#document">Document</a></code>.</p><pre class="idl">[OverrideBuiltins] interface <dfn id="htmldocument">HTMLDocument</dfn> { // <a href="#resource-metadata-management">resource metadata management</a> [PutForwards=href] readonly attribute <a href="history.html#location">Location</a> <a href="history.html#dom-document-location" title="dom-document-location">location</a>; @@ -364,7 +364,7 @@ // <a href="editing.html#editing">user interaction</a> <a href="editing.html#selection-0">Selection</a> <a href="editing.html#dom-document-getselection" title="dom-document-getSelection">getSelection</a>(); - readonly attribute <span>Element</span> <a href="editing.html#dom-document-activeelement" title="dom-document-activeElement">activeElement</a>; + readonly attribute <a href="infrastructure.html#element">Element</a> <a href="editing.html#dom-document-activeelement" title="dom-document-activeElement">activeElement</a>; boolean <a href="editing.html#dom-document-hasfocus" title="dom-document-hasFocus">hasFocus</a>(); attribute DOMString <a href="editing.html#designMode" title="dom-document-designMode">designMode</a>; boolean <a href="editing.html#execCommand" title="dom-document-execCommand">execCommand</a>(in DOMString commandId); @@ -433,13 +433,13 @@ attribute <a href="webappapis.html#function">Function</a> <a href="webappapis.html#handler-onvolumechange" title="handler-onvolumechange">onvolumechange</a>; attribute <a href="webappapis.html#function">Function</a> <a href="webappapis.html#handler-onwaiting" title="handler-onwaiting">onwaiting</a>; }; -<span>Document</span> implements <a href="#htmldocument">HTMLDocument</a>;</pre><p>Since the <code><a href="#htmldocument">HTMLDocument</a></code> interface holds methods and +<a href="infrastructure.html#document">Document</a> implements <a href="#htmldocument">HTMLDocument</a>;</pre><p>Since the <code><a href="#htmldocument">HTMLDocument</a></code> interface holds methods and attributes related to a number of disparate features, the members of this interface are described in various different sections.</p><h4 id="security"><span class="secno">3.1.2 </span>Security</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>User agents <span class="impl">must</span> raise a <code><a href="infrastructure.html#security_err">SECURITY_ERR</a></code> exception whenever any of the members of an <code><a href="#htmldocument">HTMLDocument</a></code> object are accessed by scripts whose <a href="browsers.html#effective-script-origin">effective script origin</a> is not the <a href="browsers.html#same-origin" title="same - origin">same</a> as the <code>Document</code>'s <a href="browsers.html#effective-script-origin">effective + origin">same</a> as the <code><a href="infrastructure.html#document">Document</a></code>'s <a href="browsers.html#effective-script-origin">effective script origin</a>.</p><h4 id="resource-metadata-management"><span class="secno">3.1.3 </span><dfn>Resource metadata management</dfn></h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class="domintro"><dt><var title="">document</var> . <code title="dom-document-URL"><a href="#dom-document-url">URL</a></code></dt> <dd> <p>Returns <a href="#the-document-s-address">the document's address</a>.</p> @@ -448,7 +448,7 @@ <dt><var title="">document</var> . <code title="dom-document-referrer"><a href="#dom-document-referrer">referrer</a></code></dt> <dd> <p>Returns <a href="#the-document-s-current-address" title="the document's current address">the - address</a> of the <code>Document</code> from which the user + address</a> of the <code><a href="infrastructure.html#document">Document</a></code> from which the user navigated to this one, unless it was blocked or there was no such document, in which case it returns the empty string.</p> <p>The <code title="rel-noreferrer"><a href="interactive-elements.html#link-type-noreferrer">noreferrer</a></code> link @@ -479,11 +479,11 @@ page).</p><hr><dl class="domintro"><dt><var title="">document</var> . <code title="dom-document-cookie"><a href="#dom-document-cookie">cookie</a></code> [ = <var title="">value</var> ]</dt> <dd> <p>Returns the HTTP cookies that apply to the - <code>Document</code>. If there are no cookies or cookies can't be + <code><a href="infrastructure.html#document">Document</a></code>. If there are no cookies or cookies can't be applied to this resource, the empty string will be returned.</p> <p>Can be set, to add a new cookie to the element's set of HTTP cookies.</p> - <p>If the <code>Document</code> has no <a href="browsers.html#browsing-context">browsing + <p>If the <code><a href="infrastructure.html#document">Document</a></code> has no <a href="browsers.html#browsing-context">browsing context</a> an <code><a href="infrastructure.html#invalid_state_err">INVALID_STATE_ERR</a></code> exception will be thrown. If the contents are <a href="text-level-semantics.html#sandboxed-origin-browsing-context-flag" title="sandboxed origin browsing context flag">sandboxed into a unique origin</a>, a @@ -499,8 +499,8 @@ with a <a href="browsers.html#browsing-context">browsing context</a> then the user agent must raise an <code><a href="infrastructure.html#invalid_state_err">INVALID_STATE_ERR</a></code> exception. Otherwise, if the <a href="text-level-semantics.html#sandboxed-origin-browsing-context-flag">sandboxed origin browsing context flag</a> was set on the - <a href="browsers.html#browsing-context">browsing context</a> of the <code>Document</code> when the - <code>Document</code> was created, the user agent must raise a + <a href="browsers.html#browsing-context">browsing context</a> of the <code><a href="infrastructure.html#document">Document</a></code> when the + <code><a href="infrastructure.html#document">Document</a></code> was created, the user agent must raise a <code><a href="infrastructure.html#security_err">SECURITY_ERR</a></code> exception. Otherwise, if <a href="#the-document-s-address">the document's address</a> does not use a server-based naming authority, it must return the empty string. Otherwise, it must first @@ -512,8 +512,8 @@ <a href="browsers.html#browsing-context">browsing context</a> then the user agent must raise an <code><a href="infrastructure.html#invalid_state_err">INVALID_STATE_ERR</a></code> exception. Otherwise, if the <a href="text-level-semantics.html#sandboxed-origin-browsing-context-flag">sandboxed origin browsing context flag</a> was set on the - <a href="browsers.html#browsing-context">browsing context</a> of the <code>Document</code> when the - <code>Document</code> was created, the user agent must raise a + <a href="browsers.html#browsing-context">browsing context</a> of the <code><a href="infrastructure.html#document">Document</a></code> when the + <code><a href="infrastructure.html#document">Document</a></code> was created, the user agent must raise a <code><a href="infrastructure.html#security_err">SECURITY_ERR</a></code> exception. Otherwise, if <a href="#the-document-s-address">the document's address</a> does not use a server-based naming authority, it must do nothing. Otherwise, the user agent must @@ -540,7 +540,7 @@ <p>The <dfn id="dom-document-lastmodified" title="dom-document-lastModified"><code>lastModified</code></dfn> attribute, on getting, must return the date and time of the - <code>Document</code>'s source file's last modification, in the + <code><a href="infrastructure.html#document">Document</a></code>'s source file's last modification, in the user's local time zone, in the following format:</p> <ol><li> The month component of the date. </li> @@ -573,7 +573,7 @@ DIGIT NINE (9) representing the number in base ten, zero-padded if necessary.</p> - <p>The <code>Document</code>'s source file's last modification date + <p>The <code><a href="infrastructure.html#document">Document</a></code>'s source file's last modification date and time must be derived from relevant features of the networking protocols used, e.g. from the value of the HTTP <code title="http-last-modified">Last-Modified</code> header of the document, or from metadata in the file system for local files. If @@ -590,7 +590,7 @@ </dl><div class="impl"> - <p>A <code>Document</code> is always set to one of three modes: + <p>A <code><a href="infrastructure.html#document">Document</a></code> is always set to one of three modes: <dfn id="no-quirks-mode">no quirks mode</dfn>, the default; <dfn id="quirks-mode">quirks mode</dfn>, used typically for legacy documents; and <dfn id="limited-quirks-mode">limited quirks mode</dfn>, also known as "almost standards" mode. The mode is only ever changed @@ -626,7 +626,7 @@ </dl><div class="impl"> <p>Documents have an associated <dfn id="document-s-character-encoding" title="document's character - encoding">character encoding</dfn>. When a <code>Document</code> + encoding">character encoding</dfn>. When a <code><a href="infrastructure.html#document">Document</a></code> object is created, the <a href="#document-s-character-encoding">document's character encoding</a> must be initialized to UTF-16. Various algorithms during page loading affect this value, as does the <code title="dom-document-charset"><a href="#dom-document-charset">charset</a></code> setter. <a href="references.html#refsIANACHARSET">[IANACHARSET]</a></p> @@ -651,23 +651,23 @@ <hr></div><dl class="domintro"><dt><var title="">document</var> . <code title="dom-document-readyState"><a href="#dom-document-readystate">readyState</a></code></dt> <dd> - <p>Returns "loading" while the <code>Document</code> is loading, and "complete" once it has loaded.</p> - <p>The <code title="event-readystatechange">readystatechange</code> event fires on the <code>Document</code> object when this value changes.</p> + <p>Returns "loading" while the <code><a href="infrastructure.html#document">Document</a></code> is loading, and "complete" once it has loaded.</p> + <p>The <code title="event-readystatechange">readystatechange</code> event fires on the <code><a href="infrastructure.html#document">Document</a></code> object when this value changes.</p> </dd> </dl><div class="impl"> <p>Each document has a <dfn id="current-document-readiness">current document readiness</dfn>. When a - <code>Document</code> object is created, it must have its + <code><a href="infrastructure.html#document">Document</a></code> object is created, it must have its <a href="#current-document-readiness">current document readiness</a> set to the string "loading" if the document is associated with an <a href="syntax.html#html-parser">HTML parser</a> or an <a href="the-xhtml-syntax.html#xml-parser">XML parser</a>, or to the string "complete" otherwise. Various algorithms during page loading affect this value. When the value is set, the user agent must <a href="webappapis.html#fire-a-simple-event">fire a simple event</a> named <code title="event-readystatechange">readystatechange</code> at the - <code>Document</code> object.</p> + <code><a href="infrastructure.html#document">Document</a></code> object.</p> - <p>A <code>Document</code> is said to have an <dfn id="active-parser">active + <p>A <code><a href="infrastructure.html#document">Document</a></code> is said to have an <dfn id="active-parser">active parser</dfn> if it is associated with an <a href="syntax.html#html-parser">HTML parser</a> or an <a href="the-xhtml-syntax.html#xml-parser">XML parser</a> that has not yet been <a href="syntax.html#stop-parsing" title="stop parsing">stopped</a> or aborted.</p> @@ -774,7 +774,7 @@ there is no such element, it is null. <span class="impl">If the body element is null, then when the specification requires that events be fired at "the body element", they must instead be fired at the - <code>Document</code> object.</span></p><div class="impl"> + <code><a href="infrastructure.html#document">Document</a></code> object.</span></p><div class="impl"> <p>The <dfn id="dom-document-body" title="dom-document-body"><code>body</code></dfn> attribute, on getting, must return <a href="#the-body-element">the body element</a> of @@ -809,28 +809,28 @@ </ol></div><hr><dl class="domintro"><dt><var title="">document</var> . <code title="dom-document-images"><a href="#dom-document-images">images</a></code></dt> <dd> - <p>Returns an <code><a href="infrastructure.html#htmlcollection">HTMLCollection</a></code> of the <code><a href="text-level-semantics.html#the-img-element">img</a></code> elements in the <code>Document</code>.</p> + <p>Returns an <code><a href="infrastructure.html#htmlcollection">HTMLCollection</a></code> of the <code><a href="text-level-semantics.html#the-img-element">img</a></code> elements in the <code><a href="infrastructure.html#document">Document</a></code>.</p> </dd> <dt><var title="">document</var> . <code title="dom-document-embeds"><a href="#dom-document-embeds">embeds</a></code></dt> <dt><var title="">document</var> . <code title="dom-document-plugins"><a href="#dom-document-plugins">plugins</a></code></dt> <dd> - <p>Return an <code><a href="infrastructure.html#htmlcollection">HTMLCollection</a></code> of the <code><a href="text-level-semantics.html#the-embed-element">embed</a></code> elements in the <code>Document</code>.</p> + <p>Return an <code><a href="infrastructure.html#htmlcollection">HTMLCollection</a></code> of the <code><a href="text-level-semantics.html#the-embed-element">embed</a></code> elements in the <code><a href="infrastructure.html#document">Document</a></code>.</p> </dd> <dt><var title="">document</var> . <code title="dom-document-links"><a href="#dom-document-links">links</a></code></dt> <dd> - <p>Returns an <code><a href="infrastructure.html#htmlcollection">HTMLCollection</a></code> of the <code><a href="text-level-semantics.html#the-a-element">a</a></code> and <code><a href="the-canvas-element.html#the-area-element">area</a></code> elements in the <code>Document</code> that have <code title="attr-hyperlink-href"><a href="interactive-elements.html#attr-hyperlink-href">href</a></code> attributes.</p> + <p>Returns an <code><a href="infrastructure.html#htmlcollection">HTMLCollection</a></code> of the <code><a href="text-level-semantics.html#the-a-element">a</a></code> and <code><a href="the-canvas-element.html#the-area-element">area</a></code> elements in the <code><a href="infrastructure.html#document">Document</a></code> that have <code title="attr-hyperlink-href"><a href="interactive-elements.html#attr-hyperlink-href">href</a></code> attributes.</p> </dd> <dt><var title="">document</var> . <code title="dom-document-forms"><a href="#dom-document-forms">forms</a></code></dt> <dd> - <p>Return an <code><a href="infrastructure.html#htmlcollection">HTMLCollection</a></code> of the <code><a href="forms.html#the-form-element">form</a></code> elements in the <code>Document</code>.</p> + <p>Return an <code><a href="infrastructure.html#htmlcollection">HTMLCollection</a></code> of the <code><a href="forms.html#the-form-element">form</a></code> elements in the <code><a href="infrastructure.html#document">Document</a></code>.</p> </dd> <dt><var title="">document</var> . <code title="dom-document-scripts"><a href="#dom-document-scripts">scripts</a></code></dt> <dd> - <p>Return an <code><a href="infrastructure.html#htmlcollection">HTMLCollection</a></code> of the <code><a href="semantics.html#script">script</a></code> elements in the <code>Document</code>.</p> + <p>Return an <code><a href="infrastructure.html#htmlcollection">HTMLCollection</a></code> of the <code><a href="semantics.html#script">script</a></code> elements in the <code><a href="infrastructure.html#document">Document</a></code>.</p> </dd> </dl><div class="impl"> @@ -840,12 +840,12 @@ <p>The <dfn id="dom-document-images" title="dom-document-images"><code>images</code></dfn> attribute must return an <code><a href="infrastructure.html#htmlcollection">HTMLCollection</a></code> rooted at the - <code>Document</code> node, whose filter matches only + <code><a href="infrastructure.html#document">Document</a></code> node, whose filter matches only <code><a href="text-level-semantics.html#the-img-element">img</a></code> elements.</p> <p>The <dfn id="dom-document-embeds" title="dom-document-embeds"><code>embeds</code></dfn> attribute must return an <code><a href="infrastructure.html#htmlcollection">HTMLCollection</a></code> rooted at the - <code>Document</code> node, whose filter matches only + <code><a href="infrastructure.html#document">Document</a></code> node, whose filter matches only <code><a href="text-level-semantics.html#the-embed-element">embed</a></code> elements.</p> <p>The <dfn id="dom-document-plugins" title="dom-document-plugins"><code>plugins</code></dfn> @@ -853,73 +853,73 @@ <p>The <dfn id="dom-document-links" title="dom-document-links"><code>links</code></dfn> attribute must return an <code><a href="infrastructure.html#htmlcollection">HTMLCollection</a></code> rooted at the - <code>Document</code> node, whose filter matches only <code><a href="text-level-semantics.html#the-a-element">a</a></code> + <code><a href="infrastructure.html#document">Document</a></code> node, whose filter matches only <code><a href="text-level-semantics.html#the-a-element">a</a></code> elements with <code title="attr-hyperlink-href"><a href="interactive-elements.html#attr-hyperlink-href">href</a></code> attributes and <code><a href="the-canvas-element.html#the-area-element">area</a></code> elements with <code title="attr-hyperlink-href"><a href="interactive-elements.html#attr-hyperlink-href">href</a></code> attributes.</p> <p>The <dfn id="dom-document-forms" title="dom-document-forms"><code>forms</code></dfn> attribute must return an <code><a href="infrastructure.html#htmlcollection">HTMLCollection</a></code> rooted at the - <code>Document</code> node, whose filter matches only + <code><a href="infrastructure.html#document">Document</a></code> node, whose filter matches only <code><a href="forms.html#the-form-element">form</a></code> elements.</p> <p>The <dfn id="dom-document-scripts" title="dom-document-scripts"><code>scripts</code></dfn> attribute must return an <code><a href="infrastructure.html#htmlcollection">HTMLCollection</a></code> rooted at the - <code>Document</code> node, whose filter matches only + <code><a href="infrastructure.html#document">Document</a></code> node, whose filter matches only <code><a href="semantics.html#script">script</a></code> elements.</p> <hr></div><dl class="domintro"><dt><var title="">collection</var> = <var title="">document</var> . <code title="dom-document-getElementsByName"><a href="#dom-document-getelementsbyname">getElementsByName</a></code>(<var title="">name</var>)</dt> <dd> - <p>Returns a <code>NodeList</code> of elements in the - <code>Document</code> that have a <code title="">name</code> + <p>Returns a <code><a href="infrastructure.html#nodelist">NodeList</a></code> of elements in the + <code><a href="infrastructure.html#document">Document</a></code> that have a <code title="">name</code> attribute with the value <var title="">name</var>.</p> </dd> <dt><var title="">collection</var> = <var title="">document</var> . <code title="dom-document-getElementsByClassName"><a href="#dom-document-getelementsbyclassname">getElementsByClassName(<var title="">classes</var>)</a></code></dt> <dt><var title="">collection</var> = <var title="">element</var> . <code title="dom-getElementsByClassName"><a href="#dom-getelementsbyclassname">getElementsByClassName(<var title="">classes</var>)</a></code></dt> <dd> - <p>Returns a <code>NodeList</code> of the elements in the object - on which the method was invoked (a <code>Document</code> or an - <code>Element</code>) that have all the classes given by <var title="">classes</var>.</p> + <p>Returns a <code><a href="infrastructure.html#nodelist">NodeList</a></code> of the elements in the object + on which the method was invoked (a <code><a href="infrastructure.html#document">Document</a></code> or an + <code><a href="infrastructure.html#element">Element</a></code>) that have all the classes given by <var title="">classes</var>.</p> <p>The <var title="">classes</var> argument is interpreted as a space-separated list of classes.</p> </dd> </dl><div class="impl"> - <p>The <dfn id="dom-document-getelementsbyname" title="dom-document-getElementsByName"><code>getElementsByName(<var title="">name</var>)</code></dfn> method takes a string <var title="">name</var>, and must return a live <code>NodeList</code> + <p>The <dfn id="dom-document-getelementsbyname" title="dom-document-getElementsByName"><code>getElementsByName(<var title="">name</var>)</code></dfn> method takes a string <var title="">name</var>, and must return a live <code><a href="infrastructure.html#nodelist">NodeList</a></code> containing all the <a href="infrastructure.html#html-elements">HTML elements</a> in that document that have a <code title="">name</code> attribute whose value is equal to the <var title="">name</var> argument (in a <a href="infrastructure.html#case-sensitive">case-sensitive</a> manner), in <a href="infrastructure.html#tree-order">tree order</a>. A - new <code>NodeList</code> object must be returned each time unless + new <code><a href="infrastructure.html#nodelist">NodeList</a></code> object must be returned each time unless the argument is the same as the last time the method was invoked on - this <code>Document</code> object, in which case the object must be + this <code><a href="infrastructure.html#document">Document</a></code> object, in which case the object must be the same as the object returned by the previous call.</p> <p>The <dfn id="dom-document-getelementsbyclassname" title="dom-document-getElementsByClassName"><code>getElementsByClassName(<var title="">classNames</var>)</code></dfn> method takes a string that contains a <a href="infrastructure.html#set-of-space-separated-tokens">set of space-separated tokens</a> representing classes. When called, the method must return a live - <code>NodeList</code> object containing all the elements in the + <code><a href="infrastructure.html#nodelist">NodeList</a></code> object containing all the elements in the document, in <a href="infrastructure.html#tree-order">tree order</a>, that have all the classes specified in that argument, having obtained the classes by <a href="infrastructure.html#split-a-string-on-spaces" title="split a string on spaces">splitting a string on spaces</a>. (Duplicates are ignored.) If there are no tokens specified in the argument, then the method must return an empty - <code>NodeList</code>. If the document is in <a href="#quirks-mode">quirks + <code><a href="infrastructure.html#nodelist">NodeList</a></code>. If the document is in <a href="#quirks-mode">quirks mode</a>, then the comparisons for the classes must be done in an <a href="infrastructure.html#ascii-case-insensitive">ASCII case-insensitive</a> manner, otherwise, the comparisons must be done in a <a href="infrastructure.html#case-sensitive">case-sensitive</a> manner. A - new <code>NodeList</code> object must be returned each time unless + new <code><a href="infrastructure.html#nodelist">NodeList</a></code> object must be returned each time unless the argument is the same as the last time the method was invoked on - this <code>Document</code> object, in which case the object must be + this <code><a href="infrastructure.html#document">Document</a></code> object, in which case the object must be the same as the object returned by the previous call.</p> <p>The <dfn id="dom-getelementsbyclassname" title="dom-getElementsByClassName"><code>getElementsByClassName(<var title="">classNames</var>)</code></dfn> method on the <code><a href="#htmlelement">HTMLElement</a></code> interface must return a live - <code>NodeList</code> with the nodes that the + <code><a href="infrastructure.html#nodelist">NodeList</a></code> with the nodes that the <code><a href="#htmldocument">HTMLDocument</a></code> <code title="dom-document-getElementsByClassName"><a href="#dom-document-getelementsbyclassname">getElementsByClassName()</a></code> method would return when passed the same argument(s), excluding any elements that are not descendants of the <code><a href="#htmlelement">HTMLElement</a></code> - object on which the method was invoked. A new <code>NodeList</code> + object on which the method was invoked. A new <code><a href="infrastructure.html#nodelist">NodeList</a></code> object must be returned each time unless the argument is the same as the last time the method was invoked on this <code><a href="#htmlelement">HTMLElement</a></code> object, in which case the object must be @@ -941,7 +941,7 @@ <p>A call to <code>document.getElementById('example').getElementsByClassName('aaa')</code> - would return a <code>NodeList</code> with the two paragraphs + would return a <code><a href="infrastructure.html#nodelist">NodeList</a></code> with the two paragraphs <code>p1</code> and <code>p2</code> in it.</p> <p>A call to <code>getElementsByClassName('ccc bbb')</code> @@ -967,13 +967,13 @@ attributes of all the <code><a href="obsolete.html#the-applet-element">applet</a></code>, <code><a href="text-level-semantics.html#the-embed-element">embed</a></code>, <code><a href="forms.html#the-form-element">form</a></code>, <code><a href="text-level-semantics.html#the-iframe-element">iframe</a></code>, <code><a href="text-level-semantics.html#the-img-element">img</a></code>, and <a href="#fallback-free">fallback-free</a> <code><a href="text-level-semantics.html#the-object-element">object</a></code> elements in the - <code>Document</code> that have <code title="attr-name">name</code> + <code><a href="infrastructure.html#document">Document</a></code> that have <code title="attr-name">name</code> content attributes, and the values of the <code title="attr-id"><a href="#the-id-attribute">id</a></code> content attributes of all the <code><a href="obsolete.html#the-applet-element">applet</a></code> and <a href="#fallback-free">fallback-free</a> - <code><a href="text-level-semantics.html#the-object-element">object</a></code> elements in the <code>Document</code> that have + <code><a href="text-level-semantics.html#the-object-element">object</a></code> elements in the <code><a href="infrastructure.html#document">Document</a></code> that have <code title="attr-id"><a href="#the-id-attribute">id</a></code> content attributes, and the values of the <code title="attr-id"><a href="#the-id-attribute">id</a></code> content attributes of all the - <code><a href="text-level-semantics.html#the-img-element">img</a></code> elements in the <code>Document</code> that have + <code><a href="text-level-semantics.html#the-img-element">img</a></code> elements in the <code><a href="infrastructure.html#document">Document</a></code> that have both <code title="attr-name">name</code> content attributes and <code title="attr-id"><a href="#the-id-attribute">id</a></code> content attributes.</p> @@ -985,7 +985,7 @@ <ol><li> <p>Let <var title="">elements</var> be the list of <a href="#dom-document-nameditem-filter" title="dom-document-namedItem-filter">named elements</a> with - the name <var title="">name</var> in the <code>Document</code>. + the name <var title="">name</var> in the <code><a href="infrastructure.html#document">Document</a></code>. </p><p class="note">There will be at least one such element, by definition.<!-- (If there wasn't, then this algorithm wouldn't @@ -1013,7 +1013,7 @@ <li> <p>Otherwise return an <code><a href="infrastructure.html#htmlcollection">HTMLCollection</a></code> rooted at the - <code>Document</code> node, whose filter matches only <a href="#dom-document-nameditem-filter" title="dom-document-namedItem-filter">named elements</a> with + <code><a href="infrastructure.html#document">Document</a></code> node, whose filter matches only <a href="#dom-document-nameditem-filter" title="dom-document-namedItem-filter">named elements</a> with the name <var title="">name</var>.</p> <!-- the same one each time is returned, because of the rule under collections --> @@ -1052,11 +1052,11 @@ method on the <code>DOMImplementation</code> interface.</p><p><a href="#html-documents">HTML documents</a> can be created using the <code title="dom-DOMHTMLImplementation-createHTMLDocument"><a href="#dom-domhtmlimplementation-createhtmldocument">createHTMLDocument()</a></code> method:</p><pre class="idl">[Supplemental, NoInterfaceObject] interface <dfn id="domhtmlimplementation">DOMHTMLImplementation</dfn> { - <span>Document</span> <a href="#dom-domhtmlimplementation-createhtmldocument" title="dom-DOMHTMLImplementation-createHTMLDocument">createHTMLDocument</a>(in DOMString title); + <a href="infrastructure.html#document">Document</a> <a href="#dom-domhtmlimplementation-createhtmldocument" title="dom-DOMHTMLImplementation-createHTMLDocument">createHTMLDocument</a>(in DOMString title); }; <span>DOMImplementation</span> implements <a href="#domhtmlimplementation">DOMHTMLImplementation</a>;</pre><p>The <dfn id="dom-domhtmlimplementation-createhtmldocument" title="dom-DOMHTMLImplementation-createHTMLDocument"><code>createHTMLDocument(<var title="">title</var>)</code></dfn> method, when invoked, must run the following steps:</p><ol><li><p>Let <var title="">doc</var> be a newly created - <code>Document</code> object.</p></li> + <code><a href="infrastructure.html#document">Document</a></code> object.</p></li> <li><p>Mark <var title="">doc</var> as being an <a href="#html-documents" title="HTML documents">HTML document</a>.</p></li> @@ -1181,7 +1181,7 @@ represents an ordered list.</p><p>The basic interface, from which all the <a href="infrastructure.html#html-elements">HTML elements</a>' interfaces inherit, <span class="impl">and which must be used by elements that have no additional - requirements,</span> is the <code><a href="#htmlelement">HTMLElement</a></code> interface.</p><pre class="idl">interface <dfn id="htmlelement">HTMLElement</dfn> : <span>Element</span> { + requirements,</span> is the <code><a href="#htmlelement">HTMLElement</a></code> interface.</p><pre class="idl">interface <dfn id="htmlelement">HTMLElement</dfn> : <a href="infrastructure.html#element">Element</a> { // <a href="#dom-tree-accessors">DOM tree accessors</a> NodeList <a href="#dom-getelementsbyclassname" title="dom-getElementsByClassName">getElementsByClassName</a>(in DOMString classNames); Index: references.html =================================================================== RCS file: /sources/public/html5/spec/references.html,v retrieving revision 1.809 retrieving revision 1.810 diff -u -d -r1.809 -r1.810 --- references.html 16 Feb 2010 08:26:31 -0000 1.809 +++ references.html 16 Feb 2010 08:36:25 -0000 1.810 @@ -290,7 +290,7 @@ <a href="index.html">← Index</a> – <a href="spec.html#contents">Table of contents</a> – <a href="acknowledgements.html">Acknowledgements →</a> - </nav><p>This is revision 1.3795.</p> + </nav><p>This is revision 1.3796.</p> <h2 class="no-num" id="references">References</h2><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed</i></p><!--REFS--><p>All references are normative unless marked "Non-normative".</p><!-- Dates are only included for standards older than the Web, Index: acknowledgements.html =================================================================== RCS file: /sources/public/html5/spec/acknowledgements.html,v retrieving revision 1.809 retrieving revision 1.810 diff -u -d -r1.809 -r1.810 --- acknowledgements.html 16 Feb 2010 08:26:29 -0000 1.809 +++ acknowledgements.html 16 Feb 2010 08:36:22 -0000 1.810 @@ -288,7 +288,7 @@ </div><nav> <a href="references.html">← References</a> – <a href="spec.html#contents">Table of contents</a> - </nav><p>This is revision 1.3795.</p> + </nav><p>This is revision 1.3796.</p> <h2 class="no-num" id="acknowledgements">Acknowledgements</h2><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><!-- ACKS --><p>Thanks to Index: iana.html =================================================================== RCS file: /sources/public/html5/spec/iana.html,v retrieving revision 1.140 retrieving revision 1.141 diff -u -d -r1.140 -r1.141 --- iana.html 16 Feb 2010 08:26:30 -0000 1.140 +++ iana.html 16 Feb 2010 08:36:24 -0000 1.141 @@ -290,7 +290,7 @@ <a href="obsolete.html">← 11 Obsolete features</a> – <a href="spec.html#contents">Table of contents</a> – <a href="index.html">Index →</a> - </nav><p>This is revision 1.3795.</p> + </nav><p>This is revision 1.3796.</p> <h2 id="iana"><span class="secno">12 </span>IANA considerations</h2><!-- http://www.w3.org/2002/06/registering-mediatype.html --><h3 id="text-html"><span class="secno">12.1 </span><dfn><code>text/html</code></dfn></h3><p>This registration is for community review and will be submitted @@ -429,7 +429,7 @@ 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 + by assigning the <code><a href="infrastructure.html#document">Document</a></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 Index: fragment-links.js =================================================================== RCS file: /sources/public/html5/spec/fragment-links.js,v retrieving revision 1.172 retrieving revision 1.173 diff -u -d -r1.172 -r1.173 --- fragment-links.js 14 Feb 2010 10:26:32 -0000 1.172 +++ fragment-links.js 16 Feb 2010 08:36:23 -0000 1.173 @@ -1,4 +1,4 @@ -var fragment_links = { 'concept-appcache-pending-masters':'offline','attr-meter-high':'forms','refsRFC1554':'references','dom-cva-willvalidate':'forms','when-the-drag-and-drop-operation-starts-or-ends-in-another-document':'editing','attr-label-for':'forms','htmlcommandelement':'interactive-elements','the-history-interface':'history','refsXHR':'references','attr-fs-method-delete-keyword':'forms','concept-appcache-cache':'offline','dom-source-media':'video','htmlfieldsetelement':'forms','handler-window-onblur':'webappapis','dom-meter-optimum':'forms','the-root-element':'semantics','scriptTag':'syntax','command-facet-type':'interactive-elements','dom-opener':'browsers','concept-http-equivalent':'infrastructure','obtain-a-physical-form':'the-xhtml-syntax','dom-area-rel':'the-canvas-element','concept-slots':'tabular-data','dom-command-icon':'interactive-elements','valid-non-negative-integer':'infrastructure','attr-fs-enctype-urlencoded':'forms','about:blank':'infrastructure','concept-appcache-matches-fallback':offline','concept-marquee-on':'obsolete','the-end':'syntax','the-after-head-insertion-mode':'syntax','dom-tdth-axis':'obsolete','activation':'editing','header-and-data-cell-semantics':'tabular-data','create-a-script':'webappapis','the-br-element':'semantics','case-sensitivity-and-string-comparison':'infrastructure','definitions-2':'editing','namespaces':'infrastructure','dom-undomanager-add':'editing','command-redo':'editing','attr-meter-value':'forms','dom-style-disabled':'semantics','attr-media-src':'video','special':'syntax','concept-facet':'interactive-elements','changesToNetworkingModel':'offline','hierarchy_request_err':'infrastructure','dom-tr-sectionrowindex':'tabular-data','attr-script-async':'semantics','a-graphical-representation-of-some-of-the-surrounding-text':'text-level-semantics','math':'the-canvas-element','fire-loadedmetadata':'video','attr-br-clear':'obsolete','script-nesting-level':'syntax','attr-iframe-longdesc':'obsolete','attr-input-usemap':'obsolete','dom-tr-deletecell':'tabular-data,'alternate-style-sheets':'semantics','dom-table-deletetfoot':'tabular-data','dom-table-thead':'tabular-data','attr-meta-http-equiv-content-language':'semantics','the-maxlength-attribute':'forms','concept-uda-input':'infrastructure','resetting-a-form':'forms','dom-a-text':'text-level-semantics','guidance-for-markup-generators':'text-level-semantics','dom-input-alt':'forms','the-cite-element':'text-level-semantics','attr-button-type':'forms','attr-input-type-button-keyword':'forms','dom-select-type':'forms','formatting':'syntax','handler-onformchange':'webappapis','attr-hr-align':'obsolete','valid-mime-type-with-no-parameters':'infrastructure','non-conforming-features':'obsolete','attr-textarea-wrap-soft':'forms','parse-error':'syntax','dom-datatransfer-files':'editing','dom-select-options':'forms','concept-fe-disabled':'forms','dom-object-border':'obsolete','dom-feature-strings':'infrastructure','quirks-mode':'dom','character-encodings-0':'syntax','root-element':'infrastructure','dom-table-bgcolor':'obsolet','attr-link-href':'semantics','spelling-and-grammar-checking':'editing','concept-encoding-confidence':'syntax','htmltitleelement':'semantics','appcache':'offline','concept-spellcheck-default-inherit':'editing','scroll-to-the-fragment-identifier':'history','encrypted-http-and-related-security-concerns':'infrastructure','original-insertion-mode':'syntax','link-type-external':'interactive-elements','script-data-state':'syntax','character-references':'syntax','dom-frame-name':'obsolete','dom-tbody-valign':'obsolete','split-a-string-on-commas':'infrastructure','dom-selection-collapse':'editing','command-bold':'editing','command-delete':'editing','dom-applet-code':'obsolete','attr-object-align':'obsolete','u':'obsolete','dom-textarea-rows':'forms','dom-tbody-rows':'tabular-data','html-mime-type':'infrastructure','dom-video-videoheight':'video','pre-click-activation-steps':'embedded-content-0','dom-form-reset':'forms','link-type-index':'interactive-elements','dom-frame-scrolling':'obsolete','dom-img-width':'text-evel-semantics','fire-a-simple-event':'webappapis','browsing-the-web':'history','assigned-access-key':'editing','attr-fae-form':'forms','refsDOMRANGE':'references','dom-area-alt':'the-canvas-element','rules-for-parsing-integers':'infrastructure','html-fragment-serialization-algorithm':'syntax','the-after-after-body-insertion-mode':'syntax','queue-a-post-load-task':'offline','dom-media-volume':'video','custom-handlers':'webappapis','contenteditable-wrapSemantic':'editing','dom-timeranges-end':'video','dom-htmlcollection-item':'infrastructure','dom-iframe-src':'text-level-semantics','dom-barprop-visible':'browsers','dom-media-paused':'video','the-menu-bar-barprop-object':'browsers','attr-tr-bgcolor':'obsolete','the-img-element':'text-level-semantics','mq':'infrastructure','exceptions':'infrastructure','the-document-s-domain':'browsers','dom-accesskey':'editing','scripting':'webappapis','valid-browsing-context-name-or-keyword':'browsers','after-attribute-name-state':'syntax','attr-meta-http-equiv-refresh':'semntics','concept-navigate-mature':'history','the-dfn-element':'text-level-semantics','text-plain-encoding-algorithm':'forms','dom-input-min':'forms','system-state-and-capabilities':'webappapis','comment-end-bang-state':'syntax','dom-image':'text-level-semantics','attr-hr-noshade':'obsolete','attr-form-autocomplete-off-state':'forms','rawtext-less-than-sign-state':'syntax','syntax-attributes':'syntax','rawtext-state':'syntax','command-facet-checkedstate':'interactive-elements','refsRFC3279':'references','hashchangeevent':'history','attr-p-align':'obsolete','dom-marquee-scrolldelay':'obsolete','dom-selection-removeallranges':'editing','concept-datetime-digit':'infrastructure','edits-and-paragraphs':'text-level-semantics','handler-onclick':'webappapis','typographic-conventions':'introduction','attr-tdth-abbr':'obsolete','syntax-comments':'syntax','split-a-string-on-spaces':'infrastructure','unknown-images':'text-level-semantics','dom-body-vlink':'obsolete','attr-pre-width':'obsolete','the-details-element':'inteactive-elements','dom-htmloptionscollection-remove':'infrastructure','execCommand':'editing','plaintext-state':'syntax','dom-hx-align':'obsolete','dom-marquee-truespeed':'obsolete','dom-media-autobuffer':'video','timers':'webappapis','meta-description':'semantics','event-handler-attributes':'webappapis','valid-simple-color':'infrastructure','quota_exceeded_err':'infrastructure','the-div-element':'semantics','parsing-cache-manifests':'offline','origin':'browsers','poster-frame':'video','handler-onload':'webappapis','the-session-history-of-browsing-contexts':'history','refsDOMVIEWS':'references','dom-selection-collapsetostart':'editing','media-element-event-task-source':'video','element-level-focus-apis':'editing','dom-body-bgcolor':'obsolete','dom-selection-anchoroffset':'editing','htmlmenuelement':'interactive-elements','hasfeature':'infrastructure','attributes-0':'index','style-sheet-ready':'semantics','scripting-0':'infrastructure','attr-input-alt':'forms','handler-onmouseout':'webappapis','concept-input-in':'forms','attr-marquee-direction-down':'obsolete','writing':'syntax','list-of-active-intervals':'webappapis','refsABOUT':'references','edits':'text-level-semantics','relaxing-the-same-origin-restriction':'browsers','history-0':'history','history-1':'introduction','attr-marquee-behavior-scroll':'obsolete','weeks':'infrastructure','dom-input-required':'forms','valid-date-string-in-content-with-optional-time':'infrastructure','resulting-autocompletion-state':'forms','dom-validitystate-valid':'forms','attr-textarea-cols':'forms','dom-input-multiple':'forms','blink':'obsolete','attr-fieldset-disabled':'forms','dom-media-seek':'video','htmldetailselement':'interactive-elements','event-media-progress':'video','url-hostport':'infrastructure','dom-basefont-size':'obsolete','concept-input-min-zero':'forms','handler-window-onmessage':'webappapis','url-host-specific':'infrastructure','attr-base-href':'semantics','dom-media-muted':'video','command-insertorderedlist':'editing','command-unlink':'editing','fire-a-click-vent':'webappapis','dom-document-defaultcharset':'dom','the-blockquote-element':'semantics','attr-object-type':'text-level-semantics','dom-media-have_enough_data':'video','attr-input-type-email-keyword':'forms','attr-textarea-readonly':'forms','refsCHARMOD':'references','the-input-element-as-a-text-entry-widget':'the-xhtml-syntax','serialize_err':'infrastructure','dom-htmlallcollection-nameditem':'infrastructure','matching-html-elements-using-selectors':'interactive-elements','attr-input-type-color-keyword':'forms','concept-form-submit':'forms','attr-ol-type':'obsolete','dom-media-load':'video','nearest-activatable-element':'embedded-content-0','htmlhrelement':'semantics','get-the-timeout':'webappapis','sandboxLinks':'history','toolbars':'interactive-elements','rb':'obsolete','standard-metadata-names':'semantics','handler-appcache-onerror':'offline','attr-meta-http-equiv-default-style':'semantics','generic-task-sources':'webappapis','htmltextareaelement':'forms','concept-input-step':'forms','default-media':semantics','dom-li-type':'obsolete','refsIANAPERMHEADERS':'references','dom-area-search':'the-canvas-element','refsRFC3548':'references','html-elements':'infrastructure','refsWEBLINK':'references','refsRFC2388':'references','refsPPUTF8':'references','set-the-document-s-address':'history','object-plugin':'text-level-semantics','valid-e-mail-address-list':'forms','r1':'tabular-data','limited-quirks-mode':'dom','has-a-border':'the-xhtml-syntax','xpath-1.0-processors':'embedded-content-0','parse-a-time-component':'infrastructure','refsRFC3490':'references','sequential-focus-navigation':'editing','suffering-from-being-too-long':'forms','dom-name':'browsers','handler-marquee-onfinish':'obsolete','attr-fs-method-delete':'forms','command-forwarddelete':'editing','concept-spellcheck-default-true':'editing','refsRFC1557':'references','rank':'semantics','network-states':'video','the-input-element':'forms','valid-global-date-and-time-string':'infrastructure','the-initial-insertion-mode':'syntax','limited-to-only-non-neative-numbers-greater-than-zero':'infrastructure','navigator':'webappapis','dom-document-bgcolor':'obsolete','link-type-help':'interactive-elements','dom-area-hash':'the-canvas-element','set-of-comma-separated-tokens':'infrastructure','parsing-main-afterframeset':'syntax','security-2':'browsers','dom-img-height':'text-level-semantics','link-type-author':'interactive-elements','handler-ondurationchange':'webappapis','attr-media-controls':'video','htmlmetaelement':'semantics','dom-undomanager-item':'editing','attr-script-charset':'semantics','htmlcollection-0':'infrastructure','dom-meta-scheme':'obsolete','dom-location-hash':'history','dom-media-have_nothing':'video','dom-img-vspace':'obsolete','attr-fe-autofocus':'forms','dom-document-plugins':'dom','textarea-effective-height':'the-xhtml-syntax','html-fragment-parsing-algorithm':'syntax','handler-window-onpageshow':'webappapis','dom-marquee-scrollamount':'obsolete','concept-table-advance':'tabular-data','in-a-document':'infrastructure','best-representation-o-the-global-date-and-time-string':'infrastructure','table-example-1':'tabular-data','parse-a-manifest':'offline','dynamic-markup-insertion':'embedded-content-0','dynamic-nested-browsing-context-properties':'browsers','classes':'dom','the-multiple-attribute':'forms','dom-mediaerror-code':'video','the-list-of-active-formatting-elements':'syntax','form-element-pointer':'syntax','dom-textarea-maxlength':'forms','error-codes':'video','dom-input-valueasdate':'forms','navigate':'history','syntax-ambiguous-ampersand':'syntax','dom-iframe-srcdoc':'text-level-semantics','submit-delete-action':'forms','top-level-browsing-context':'browsers','simple-color':'infrastructure','attr-button-value':'forms','parse-a-url':'infrastructure','navigatorabilities':'webappapis','dom-tdth-width':'obsolete','attr-table-cellspacing':'obsolete','link-type-nofollow':'interactive-elements','event-drag':'editing','dom-tbody-choff':'obsolete','handler-onfocus':'webappapis','read-image':'history','refsRFC1345':'references','inuse_attribute_er':'infrastructure','attr-object-declare':'obsolete','refsWIN31J':'references','handler-appcache-oncached':'offline','dom-tdth-valign':'obsolete','links-forms-and-navigation':'the-xhtml-syntax','guidance-for-conformance-checkers':'text-level-semantics','the-title-element':'dom','pragma-set-default-language':'semantics','dom-ol-reversed':'semantics','fetching-resources':'infrastructure','attr-dim-height':'the-canvas-element','dom-undomanager-position':'editing','radio-button-state':'forms','algorithm-for-assigning-header-cells':'tabular-data','acknowledgements':'acknowledgements','dom-table-tbodies':'tabular-data','htmlmapelement':'the-canvas-element','concept-time-timezone':'text-level-semantics','dom-document-getselection':'editing','dom':'dom','consumed':'syntax','the-mark-element':'text-level-semantics','dom-undomanager':'editing','same-origin':'browsers','dom-optgroup-label':'forms','about:srcdoc':'infrastructure','concept-fs-target':'forms','dom-undomanager-clearredo':'editing','not_found_err':'infrastucture','dom-htmloptionscollection-length':'infrastructure','concept-datetime-local':'infrastructure','pseudo-classes':'interactive-elements','colors':'infrastructure','outerhtml':'embedded-content-0','handler-onplaying':'webappapis','refsPROGRESS':'references','dom-fieldset-elements':'forms','htmloptionscollection':'infrastructure','radionodelist':'infrastructure','url-path':'infrastructure','domtokenlist':'infrastructure','dom-marquee-behavior':'obsolete','dom-img-usemap':'text-level-semantics','htmlframesetelement':'obsolete','dom-validitystate-typemismatch':'forms','preferred-mime-name':'infrastructure','parse-a-date-or-time-string':'infrastructure','htmlstyleelement':'semantics','attr-th-scope-colgroup':'tabular-data','script-s-base-url':'webappapis','attr-fs-enctype':'forms','attr-textarea-wrap-hard':'forms','dom-title-text':'semantics','mathml-namespace':'infrastructure','dom-selection-addrange':'editing','parsing-main-inselectintable':'syntax','xml-fragment-parsing-algorithm':'the-xhtml-syntax','hanler-onkeydown':'webappapis','event-media-canplay':'video','dom-option-form':'forms','selector-invalid':'interactive-elements','refsFILEAPI':'references','attr-iframe-srcdoc':'text-level-semantics','implementation-notes':'editing','the-col-element':'tabular-data','the-placeholder-attribute':'forms','refsDOMCORE':'references','kinds-of-content':'dom','the-td-element':'tabular-data','accessing-other-browsing-contexts':'browsers','the-input-element-as-a-button':'the-xhtml-syntax','creator-browsing-context':'browsers','no_data_allowed_err':'infrastructure','selector-enabled':'interactive-elements','dom-hr-width':'obsolete','dom-windowtimers-cleartimeout':'webappapis','event-media-waiting':'video','xml-fragment-serialization-algorithm':'the-xhtml-syntax','creating-scripts':'webappapis','marquee-scroll-interval':'obsolete','attr-tdth-headers':'tabular-data','attr-textarea-wrap-soft-state':'forms','active-document':'browsers','article-example':'semantics','using-the-input-element-to-define-a-command':'interactive-eements','hidden-state':'forms','dom-htmloptionscollection-nameditem':'infrastructure','attr-li-value':'semantics','attr-command-type-keyword-checkbox':'interactive-elements','alignment':'the-xhtml-syntax','events':'webappapis','handler-onkeypress':'webappapis','refsORIGIN':'references','attr-button-type-button':'forms','concept-option-value':'forms','attr-head-profile':'obsolete','handler-appcache-onnoupdate':'offline','dom-keygen-keytype':'forms','dom-basefont-color':'obsolete','handler-onloadeddata':'webappapis','the-button-element-0':'the-xhtml-syntax','attr-tdth-charoff':'obsolete','form-associated-element':'forms','dom-spellcheck':'editing','dom-frame-frameborder':'obsolete','table-model-error':'tabular-data','overview-of-the-parsing-model':'syntax','parse-a-week-string':'infrastructure','dom-option-defaultselected':'forms','dom-appcache-update':'offline','media-elements':'video','attr-tr-align':'obsolete','tag-open-state':'syntax','dom-a-media':'text-level-semantics','urls':'infrastructure','the-selec-element-0':'the-xhtml-syntax','mediaerror':'video','concept-section':'semantics','cdata-section-state':'syntax','using-the-a-element-to-define-a-command':'interactive-elements','dom-tbody-insertrow':'tabular-data','attr-meter-optimum':'forms','refsRFC3023':'references','concept-appcache-explicit':'offline','current-table':'syntax','dom-option-tv':'forms','attr-input-value':'forms','radio-button-group':'forms','attr-input-min':'forms','e-mail-state':'forms','dom-style-scoped':'semantics','htmlheadelement':'semantics','refsRFC2237':'references','attr-input-type-url-keyword':'forms','dom-undomanager-clearundo':'editing','unicode-serialization-of-an-origin':'browsers','dom-option-value':'forms','list-of-the-descendant-browsing-contexts':'browsers','handler-window-onredo':'webappapis','dom-map-areas':'the-canvas-element','about:legacy-compat':'infrastructure','category-label':'forms','handler-onpause':'webappapis','dom-history':'history','character-encoding-declaration':'semantics','concept-uda-setter':'infrastucture','attr-keygen-challenge':'forms','non-scripted':'infrastructure','concept-input-step-default':'forms','date-state':'forms','dom-htmloptionscollection-add':'infrastructure','attr-div-align':'obsolete','category-reset':'forms','dom-dir-compact':'obsolete','row-group-header':'tabular-data','dom-frame-marginheight':'obsolete','dom-hr-noshade':'obsolete','traverse-the-history':'history','concept-textarea-mutable':'forms','sbu-not-copy':'webappapis','attr-input-type-text-keyword':'forms','the-source-element':'video','attr-th-scope-col':'tabular-data','browsing-context-name':'browsers','n':'tabular-data','attr-area-shape-circle':'the-canvas-element','element-definitions':'dom','dom-area-port':'the-canvas-element','syntax-tag-omission':'syntax','selector-in-range':'interactive-elements','attr-fs-method-get':'forms','bogus-comment-state':'syntax','list-of-active-timeouts':'webappapis','attr-hyperlink-media':'interactive-elements','concept-appcache-manifest-explicit':'offline','link-type-prev':'interactive-eleents','dom-area-host':'the-canvas-element','dom-input-files':'forms','dynamic-changes-to-base-urls':'infrastructure','attr-fs-formmethod':'forms','xml-mime-type':'infrastructure','the-dragevent-and-datatransfer-interfaces':'editing','absolute-url':'infrastructure','htmlbrelement':'semantics','attr-img-hspace':'obsolete','common-parser-idioms':'infrastructure','concept-fv-valid':'forms','submit-mailto-headers':'forms','handler-onended':'webappapis','interactive-media':'the-xhtml-syntax','using-the-option-element-to-define-a-command':'interactive-elements','dom-iframe-marginheight':'obsolete','a-link-or-button-containing-nothing-but-the-image':'text-level-semantics','dialog-arguments-origin':'webappapis','script-data-escaped-state':'syntax','attr-fe-maxlength':'forms','documents':'dom','the-status-bar-barprop-object':'browsers','htmlkeygenelement':'forms','dom-object-code':'obsolete','the-body-element':'dom','heading-content':'dom','handler-onprogress':'webappapis','syntax-start-tag':'syntax','attr-html-manifst':'semantics','htmliframeelement':'text-level-semantics','dom-a-charset':'obsolete','the-output-element':'forms','attr-input-type-image-keyword':'forms','statically-validate-the-constraints':'forms','white_space':'infrastructure','using-the-accesskey-attribute-to-define-a-command-on-other-elements':'interactive-elements','handler-onchange':'webappapis','dom-script-async':'semantics','dom-table-frame':'obsolete','event-dragover':'editing','attr-tr-charoff':'obsolete','attr-input-type-time-keyword':'forms','attr-ol-compact':'obsolete','htmltimeelement':'text-level-semantics','garbage-collection':'infrastructure','the-address-element':'semantics','dom-radionodelist-value':'infrastructure','dom-uda-hash':'infrastructure','create-an-element-for-the-token':'syntax','attr-iframe-sandbox-allow-forms':'text-level-semantics','validation_err':'infrastructure','the-title-attribute-0':'the-xhtml-syntax','dom-form-dispatchformchange':'forms','collections':'infrastructure','week-state':'forms','unordered-set-of-unique-sace-separated-tokens':'infrastructure','scriptingLanguages':'semantics','foster-parent':'syntax','canceled-activation-steps':'embedded-content-0','concept-script':'webappapis','dom-area-media':'the-canvas-element','dom-textarea-input-setselectionrange':'editing','read-plugin':'history','valid-date-string-with-optional-time':'infrastructure','event-media-loadeddata':'video','background':'introduction','htmlobjectelement':'text-level-semantics','script-data-escaped-end-tag-open-state':'syntax','scrolling-elements-into-view':'editing','case-sensitive':'infrastructure','dom-validitystate-toolong':'forms','running-a-script':'semantics','network_err':'infrastructure','the-marquee-element-0':'the-xhtml-syntax','refsRFC4281':'references','requirements-for-implementations':'obsolete','security':'dom','dom-table-createcaption':'tabular-data','domstringmap-0':'infrastructure','dom-beforeunloadevent-returnvalue':'history','concept-appcache-foreign':'offline','paragraphs':'embedded-content-0','dom-iframe-name':'text-levl-semantics','head-element-pointer':'syntax','category-submit':'forms','attr-embed-type':'text-level-semantics','manually-releasing-the-storage-mutex':'webappapis','insert-an-html-element':'syntax','best-representation-of-the-number-as-a-floating-point-number':'infrastructure','dom-contenteditable':'editing','comments':'syntax','dom-contextmenu':'interactive-elements','fire-loadeddata':'video','attr-command-type-state-checkbox':'interactive-elements','refsATAG':'references','list-of-active-formatting-elements':'syntax','nested-browsing-context':'browsers','attr-area-shape-keyword-rectangle':'the-canvas-element','dom-select-selectedindex':'forms','phrasing-content':'dom','dom-document-head':'dom','the-input-element-as-a-range-control':'the-xhtml-syntax','dnd':'editing','attr-marquee-behavior':'obsolete','attr-meter-min':'forms','tag-clouds':'interactive-elements','attr-col-width':'obsolete','event-media-seeking':'video','dom-command-label':'interactive-elements','dom-windowtimers-clearinterval':'webappapis',attr-command-disabled':'interactive-elements','strike':'obsolete','handler-ondblclick':'webappapis','event-dragenter':'editing','months':'infrastructure','dom-document-lastmodified':'dom','dom-option-disabled':'forms','dom-source-src':'video','attr-script-type':'semantics','common-idioms-without-dedicated-elements':'interactive-elements','refsMIMESNIFF':'references','interactions-with-xpath-and-xslt':'embedded-content-0','htmltableelement':'tabular-data','dom-iframe-align':'obsolete','encoding-sniffing-algorithm':'syntax','attr-tdth-char':'obsolete','shows-caching-progress':'offline','dom-fs-formmethod':'forms','browsing-context-names':'browsers','dom-tr-cells':'tabular-data','reflecting-content-attributes-in-idl-attributes':'infrastructure','parsing':'syntax','rendering':'the-xhtml-syntax','refsATOM':'references','handler-onwaiting':'webappapis','attr-param-type':'obsolete','handler-onseeking':'webappapis','dom-menu-compact':'obsolete','dom-script-htmlfor':'obsolete','dom-input-checked':'forms','read-html''history','attr-button-type-submit':'forms','reset-the-form-owner':'forms','remove-an-element-from-a-document':'infrastructure','the-readonly-attribute':'forms','dom-history-length':'history','htmlscriptelement':'semantics','negative-tabindex':'editing','unquoted':'syntax','isindex-0':'obsolete','refsRFC1468':'references','attr-area-nohref':'obsolete','suffering-from-an-underflow':'forms','index_size_err':'infrastructure','serializing-html-fragments':'syntax','attr-fs-formenctype':'forms','attr-fs-action':'forms','concept-video-intrinsic-height':'video','dom-document-querycommandenabled':'editing','cdata-sections':'syntax','dom-col-ch':'obsolete','event-media-play':'video','strip-line-breaks':'infrastructure','command-facet-hiddenstate':'interactive-elements','markup-declaration-open-state':'syntax','dom-fs-novalidate':'forms','end-tag-open-state':'syntax','handling-first-frame-available':'video','refsJSURL':'references','rawtext-end-tag-name-state':'syntax','broadcast-formchange-events':'forms','concept-inut-value-dirty':'forms','introduction-2':'webappapis','dom-marquee-direction':'obsolete','concept-bc-noscript':'webappapis','frameset':'obsolete','concept-spellcheck-default-false':'editing','refsWEBSTORAGE':'references','adjust-mathml-attributes':'syntax','method-context':'webappapis','concept-input-value-number-string':'forms','tree-construction':'syntax','command-insertunorderedlist':'editing','application-x-www-form-urlencoded-encoding-algorithm':'forms','parsing-xhtml-fragments':'the-xhtml-syntax','the-directionality':'dom','attr-select-size':'forms','dom-document-getelementsbyname':'dom','the-bdo-element':'text-level-semantics','dom-mediaerror-media_err_aborted':'video','dom-input-usemap':'obsolete','current-document-readiness':'dom','event-handler-event-type':'webappapis','the-input-element-as-domain-specific-widgets':'the-xhtml-syntax','the-location-interface':'history','script-data-double-escaped-dash-state':'syntax','attr-q-cite':'text-level-semantics','dom-link-media':'semantics','willful-violatin':'introduction','script-created-parser':'embedded-content-0','meta-generator':'semantics','handler-onstalled':'webappapis','attr-spellcheck':'editing','local-date-and-time-state':'forms','entry-script':'browsers','syntax-tags':'syntax','dom-mediaerror-media_err_decode':'video','dom-applet-hspace':'obsolete','attr-a-charset':'obsolete','handler-appcache-onupdateready':'offline','dom-document-forms':'dom','dom-br-clear':'obsolete','attr-link-charset':'obsolete','concept-datetime':'infrastructure','html-namespace':'infrastructure','event-dispatch':'forms','a-group-of-images-that-form-a-single-larger-picture-with-links':'text-level-semantics','dom-scrollintoview':'editing','navigating-nested-browsing-contexts-in-the-dom':'browsers','dom-progress-position':'forms','dom-time-pubdate':'text-level-semantics','dom-cva-validationmessage':'forms','attr-meta-content':'semantics','command-italic':'editing','handler-window-onafterprint':'webappapis','dom-applet-height':'obsolete','hardwareLimitations':'infrastructure',converting-html-to-other-formats':'interactive-elements','attr-caption-align':'obsolete','attr-textarea-placeholder':'forms','concept-appcache-onlinewhitelist':'offline','dom-tdth-abbr':'obsolete','event-input-change':'forms','sequential-link-types':'interactive-elements','refsRFC1034':'references','attr-time-pubdate':'text-level-semantics','submit-data-put':'forms','dom-dim-width':'the-canvas-element','local-dates-and-times':'infrastructure','editors':'infrastructure','dom-table-insertrow':'tabular-data','xml-parser':'the-xhtml-syntax','concept-n-noscript':'webappapis','dom-selection-deletefromdocument':'editing','htmlselectelement':'forms','valid-media-query':'infrastructure','reset-the-insertion-mode-appropriately':'syntax','event-handlers-on-elements-document-objects-and-window-objects':'webappapis','doctype-public-identifier-double-quoted-state':'syntax','float-nan':'infrastructure','dom-table-createtbody':'tabular-data','normalized-timeranges-object':'video','the-textarea-element-0':'the-xhtml-syntax''nestedParsing':'syntax','dom-tr-align':'obsolete','concept-http-equivalent-get':'infrastructure','script-data-escape-start-state':'syntax','xml-namespace':'infrastructure','command-undo':'editing','event-undo':'editing','dom-dataset':'dom','dir':'obsolete','timeranges':'video','conformance-checkers':'infrastructure','attr-hyperlink-href':'interactive-elements','input-type-attr-summary':'forms','list-of-code-entry-points':'webappapis','remove-a-token-from-a-string':'infrastructure','number-state':'forms','event-media-playing':'video','dom-document-hasfocus':'editing','dom-button-value':'forms','a-form-control-s-value':'forms','secondary-browsing-contexts':'browsers','clear-the-stack-back-to-a-table-context':'syntax','concept-column-group':'tabular-data','attr-iframe-sandbox-allow-same-origin':'text-level-semantics','dom-media-have_current_data':'video','text-html-sandboxed':'iana','global-dates-and-times':'infrastructure','home-subtree':'infrastructure','the-pre-element':'semantics','concept-submit-button':forms','command-unselect':'editing','dom-fs-enctype':'forms','dimRendering':'the-xhtml-syntax','xml':'infrastructure','explicit-eof-character':'syntax','dom-window-nameditem':'browsers','durationChange':'video','concept-button':'forms','refsWEBADDRESSES':'references','attr-param-value':'text-level-semantics','parse-a-time-zone-offset-component':'infrastructure','refsECMA262':'references','command-selectall':'editing','the-rt-element':'text-level-semantics','resource-metadata-management':'dom','link-type-license':'interactive-elements','autoplaying-flag':'video','the-rules-for-choosing-a-browsing-context-given-a-browsing-context-name':'browsers','ltr-specific':'the-xhtml-syntax','attr-command-type-keyword-radio':'interactive-elements','handler-oninvalid':'webappapis','margins-and-padding':'the-xhtml-syntax','attr-dfn-title':'text-level-semantics','syntax-tag-name':'syntax','html-parser':'syntax','changing-the-encoding-while-parsing':'syntax','set-of-space-separated-tokens':'infrastructure','browser-interfaceelements':'browsers','iana':'iana','the-id-attribute':'dom','style-default-media':'semantics','dom-tbody-align':'obsolete','dom-input-type':'forms','an-entry-with-persisted-user-state':'history','dom-li-value':'semantics','htmlparagraphelement':'semantics','dom-uda-hostname':'infrastructure','dom-tdth-ch':'obsolete','htmldirectoryelement':'obsolete','concept-time-time':'text-level-semantics','charset512':'semantics','refsRFC2483':'references','refsRFC4329':'references','security_err':'infrastructure','dom-fieldset-type':'forms','the-form-submission-target-browsing-context':'forms','image-maps-0':'the-xhtml-syntax','attr-mod-datetime':'text-level-semantics','the-noscript-element':'semantics','attr-input-type-range-keyword':'forms','dom-prompt':'webappapis','live':'infrastructure','parse-a-time-string':'infrastructure','scope':'introduction','after-doctype-system-keyword-state':'syntax','scriptTagParserResumes':'syntax','dom-table-cellpadding':'obsolete','dom-print':'webappapis','obtain-the-storage-mutex':'weappapis','dom-applet-object':'obsolete','closing-elements-that-have-implied-end-tags':'syntax','attr-input-readonly':'forms','attr-area-shape-keyword-circle':'the-canvas-element','character-reference-in-attribute-value-state':'syntax','report-the-error':'webappapis','parsing-main-incaption':'syntax','before-doctype-name-state':'syntax','attr-tabindex':'editing','dom-area-target':'the-canvas-element','dom-a-rel':'text-level-semantics','dom-object-type':'text-level-semantics','printing':'webappapis','attr-link-media':'semantics','attributes-common-to-form-controls':'forms','handler-onselect':'webappapis','htmlformcontrolscollection-0':'infrastructure','handler-ontimeupdate':'webappapis','xml-compatible':'infrastructure','dom-window-locationbar':'browsers','htmlbuttonelement':'forms','attr-fs-novalidate':'forms','media-playback':'video','attr-input-type-reset-keyword':'forms','attr-optgroup-label':'forms','pending-state-object':'history','dom-img-alt':'text-level-semantics','support-the-scripting-language':'seantics','dom-command-checked':'interactive-elements','the-param-element':'text-level-semantics','charset':'semantics','ping':'interactive-elements','auxiliary-browsing-context':'browsers','table-model':'tabular-data','xhtml':'the-xhtml-syntax','attr-marquee-direction-left':'obsolete','history-traversal':'history','the-option-element':'forms','internal-algorithm-for-scanning-and-assigning-header-cells':'tabular-data','sandboxScriptBlocked':'webappapis','creator-document':'browsers','garbage-collection-and-browsing-contexts':'browsers','attr-script-src':'semantics','htmlareaelement':'the-canvas-element','dom-marquee-stop':'obsolete','attr-hr-color':'obsolete','dom-document-linkcolor':'obsolete','parser-appcache':'syntax','url-query':'infrastructure','attr-hyperlink-type':'interactive-elements','form-submission-algorithm':'forms','appcacheevents':'offline','scripts-that-modify-the-page-as-it-is-being-parsed':'syntax','sandboxPluginObject':'text-level-semantics','outline':'semantics','attr-select-multiple':'fors','get-the-timed-task':'webappapis','htmlmarqueeelement':'obsolete','attr-iframe-sandbox':'text-level-semantics','dom-location-pathname':'history','the-span-element':'text-level-semantics','comment-start-dash-state':'syntax','definitions':'forms','dom-click':'editing','void-elements':'syntax','dom-quote-cite':'semantics','effective-script-origin':'browsers','dom-basefont-face':'obsolete','dom-tdth-rowspan':'tabular-data','the-keygen-element':'forms','parse-a-local-date-and-time-string':'infrastructure','refsRFC2313':'references','a-quick-introduction-to-html':'introduction','rcdata-state':'syntax','acknowledge-self-closing-flag':'syntax','htmlquoteelement':'semantics','attr-input-autocomplete':'forms','command-facet-id':'interactive-elements','user-prompts':'webappapis','dom-video-poster':'video','dom-a-rellist':'text-level-semantics','forms':'forms','closing-the-input-stream':'embedded-content-0','window':'browsers','listing':'obsolete','attr-th-scope':'tabular-data','dom-object-codetype':'obsolete','refsFC1842':'references','attr-object-data':'text-level-semantics','dom-hashchangeevent-newurl':'history','conversations':'interactive-elements','sandboxed-scripts-browsing-context-flag':'text-level-semantics','container-frame-element':'the-xhtml-syntax','print-media':'the-xhtml-syntax','attr-tdth-height':'obsolete','attr-body-alink':'obsolete','attr-table-align':'obsolete','refsWCAG':'references','concept-http-equivalent-codes':'infrastructure','category-listed':'forms','refsEUCKR':'references','attr-hyperlink-usemap':'the-canvas-element','signedpublickeyandchallenge':'forms','dom-font-color':'obsolete','embedded-content-2':'the-xhtml-syntax','embedded-content-1':'text-level-semantics','embedded-content-0':'embedded-content-0','task-source':'webappapis','dom-ol-compact':'obsolete','other-metadata-names':'semantics','the-required-attribute':'forms','selector-read-only':'interactive-elements','authors-using-xhtml':'iana','ready-to-be-parser-executed':'semantics','clear-the-list-of-active-formatting-elements-up-t-the-last-marker':'syntax','dom-window-personalbar':'browsers','manifests':'offline','attr-marquee-direction-right':'obsolete','attr-command-radiogroup':'interactive-elements','canvas':'the-canvas-element','command-formatblock':'editing','a-browsing-context-is-discarded':'browsers','dom-applet-vspace':'obsolete','attr-dl-compact':'obsolete','dom-navigator-appversion':'webappapis','htmlhtmlelement':'semantics','handler-onvolumechange':'webappapis','htmlunknownelement':'dom','contenteditable-breakBlock':'editing','concept-appcache-fallback-ns':'offline','target-element':'history','sectioning-root':'semantics','the-size-attribute':'forms','create-a-script-from-a-node':'webappapis','dependencies':'infrastructure','event-online':'offline','unloading-document-cleanup-steps':'history','htmllinkelement':'semantics','heading-content-0':'dom','concept-error-nothandled':'webappapis','language':'dom','text-html':'iana','dom-progress-max':'forms','mutation-during-parsing':'syntax','valid-list-of-integers':'infrastructur','concept-form-reset':'forms','attr-hr-width':'obsolete','the-style-attribute':'dom','image-maps':'the-canvas-element','dom-meter-max':'forms','cache-host':'offline','dom-table-border':'obsolete','the-document-s-current-address':'dom','dom-document-writeln':'embedded-content-0','handler-marquee-onbounce':'obsolete','update-the-session-history-with-the-new-page':'history','dom-fae-form':'forms','dom-script-defer':'semantics','dom-document-cookie':'dom','building-menus-and-toolbars':'interactive-elements','before-attribute-name-state':'syntax','scroll-to-fragid':'history','elements-0':'syntax','elements-1':'index','concept-option-index':'forms','script-execution-environment':'webappapis','limited-to-only-non-negative-numbers':'infrastructure','dom-img-longdesc':'obsolete','dom-tdth-height':'obsolete','dom-a-href':'text-level-semantics','dom-window-statusbar':'browsers','dom-select-length':'forms','doctype-legacy-string':'syntax','event-handler-idl-attributes':'webappapis','limited-to-only-known-values':'infrstructure','the-q-element':'text-level-semantics','event-media-emptied':'video','dom-option-tvds':'forms','dom-command-ro-disabled':'interactive-elements','syntax-charref':'syntax','concept-media-load-algorithm':'video','attr-command-type':'interactive-elements','frame-border-color':'the-xhtml-syntax','dom-document-close':'embedded-content-0','parsing-main-inforeign':'syntax','attr-input-type-radio-keyword':'forms','the-figure-element':'semantics','semantics':'semantics','dom-object-declare':'obsolete','attr-tbody-valign':'obsolete','dom-tdth-bgcolor':'obsolete','refsUTF7':'references','dom-tokenlist-item':'infrastructure','document.title':'dom','the-scrollbar-barprop-object':'browsers','dom-input-pattern':'forms','syntax-cdata':'syntax','dom-object-hspace':'obsolete','handler-onemptied':'webappapis','dom-input-value-default-on':'forms','htmltablecaptionelement':'tabular-data','common-input-element-attributes':'forms','synchronous-section':'webappapis','dom-option-index':'forms','dates-and-times':'infrastruture','refsRFC5280':'references','using-the-accesskey-attribute-on-a-label-element-to-define-a-command':'interactive-elements','optional-tags':'syntax','attr-link-sizes':'interactive-elements','refsGRAPHICS':'references','the-document-s-address':'dom','introduction-5':'the-xhtml-syntax','dom-table-deleterow':'tabular-data','list-of-scripts-that-will-execute-as-soon-as-possible':'semantics','handler-appcache-onobsolete':'offline','dom-document-domain':'browsers','dom-form-name':'forms','editing':'editing','isindex':'syntax','dom-img-name':'obsolete','attr-th-scope-row':'tabular-data','dom-textarea-input-select':'editing','concept-video-intrinsic-width':'video','the-input-element-as-a-file-upload-control':'the-xhtml-syntax','type_mismatch_err':'infrastructure','refsOPENSEARCH':'references','attr-form-autocomplete':'forms','converted-to-ascii-uppercase':'infrastructure','dom-area-coords':'the-canvas-element','dom-tokenlist-add':'infrastructure','the-script-block-s-character-encoding':'semantics','punctuation-ad-decorations':'the-xhtml-syntax','dom-param-value':'text-level-semantics','preprocessing-the-input-stream':'syntax','script-data-escaped-dash-state':'syntax','dom-hashchangeevent-inithashchangeevent':'history','attr-fe-disabled':'forms','dom-area-hostname':'the-canvas-element','general-guidelines':'text-level-semantics','dom-media-ended':'video','dom-fs-formtarget':'forms','the-article-element':'semantics','algorithm-for-ending-a-row-group':'tabular-data','bgsound':'obsolete','apis-in-html-documents':'embedded-content-0','concept-option-selectedness':'forms','atom':'interactive-elements','attr-input-checked':'forms','misinterpreted-for-compatibility':'syntax','spacer':'obsolete','has-an-element-in-the-specific-scope':'syntax','the-aside-element':'semantics','dom-command-type':'interactive-elements','dom-fs-target':'forms','dom-domsettabletokenlist-value':'infrastructure','dom-mediaerror-media_err_src_not_supported':'video','attr-contenteditable':'editing','htmlheadingelement':'semantics','htmldocument':'do','dom-area-hreflang':'the-canvas-element','syntax_err':'infrastructure','dom-appcache-status':'offline','link-type-last':'interactive-elements','refsWHATWGWIKI':'references','custom-validity-error-message':'forms','dom-length':'browsers','the-min-and-max-attributes':'forms','next-input-character':'syntax','the-progress-element-0':'the-xhtml-syntax','attr-area-shape-default':'the-canvas-element','xmp':'obsolete','dom-classname':'dom','media-element-attributes':'video','attr-output-for':'forms','htmllegendelement':'forms','parsing-main-intr':'syntax','algorithm-for-processing-rows':'tabular-data','dom-tdth-colspan':'tabular-data','refsRFC3987':'references','htmlspanelement':'text-level-semantics','dom-table-createtfoot':'tabular-data','concept-spellcheck-default':'editing','doctype-system-identifier-double-quoted-state':'syntax','sce-not-copy':'webappapis','parsing-main-intd':'syntax','attr-iframe-sandbox-allow-scripts':'text-level-semantics','the-header-element':'semantics','dom-meta-content':'semantics','cncept-input-min-default':'forms','dom-object-data':'text-level-semantics','dom-validitystate-rangeunderflow':'forms','command-insertlinebreak':'editing','replaced-elements':'the-xhtml-syntax','svg-namespace':'infrastructure','attr-map-name':'the-canvas-element','misnested-tags:-b-i-b-i':'syntax','concept-time':'infrastructure','dom-mod-datetime':'text-level-semantics','document.writeln':'embedded-content-0','command-subscript':'editing','attr-source-src':'video','the-var-element':'text-level-semantics','toolbars-0':'the-xhtml-syntax','dom-datalist-options':'forms','attr-script-language':'obsolete','dom-label-htmlfor':'forms','the-undomanagerevent-interface-and-the-undo-and-redo-events':'editing','row-header':'tabular-data','rules-for-parsing-non-negative-integers':'infrastructure','dom-iframe-longdesc':'obsolete','rules-for-parsing-a-list-of-dimensions':'infrastructure','the-summary-element':'interactive-elements','refsGREGORIAN':'references','ended-playback':'video','attr-option-selected':'forms','infrastrcture':'infrastructure','foster-parent-element':'syntax','form-submission':'forms','parsing-main-afterbody':'syntax','attr-hyperlink-target':'interactive-elements','svg-0':'the-canvas-element','scripting-1':'semantics','dom-selection-getrangeat':'editing','selector-valid':'interactive-elements','handler-window-onundo':'webappapis','dom-appcache-updateready':'offline','security-0':'forms','parse-a-global-date-and-time-string':'infrastructure','dom-applet-width':'obsolete','delaying-the-load-event-flag':'video','dom-area-href':'the-canvas-element','refsUAAG':'references','replacement-enabled':'history','joint-session-history':'history','concept-appcache-selection':'offline','dates':'infrastructure','dom-marquee-loop':'obsolete','refsWEBSQL':'references','s':'obsolete','attr-menu-compact':'obsolete','insert-an-element-into-a-document':'infrastructure','authoring':'the-canvas-element','dom-output-type':'forms','url-scheme':'infrastructure','parse_err':'infrastructure','dom-embed-type':'text-level-semantics','bolean-attribute':'infrastructure','content-type-sniffing:-image':'infrastructure','dom-ul-compact':'obsolete','dom-command-ro-icon':'interactive-elements','attr-iframe-name':'text-level-semantics','dom-iframe-contentwindow':'text-level-semantics','annotations-for-assistive-technology-products-aria':'embedded-content-0','tabular-data':'tabular-data','real-numbers':'infrastructure','dom-changes':'editing','rcdata-less-than-sign-state':'syntax','dom-fe-autofocus':'forms','making-entire-documents-editable':'editing','documentSelection':'editing','dom-confirm':'webappapis','htmlbaseelement':'semantics','dom-input-accept':'forms','dom-caption-align':'obsolete','attr-media-loop':'video','handler-onforminput':'webappapis','dom-alert':'webappapis','dom-fe-name':'forms','the-area-element':'the-canvas-element','doctype-state':'syntax','dom-navigator-canplaytype':'video','link-type-bookmark':'interactive-elements','concept-input-required':'forms','attr-keygen-keytype':'forms','prefix-match':'infrastructure','refsTIS620''references','image-button-state':'forms','source-node':'editing','time-ranges':'video','handler-window-onerror':'webappapis','attr-area-shape-keyword-default':'the-canvas-element','dom-document-nameditem':'dom','common-dom-interfaces':'infrastructure','concept-media-load-resource':'video','serializing-xhtml-fragments':'the-xhtml-syntax','dom-canvas-width':'the-canvas-element','dom-map-name':'the-canvas-element','concept-input-value-string-number':'forms','insertion-point':'syntax','dom-document-open':'embedded-content-0','the-application-cache-selection-algorithm':'offline','htmlbodyelement':'semantics','concept-input-value-string-date':'forms','boolean-attributes':'infrastructure','refsARIAIMPL':'references','domstring_size_err':'infrastructure','refsCORS':'references','dom-undomanager-length':'editing','resetBCName':'history','the-dt-element':'semantics','dom-validitystate-customerror':'forms','table-descriptions':'tabular-data','dom-iframe-marginwidth':'obsolete','dom-table-createthead':'tabular-data','om-selection-tostring':'editing','the-map-element':'the-canvas-element','dom-canvas-getcontext':'the-canvas-element','the-progress-element':'forms','refsBOCU1':'references','the-window-object':'browsers','editing-apis':'editing','attributes':'syntax','refsISO885911':'references','dom-validitystate-rangeoverflow':'forms','dom-link-hreflang':'semantics','dom-select-value':'forms','data-mining':'infrastructure','dom-fs-formenctype':'forms','the-object-element':'text-level-semantics','dom-table-deletethead':'tabular-data','dom-form-autocomplete':'forms','run-post-click-activation-steps':'embedded-content-0','dom-document-readystate':'dom','opener-browsing-context':'browsers','the-rp-element':'text-level-semantics','handler-window-onhashchange':'webappapis','refsRFC2045':'references','dom-th-scope':'tabular-data','refsBIDI':'references','attr-command-checked':'interactive-elements','refsSRGB':'references','concept-input-immutable':'forms','the-li-element':'semantics','dom-a-coords':'obsolete','design-notes':'intoduction','attr-iframe-frameborder':'obsolete','a-sample-manifest':'offline','attr-hyperlink-hreflang':'interactive-elements','current-target-element':'editing','parsing-main-inselect':'syntax','attr-link-title':'semantics','the-marquee-element':'obsolete','dom-a-shape':'obsolete','compliance-with-other-specifications':'introduction','past-names-map':'forms','handler-marquee-onstart':'obsolete','attr-button-type-submit-state':'forms','the-thead-element':'tabular-data','event-hashchange':'history','dom-location-href':'history','dom-area-ping':'the-canvas-element','publickeyandchallenge':'forms','create-a-document-object':'history','represents':'the-xhtml-syntax','the-p-element':'semantics','dom-window-blur':'editing','refsRFC3986':'references','the-del-element':'text-level-semantics','the-location-bar-barprop-object':'browsers','event-media-loadstart':'video','following-hyperlinks':'interactive-elements','noembed':'obsolete','htmltablecolelement':'tabular-data','dom-form-submit':'forms','wbr':'obsolete','gropings-of-browsing-contexts':'browsers','browsing-context':'browsers','dom-top':'browsers','concept-output-defaultvalue':'forms','dom-form-length':'forms','event-loop':'webappapis','dom-document-nameditem-filter':'dom','attr-table-width':'obsolete','audience':'introduction','networking-task-source':'webappapis','dom-a-pathname':'text-level-semantics','dom-history-pushstate':'history','color-state':'forms','dom-applet-alt':'obsolete','the-dl-element':'semantics','attributes-common-to-td-and-th-elements':'tabular-data','rel-sidebar-hyperlink':'interactive-elements','interfaces-for-url-manipulation':'infrastructure','x-that':'introduction','dom-hr-align':'obsolete','lists-of-integers':'infrastructure','dom-select-multiple':'forms','refsGBK':'references','attr-base-target':'semantics','return-value':'webappapis','images':'the-xhtml-syntax','dom-media-played':'video','attributes-common-to-ins-and-del-elements':'text-level-semantics','selector-out-of-range':'interactive-elements','dom-location':'history','dom-inpu-indeterminate':'forms','marquee-loop-count':'obsolete','attr-table-summary':'tabular-data','dom-textarea-cols':'forms','date-and-time-state':'forms','focusable':'editing','override-url':'history','refsUTF8DET':'references','concept-appcache-manifest-network':'offline','domtokenlist-0':'infrastructure','dom-htmlcollection-nameditem':'infrastructure','ordered-set-of-unique-space-separated-tokens':'infrastructure','attr-fs-method-post':'forms','references':'references','dom-media-network_empty':'video','dom-document-all':'obsolete','attr-object-code':'obsolete','concept-appcache-obsolete':'offline','the-meter-element-0':'the-xhtml-syntax','the-script-settings-determined-from-the-node':'webappapis','dom-dragevent-initdragevent':'editing','concept-row':'tabular-data','dom-history-replacestate':'history','doctype-public-identifier-single-quoted-state':'syntax','non-interactive':'infrastructure','title-on-style':'semantics','concept-fe-value':'forms','browsing-context-nested-through':'browsers','dom-trees':'infratructure','stack-of-open-elements':'syntax','timer-task-source':'webappapis','refsRFC2119':'references','content-type':'infrastructure','the-command':'interactive-elements','attr-body-text':'obsolete','webappapis':'webappapis','dom-input-stepup':'forms','the-keygen-element-0':'the-xhtml-syntax','dom-img-naturalwidth':'text-level-semantics','dom-table-caption':'tabular-data','using-the-button-element-to-define-a-command':'interactive-elements','refsWEBIDL':'references','invalid_access_err':'infrastructure','attr-optgroup-disabled':'forms','event-media-suspend':'video','attr-command-type-state-command':'interactive-elements','event-media-stalled':'video','htmltablesectionelement':'tabular-data','handler-ondrag':'webappapis','the-title-attribute':'dom','attr-source-type':'video','clear-the-stack-back-to-a-table-body-context':'syntax','styling':'semantics','attr-input-autocomplete-on-state':'forms','concept-bc-script':'webappapis','handler-window-onbeforeunload':'webappapis','inline-documentation-for-external-sripts':'semantics','handler-oninput':'webappapis','the-code-element':'text-level-semantics','concept-select-pick':'forms','toolbar-state':'interactive-elements','increment-the-marquee-current-loop-index':'obsolete','htmlimageelement':'text-level-semantics','dom-video-videowidth':'video','the-personal-bar-barprop-object':'browsers','command-inserttext':'editing','refused-to-allow-the-document-to-be-unloaded':'history','rcdata-end-tag-open-state':'syntax','attr-img-align':'obsolete','attr-fs-formnovalidate':'forms','syntax-text':'syntax','using-the-rules-for':'syntax','the-legend-element':'forms','attr-command-title':'interactive-elements','domstringmap':'infrastructure','mathml':'the-canvas-element','dom-validitystate-patternmismatch':'forms','dom-base-href':'semantics','dom-showmodaldialog':'webappapis','current-input-character':'syntax','dom-appcache-swapcache':'offline','svg':'the-canvas-element','external-resource-link':'semantics','popstateevent':'history','attr-iframe-scrolling':'obsolete','link-type-nreferrer':'interactive-elements','forming-a-table':'tabular-data','checkbox-state':'forms','dom-col-width':'obsolete','the-fieldset-element-0':'the-xhtml-syntax','attr-fs-method-put':'forms','rules-for-parsing-simple-color-values':'infrastructure','presentational-hints':'the-xhtml-syntax','dom-meter-value':'forms','the-time-element':'text-level-semantics','script-data-double-escape-end-state':'syntax','dom-form-nameditem':'forms','script-data-escaped-less-than-sign-state':'syntax','dom-blur':'editing','client-identification':'webappapis','concept-id':'dom','dom-object-usemap':'text-level-semantics','obsolete-but-conforming-features':'obsolete','link-type-alternate':'interactive-elements','refsXMLBASE':'references','dialog-arguments':'webappapis','concept-command':'interactive-elements','doctype-system-identifier-single-quoted-state':'syntax','an-image-not-intended-for-the-user':'text-level-semantics','fire-waiting-when-waiting':'video','attr-a-rev':'obsolete','refsHTMLDIFF':'references','dom-table-rows':'taular-data','attr-fs-method-post-keyword':'forms','command-facet-action':'interactive-elements','dom-draggable':'editing','script-data-double-escape-start-state':'syntax','dom-outerhtml':'embedded-content-0','htmlolistelement':'semantics','redo:-moving-forward-in-the-undo-transaction-history':'editing','anonymous-command':'interactive-elements','bogus-doctype-state':'syntax','dom-window-nameditem-filter':'browsers','fallback-content':'embedded-content-0','dom-datatransfer-effectallowed':'editing','selector-default':'interactive-elements','keywords-and-enumerated-attributes':'infrastructure','link-type-sidebar':'interactive-elements','barred-from-constraint-validation':'forms','the-em-element':'text-level-semantics','attr-form-autocomplete-on-state':'forms','browsing-context-container':'browsers','definitions-0':'webappapis','definitions-1':'webappapis','concept-appcache-newer':'offline','browsers':'browsers','killing-scripts':'webappapis','non-fatal-media-error':'video','dom-canvas-todataurl':'the-canvas-eleent','alt':'text-level-semantics','dom-document-location':'history','directly-reachable-browsing-contexts':'browsers','the-input-stream':'syntax','dom-tbody-ch':'obsolete','dom-mod-cite':'text-level-semantics','tt':'obsolete','dom-validitystate-valuemissing':'forms','invalid_state_err':'infrastructure','seamlessLinks':'history','tree-order':'infrastructure','concept-input-type-file-selected':'forms','foreign-elements':'syntax','initial-code-entry-point':'webappapis','the-ruby-element':'text-level-semantics','dom-document-embeds':'dom','command-inserthtml':'editing','application-cache-api':'offline','handler-onsuspend':'webappapis','dom-form-elements':'forms','focus':'editing','command-insertparagraph':'editing','dom-navigator-yieldforstorageupdates':'webappapis','the-applet-element':'obsolete','use-div-for-wrappers':'semantics','sandboxed-navigation-browsing-context-flag':'text-level-semantics','dom-table-rules':'obsolete','dom-fieldset-disabled':'forms','handler-window-onoffline':'webappapis','dom-area-typ':'the-canvas-element','dom-input-readonly':'forms','dom-cva-validity':'forms','dom-timeranges-length':'video','processing-model':'the-canvas-element','navigate-non-Document':'history','concept-fs-method':'forms','the-link-is-an-alternative-stylesheet':'interactive-elements','ascii-compatible-character-encoding':'infrastructure','dom-tr-valign':'obsolete','security-3':'history','form-submission-0':'forms','security-1':'browsers','safe-passing-of-structured-data':'infrastructure','dom-script-event':'obsolete','plugins':'infrastructure','dom-audio':'video','dom-location-resolveurl':'history','refsMQ':'references','dom-textarea-wrap':'forms','selector-active':'interactive-elements','htmloptionscollection-0':'infrastructure','terminology-0':'infrastructure','parsing-main-intbody':'syntax','insertion-mode':'syntax','dom-datatransfer-getdata':'editing','attr-input-placeholder':'forms','dom-based-xslt-1.0-processors':'embedded-content-0','concept-param-parameter':'text-level-semantics','flow-content-0':'dom','scrit-data-double-escaped-dash-dash-state':'syntax','dom-tokenlist-remove':'infrastructure','dom-window-item':'browsers','dom-validitystate-stepmismatch':'forms','sandboxPluginEmbed':'text-level-semantics','no_modification_allowed_err':'infrastructure','attr-meter-low':'forms','attr-script-defer':'semantics','dom-window-scrollbars':'browsers','nobr':'obsolete','handler-appcache-ondownloading':'offline','dom-textarea-defaultvalue':'forms','windowtimers':'webappapis','comment-state':'syntax','states-of-the-type-attribute':'forms','url_mismatch_err':'infrastructure','dom-style-type':'semantics','url-encoded-form-data':'forms','attr-col-charoff':'obsolete','attr-tbody-align':'obsolete','attr-tdth-valign':'obsolete','convert-a-list-of-dimensions-to-a-list-of-pixel-values':'the-xhtml-syntax','concept-option-disabled':'forms','inter-element-whitespace':'dom','dom-selection-iscollapsed':'editing','no-quirks-mode':'dom','dom-document-characterset':'dom','link-type-first':'interactive-elements','suffering-from-a-custom-eror':'forms','attr-a-urn':'obsolete','dom-option-tvd':'forms','event-media-timeupdate':'video','dom-location-port':'history','the-h1-h2-h3-h4-h5-and-h6-elements':'semantics','the-insertion-mode':'syntax','attr-ul-type':'obsolete','namespace_err':'infrastructure','introduction-4':'the-xhtml-syntax','introduction-6':'the-xhtml-syntax','introduction-1':'offline','introduction-0':'forms','introduction-3':'editing','the-button-element':'forms','implied-strong-reference':'infrastructure','dom-output-value':'forms','dom-a-search':'text-level-semantics','suffering-from-a-step-mismatch':'forms','dom-button-type':'forms','the-ol-element':'semantics','meta-charset-during-parse':'syntax','event-appcache-cached':'offline','constructing-form-data-set':'forms','pending-application-cache-download-process-tasks':'offline','appcache-history-2':'history','attr-tdth-colspan':'tabular-data','refsABNF':'references','attr-col-span':'tabular-data','dom-textarea-input-selectionstart':'editing','parsing-main-incdata':'syntax','r2':'abular-data','dom-input-autocomplete':'forms','dom-media-defaultplaybackrate':'video','the-i-element':'text-level-semantics','phrasing':'syntax','the-embed-element':'text-level-semantics','file-upload-state':'forms','paragraph':'embedded-content-0','dom-innerhtml':'embedded-content-0','attr-textarea-rows-value':'forms','refsCSSUI':'references','history':'history','dom-html-version':'obsolete','dom-keygen-challenge':'forms','handler-appcache-onprogress':'offline','history-autocomplete':'history','ascii-case-insensitive':'infrastructure','dom-script-src':'semantics','numbers':'infrastructure','default-view':'browsers','traverse-the-history-by-a-delta':'history','rules-for-parsing-a-legacy-color-value':'infrastructure','writing-cache-manifests':'offline','sandboxPluginNavigate':'history','undomanager':'editing','frameset-ok-flag':'syntax','attr-tdth-rowspan':'tabular-data','script-s-url-character-encoding':'webappapis','width-of-the-select-s-labels':'the-xhtml-syntax','menus':'interactive-elements','creating-dcuments':'dom','attr-tdth-bgcolor':'obsolete','dom-img-ismap':'text-level-semantics','misnested-tags:-b-p-b-p':'syntax','refsNPAPI':'references','dom-domhtmlimplementation-createhtmldocument':'dom','after-doctype-system-identifier-state':'syntax','concept-task':'webappapis','dom-area-protocol':'the-canvas-element','stop-parsing':'syntax','enabling-and-disabling-form-controls':'forms','reflect':'infrastructure','dom-linkstyle-disabled':'semantics','sandboxed-seamless-iframes-flag':'text-level-semantics','dom-document-anchors':'obsolete','attr-marquee-truespeed-false':'obsolete','adoptionAgency':'syntax','dom-document-applets':'obsolete','dom-history-go':'history','column-group-header':'tabular-data','color-spaces-and-color-correction':'the-canvas-element','dom-accesskeylabel':'editing','htmlaudioelement':'video','dom-option-selected':'forms','dom-popstateevent-state':'history','refsXPATH10':'references','candidate-for-constraint-validation':'forms','dom-parent':'browsers','selector-checked':'interactive-elemnts','attr-style-type':'semantics','the-lang-and-xml:lang-attributes':'dom','dom-marquee-hspace':'obsolete','dom-media-networkstate':'video','htmlmodelement':'text-level-semantics','dom-manipulation-task-source':'webappapis','meta-application-name':'semantics','dom-body-text':'obsolete','dom-media-have_future_data':'video','dom-mediaerror-media_err_network':'video','after-doctype-public-identifier-state':'syntax','beforeunloadevent':'history','edits-and-lists':'text-level-semantics','attr-input-type-date-keyword':'forms','dom-hr-size':'obsolete','windowproxy':'browsers','dom-head-profile':'obsolete','valid-date-or-time-string-in-content':'infrastructure','associatedSection':'semantics','refsCESU8':'references','parsing-main-intable':'syntax','interactive-content-0':'embedded-content-0','the-nav-element':'semantics','after-doctype-public-keyword-state':'syntax','seeking':'video','concept-appcache-status':'offline','event-media-pause':'video','selector-optional':'interactive-elements','rules-for-parsing-a-has-name-reference':'infrastructure','concept-input-step-scale':'forms','conformance-requirements':'infrastructure','dom-media-autoplay':'video','dom-form-acceptcharset':'forms','dom-link-rel':'semantics','the-footer-element':'semantics','dom-select-size':'forms','concept-option-label':'forms','auxiliary-browsing-contexts':'browsers','implicit-submission':'forms','attr-textarea-required':'forms','dom-link-rev':'obsolete','generate-implied-end-tags':'syntax','handler-onkeyup':'webappapis','the-tbody-element':'tabular-data','attr-tbody-char':'obsolete','writing-xhtml-documents':'the-xhtml-syntax','attr-area-shape-keyword-poly':'the-canvas-element','attr-option-value':'forms','event-loops':'webappapis','valid-url':'infrastructure','dom-area-rellist':'the-canvas-element','attr-input-type-password-keyword':'forms','editing-hosts':'the-xhtml-syntax','attr-param-name':'text-level-semantics','the-select-element':'forms','dom-input-value':'forms','broadcast-forminput-events':'forms','attr-embed-align':'obsolete','dom-slection-rangecount':'editing','tokenization':'syntax','attr-blockquote-cite':'semantics','dom-window-close':'browsers','attr-input-required':'forms','handler-onratechange':'webappapis','invalid_modification_err':'infrastructure','task-queue':'webappapis','offline':'offline','dom-document-body':'dom','dom-self':'browsers','concept-get-attributes-when-sniffing':'syntax','dom-media-buffered':'video','rules-for-parsing-dimension-values':'infrastructure','attr-img-src':'text-level-semantics','attr-lang':'dom','dom-iframe-frameborder':'obsolete','dom-fs-action':'forms','matches-the-environment':'infrastructure','attr-option-label':'forms','dom-windowtimers-setinterval':'webappapis','other-parsing-state-flags':'syntax','refsHTTP':'references','selection-0':'editing','completely-loaded':'syntax','expiring-application-caches':'offline','dom-focus':'editing','preceded-or-followed':'dom','the-after-after-frameset-insertion-mode':'syntax','dom-tr-ch':'obsolete','multipart-form-data-encoding-algorithm':'forms','securityrisks-in-the-drag-and-drop-model':'editing','month-state':'forms','handler-onmouseover':'webappapis','attr-object-classid':'obsolete','allowed-to-navigate':'browsers','dom-hidden':'editing','insert-a-foreign-element':'syntax','the-script-block-s-source':'semantics','using-the-accesskey-attribute-on-a-legend-element-to-define-a-command':'interactive-elements','script-data-double-escaped-less-than-sign-state':'syntax','dom-colgroup-span':'tabular-data','script-data-escaped-dash-dash-state':'syntax','has-an-element-in-list-item-scope':'syntax','limiting-user-input-length':'forms','scoping':'syntax','attr-a-name':'obsolete','parse-state':'syntax','events-and-the-window-object':'webappapis','script':'semantics','introduction':'introduction','menus-intro':'interactive-elements','concept-input-value-default-range':'forms','button-state':'forms','list-state':'interactive-elements','dom-base-target':'semantics','attr-object-border':'obsolete','hyperlink-link':'semantics','dom-uda-search':'infrastructure','secondary-nsertion-mode':'syntax','dragevent':'editing','pragma-directives':'semantics','list-of-scripts-that-will-execute-when-the-document-has-finished-parsing':'semantics','refsBECSS':'references','dom-applet-align':'obsolete','obsolete':'obsolete','sandboxWindowOpen':'browsers','attr-meta-name':'semantics','transparent-content-models':'embedded-content-0','simple-dialogs':'webappapis','unload-a-document':'history','dom-tokenlist-tostring':'infrastructure','attr-li-type':'obsolete','text-content':'dom','hierarchical-link-types':'interactive-elements','attr-input-step':'forms','dom-area-pathname':'the-canvas-element','dom-img-border':'obsolete','handler-window-onpopstate':'webappapis','concept-cell':'tabular-data','url-host':'infrastructure','handler-window-onbeforeprint':'webappapis','the-a-element':'text-level-semantics','refsUNIVCHARDET':'references','phrasing-content-0':'dom','run-synthetic-click-activation-steps':'embedded-content-0','command-api':'interactive-elements','htmlallcollection':'infrastructure','excuting-a-script-block':'semantics','interactive':'infrastructure','attr-tr-char':'obsolete','dom-window-focus':'editing','dom-table-width':'obsolete','the-colgroup-element':'tabular-data','the-tr-element':'tabular-data','warnings-for-obsolete-but-conforming-features':'obsolete','skip-whitespace':'infrastructure','html-namespace-0':'infrastructure','cache-failure-steps':'offline','adjust-svg-attributes':'syntax','dom-uda-protocol':'infrastructure','range-state':'forms','attr-area-shape-keyword-rect':'the-canvas-element','attributes-for-embedded-content-and-images':'the-xhtml-syntax','session-history':'history','dom-select-item':'forms','dom-document-referrer':'dom','dom-datatransfer-dropeffect':'editing','dom-media-controls':'video','syntax-doctype':'syntax','dom-frameset-rows':'obsolete','attr-table-border':'obsolete','the-input-element-as-a-check-box-and-radio-button-widgets':'the-xhtml-syntax','handler-appcache-onchecking':'offline','comment-end-space-state':'syntax','xlink-namespace':'infrastructure','atr-input-type-week-keyword':'forms','maximum-allowed-value-length':'forms','htmlpreelement':'semantics','dom-link-charset':'obsolete','dom-undomanagerevent-initundomanagerevent':'editing','the-draggable-attribute':'editing','attr-fs-method':'forms','insert-a-character':'syntax','discard-a-document':'browsers','before-doctype-public-identifier-state':'syntax','event-definition':'history','a-purely-decorative-image-that-doesn-t-add-any-information':'text-level-semantics','windows':'browsers','dom-tdth-choff':'obsolete','resetting-rules-for-inherited-properties':'the-xhtml-syntax','command-facet-label':'interactive-elements','dom-navigator-useragent':'webappapis','attr-area-shape':'the-canvas-element','dom-iframe-scrolling':'obsolete','attr-style-title':'semantics','dom-tokenlist-length':'infrastructure','refsIANACHARSET':'references','attributes-for-form-submission':'forms','determining-the-character-encoding':'syntax','dom-command-ro-checked':'interactive-elements','maps-to-the-pixel-length-property':'the-xhtl-syntax','content-type-sniffing':'infrastructure','drag-and-drop-initialization-steps':'editing','attr-fs-method-put-keyword':'forms','concept-input-max':'forms','generic-raw-text-element-parsing-algorithm':'syntax','html-vs-xhtml':'introduction','refsRFC2046':'references','dom-ol-type':'obsolete','handler-onscroll':'webappapis','the-xhtml-syntax':'the-xhtml-syntax','dom-font-face':'obsolete','font':'obsolete','attr-option-disabled':'forms','concept-n-script':'webappapis','dom-frames':'browsers','entry-update':'history','appropriate-form-encoding-algorithm':'forms','attr-a-shape':'obsolete','dom-document-dir':'dom','dom-meter-low':'forms','attr-body-background':'obsolete','text-ping':'iana','dom-object-standby':'obsolete','interactive-elements':'interactive-elements','the-abbr-element':'text-level-semantics','dom-frame-noresize':'obsolete','attr-style-scoped':'semantics','ping-to':'iana','domsettabletokenlist-0':'infrastructure','attribute-value-unquoted-state':'syntax','temporary-buffer':'syntax','the-autcomplete-attribute':'forms','algorithm-for-extracting-an-encoding-from-a-content-type':'infrastructure','parse-a-month-component':'infrastructure','attr-input-type-tel-keyword':'forms','parsing-main-intabletext':'syntax','dom-select-nameditem':'forms','restrictions-for-contents-of-script-elements':'semantics','association-of-controls-and-forms':'forms','generic-rcdata-element-parsing-algorithm':'syntax','structure-of-this-specification':'introduction','refsSHIFTJIS':'references','the-label-element':'forms','dndevents':'editing','active-parser':'dom','handler-window-onfocus':'webappapis','the-meter-element':'forms','furthest-ancestor-browsing-context':'browsers','dom-input-max':'forms','concept-fe-checked':'forms','designMode':'editing','refsHATOM':'references','dom-applet-codebase':'obsolete','concept-time-date':'text-level-semantics','attr-param-valuetype':'obsolete','attr-fs-enctype-formdata':'forms','storage-mutex':'webappapis','parse-a-date-component':'infrastructure','marquee-scroll-distance':'obsolete,'concept-input-checked-dirty-flag':'forms','lists-of-dimensions':'infrastructure','user-interface':'video','about-blank-origin':'browsers','attr-hyperlink-rel':'interactive-elements','text-node':'infrastructure','command-insertimage':'editing','attr-ol-start':'semantics','locked-for-focus':'editing','formatblock-candidate':'editing','dom-document-url':'dom','state-object':'history','concept-table':'tabular-data','attr-input-type-submit-keyword':'forms','dom-input-placeholder':'forms','htmloutputelement':'forms','dom-body-alink':'obsolete','dom-dim-height':'the-canvas-element','embedded-content':'embedded-content-0','script-data-less-than-sign-state':'syntax','appropriate-end-tag-token':'syntax','collections-0':'infrastructure','dom-embed-src':'text-level-semantics','event-media-ended':'video','dom-media-error':'video','dom-input-value-default':'forms','element-restrictions':'syntax','dom-body-link':'obsolete','attr-menu-label':'interactive-elements','htmltablerowelement':'tabular-data','hyperlink':'interacive-elements','dom-navigator':'webappapis','attr-body-vlink':'obsolete','handler-ondragleave':'webappapis','event-redo':'editing','context':'the-canvas-element','value-sanitization-algorithm':'forms','document.write':'embedded-content-0','htmlsourceelement':'video','dom-link-sizes':'semantics','concept-form-association':'forms','domsettabletokenlist':'infrastructure','raw-text-elements':'syntax','handler-ondragover':'webappapis','collect-a-sequence-of-characters':'infrastructure','handler-onblur':'webappapis','dom-id':'dom','character-reference-in-rcdata-state':'syntax','browsing-context-scope-origin':'browsers','the-accesskey-attribute':'editing','event-dragstart':'editing','tag-name-state':'syntax','insertadjacenthtml':'embedded-content-0','dom-input-value-value':'forms','attr-th-scope-rowgroup':'tabular-data','dom-image-wh':'text-level-semantics','dom-media-play':'video','ascii-serialization-of-an-origin':'browsers','xmlns-namespace':'infrastructure','data-state':'syntax','dom-appcache-downloading':'offlne','fatal-decode-error':'video','navigate-fragid-step':'history','refsSELECTORS':'references','downloading-or-updating-an-application-cache':'offline','htmlprogresselement':'forms','concept-appcache-completeness':'offline','handler-ondragend':'webappapis','dom-uda-port':'infrastructure','dom-form-item':'forms','dom-fs-formnovalidate':'forms','refsPINGBACK':'references','dom-script-charset':'semantics','attr-input-type-datetime-keyword':'forms','attr-embed-name':'obsolete','dom-object-archive':'obsolete','attr-textarea-wrap-hard-state':'forms','textarea-effective-width':'the-xhtml-syntax','user-editing-actions':'editing','concept-http-equiv-extensions':'semantics','dom-input-list':'forms','the-table-element':'tabular-data','event-popstate':'history','marquee-current-loop-index':'obsolete','event-appcache-progress':'offline','dom-tree-accessors':'dom','needs-a-date':'text-level-semantics','dom-textarea-input-selectionend':'editing','attr-table-frame':'obsolete','attr-input-type-datetime-local-keyword':'forms,'dom-selection-focusnode':'editing','dom-a-hostname':'text-level-semantics','multicol':'obsolete','stopped-due-to-errors':'video','dom-windowmodal-returnvalue':'webappapis','converting-a-character-width-to-pixels':'the-xhtml-syntax','dom-meta-name':'semantics','concept-fs-enctype':'forms','attr-tdth-align':'obsolete','dom-option-label':'forms','ancestor-browsing-context':'browsers','dom-frame-longdesc':'obsolete','dom-a-ping':'text-level-semantics','url-decomposition-idl-attributes':'infrastructure','dom-ul-type':'obsolete','attr-fs-formtarget':'forms','parsing-main-inbody':'syntax','htmlframeelement':'obsolete','concept-http-equivalent-headers':'infrastructure','concept-appcache-fallback':'offline','dom-textarea-value':'forms','domhtmlimplementation':'dom','a-short-phrase-or-label-with-an-alternative-graphical-representation:-icons-logos':'text-level-semantics','event-media-ratechange':'video','dom-link-href':'semantics','attr-object-name':'text-level-semantics','attr-area-coords':'the-canvas-element','emedding-custom-non-visible-data':'dom','wrong_document_err':'infrastructure','dom-location-protocol':'history','attr-mod-cite':'text-level-semantics','compatibility-caseless':'infrastructure','security-and-privacy-considerations':'video','newlines':'syntax','validitystate':'forms','attr-a-coords':'obsolete','dom-location-assign':'history','attr-input-maxlength':'forms','the-ul-element':'semantics','metadata-content-0':'dom','location':'history','dom-time-datetime':'text-level-semantics','the-ins-element':'text-level-semantics','event-media-abort':'video','attr-hr-size':'obsolete','concept-rel-extensions':'interactive-elements','dom-navigator-platform':'webappapis','run-final-activation-steps':'embedded-content-0','attr-form-name':'forms','event-offline':'offline','big':'obsolete','spin-the-event-loop':'webappapis','concept-embed-active':'text-level-semantics','attr-command-icon':'interactive-elements','handler-onloadedmetadata':'webappapis','dom-appcache-idle':'offline','script-data-double-escaped-state':'sytax','run-pre-click-activation-steps':'embedded-content-0','image-map':'the-canvas-element','dom-param-name':'text-level-semantics','concept-appcache-upgrade':'offline','the-caption-element':'tabular-data','parser-inserted':'semantics','undo-object':'editing','facets':'interactive-elements','ignore':'infrastructure','valid-local-date-and-time-string':'infrastructure','dom-media-network_idle':'video','dom-a-protocol':'text-level-semantics','terminology':'infrastructure','event-definitions':'history','converted-to-ascii-lowercase':'infrastructure','the-title-element-0':'semantics','dom-media-starttime':'video','dom-table-tfoot':'tabular-data','attr-source-media':'video','has-an-element-in-table-scope':'syntax','valid-floating-point-number':'infrastructure','dom-cva-checkvalidatity':'forms','dom-option-text':'forms','refsECMA357':'references','examples':'tabular-data','naming-form-controls':'forms','dom-fs-formaction':'forms','refsWIN874':'references','bindings':'the-xhtml-syntax','refsCSSATTR':'references','atr-input-type-keywords':'forms','dom-input-valueasnumber':'forms','dom-legend-form':'forms','opening-the-input-stream':'embedded-content-0','noframes':'obsolete','refsCSSCOLOR':'references','selector-disabled':'interactive-elements','maps-to-the-dimension-property':'the-xhtml-syntax','dom-document-write':'embedded-content-0','attr-textarea-rows':'forms','the-list-attribute':'forms','dom-sharedworkerglobalscope-applicationcache':'offline','dom-details-open':'interactive-elements','escapingString':'syntax','dom-media-have_metadata':'video','interactive-content':'embedded-content-0','dom-location-search':'history','dom-col-align':'obsolete','dom-table-deletecaption':'tabular-data','dom-tr-rowindex':'tabular-data','event-dragleave':'editing','attr-iframe-src':'text-level-semantics','attr-object-standby':'obsolete','refsRFC5322':'references','queue-a-task':'webappapis','valid-browsing-context-name':'browsers','command-facet-accesskey':'interactive-elements','attr-input-type-number-keyword':'forms','self-closing-tart-tag-state':'syntax','security-and-privacy':'webappapis','dom-embed-align':'obsolete','attr-fs-method-get-keyword':'forms','parsing-main-inhead':'syntax','location-of-the-media-resource':'video','refsRFC2646':'references','attr-link-sizes-any':'interactive-elements','refsRFC2318':'references','parser-pause-flag':'syntax','telephone-state':'forms','a-phrase-or-paragraph-with-an-alternative-graphical-representation:-charts-diagrams-graphs-maps-illustrations':'text-level-semantics','unfocusing-steps':'editing','dom-select-selectedoptions':'forms','frames':'obsolete','alphanumeric-ascii-characters':'infrastructure','suffering-from-a-pattern-mismatch':'forms','dom-document-querycommandvalue':'editing','quirks-mode-doctypes':'syntax','dom-pre-width':'obsolete','concept-link-type-sniffing':'semantics','concept-input-mutable':'forms','dom-option':'forms','dom-col-span':'tabular-data','text-field-selection':'editing','sections':'semantics','dom-navigator-registerprotocolhandler':'webappapis','document-metadata':semantics','refsCOMPUTABLE':'references','reconstruct-the-active-formatting-elements':'syntax','common-event-behaviors':'forms','htmlulistelement':'semantics','attr-input-align':'obsolete','the-iframe-element':'text-level-semantics','the-before-head-insertion-mode':'syntax','datatransfer':'editing','dom-table-summary':'tabular-data','refsMAILTO':'references','run-canceled-activation-steps':'embedded-content-0','dom-marquee-width':'obsolete','constraint-validation':'forms','htmlparamelement':'text-level-semantics','attr-link-rev':'obsolete','the-th-element':'tabular-data','current-entry-of-the-joint-session-history':'history','attr-iframe-marginheight':'obsolete','script-data-escaped-end-tag-name-state':'syntax','reset-button-state':'forms','syntax-elements':'syntax','character-encodings':'infrastructure','attr-img-ismap':'text-level-semantics','text-that-has-been-rendered-to-a-graphic-for-typographical-effect':'text-level-semantics','fragment-case':'syntax','refsCSSOM':'references','dom-document-fgcolor':'osolete','intro-early-example':'introduction','attribute-value-single-quoted-state':'syntax','dom-timeranges-start':'video','linkui':'semantics','prompt-to-unload-a-document':'history','dom-object-contentwindow':'text-level-semantics','concept-output-mode':'forms','attr-col-char':'obsolete','valid-e-mail-address':'forms','attr-th-scope-auto':'tabular-data','refsCOOKIES':'references','undo:-moving-back-in-the-undo-transaction-history':'editing','attr-input-list':'forms','dom-getselection':'editing','attr-colgroup-span':'tabular-data','attr-object-archive':'obsolete','being-rendered':'the-xhtml-syntax','event-appcache-noupdate':'offline','elements':'dom','mediaevents':'video','dom-frameset-cols':'obsolete','editable':'editing','plain-text-form-data':'forms','application-cache-group':'offline','attr-marquee-truespeed':'obsolete','sandboxSubmitBlocked':'forms','text-state-and-search-state':'forms','non-negative-integers':'infrastructure','relevant-application-cache':'offline','valid-month-string':'infrastructure,'syntax-attribute-name':'syntax','htmloptgroupelement':'forms','documents-in-the-dom':'dom','htmlvideoelement':'video','attr-button-type-reset':'forms','the-pattern-attribute':'forms','source-default-media':'video','attr-input-max':'forms','align-descendants':'the-xhtml-syntax','an-introduction-to-error-handling-and-strange-cases-in-the-parser':'syntax','extensibility':'infrastructure','content-type-sniffing:-text-or-binary':'infrastructure','script-s-browsing-context':'webappapis','undo-transaction-history':'editing','a-style-sheet-blocking-scripts':'semantics','event-media-volumechange':'video','change-the-encoding':'syntax','submit-body':'forms','headings-and-sections':'semantics','dom-table-cellspacing':'obsolete','handler-ondragstart':'webappapis','parse-a-month-string':'infrastructure','handler-onmousewheel':'webappapis','dom-map-images':'the-canvas-element','dom-meta-httpequiv':'semantics','handler-onabort':'webappapis','concept-week':'infrastructure','dom-media-readystate':'video','dom-fe-disabled''forms','resources':'infrastructure','syntax-newlines':'syntax','media-resource':'video','syntax-references':'infrastructure','attr-iframe-seamless':'text-level-semantics','event-media-error':'video','valid-week-string':'infrastructure','the-dd-element':'semantics','dom-selection-selectallchildren':'editing','attr-data':'dom','before-attribute-value-state':'syntax','concept-fetch-loaded':'infrastructure','printing-steps':'webappapis','multipart-form-data':'forms','dom-link-rellist':'semantics','contenteditable':'editing','event-appcache-updateready':'offline','htmltableheadercellelement':'tabular-data','concept-column':'tabular-data','other-elements-attributes-and-apis':'obsolete','rawtext-end-tag-open-state':'syntax','dom-textarea-required':'forms','dom-htmlformcontrolscollection-nameditem':'infrastructure','unloading-documents':'history','dom-a-rev':'obsolete','application-cache':'offline','dimension-attributes':'the-canvas-element','handler-onmouseup':'webappapis','attr-embed-src':'text-level-semantics',video':'video','foster-parenting':'syntax','attr-img-name':'obsolete','dom-script-text':'semantics','affected-by-a-base-url-change':'infrastructure','index':'index','attr-media-autobuffer':'video','the-hgroup-element':'semantics','handler-window-onload':'webappapis','code-point-length':'infrastructure','events-0':'index','attr-ol-reversed':'semantics','valid-mime-type':'infrastructure','acronym':'obsolete','attr-meter-max':'forms','valid-time-string':'infrastructure','attr-contextmenu':'interactive-elements','attr-textarea-cols-value':'forms','rcdata-end-tag-name-state':'syntax','dom-input-step':'forms','context-menu-state':'interactive-elements','the-strong-element':'text-level-semantics','input-img-available':'forms','attr-fs-target':'forms','dom-uda-host':'infrastructure','script-data-escape-start-dash-state':'syntax','event-media-durationchange':'video','attr-form-accept-charset':'forms','the-head-element':'dom','a-key-part-of-the-content':'text-level-semantics','refsSCSU':'references','htmldivelement':semantics','atom-namespace':'interactive-elements','media-element':'video','the-constraint-validation-api':'forms','script-data-end-tag-name-state':'syntax','dom-marquee-start':'obsolete','link-type-pingback':'interactive-elements','refsRFC1922':'references','the-hr-element':'semantics','dom-input-align':'obsolete','link-type-next':'interactive-elements','dom-tr-insertcell':'tabular-data','validity-states':'forms','the-script-block-s-type':'semantics','child-browsing-context':'browsers','dom-history-back':'history','dom-media-src':'video','default-button':'forms','attr-fs-formaction':'forms','handler-onmousemove':'webappapis','dom-textarea-type':'forms','frame':'obsolete','navigating-auxiliary-browsing-contexts-in-the-dom':'browsers','syntax-attribute-value':'syntax','unit-of-related-similar-origin-browsing-contexts':'browsers','htmlmeterelement':'forms','dom-media-currentsrc':'video','dom-marquee-bgcolor':'obsolete','dom-tdth-align':'obsolete','content-type-sniffing-0':'infrastructure','dom-link-type':'semntics','doctype-name-state':'syntax','an-iframe-srcdoc-document':'text-level-semantics','refsWIN949':'references','refsCSS':'references','the-step-attribute':'forms','concept-meta-extensions':'semantics','concept-embed-type':'text-level-semantics','hyperlink-suffix':'text-level-semantics','creating-and-inserting-elements':'syntax','read-text':'history','delay-the-load-event':'syntax','dom-area-shape':'the-canvas-element','htmlappletelement':'obsolete','signed-integers':'infrastructure','htmllielement':'semantics','the-toolbar-barprop-object':'browsers','dom-a-port':'text-level-semantics','attr-img-vspace':'obsolete','windowmodal':'webappapis','dom-cva-setcustomvalidity':'forms','dom-img-align':'obsolete','attr-img-longdesc':'obsolete','number-of-days-in-month-month-of-year-year':'infrastructure','hyperlink-elements':'interactive-elements','read-xml':'history','browser-state':'offline','dom-windowtimers-settimeout':'webappapis','handler-onshow':'webappapis','dom-navigator-online':'offline','the-canvas-elemen':'the-canvas-element','attr-meta-http-equiv-content-type':'semantics','parsing-xhtml-documents':'the-xhtml-syntax','dom-frame-marginwidth':'obsolete','basefont':'obsolete','fetch':'infrastructure','before-doctype-system-identifier-state':'syntax','attr-style-media':'semantics','concept-select-toggle':'forms','refsRFC2806':'references','links':'interactive-elements','dom-document-getelementsbyclassname':'dom','submit-get-action':'forms','refsDOMEVENTS':'references','list-of-dragged-nodes':'editing','event-appcache-checking':'offline','refsARIA':'references','parsing-main-inframeset':'syntax','after-doctype-name-state':'syntax','attr-meta-http-equiv':'semantics','parsing-html-fragments':'syntax','htmldatalistelement':'forms','refsUTR36':'references','dom-input-stepdown':'forms','the-sub-and-sup-elements':'text-level-semantics','specially-focusable':'editing','dom-applet-name':'obsolete','dom-title':'dom','algorithm-for-growing-downward-growing-cells':'tabular-data','dom-appcache-obsolete':'offline','the-styl-element':'semantics','refsISO8601':'references','dom-img-src':'text-level-semantics','dom-undomanager-remove':'editing','refsRFC1494':'references','feed-the-parser':'the-xhtml-syntax','concept-appcache-init':'offline','origin-0':'browsers','event-appcache-obsolete':'offline','refsX690':'references','focus-management':'editing','attr-img-alt':'text-level-semantics','context-menus':'interactive-elements','dom-appcache-checking':'offline','read-ua-inline':'history','handler-oncontextmenu':'webappapis','refsXML':'references','attr-button-type-reset-state':'forms','refsXMLNS':'references','using-the-command-element-to-define-a-command':'interactive-elements','dom-media-seekable':'video','parsing-main-inheadnoscript':'syntax','selectors':'interactive-elements','attr-iframe-marginwidth':'obsolete','concept-js-deref':'webappapis','concept-fetch-total':'infrastructure','command-superscript':'editing','applicationcache':'offline','frames-and-framesets':'the-xhtml-syntax','concept-fs-novalidate':'forms','dom-a-type':text-level-semantics','attr-tbody-charoff':'obsolete','attr-iframe-align':'obsolete','attr-input-type-hidden-keyword':'forms','coercing-an-html-dom-into-an-infoset':'syntax','documentEncoding':'syntax','htmlinputelement':'forms','dom-output-htmlfor':'forms','htmloptionelement':'forms','attr-input-type-file-keyword':'forms','the-base-element':'semantics','history-traversal-task-source':'webappapis','submit-mutate-action':'forms','user-interaction-task-source':'webappapis','dom-img-complete':'text-level-semantics','dom-selection-collapsetoend':'editing','dom-document-querycommandstate':'editing','dom-uda-pathname':'infrastructure','dom-command-radiogroup':'interactive-elements','entity-references':'infrastructure','concept-textarea-raw-value':'forms','handler-oncanplay':'webappapis','skip-white_space-characters':'infrastructure','concept-marquee-off':'obsolete','dropEffect-initialization':'editing','dom-document-images':'dom','activation-behavior':'embedded-content-0','attr-input-type-checkbox-keyword':'forms,'parent-browsing-context':'browsers','dom-source-type':'video','transparent':'embedded-content-0','handler-onplay':'webappapis','event-handler-content-attributes':'webappapis','undo-position':'editing','linkTypes':'interactive-elements','dom-iscontenteditable':'editing','ping-from':'iana','the-html-element':'dom','attr-col-valign':'obsolete','processing-model-0':'tabular-data','processing-model-1':'webappapis','processing-model-2':'webappapis','refsMATHML':'references','concept-fs-action':'forms','attr-progress-max':'forms','link-type-archives':'interactive-elements','offsets-into-the-media-resource':'video','a-type-that-the-user-agent-knows-it-cannot-render':'video','dom-img-naturalheight':'text-level-semantics','runtime-script-errors':'webappapis','constraints':'forms','history-notes':'history','contenteditable-delete':'editing','attr-input-multiple':'forms','the-input-element-as-a-color-well':'the-xhtml-syntax','htmlfontelement':'obsolete','dom-audio-s':'video','dom-document-charset':'dom','submit-mailt-body':'forms','meta':'semantics','dom-a-hreflang':'text-level-semantics','attr-link-type':'semantics','refsWEBWORKERS':'references','sandboxed-forms-browsing-context-flag':'text-level-semantics','refsPNG':'references','dom-media-network_no_source':'video','the-before-html-insertion-mode':'syntax','between-doctype-public-and-system-identifiers-state':'syntax','the-hidden-attribute':'editing','dom-selection-focusoffset':'editing','handler-onerror':'webappapis','navigating-across-documents':'history','dom-input-selectedoption':'forms','attr-input-accept':'forms','dom-input-defaultvalue':'forms','attr-input-type-month-keyword':'forms','secondary-browsing-context':'browsers','undo':'editing','dom-object-vspace':'obsolete','character-reference-in-data-state':'syntax','suffering-from-being-missing':'forms','dom-iframe-sandbox':'text-level-semantics','command-facet-disabledstate':'interactive-elements','attr-a-methods':'obsolete','dom-tr-bgcolor':'obsolete','usage-summary':'text-level-semantics','dom-media-pause':video','dom-marquee-vspace':'obsolete','times':'infrastructure','attr-details-open':'interactive-elements','dom-input-size':'forms','dom-document-links':'dom','htmltabledatacellelement':'tabular-data','footnotes':'interactive-elements','concept-input-max-default':'forms','dom-window-menubar':'browsers','enabling-and-disabling-scripting':'webappapis','htmlbasefontelement':'obsolete','other-link-types':'interactive-elements','attr-abbr-title':'text-level-semantics','interactively-validate-the-constraints':'forms','dom-document-commands':'interactive-elements','suffering-from-an-overflow':'forms','a-group-of-images-that-form-a-single-larger-picture-with-no-links':'text-level-semantics','concept-input-type-image-coordinate':'forms','dom-applicationcache':'offline','apis-for-creating-and-navigating-browsing-contexts-by-name':'browsers','sandboxCookies':'dom','attr-area-alt':'the-canvas-element','dom-window':'browsers','concept-row-group':'tabular-data','sandboxOrigin':'browsers','represented-by-the-collection':'nfrastructure','the-xml:base-attribute-xml-only':'dom','obsolete-permitted-doctype':'syntax','event-media-loadedmetadata':'video','sectioning-content-0':'dom','calling-scripts':'webappapis','htmlelement':'dom','selector-required':'interactive-elements','url-port':'infrastructure','refsRFC3864':'references','handler-window-onstorage':'webappapis','enumerated-attribute':'infrastructure','clear-the-stack-back-to-a-table-row-context':'syntax','dom-input-defaultchecked':'forms','attr-input-size':'forms','resolve-a-url':'infrastructure','dom-datatransfer-setdragimage':'editing','locked-for-reset':'forms','the-time-element-0':'the-xhtml-syntax','space-separated-tokens':'infrastructure','contenteditable-br':'editing','direction-of-playback':'video','the-details-element-0':'the-xhtml-syntax','htmlallcollection-0':'infrastructure','dom-col-valign':'obsolete','dom-input-src':'forms','concept-textarea-dirty':'forms','await-a-stable-state':'webappapis','dom-command-ro-label':'interactive-elements','xml-documents':'dom',the-indicated-part-of-the-document':'history','attr-menu-type':'interactive-elements','other-applicable-specifications':'infrastructure','barprop':'browsers','dom-canvas-height':'the-canvas-element','dom-document-querycommandindeterm':'editing','concept-link-obtain':'semantics','semantics-0':'dom','htmlmediaelement':'video','plaintext':'obsolete','dom-command-ro-commandtype':'interactive-elements','metadata-content':'dom','dom-iframe-seamless':'text-level-semantics','parse-a-date-string':'infrastructure','dom-body-background':'obsolete','document-base-url':'infrastructure','expose-a-user-interface-to-the-user':'video','selector-indeterminate':'interactive-elements','attr-object-vspace':'obsolete','security-with-canvas-elements':'the-canvas-element','invalid_character_err':'infrastructure','unexpected-markup-in-tables':'syntax','attr-object-hspace':'obsolete','refsXSLT10':'references','script-data-end-tag-open-state':'syntax','attr-meta-charset':'semantics','attr-marquee-behavior-slide':'obsolete','dom-imagew':'text-level-semantics','attr-table-rules':'obsolete','attr-command-type-state-radio':'interactive-elements','the-selection':'editing','dom-navigator-appname':'webappapis','attr-tdth-width':'obsolete','dom-tdth-headers':'tabular-data','handler-window-onpagehide':'webappapis','htmlcanvaselement':'the-canvas-element','dom-dir':'dom','img-available':'text-level-semantics','dom-classlist':'dom','handler-window-onunload':'webappapis','url':'infrastructure','valid-date-or-time-string':'infrastructure','the-link-element':'semantics','url-fragment':'infrastructure','the-ready-states':'video','the-form-element':'forms','selection':'editing','rules-for-parsing-floating-point-number-values':'infrastructure','text':'syntax','attr-col-align':'obsolete','javascript-protocol':'webappapis','dom-frame-contentdocument':'obsolete','dom-tr-choff':'obsolete','attr-time-datetime':'text-level-semantics','the-body-element-0':'semantics','dom-media-seeking':'video','rcdata-elements':'syntax','html-documents':'dom','attr-table-celpadding':'obsolete','pause':'webappapis','sectioning-content':'dom','the-html-element-0':'semantics','not_supported_err':'infrastructure','attr-area-shape-keyword-polygon':'the-canvas-element','application-cache-download-process':'offline','dom-document-vlinkcolor':'obsolete','attr-body-bgcolor':'obsolete','pending-parsing-blocking-script':'semantics','dom-document-clear':'obsolete','refsPSL':'references','comma-separated-tokens':'infrastructure','ready-for-editing-host-commands':'editing','dom-getelementsbyclassname':'dom','dialogs-implemented-using-separate-documents':'webappapis','attr-hx-align':'obsolete','labeled-control':'forms','dom-font-size':'obsolete','syntax':'syntax','the-figcaption-element':'semantics','effectAllowed-initialization':'editing','dom-datatransfer-addelement':'editing','recommended-reading':'introduction','selector-link':'interactive-elements','navigatoronline':'webappapis','document-s-character-encoding':'dom','dom-object-codebase':'obsolete','password-state':'forms','the-kbd-elemnt':'text-level-semantics','view':'browsers','dom-textarea-readonly':'forms','attr-marquee-direction':'obsolete','the-head-element-0':'semantics','dom-open':'browsers','undomanagerevent':'editing','x-this':'introduction','seamless-browsing-context-flag':'text-level-semantics','dom-tabindex':'editing','attr-marquee-direction-up':'obsolete','dom-applet-archive':'obsolete','handler-ondrop':'webappapis','concept-month':'infrastructure','attr-video-poster':'video','dom-a-name':'obsolete','handler-window-onresize':'webappapis','normal-elements':'syntax','dom-img-hspace':'obsolete','link-type-prefetch':'interactive-elements','dom-a-host':'text-level-semantics','interfaces':'index','the-tfoot-element':'tabular-data','event-dragend':'editing','dom-object-name':'text-level-semantics','dom-script-type':'semantics','the-datalist-element':'forms','the-windowproxy-object':'browsers','attr-table-bgcolor':'obsolete','aborting-a-document-load':'history','dom-meter-high':'forms','current-node':'syntax','commands':'interactiv-elements','flow-content':'dom','plugin':'infrastructure','fallback-free':'dom','an-image-in-an-e-mail-or-private-document-intended-for-a-specific-person-who-is-known-to-be-able-to-view-images':'text-level-semantics','dom-tbody-deleterow':'tabular-data','dom-a-hash':'text-level-semantics','attr-meta-scheme':'obsolete','process-the-iframe-attributes':'text-level-semantics','refsBCP47':'references','dom-object-align':'obsolete','close-the-cell':'syntax','comment':'syntax','dom-div-align':'obsolete','valid-date-string':'infrastructure','concept-appcache-onlinewhitelist-wildcard':'offline','attr-canvas-width':'the-canvas-element','concept-date':'infrastructure','dom-textarea-textlength':'forms','pending-table-character-tokens':'syntax','additional-allowed-character':'syntax','abort_err':'infrastructure','handler-onsubmit':'webappapis','media-element-load-algorithm':'video','dom-textarea-placeholder':'forms','seekUpdate':'video','event-media-seeked':'video','form-owner':'forms','refsWIN1254':'references','attribte-value-double-quoted-state':'syntax','dom-param-type':'obsolete','dom-menu-type':'interactive-elements','refsWEBSOCKET':'references','dom-appcache-uncached':'offline','concept-input-value-dirty-flag':'forms','dom-media-playbackrate':'video','dom-style-media':'semantics','dom-dl-compact':'obsolete','selector-visited':'interactive-elements','attr-input-src':'forms','rules-for-parsing-a-list-of-integers':'infrastructure','attr-tr-valign':'obsolete','attr-input-type':'forms','playing-the-media-resource':'video','dom-document-compatmode':'dom','defining-term':'text-level-semantics','the-textarea-element':'forms','attr-dim-width':'the-canvas-element','dom-datatransfer-cleardata':'editing','dom-legend-align':'obsolete','dom-tokenlist-toggle':'infrastructure','dom-dragevent-datatransfer':'editing','earliest-possible-position':'video','outline-depth':'semantics','scripting-flag':'syntax','valid-integer':'infrastructure','event-handlers':'webappapis','event-firing':'webappapis','dom-param-valuetype':'obsolete','thehr-element-0':'the-xhtml-syntax','fonts-and-colors':'the-xhtml-syntax','immediate-user-selection':'editing','refsRFC2781':'references','dom-form-dispatchforminput':'forms','attr-object-codetype':'obsolete','noopener':'browsers','concept-appcache-master':'offline','dom-media-network_loading':'video','consume-a-character-reference':'syntax','submit-data-post':'forms','nested-browsing-contexts':'browsers','dom-optgroup-disabled':'forms','link-type-up':'interactive-elements','adjust-foreign-attributes':'syntax','dom-command-disabled':'interactive-elements','command-createlink':'editing','attr-media-autoplay':'video','htmldlistelement':'semantics','attr-progress-value':'forms','link-type-search':'interactive-elements','named-access-on-the-window-object':'browsers','dom-output-defaultvalue':'forms','handler-window-ononline':'webappapis','concept-appcache-manifest-fallback':'offline','other-pragma-directives':'semantics','htmlformcontrolscollection':'infrastructure','concept-events-trusted':'infrastructure','cente':'obsolete','refsWIN1252':'references','dom-meter-min':'forms','dom-selection-anchornode':'editing','unit-of-related-browsing-contexts':'browsers','dom-window-toolbar':'browsers','dom-area-nohref':'obsolete','handler-onloadstart':'webappapis','textFieldSelection':'editing','audio':'video','dom-document-alinkcolor':'obsolete','event-media-canplaythrough':'video','htmlcollection':'infrastructure','attr-tdth-nowrap':'obsolete','global-attributes':'dom','dom-link-target':'obsolete','the-section-element':'semantics','link-type-stylesheet':'interactive-elements','week-number-of-the-last-day':'infrastructure','attr-input-autocomplete-off-state':'forms','dom-document-scripts':'dom','attr-fs-enctype-text':'forms','autofocusing-a-form-control':'forms','nextid':'obsolete','syntax-end-tag':'syntax','dom-frameelement':'browsers','elements-in-the-dom':'dom','handler-onmousedown':'webappapis','attr-link-hreflang':'semantics','dom-history-forward':'history','attr-html-version':'obsolete','editing-host':'editing','outlines:'semantics','after-attribute-value-quoted-state':'syntax','dom-tokenlist-contains':'infrastructure','attr-marquee-truespeed-true':'obsolete','dom-media-loop':'video','dom-htmlallcollection-tags':'infrastructure','attr-area-shape-poly':'the-canvas-element','hyperlink-auditing':'interactive-elements','percentages-and-dimensions':'infrastructure','dom-col-choff':'obsolete','attr-area-shape-rect':'the-canvas-element','dom-select-remove':'forms','dom-document-querycommandsupported':'editing','the-fieldset-element':'forms','dom-a-target':'text-level-semantics','dom-document-activeelement':'editing','innerhtml':'embedded-content-0','attr-xml-lang':'dom','concept-error-handled':'webappapis','attr-link-target':'obsolete','empty-cell':'tabular-data','concept-input-value-date-string':'forms','dom-form-checkvalidity':'forms','dom-navigator-registercontenthandler':'webappapis','sandboxed-origin-browsing-context-flag':'text-level-semantics','attr-button-type-button-state':'forms','dom-selection-removerange':'editing','dm-iframe-contentdocument':'text-level-semantics','attr-command-label':'interactive-elements','attr-input-pattern':'forms','how-to-read-this-specification':'introduction','dom-location-reload':'history','concept-input-list':'forms','text-cache-manifest':'iana','dom-p-align':'obsolete','attr-link-rel':'semantics','htmlformelement':'forms','dom-tdth-nowrap':'obsolete','attr-body-link':'obsolete','sample-handler-impl':'webappapis','handler-onreadystatechange':'webappapis','htmlanchorelement':'text-level-semantics','drag-and-drop-processing-model':'editing','rules-for-serializing-simple-color-values':'infrastructure','dom-hr-color':'obsolete','attr-textarea-wrap':'forms','dom-time-valueasdate':'text-level-semantics','sandboxPluginApplet':'obsolete','the-dir-attribute':'dom','the-doctype':'syntax','dom-location-hostname':'history','dom-label-control':'forms','common-microsyntaxes':'infrastructure','dom-option-t':'forms','attr-img-border':'obsolete','concept-appcache-manifest':'offline','create-an-impotent-script''webappapis','suffering-from-a-type-mismatch':'forms','dom-undomanagerevent-data':'editing','event-appcache-error':'offline','meta-author':'semantics','current-drag-operation':'editing','the-small-element':'text-level-semantics','custom-data-attribute':'dom','session-history-entry':'history','dom-frame-src':'obsolete','htmlembedelement':'text-level-semantics','common-input-element-apis':'forms','dom-lang':'dom','dom-style':'dom','focusing-steps':'editing','potentially-playing':'video','attr-ul-compact':'obsolete','attr-tdth-axis':'obsolete','navigatorid':'webappapis','dom-media-currenttime':'video','when-the-drag-and-drop-operation-starts-or-ends-in-another-application':'editing','url-state':'forms','mime-type':'infrastructure','valid-hash-name-reference':'infrastructure','attr-command-type-keyword-command':'interactive-elements','dom-fs-method':'forms','sandboxed-plugins-browsing-context-flag':'text-level-semantics','extracting-atom':'interactive-elements','command-facet-hint':'interactive-elements','scrip-s-global-object':'webappapis','event-input-input':'forms','selector-read-write':'interactive-elements','dom-lfe-labels':'forms','dom-datatransfer-setdata':'editing','column-header':'tabular-data','loading-the-media-resource':'video','time-state':'forms','application-xhtml-xml':'iana','dom-hashchangeevent-oldurl':'history','dom-datatransfer-types':'editing','document-level-focus-apis':'editing','the-b-element':'text-level-semantics','vaguer-moments-in-time':'infrastructure','the-css-user-agent-style-sheet-and-presentational-hints':'the-xhtml-syntax','content-models':'dom','refsUNICODE':'references','media-data':'video','command-facet-icon':'interactive-elements','concept-form-reset-control':'forms','dom-windowmodal-dialogarguments':'webappapis','dom-insertadjacenthtml':'embedded-content-0','algorithm-for-processing-row-groups':'tabular-data','refsSVG':'references','dom-select-add':'forms','attr-fe-name':'forms','event-drop':'editing','text-level-semantics':'text-level-semantics','attr-area-shape-keyword-cir':'the-canvas-element','tag-cloud':'interactive-elements','function':'webappapis','serializability-of-script-execution':'introduction','already-started':'semantics','attr-input-type-search-keyword':'forms','handler-ondragenter':'webappapis','jump-to-a-code-entry-point':'webappapis','handler-onseeked':'webappapis','dom-embed-name':'obsolete','fully-active':'browsers','structured-clone':'infrastructure','rateUpdate':'video','internal-structured-cloning-algorithm':'infrastructure','current-playback-position':'video','attr-textarea-maxlength':'forms','dom-location-host':'history','comment-start-state':'syntax','display-types':'the-xhtml-syntax','handler-oncanplaythrough':'webappapis','dom-object-contentdocument':'text-level-semantics','caret-position':'editing','the-undomanager-interface':'editing','attr-legend-align':'obsolete','end-tags':'syntax','dom-function-call':'webappapis','the-element-pointers':'syntax','source-browsing-context':'history','mime-types':'video','dom-marquee-height':'obsolete','dom-media-uration':'video','valid-lowercase-simple-color':'infrastructure','tokenizing-character-references':'syntax','dom-popstateevent-initpopstateevent':'history','dom-input-value-filename':'forms','named-character-references':'named-character-references','the-stack-of-open-elements':'syntax','paused-for-user-interaction':'video','space-character':'infrastructure','getting-media-metadata':'video','cdata-rcdata-restrictions':'syntax','dom-table-align':'obsolete','rel-icon':'interactive-elements','dom-ol-start':'semantics','base-dnd-feedback':'editing','dom-menu-label':'interactive-elements','attribute-name-state':'syntax','dom-input-maxlength':'forms','htmltablecellelement':'tabular-data','the-samp-element':'text-level-semantics','concept-input-checked-dirty':'forms','dom-tdth-cellindex':'tabular-data','grouping-content':'semantics','authors-using-html':'iana','dom-progress-value':'forms','dom-link-disabled':'semantics','event-appcache-downloading':'offline','comment-end-state':'syntax','has-an-element-in-scope':'sntax','attr-canvas-height':'the-canvas-element','current-entry':'history','dom-htmlcollection-length':'infrastructure','link-type-tag':'interactive-elements','contenteditable-insertText':'editing','attr-object-codebase':'obsolete','dom-keygen-type':'forms','dom-location-replace':'history','htmllabelelement':'forms','attr-input-autocomplete-default-state':'forms','start-tags':'syntax','comment-end-dash-state':'syntax','content-categories':'dom','parsing-main-incolgroup':'syntax','attr-marquee-behavior-alternate':'obsolete','the-optgroup-element':'forms','submit-button-state':'forms','concept-select-option-list':'forms' }; +var fragment_links = { 'concept-appcache-pending-masters':'offline','attr-meter-high':'forms','refsRFC1554':'references','dom-cva-willvalidate':'forms','when-the-drag-and-drop-operation-starts-or-ends-in-another-document':'editing','attr-label-for':'forms','htmlcommandelement':'interactive-elements','the-history-interface':'history','refsXHR':'references','attr-fs-method-delete-keyword':'forms','concept-appcache-cache':'offline','dom-source-media':'video','htmlfieldsetelement':'forms','handler-window-onblur':'webappapis','dom-meter-optimum':'forms','the-root-element':'semantics','scriptTag':'syntax','command-facet-type':'interactive-elements','dom-opener':'browsers','concept-http-equivalent':'infrastructure','obtain-a-physical-form':'the-xhtml-syntax','dom-area-rel':'the-canvas-element','concept-slots':'tabular-data','dom-command-icon':'interactive-elements','valid-non-negative-integer':'infrastructure','attr-fs-enctype-urlencoded':'forms','about:blank':'infrastructure','concept-appcache-matches-fallback':offline','concept-marquee-on':'obsolete','the-end':'syntax','the-after-head-insertion-mode':'syntax','dom-tdth-axis':'obsolete','activation':'editing','header-and-data-cell-semantics':'tabular-data','create-a-script':'webappapis','the-br-element':'semantics','case-sensitivity-and-string-comparison':'infrastructure','definitions-2':'editing','namespaces':'infrastructure','dom-undomanager-add':'editing','command-redo':'editing','attr-meter-value':'forms','dom-style-disabled':'semantics','attr-media-src':'video','special':'syntax','concept-facet':'interactive-elements','changesToNetworkingModel':'offline','hierarchy_request_err':'infrastructure','dom-tr-sectionrowindex':'tabular-data','attr-script-async':'semantics','a-graphical-representation-of-some-of-the-surrounding-text':'text-level-semantics','math':'the-canvas-element','fire-loadedmetadata':'video','attr-br-clear':'obsolete','script-nesting-level':'syntax','attr-iframe-longdesc':'obsolete','attr-input-usemap':'obsolete','dom-tr-deletecell':'tabular-data,'alternate-style-sheets':'semantics','dom-table-deletetfoot':'tabular-data','dom-table-thead':'tabular-data','attr-meta-http-equiv-content-language':'semantics','the-maxlength-attribute':'forms','concept-uda-input':'infrastructure','resetting-a-form':'forms','dom-a-text':'text-level-semantics','guidance-for-markup-generators':'text-level-semantics','dom-input-alt':'forms','the-cite-element':'text-level-semantics','attr-button-type':'forms','attr-input-type-button-keyword':'forms','dom-select-type':'forms','formatting':'syntax','handler-onformchange':'webappapis','attr-hr-align':'obsolete','valid-mime-type-with-no-parameters':'infrastructure','non-conforming-features':'obsolete','attr-textarea-wrap-soft':'forms','parse-error':'syntax','dom-datatransfer-files':'editing','dom-select-options':'forms','concept-fe-disabled':'forms','dom-object-border':'obsolete','dom-feature-strings':'infrastructure','quirks-mode':'dom','character-encodings-0':'syntax','root-element':'infrastructure','dom-table-bgcolor':'obsolet','attr-link-href':'semantics','spelling-and-grammar-checking':'editing','concept-encoding-confidence':'syntax','htmltitleelement':'semantics','appcache':'offline','concept-spellcheck-default-inherit':'editing','scroll-to-the-fragment-identifier':'history','encrypted-http-and-related-security-concerns':'infrastructure','original-insertion-mode':'syntax','link-type-external':'interactive-elements','script-data-state':'syntax','character-references':'syntax','dom-frame-name':'obsolete','dom-tbody-valign':'obsolete','split-a-string-on-commas':'infrastructure','dom-selection-collapse':'editing','command-bold':'editing','command-delete':'editing','dom-applet-code':'obsolete','attr-object-align':'obsolete','u':'obsolete','dom-textarea-rows':'forms','dom-tbody-rows':'tabular-data','html-mime-type':'infrastructure','dom-video-videoheight':'video','pre-click-activation-steps':'embedded-content-0','dom-form-reset':'forms','link-type-index':'interactive-elements','dom-frame-scrolling':'obsolete','dom-img-width':'text-evel-semantics','fire-a-simple-event':'webappapis','browsing-the-web':'history','assigned-access-key':'editing','attr-fae-form':'forms','refsDOMRANGE':'references','dom-area-alt':'the-canvas-element','rules-for-parsing-integers':'infrastructure','html-fragment-serialization-algorithm':'syntax','the-after-after-body-insertion-mode':'syntax','queue-a-post-load-task':'offline','dom-media-volume':'video','custom-handlers':'webappapis','contenteditable-wrapSemantic':'editing','dom-timeranges-end':'video','dom-htmlcollection-item':'infrastructure','dom-iframe-src':'text-level-semantics','dom-barprop-visible':'browsers','dom-media-paused':'video','the-menu-bar-barprop-object':'browsers','attr-tr-bgcolor':'obsolete','the-img-element':'text-level-semantics','mq':'infrastructure','exceptions':'infrastructure','the-document-s-domain':'browsers','dom-accesskey':'editing','scripting':'webappapis','valid-browsing-context-name-or-keyword':'browsers','after-attribute-name-state':'syntax','attr-meta-http-equiv-refresh':'semntics','concept-navigate-mature':'history','the-dfn-element':'text-level-semantics','text-plain-encoding-algorithm':'forms','dom-input-min':'forms','system-state-and-capabilities':'webappapis','comment-end-bang-state':'syntax','dom-image':'text-level-semantics','attr-hr-noshade':'obsolete','attr-form-autocomplete-off-state':'forms','rawtext-less-than-sign-state':'syntax','syntax-attributes':'syntax','rawtext-state':'syntax','command-facet-checkedstate':'interactive-elements','refsRFC3279':'references','hashchangeevent':'history','attr-p-align':'obsolete','dom-marquee-scrolldelay':'obsolete','dom-selection-removeallranges':'editing','concept-datetime-digit':'infrastructure','edits-and-paragraphs':'text-level-semantics','handler-onclick':'webappapis','typographic-conventions':'introduction','attr-tdth-abbr':'obsolete','syntax-comments':'syntax','split-a-string-on-spaces':'infrastructure','unknown-images':'text-level-semantics','dom-body-vlink':'obsolete','attr-pre-width':'obsolete','the-details-element':'inteactive-elements','dom-htmloptionscollection-remove':'infrastructure','execCommand':'editing','plaintext-state':'syntax','dom-hx-align':'obsolete','dom-marquee-truespeed':'obsolete','dom-media-autobuffer':'video','timers':'webappapis','meta-description':'semantics','event-handler-attributes':'webappapis','valid-simple-color':'infrastructure','quota_exceeded_err':'infrastructure','the-div-element':'semantics','parsing-cache-manifests':'offline','origin':'browsers','poster-frame':'video','handler-onload':'webappapis','the-session-history-of-browsing-contexts':'history','refsDOMVIEWS':'references','dom-selection-collapsetostart':'editing','media-element-event-task-source':'video','element-level-focus-apis':'editing','dom-body-bgcolor':'obsolete','dom-selection-anchoroffset':'editing','htmlmenuelement':'interactive-elements','hasfeature':'infrastructure','attributes-0':'index','style-sheet-ready':'semantics','scripting-0':'infrastructure','attr-input-alt':'forms','handler-onmouseout':'webappapis','concept-input-in':'forms','attr-marquee-direction-down':'obsolete','writing':'syntax','list-of-active-intervals':'webappapis','refsABOUT':'references','edits':'text-level-semantics','relaxing-the-same-origin-restriction':'browsers','history-0':'history','history-1':'introduction','attr-marquee-behavior-scroll':'obsolete','weeks':'infrastructure','dom-input-required':'forms','valid-date-string-in-content-with-optional-time':'infrastructure','resulting-autocompletion-state':'forms','dom-validitystate-valid':'forms','attr-textarea-cols':'forms','dom-input-multiple':'forms','blink':'obsolete','attr-fieldset-disabled':'forms','dom-media-seek':'video','htmldetailselement':'interactive-elements','event-media-progress':'video','url-hostport':'infrastructure','dom-basefont-size':'obsolete','concept-input-min-zero':'forms','handler-window-onmessage':'webappapis','url-host-specific':'infrastructure','attr-base-href':'semantics','dom-media-muted':'video','command-insertorderedlist':'editing','command-unlink':'editing','fire-a-click-vent':'webappapis','dom-document-defaultcharset':'dom','the-blockquote-element':'semantics','attr-object-type':'text-level-semantics','dom-media-have_enough_data':'video','attr-input-type-email-keyword':'forms','attr-textarea-readonly':'forms','refsCHARMOD':'references','the-input-element-as-a-text-entry-widget':'the-xhtml-syntax','serialize_err':'infrastructure','dom-htmlallcollection-nameditem':'infrastructure','matching-html-elements-using-selectors':'interactive-elements','attr-input-type-color-keyword':'forms','concept-form-submit':'forms','attr-ol-type':'obsolete','dom-media-load':'video','nearest-activatable-element':'embedded-content-0','htmlhrelement':'semantics','get-the-timeout':'webappapis','sandboxLinks':'history','toolbars':'interactive-elements','rb':'obsolete','standard-metadata-names':'semantics','handler-appcache-onerror':'offline','attr-meta-http-equiv-default-style':'semantics','generic-task-sources':'webappapis','htmltextareaelement':'forms','concept-input-step':'forms','default-media':semantics','dom-li-type':'obsolete','refsIANAPERMHEADERS':'references','dom-area-search':'the-canvas-element','refsRFC3548':'references','html-elements':'infrastructure','refsWEBLINK':'references','refsRFC2388':'references','refsPPUTF8':'references','set-the-document-s-address':'history','object-plugin':'text-level-semantics','valid-e-mail-address-list':'forms','r1':'tabular-data','limited-quirks-mode':'dom','has-a-border':'the-xhtml-syntax','xpath-1.0-processors':'embedded-content-0','parse-a-time-component':'infrastructure','refsRFC3490':'references','sequential-focus-navigation':'editing','suffering-from-being-too-long':'forms','dom-name':'browsers','handler-marquee-onfinish':'obsolete','attr-fs-method-delete':'forms','command-forwarddelete':'editing','concept-spellcheck-default-true':'editing','refsRFC1557':'references','rank':'semantics','network-states':'video','the-input-element':'forms','valid-global-date-and-time-string':'infrastructure','the-initial-insertion-mode':'syntax','limited-to-only-non-neative-numbers-greater-than-zero':'infrastructure','navigator':'webappapis','dom-document-bgcolor':'obsolete','link-type-help':'interactive-elements','dom-area-hash':'the-canvas-element','set-of-comma-separated-tokens':'infrastructure','parsing-main-afterframeset':'syntax','security-2':'browsers','dom-img-height':'text-level-semantics','link-type-author':'interactive-elements','handler-ondurationchange':'webappapis','attr-media-controls':'video','htmlmetaelement':'semantics','dom-undomanager-item':'editing','attr-script-charset':'semantics','htmlcollection-0':'infrastructure','dom-meta-scheme':'obsolete','dom-location-hash':'history','dom-media-have_nothing':'video','dom-img-vspace':'obsolete','attr-fe-autofocus':'forms','dom-document-plugins':'dom','textarea-effective-height':'the-xhtml-syntax','html-fragment-parsing-algorithm':'syntax','handler-window-onpageshow':'webappapis','dom-marquee-scrollamount':'obsolete','concept-table-advance':'tabular-data','in-a-document':'infrastructure','best-representation-o-the-global-date-and-time-string':'infrastructure','table-example-1':'tabular-data','parse-a-manifest':'offline','dynamic-markup-insertion':'embedded-content-0','dynamic-nested-browsing-context-properties':'browsers','classes':'dom','the-multiple-attribute':'forms','dom-mediaerror-code':'video','the-list-of-active-formatting-elements':'syntax','form-element-pointer':'syntax','dom-textarea-maxlength':'forms','error-codes':'video','dom-input-valueasdate':'forms','navigate':'history','syntax-ambiguous-ampersand':'syntax','dom-iframe-srcdoc':'text-level-semantics','submit-delete-action':'forms','top-level-browsing-context':'browsers','simple-color':'infrastructure','attr-button-value':'forms','parse-a-url':'infrastructure','navigatorabilities':'webappapis','dom-tdth-width':'obsolete','attr-table-cellspacing':'obsolete','link-type-nofollow':'interactive-elements','event-drag':'editing','dom-tbody-choff':'obsolete','handler-onfocus':'webappapis','read-image':'history','refsRFC1345':'references','inuse_attribute_er':'infrastructure','attr-object-declare':'obsolete','refsWIN31J':'references','handler-appcache-oncached':'offline','dom-tdth-valign':'obsolete','links-forms-and-navigation':'the-xhtml-syntax','guidance-for-conformance-checkers':'text-level-semantics','the-title-element':'dom','pragma-set-default-language':'semantics','dom-ol-reversed':'semantics','fetching-resources':'infrastructure','attr-dim-height':'the-canvas-element','dom-undomanager-position':'editing','radio-button-state':'forms','algorithm-for-assigning-header-cells':'tabular-data','acknowledgements':'acknowledgements','dom-table-tbodies':'tabular-data','htmlmapelement':'the-canvas-element','concept-time-timezone':'text-level-semantics','dom-document-getselection':'editing','dom':'dom','consumed':'syntax','the-mark-element':'text-level-semantics','dom-undomanager':'editing','same-origin':'browsers','dom-optgroup-label':'forms','about:srcdoc':'infrastructure','concept-fs-target':'forms','dom-undomanager-clearredo':'editing','not_found_err':'infrastucture','dom-htmloptionscollection-length':'infrastructure','concept-datetime-local':'infrastructure','pseudo-classes':'interactive-elements','colors':'infrastructure','outerhtml':'embedded-content-0','handler-onplaying':'webappapis','refsPROGRESS':'references','dom-fieldset-elements':'forms','htmloptionscollection':'infrastructure','radionodelist':'infrastructure','url-path':'infrastructure','domtokenlist':'infrastructure','dom-marquee-behavior':'obsolete','dom-img-usemap':'text-level-semantics','htmlframesetelement':'obsolete','dom-validitystate-typemismatch':'forms','preferred-mime-name':'infrastructure','parse-a-date-or-time-string':'infrastructure','htmlstyleelement':'semantics','attr-th-scope-colgroup':'tabular-data','script-s-base-url':'webappapis','attr-fs-enctype':'forms','attr-textarea-wrap-hard':'forms','dom-title-text':'semantics','mathml-namespace':'infrastructure','dom-selection-addrange':'editing','parsing-main-inselectintable':'syntax','xml-fragment-parsing-algorithm':'the-xhtml-syntax','hanler-onkeydown':'webappapis','event-media-canplay':'video','dom-option-form':'forms','selector-invalid':'interactive-elements','refsRFC1922':'references','refsFILEAPI':'references','attr-iframe-srcdoc':'text-level-semantics','implementation-notes':'editing','the-col-element':'tabular-data','the-placeholder-attribute':'forms','refsDOMCORE':'references','kinds-of-content':'dom','the-td-element':'tabular-data','accessing-other-browsing-contexts':'browsers','the-input-element-as-a-button':'the-xhtml-syntax','creator-browsing-context':'browsers','no_data_allowed_err':'infrastructure','selector-enabled':'interactive-elements','dom-hr-width':'obsolete','dom-windowtimers-cleartimeout':'webappapis','event-media-waiting':'video','xml-fragment-serialization-algorithm':'the-xhtml-syntax','creating-scripts':'webappapis','marquee-scroll-interval':'obsolete','attr-tdth-headers':'tabular-data','attr-textarea-wrap-soft-state':'forms','active-document':'browsers','article-example':'semantics','using-the-input-element-to-defin-a-command':'interactive-elements','hidden-state':'forms','dom-htmloptionscollection-nameditem':'infrastructure','attr-li-value':'semantics','attr-command-type-keyword-checkbox':'interactive-elements','alignment':'the-xhtml-syntax','events':'webappapis','handler-onkeypress':'webappapis','refsORIGIN':'references','attr-button-type-button':'forms','concept-option-value':'forms','attr-head-profile':'obsolete','handler-appcache-onnoupdate':'offline','dom-keygen-keytype':'forms','dom-basefont-color':'obsolete','handler-onloadeddata':'webappapis','the-button-element-0':'the-xhtml-syntax','attr-tdth-charoff':'obsolete','form-associated-element':'forms','dom-spellcheck':'editing','dom-frame-frameborder':'obsolete','table-model-error':'tabular-data','overview-of-the-parsing-model':'syntax','parse-a-week-string':'infrastructure','dom-option-defaultselected':'forms','dom-appcache-update':'offline','media-elements':'video','attr-tr-align':'obsolete','tag-open-state':'syntax','dom-a-media':'text-level-semantics','urls':infrastructure','the-select-element-0':'the-xhtml-syntax','mediaerror':'video','concept-section':'semantics','cdata-section-state':'syntax','using-the-a-element-to-define-a-command':'interactive-elements','dom-tbody-insertrow':'tabular-data','attr-meter-optimum':'forms','refsRFC3023':'references','concept-appcache-explicit':'offline','current-table':'syntax','dom-option-tv':'forms','attr-input-value':'forms','radio-button-group':'forms','attr-input-min':'forms','e-mail-state':'forms','dom-style-scoped':'semantics','htmlheadelement':'semantics','refsRFC2237':'references','attr-input-type-url-keyword':'forms','dom-undomanager-clearundo':'editing','unicode-serialization-of-an-origin':'browsers','dom-option-value':'forms','list-of-the-descendant-browsing-contexts':'browsers','handler-window-onredo':'webappapis','dom-map-areas':'the-canvas-element','about:legacy-compat':'infrastructure','category-label':'forms','handler-onpause':'webappapis','dom-history':'history','character-encoding-declaration':'semantics','cncept-uda-setter':'infrastructure','attr-keygen-challenge':'forms','non-scripted':'infrastructure','concept-input-step-default':'forms','date-state':'forms','dom-htmloptionscollection-add':'infrastructure','attr-div-align':'obsolete','category-reset':'forms','dom-dir-compact':'obsolete','row-group-header':'tabular-data','dom-frame-marginheight':'obsolete','dom-hr-noshade':'obsolete','traverse-the-history':'history','concept-textarea-mutable':'forms','sbu-not-copy':'webappapis','attr-input-type-text-keyword':'forms','the-source-element':'video','attr-th-scope-col':'tabular-data','browsing-context-name':'browsers','n':'tabular-data','attr-area-shape-circle':'the-canvas-element','element-definitions':'dom','dom-area-port':'the-canvas-element','syntax-tag-omission':'syntax','selector-in-range':'interactive-elements','attr-fs-method-get':'forms','bogus-comment-state':'syntax','list-of-active-timeouts':'webappapis','attr-hyperlink-media':'interactive-elements','concept-appcache-manifest-explicit':'offline','link-ype-prev':'interactive-elements','dom-area-host':'the-canvas-element','dom-input-files':'forms','dynamic-changes-to-base-urls':'infrastructure','attr-fs-formmethod':'forms','xml-mime-type':'infrastructure','the-dragevent-and-datatransfer-interfaces':'editing','absolute-url':'infrastructure','htmlbrelement':'semantics','attr-img-hspace':'obsolete','common-parser-idioms':'infrastructure','concept-fv-valid':'forms','submit-mailto-headers':'forms','handler-onended':'webappapis','interactive-media':'the-xhtml-syntax','using-the-option-element-to-define-a-command':'interactive-elements','dom-iframe-marginheight':'obsolete','a-link-or-button-containing-nothing-but-the-image':'text-level-semantics','dialog-arguments-origin':'webappapis','script-data-escaped-state':'syntax','attr-fe-maxlength':'forms','documents':'dom','the-status-bar-barprop-object':'browsers','htmlkeygenelement':'forms','dom-object-code':'obsolete','the-body-element':'dom','heading-content':'dom','handler-onprogress':'webappapis','syntax-start-tag:'syntax','attr-html-manifest':'semantics','htmliframeelement':'text-level-semantics','dom-a-charset':'obsolete','the-output-element':'forms','attr-input-type-image-keyword':'forms','statically-validate-the-constraints':'forms','white_space':'infrastructure','using-the-accesskey-attribute-to-define-a-command-on-other-elements':'interactive-elements','handler-onchange':'webappapis','dom-script-async':'semantics','dom-table-frame':'obsolete','event-dragover':'editing','attr-tr-charoff':'obsolete','attr-input-type-time-keyword':'forms','attr-ol-compact':'obsolete','htmltimeelement':'text-level-semantics','garbage-collection':'infrastructure','the-address-element':'semantics','dom-radionodelist-value':'infrastructure','dom-uda-hash':'infrastructure','create-an-element-for-the-token':'syntax','attr-iframe-sandbox-allow-forms':'text-level-semantics','validation_err':'infrastructure','the-title-attribute-0':'the-xhtml-syntax','dom-form-dispatchformchange':'forms','collections':'infrastructure','week-state':'forms''unordered-set-of-unique-space-separated-tokens':'infrastructure','scriptingLanguages':'semantics','foster-parent':'syntax','canceled-activation-steps':'embedded-content-0','concept-script':'webappapis','dom-area-media':'the-canvas-element','dom-textarea-input-setselectionrange':'editing','read-plugin':'history','valid-date-string-with-optional-time':'infrastructure','event-media-loadeddata':'video','background':'introduction','htmlobjectelement':'text-level-semantics','script-data-escaped-end-tag-open-state':'syntax','scrolling-elements-into-view':'editing','case-sensitive':'infrastructure','dom-validitystate-toolong':'forms','running-a-script':'semantics','network_err':'infrastructure','the-marquee-element-0':'the-xhtml-syntax','refsRFC4281':'references','requirements-for-implementations':'obsolete','security':'dom','dom-table-createcaption':'tabular-data','domstringmap-0':'infrastructure','dom-beforeunloadevent-returnvalue':'history','concept-appcache-foreign':'offline','paragraphs':'embedded-content-0',dom-iframe-name':'text-level-semantics','head-element-pointer':'syntax','category-submit':'forms','attr-embed-type':'text-level-semantics','manually-releasing-the-storage-mutex':'webappapis','insert-an-html-element':'syntax','best-representation-of-the-number-as-a-floating-point-number':'infrastructure','dom-contenteditable':'editing','comments':'syntax','dom-contextmenu':'interactive-elements','fire-loadeddata':'video','attr-command-type-state-checkbox':'interactive-elements','refsATAG':'references','list-of-active-formatting-elements':'syntax','nested-browsing-context':'browsers','attr-area-shape-keyword-rectangle':'the-canvas-element','dom-select-selectedindex':'forms','phrasing-content':'dom','dom-document-head':'dom','the-input-element-as-a-range-control':'the-xhtml-syntax','dnd':'editing','attr-marquee-behavior':'obsolete','attr-meter-min':'forms','tag-clouds':'interactive-elements','attr-col-width':'obsolete','event-media-seeking':'video','dom-command-label':'interactive-elements','dom-windowtimers-cearinterval':'webappapis','attr-command-disabled':'interactive-elements','strike':'obsolete','handler-ondblclick':'webappapis','event-dragenter':'editing','months':'infrastructure','dom-document-lastmodified':'dom','dom-option-disabled':'forms','dom-source-src':'video','attr-script-type':'semantics','common-idioms-without-dedicated-elements':'interactive-elements','refsMIMESNIFF':'references','interactions-with-xpath-and-xslt':'embedded-content-0','htmltableelement':'tabular-data','dom-iframe-align':'obsolete','encoding-sniffing-algorithm':'syntax','attr-tdth-char':'obsolete','shows-caching-progress':'offline','dom-fs-formmethod':'forms','browsing-context-names':'browsers','dom-tr-cells':'tabular-data','reflecting-content-attributes-in-idl-attributes':'infrastructure','parsing':'syntax','rendering':'the-xhtml-syntax','refsATOM':'references','handler-onwaiting':'webappapis','attr-param-type':'obsolete','handler-onseeking':'webappapis','dom-menu-compact':'obsolete','dom-script-htmlfor':'obsolete','dom-input-cecked':'forms','read-html':'history','attr-button-type-submit':'forms','reset-the-form-owner':'forms','remove-an-element-from-a-document':'infrastructure','the-readonly-attribute':'forms','dom-history-length':'history','htmlscriptelement':'semantics','negative-tabindex':'editing','unquoted':'syntax','isindex-0':'obsolete','refsRFC1468':'references','attr-area-nohref':'obsolete','suffering-from-an-underflow':'forms','index_size_err':'infrastructure','serializing-html-fragments':'syntax','attr-fs-formenctype':'forms','attr-fs-action':'forms','concept-video-intrinsic-height':'video','dom-document-querycommandenabled':'editing','cdata-sections':'syntax','dom-col-ch':'obsolete','event-media-play':'video','strip-line-breaks':'infrastructure','command-facet-hiddenstate':'interactive-elements','markup-declaration-open-state':'syntax','dom-fs-novalidate':'forms','end-tag-open-state':'syntax','handling-first-frame-available':'video','refsJSURL':'references','rawtext-end-tag-name-state':'syntax','broadcast-formchange-vents':'forms','concept-input-value-dirty':'forms','introduction-2':'webappapis','dom-marquee-direction':'obsolete','concept-bc-noscript':'webappapis','frameset':'obsolete','concept-spellcheck-default-false':'editing','refsWEBSTORAGE':'references','adjust-mathml-attributes':'syntax','method-context':'webappapis','concept-input-value-number-string':'forms','tree-construction':'syntax','command-insertunorderedlist':'editing','application-x-www-form-urlencoded-encoding-algorithm':'forms','parsing-xhtml-fragments':'the-xhtml-syntax','the-directionality':'dom','attr-select-size':'forms','dom-document-getelementsbyname':'dom','the-bdo-element':'text-level-semantics','dom-mediaerror-media_err_aborted':'video','dom-input-usemap':'obsolete','current-document-readiness':'dom','event-handler-event-type':'webappapis','the-input-element-as-domain-specific-widgets':'the-xhtml-syntax','the-location-interface':'history','script-data-double-escaped-dash-state':'syntax','attr-q-cite':'text-level-semantics','dom-link-media':'emantics','willful-violation':'introduction','script-created-parser':'embedded-content-0','meta-generator':'semantics','handler-onstalled':'webappapis','attr-spellcheck':'editing','local-date-and-time-state':'forms','entry-script':'browsers','syntax-tags':'syntax','dom-mediaerror-media_err_decode':'video','dom-applet-hspace':'obsolete','attr-a-charset':'obsolete','handler-appcache-onupdateready':'offline','dom-document-forms':'dom','dom-br-clear':'obsolete','attr-link-charset':'obsolete','concept-datetime':'infrastructure','html-namespace':'infrastructure','event-dispatch':'forms','a-group-of-images-that-form-a-single-larger-picture-with-links':'text-level-semantics','dom-scrollintoview':'editing','navigating-nested-browsing-contexts-in-the-dom':'browsers','dom-progress-position':'forms','dom-time-pubdate':'text-level-semantics','dom-cva-validationmessage':'forms','attr-meta-content':'semantics','command-italic':'editing','handler-window-onafterprint':'webappapis','dom-applet-height':'obsolete','hardwareLimtations':'infrastructure','converting-html-to-other-formats':'interactive-elements','attr-caption-align':'obsolete','attr-textarea-placeholder':'forms','concept-appcache-onlinewhitelist':'offline','dom-tdth-abbr':'obsolete','event-input-change':'forms','sequential-link-types':'interactive-elements','refsRFC1034':'references','attr-time-pubdate':'text-level-semantics','submit-data-put':'forms','dom-dim-width':'the-canvas-element','local-dates-and-times':'infrastructure','editors':'infrastructure','dom-table-insertrow':'tabular-data','xml-parser':'the-xhtml-syntax','concept-n-noscript':'webappapis','dom-selection-deletefromdocument':'editing','htmlselectelement':'forms','valid-media-query':'infrastructure','reset-the-insertion-mode-appropriately':'syntax','event-handlers-on-elements-document-objects-and-window-objects':'webappapis','doctype-public-identifier-double-quoted-state':'syntax','float-nan':'infrastructure','dom-table-createtbody':'tabular-data','normalized-timeranges-object':'video','the-textarea-elment-0':'the-xhtml-syntax','nestedParsing':'syntax','dom-tr-align':'obsolete','concept-http-equivalent-get':'infrastructure','script-data-escape-start-state':'syntax','xml-namespace':'infrastructure','command-undo':'editing','event-undo':'editing','dom-dataset':'dom','dir':'obsolete','timeranges':'video','conformance-checkers':'infrastructure','attr-hyperlink-href':'interactive-elements','input-type-attr-summary':'forms','list-of-code-entry-points':'webappapis','remove-a-token-from-a-string':'infrastructure','number-state':'forms','event-media-playing':'video','dom-document-hasfocus':'editing','dom-button-value':'forms','a-form-control-s-value':'forms','secondary-browsing-contexts':'browsers','clear-the-stack-back-to-a-table-context':'syntax','concept-column-group':'tabular-data','attr-iframe-sandbox-allow-same-origin':'text-level-semantics','dom-media-have_current_data':'video','text-html-sandboxed':'iana','global-dates-and-times':'infrastructure','home-subtree':'infrastructure','the-pre-element':'semantic','concept-submit-button':'forms','command-unselect':'editing','dom-fs-enctype':'forms','dimRendering':'the-xhtml-syntax','xml':'infrastructure','explicit-eof-character':'syntax','dom-window-nameditem':'browsers','durationChange':'video','concept-button':'forms','refsWEBADDRESSES':'references','attr-param-value':'text-level-semantics','parse-a-time-zone-offset-component':'infrastructure','refsECMA262':'references','command-selectall':'editing','the-rt-element':'text-level-semantics','resource-metadata-management':'dom','link-type-license':'interactive-elements','autoplaying-flag':'video','the-rules-for-choosing-a-browsing-context-given-a-browsing-context-name':'browsers','ltr-specific':'the-xhtml-syntax','attr-command-type-keyword-radio':'interactive-elements','handler-oninvalid':'webappapis','margins-and-padding':'the-xhtml-syntax','attr-dfn-title':'text-level-semantics','syntax-tag-name':'syntax','html-parser':'syntax','changing-the-encoding-while-parsing':'syntax','set-of-space-separated-tokens':'infrastucture','browser-interface-elements':'browsers','iana':'iana','the-id-attribute':'dom','style-default-media':'semantics','dom-tbody-align':'obsolete','dom-input-type':'forms','an-entry-with-persisted-user-state':'history','dom-li-value':'semantics','htmlparagraphelement':'semantics','dom-uda-hostname':'infrastructure','dom-tdth-ch':'obsolete','htmldirectoryelement':'obsolete','concept-time-time':'text-level-semantics','charset512':'semantics','refsRFC2483':'references','refsRFC4329':'references','security_err':'infrastructure','dom-fieldset-type':'forms','the-form-submission-target-browsing-context':'forms','image-maps-0':'the-xhtml-syntax','attr-mod-datetime':'text-level-semantics','the-noscript-element':'semantics','attr-input-type-range-keyword':'forms','dom-prompt':'webappapis','live':'infrastructure','parse-a-time-string':'infrastructure','scope':'introduction','after-doctype-system-keyword-state':'syntax','scriptTagParserResumes':'syntax','dom-table-cellpadding':'obsolete','dom-print':'webappapis','obain-the-storage-mutex':'webappapis','dom-applet-object':'obsolete','closing-elements-that-have-implied-end-tags':'syntax','attr-input-readonly':'forms','attr-area-shape-keyword-circle':'the-canvas-element','character-reference-in-attribute-value-state':'syntax','report-the-error':'webappapis','parsing-main-incaption':'syntax','before-doctype-name-state':'syntax','attr-tabindex':'editing','dom-area-target':'the-canvas-element','dom-a-rel':'text-level-semantics','dom-object-type':'text-level-semantics','printing':'webappapis','attr-link-media':'semantics','attributes-common-to-form-controls':'forms','discard-a-document':'browsers','handler-onselect':'webappapis','htmlformcontrolscollection-0':'infrastructure','handler-ontimeupdate':'webappapis','xml-compatible':'infrastructure','dom-window-locationbar':'browsers','htmlbuttonelement':'forms','attr-fs-novalidate':'forms','media-playback':'video','attr-input-type-reset-keyword':'forms','attr-optgroup-label':'forms','pending-state-object':'history','dom-img-alt':text-level-semantics','support-the-scripting-language':'semantics','dom-command-checked':'interactive-elements','the-param-element':'text-level-semantics','charset':'semantics','ping':'interactive-elements','auxiliary-browsing-context':'browsers','table-model':'tabular-data','xhtml':'the-xhtml-syntax','attr-marquee-direction-left':'obsolete','history-traversal':'history','the-option-element':'forms','internal-algorithm-for-scanning-and-assigning-header-cells':'tabular-data','sandboxScriptBlocked':'webappapis','creator-document':'browsers','garbage-collection-and-browsing-contexts':'browsers','attr-script-src':'semantics','htmlareaelement':'the-canvas-element','dom-marquee-stop':'obsolete','attr-hr-color':'obsolete','dom-document-linkcolor':'obsolete','parser-appcache':'syntax','url-query':'infrastructure','attr-hyperlink-type':'interactive-elements','form-submission-algorithm':'forms','appcacheevents':'offline','scripts-that-modify-the-page-as-it-is-being-parsed':'syntax','sandboxPluginObject':'text-level-smantics','outline':'semantics','attr-select-multiple':'forms','get-the-timed-task':'webappapis','htmlmarqueeelement':'obsolete','attr-iframe-sandbox':'text-level-semantics','dom-location-pathname':'history','the-span-element':'text-level-semantics','comment-start-dash-state':'syntax','definitions':'forms','dom-click':'editing','void-elements':'syntax','dom-quote-cite':'semantics','effective-script-origin':'browsers','dom-basefont-face':'obsolete','dom-tdth-rowspan':'tabular-data','the-keygen-element':'forms','parse-a-local-date-and-time-string':'infrastructure','refsRFC2313':'references','a-quick-introduction-to-html':'introduction','rcdata-state':'syntax','acknowledge-self-closing-flag':'syntax','htmlquoteelement':'semantics','attr-input-autocomplete':'forms','command-facet-id':'interactive-elements','user-prompts':'webappapis','dom-video-poster':'video','dom-a-rellist':'text-level-semantics','forms':'forms','closing-the-input-stream':'embedded-content-0','window':'browsers','listing':'obsolete','attr-th-sope':'tabular-data','dom-object-codetype':'obsolete','refsRFC1842':'references','attr-object-data':'text-level-semantics','dom-hashchangeevent-newurl':'history','conversations':'interactive-elements','sandboxed-scripts-browsing-context-flag':'text-level-semantics','container-frame-element':'the-xhtml-syntax','print-media':'the-xhtml-syntax','attr-tdth-height':'obsolete','attr-body-alink':'obsolete','attr-table-align':'obsolete','refsWCAG':'references','concept-http-equivalent-codes':'infrastructure','category-listed':'forms','refsEUCKR':'references','attr-hyperlink-usemap':'the-canvas-element','signedpublickeyandchallenge':'forms','dom-font-color':'obsolete','embedded-content-2':'the-xhtml-syntax','embedded-content-1':'text-level-semantics','embedded-content-0':'embedded-content-0','task-source':'webappapis','dom-ol-compact':'obsolete','other-metadata-names':'semantics','the-required-attribute':'forms','selector-read-only':'interactive-elements','authors-using-xhtml':'iana','ready-to-be-parser-executed':'seantics','clear-the-list-of-active-formatting-elements-up-to-the-last-marker':'syntax','dom-window-personalbar':'browsers','manifests':'offline','dom-domhtmlimplementation-createhtmldocument':'dom','attr-marquee-direction-right':'obsolete','attr-command-radiogroup':'interactive-elements','canvas':'the-canvas-element','command-formatblock':'editing','a-browsing-context-is-discarded':'browsers','dom-applet-vspace':'obsolete','attr-dl-compact':'obsolete','dom-navigator-appversion':'webappapis','htmlhtmlelement':'semantics','handler-onvolumechange':'webappapis','htmlunknownelement':'dom','contenteditable-breakBlock':'editing','concept-appcache-fallback-ns':'offline','target-element':'history','sectioning-root':'semantics','the-size-attribute':'forms','create-a-script-from-a-node':'webappapis','dependencies':'infrastructure','event-online':'offline','unloading-document-cleanup-steps':'history','htmllinkelement':'semantics','heading-content-0':'dom','concept-error-nothandled':'webappapis','language':'dom','text-htl':'iana','dom-progress-max':'forms','mutation-during-parsing':'syntax','valid-list-of-integers':'infrastructure','concept-form-reset':'forms','attr-hr-width':'obsolete','the-style-attribute':'dom','image-maps':'the-canvas-element','dom-meter-max':'forms','cache-host':'offline','dom-table-border':'obsolete','the-document-s-current-address':'dom','dom-document-writeln':'embedded-content-0','handler-marquee-onbounce':'obsolete','update-the-session-history-with-the-new-page':'history','dom-fae-form':'forms','dom-script-defer':'semantics','dom-document-cookie':'dom','building-menus-and-toolbars':'interactive-elements','before-attribute-name-state':'syntax','scroll-to-fragid':'history','elements-0':'syntax','elements-1':'index','concept-option-index':'forms','script-execution-environment':'webappapis','limited-to-only-non-negative-numbers':'infrastructure','dom-img-longdesc':'obsolete','dom-tdth-height':'obsolete','dom-a-href':'text-level-semantics','dom-window-statusbar':'browsers','dom-select-length':'forms','octype-legacy-string':'syntax','event-handler-idl-attributes':'webappapis','limited-to-only-known-values':'infrastructure','the-q-element':'text-level-semantics','event-media-emptied':'video','dom-option-tvds':'forms','dom-command-ro-disabled':'interactive-elements','syntax-charref':'syntax','concept-media-load-algorithm':'video','attr-command-type':'interactive-elements','frame-border-color':'the-xhtml-syntax','dom-document-close':'embedded-content-0','parsing-main-inforeign':'syntax','attr-input-type-radio-keyword':'forms','the-figure-element':'semantics','semantics':'semantics','dom-object-declare':'obsolete','attr-tbody-valign':'obsolete','dom-tdth-bgcolor':'obsolete','refsUTF7':'references','dom-tokenlist-item':'infrastructure','document.title':'dom','the-scrollbar-barprop-object':'browsers','dom-input-pattern':'forms','syntax-cdata':'syntax','dom-object-hspace':'obsolete','handler-onemptied':'webappapis','dom-input-value-default-on':'forms','htmltablecaptionelement':'tabular-data','common-input-elemen-attributes':'forms','synchronous-section':'webappapis','dom-option-index':'forms','dates-and-times':'infrastructure','refsRFC5280':'references','using-the-accesskey-attribute-on-a-label-element-to-define-a-command':'interactive-elements','optional-tags':'syntax','attr-link-sizes':'interactive-elements','refsGRAPHICS':'references','the-document-s-address':'dom','introduction-5':'the-xhtml-syntax','dom-table-deleterow':'tabular-data','list-of-scripts-that-will-execute-as-soon-as-possible':'semantics','handler-appcache-onobsolete':'offline','dom-document-domain':'browsers','dom-form-name':'forms','editing':'editing','isindex':'syntax','dom-img-name':'obsolete','attr-th-scope-row':'tabular-data','dom-textarea-input-select':'editing','concept-video-intrinsic-width':'video','the-input-element-as-a-file-upload-control':'the-xhtml-syntax','type_mismatch_err':'infrastructure','refsOPENSEARCH':'references','attr-form-autocomplete':'forms','converted-to-ascii-uppercase':'infrastructure','dom-area-coords':'the-canvas-lement','dom-tokenlist-add':'infrastructure','the-script-block-s-character-encoding':'semantics','punctuation-and-decorations':'the-xhtml-syntax','dom-param-value':'text-level-semantics','preprocessing-the-input-stream':'syntax','script-data-escaped-dash-state':'syntax','dom-hashchangeevent-inithashchangeevent':'history','attr-fe-disabled':'forms','dom-area-hostname':'the-canvas-element','general-guidelines':'text-level-semantics','dom-media-ended':'video','dom-fs-formtarget':'forms','the-article-element':'semantics','algorithm-for-ending-a-row-group':'tabular-data','bgsound':'obsolete','apis-in-html-documents':'embedded-content-0','concept-option-selectedness':'forms','atom':'interactive-elements','attr-input-checked':'forms','misinterpreted-for-compatibility':'syntax','spacer':'obsolete','has-an-element-in-the-specific-scope':'syntax','the-aside-element':'semantics','dom-command-type':'interactive-elements','dom-fs-target':'forms','dom-domsettabletokenlist-value':'infrastructure','dom-mediaerror-media_errsrc_not_supported':'video','attr-contenteditable':'editing','htmlheadingelement':'semantics','htmldocument':'dom','dom-area-hreflang':'the-canvas-element','syntax_err':'infrastructure','dom-appcache-status':'offline','link-type-last':'interactive-elements','refsWHATWGWIKI':'references','custom-validity-error-message':'forms','dom-length':'browsers','the-min-and-max-attributes':'forms','next-input-character':'syntax','the-progress-element-0':'the-xhtml-syntax','attr-area-shape-default':'the-canvas-element','xmp':'obsolete','dom-classname':'dom','media-element-attributes':'video','attr-output-for':'forms','htmllegendelement':'forms','parsing-main-intr':'syntax','algorithm-for-processing-rows':'tabular-data','dom-tdth-colspan':'tabular-data','refsRFC3987':'references','htmlspanelement':'text-level-semantics','dom-table-createtfoot':'tabular-data','concept-spellcheck-default':'editing','doctype-system-identifier-double-quoted-state':'syntax','sce-not-copy':'webappapis','parsing-main-intd':'syntax','attr-iframe-andbox-allow-scripts':'text-level-semantics','the-header-element':'semantics','dom-meta-content':'semantics','concept-input-min-default':'forms','dom-object-data':'text-level-semantics','dom-validitystate-rangeunderflow':'forms','command-insertlinebreak':'editing','replaced-elements':'the-xhtml-syntax','svg-namespace':'infrastructure','attr-map-name':'the-canvas-element','misnested-tags:-b-i-b-i':'syntax','concept-time':'infrastructure','dom-mod-datetime':'text-level-semantics','document.writeln':'embedded-content-0','command-subscript':'editing','attr-source-src':'video','the-var-element':'text-level-semantics','toolbars-0':'the-xhtml-syntax','dom-datalist-options':'forms','attr-script-language':'obsolete','dom-label-htmlfor':'forms','the-undomanagerevent-interface-and-the-undo-and-redo-events':'editing','row-header':'tabular-data','rules-for-parsing-non-negative-integers':'infrastructure','dom-iframe-longdesc':'obsolete','rules-for-parsing-a-list-of-dimensions':'infrastructure','the-summary-element':'inteactive-elements','refsGREGORIAN':'references','ended-playback':'video','attr-option-selected':'forms','infrastructure':'infrastructure','foster-parent-element':'syntax','form-submission':'forms','parsing-main-afterbody':'syntax','attr-hyperlink-target':'interactive-elements','svg-0':'the-canvas-element','scripting-1':'semantics','dom-selection-getrangeat':'editing','selector-valid':'interactive-elements','handler-window-onundo':'webappapis','dom-appcache-updateready':'offline','security-0':'forms','parse-a-global-date-and-time-string':'infrastructure','dom-applet-width':'obsolete','delaying-the-load-event-flag':'video','dom-area-href':'the-canvas-element','refsUAAG':'references','replacement-enabled':'history','joint-session-history':'history','concept-appcache-selection':'offline','dates':'infrastructure','dom-marquee-loop':'obsolete','refsWEBSQL':'references','s':'obsolete','attr-menu-compact':'obsolete','insert-an-element-into-a-document':'infrastructure','authoring':'the-canvas-element','dom-output-type:'forms','url-scheme':'infrastructure','parse_err':'infrastructure','dom-embed-type':'text-level-semantics','boolean-attribute':'infrastructure','content-type-sniffing:-image':'infrastructure','dom-ul-compact':'obsolete','dom-command-ro-icon':'interactive-elements','attr-iframe-name':'text-level-semantics','dom-iframe-contentwindow':'text-level-semantics','annotations-for-assistive-technology-products-aria':'embedded-content-0','tabular-data':'tabular-data','real-numbers':'infrastructure','dom-changes':'editing','rcdata-less-than-sign-state':'syntax','dom-fe-autofocus':'forms','making-entire-documents-editable':'editing','documentSelection':'editing','dom-confirm':'webappapis','htmlbaseelement':'semantics','dom-input-accept':'forms','dom-caption-align':'obsolete','attr-media-loop':'video','handler-onforminput':'webappapis','dom-alert':'webappapis','dom-fe-name':'forms','the-area-element':'the-canvas-element','doctype-state':'syntax','dom-navigator-canplaytype':'video','link-type-bookmark':'interactive-elemets','concept-input-required':'forms','attr-keygen-keytype':'forms','prefix-match':'infrastructure','refsTIS620':'references','image-button-state':'forms','source-node':'editing','time-ranges':'video','handler-window-onerror':'webappapis','attr-area-shape-keyword-default':'the-canvas-element','dom-document-nameditem':'dom','common-dom-interfaces':'infrastructure','concept-media-load-resource':'video','serializing-xhtml-fragments':'the-xhtml-syntax','dom-canvas-width':'the-canvas-element','dom-map-name':'the-canvas-element','concept-input-value-string-number':'forms','insertion-point':'syntax','dom-document-open':'embedded-content-0','the-application-cache-selection-algorithm':'offline','htmlbodyelement':'semantics','concept-input-value-string-date':'forms','boolean-attributes':'infrastructure','refsARIAIMPL':'references','domstring_size_err':'infrastructure','refsCORS':'references','dom-undomanager-length':'editing','resetBCName':'history','the-dt-element':'semantics','dom-validitystate-customerror':'forms',table-descriptions':'tabular-data','dom-iframe-marginwidth':'obsolete','dom-table-createthead':'tabular-data','dom-selection-tostring':'editing','the-map-element':'the-canvas-element','dom-canvas-getcontext':'the-canvas-element','the-progress-element':'forms','refsBOCU1':'references','the-window-object':'browsers','editing-apis':'editing','attributes':'syntax','refsISO885911':'references','dom-validitystate-rangeoverflow':'forms','dom-link-hreflang':'semantics','dom-select-value':'forms','data-mining':'infrastructure','dom-fs-formenctype':'forms','the-object-element':'text-level-semantics','dom-table-deletethead':'tabular-data','dom-form-autocomplete':'forms','run-post-click-activation-steps':'embedded-content-0','dom-document-readystate':'dom','opener-browsing-context':'browsers','the-rp-element':'text-level-semantics','handler-window-onhashchange':'webappapis','refsRFC2045':'references','dom-th-scope':'tabular-data','nodelist':'infrastructure','attr-command-checked':'interactive-elements','refsSRGB':'refeences','concept-input-immutable':'forms','the-li-element':'semantics','dom-a-coords':'obsolete','design-notes':'introduction','attr-iframe-frameborder':'obsolete','a-sample-manifest':'offline','attr-hyperlink-hreflang':'interactive-elements','current-target-element':'editing','parsing-main-inselect':'syntax','attr-link-title':'semantics','the-marquee-element':'obsolete','dom-a-shape':'obsolete','compliance-with-other-specifications':'introduction','past-names-map':'forms','handler-marquee-onstart':'obsolete','attr-button-type-submit-state':'forms','the-thead-element':'tabular-data','event-hashchange':'history','dom-location-href':'history','dom-area-ping':'the-canvas-element','publickeyandchallenge':'forms','create-a-document-object':'history','represents':'the-xhtml-syntax','the-p-element':'semantics','textcontent':'infrastructure','dom-window-blur':'editing','refsRFC3986':'references','the-del-element':'text-level-semantics','the-location-bar-barprop-object':'browsers','event-media-loadstart':'video','folowing-hyperlinks':'interactive-elements','noembed':'obsolete','htmltablecolelement':'tabular-data','dom-form-submit':'forms','wbr':'obsolete','groupings-of-browsing-contexts':'browsers','browsing-context':'browsers','dom-top':'browsers','concept-output-defaultvalue':'forms','dom-form-length':'forms','event-loop':'webappapis','dom-document-nameditem-filter':'dom','attr-table-width':'obsolete','audience':'introduction','networking-task-source':'webappapis','dom-a-pathname':'text-level-semantics','dom-history-pushstate':'history','color-state':'forms','dom-applet-alt':'obsolete','the-dl-element':'semantics','attributes-common-to-td-and-th-elements':'tabular-data','rel-sidebar-hyperlink':'interactive-elements','interfaces-for-url-manipulation':'infrastructure','x-that':'introduction','dom-hr-align':'obsolete','lists-of-integers':'infrastructure','dom-select-multiple':'forms','refsGBK':'references','attr-base-target':'semantics','return-value':'webappapis','images':'the-xhtml-syntax','dom-media-played':'video','ttributes-common-to-ins-and-del-elements':'text-level-semantics','selector-out-of-range':'interactive-elements','dom-location':'history','dom-input-indeterminate':'forms','marquee-loop-count':'obsolete','attr-table-summary':'tabular-data','dom-textarea-cols':'forms','date-and-time-state':'forms','focusable':'editing','override-url':'history','refsUTF8DET':'references','concept-appcache-manifest-network':'offline','domtokenlist-0':'infrastructure','dom-htmlcollection-nameditem':'infrastructure','ordered-set-of-unique-space-separated-tokens':'infrastructure','attr-fs-method-post':'forms','references':'references','dom-media-network_empty':'video','dom-document-all':'obsolete','attr-object-code':'obsolete','concept-appcache-obsolete':'offline','the-meter-element-0':'the-xhtml-syntax','the-script-settings-determined-from-the-node':'webappapis','dom-dragevent-initdragevent':'editing','concept-row':'tabular-data','dom-history-replacestate':'history','doctype-public-identifier-single-quoted-state':'syntax','non-ineractive':'infrastructure','title-on-style':'semantics','concept-fe-value':'forms','browsing-context-nested-through':'browsers','dom-trees':'infrastructure','stack-of-open-elements':'syntax','timer-task-source':'webappapis','refsRFC2119':'references','content-type':'infrastructure','the-command':'interactive-elements','attr-body-text':'obsolete','webappapis':'webappapis','dom-input-stepup':'forms','the-keygen-element-0':'the-xhtml-syntax','dom-img-naturalwidth':'text-level-semantics','dom-table-caption':'tabular-data','using-the-button-element-to-define-a-command':'interactive-elements','refsWEBIDL':'references','invalid_access_err':'infrastructure','attr-optgroup-disabled':'forms','event-media-suspend':'video','attr-command-type-state-command':'interactive-elements','event-media-stalled':'video','htmltablesectionelement':'tabular-data','handler-ondrag':'webappapis','the-title-attribute':'dom','attr-source-type':'video','clear-the-stack-back-to-a-table-body-context':'syntax','styling':'semantics','attr-inpu-autocomplete-on-state':'forms','concept-bc-script':'webappapis','handler-window-onbeforeunload':'webappapis','inline-documentation-for-external-scripts':'semantics','handler-oninput':'webappapis','the-code-element':'text-level-semantics','concept-select-pick':'forms','toolbar-state':'interactive-elements','increment-the-marquee-current-loop-index':'obsolete','htmlimageelement':'text-level-semantics','dom-video-videowidth':'video','the-personal-bar-barprop-object':'browsers','command-inserttext':'editing','refused-to-allow-the-document-to-be-unloaded':'history','rcdata-end-tag-open-state':'syntax','attr-img-align':'obsolete','attr-fs-formnovalidate':'forms','syntax-text':'syntax','using-the-rules-for':'syntax','the-legend-element':'forms','attr-command-title':'interactive-elements','domstringmap':'infrastructure','mathml':'the-canvas-element','dom-validitystate-patternmismatch':'forms','dom-base-href':'semantics','undomanagerevent':'editing','current-input-character':'syntax','dom-appcache-swapcache':'offlie','svg':'the-canvas-element','external-resource-link':'semantics','popstateevent':'history','attr-iframe-scrolling':'obsolete','link-type-noreferrer':'interactive-elements','forming-a-table':'tabular-data','checkbox-state':'forms','dom-col-width':'obsolete','the-fieldset-element-0':'the-xhtml-syntax','attr-fs-method-put':'forms','rules-for-parsing-simple-color-values':'infrastructure','presentational-hints':'the-xhtml-syntax','dom-meter-value':'forms','the-time-element':'text-level-semantics','script-data-double-escape-end-state':'syntax','dom-form-nameditem':'forms','script-data-escaped-less-than-sign-state':'syntax','dom-blur':'editing','client-identification':'webappapis','concept-id':'dom','dom-object-usemap':'text-level-semantics','obsolete-but-conforming-features':'obsolete','link-type-alternate':'interactive-elements','refsXMLBASE':'references','dialog-arguments':'webappapis','concept-command':'interactive-elements','doctype-system-identifier-single-quoted-state':'syntax','an-image-not-intended-for-he-user':'text-level-semantics','fire-waiting-when-waiting':'video','attr-a-rev':'obsolete','refsHTMLDIFF':'references','dom-table-rows':'tabular-data','attr-fs-method-post-keyword':'forms','command-facet-action':'interactive-elements','dom-draggable':'editing','script-data-double-escape-start-state':'syntax','dom-outerhtml':'embedded-content-0','htmlolistelement':'semantics','redo:-moving-forward-in-the-undo-transaction-history':'editing','anonymous-command':'interactive-elements','bogus-doctype-state':'syntax','dom-window-nameditem-filter':'browsers','fallback-content':'embedded-content-0','dom-datatransfer-effectallowed':'editing','selector-default':'interactive-elements','keywords-and-enumerated-attributes':'infrastructure','link-type-sidebar':'interactive-elements','barred-from-constraint-validation':'forms','the-em-element':'text-level-semantics','attr-form-autocomplete-on-state':'forms','browsing-context-container':'browsers','definitions-0':'webappapis','definitions-1':'webappapis','concept-appcachenewer':'offline','browsers':'browsers','killing-scripts':'webappapis','non-fatal-media-error':'video','dom-canvas-todataurl':'the-canvas-element','alt':'text-level-semantics','dom-document-location':'history','directly-reachable-browsing-contexts':'browsers','the-input-stream':'syntax','dom-tbody-ch':'obsolete','dom-mod-cite':'text-level-semantics','tt':'obsolete','dom-validitystate-valuemissing':'forms','invalid_state_err':'infrastructure','seamlessLinks':'history','tree-order':'infrastructure','concept-input-type-file-selected':'forms','foreign-elements':'syntax','initial-code-entry-point':'webappapis','the-ruby-element':'text-level-semantics','dom-document-embeds':'dom','command-inserthtml':'editing','application-cache-api':'offline','handler-onsuspend':'webappapis','dom-form-elements':'forms','focus':'editing','command-insertparagraph':'editing','dom-navigator-yieldforstorageupdates':'webappapis','the-applet-element':'obsolete','use-div-for-wrappers':'semantics','sandboxed-navigation-browsing-context-flg':'text-level-semantics','dom-table-rules':'obsolete','dom-fieldset-disabled':'forms','handler-window-onoffline':'webappapis','dom-area-type':'the-canvas-element','dom-input-readonly':'forms','dom-cva-validity':'forms','dom-timeranges-length':'video','processing-model':'the-canvas-element','navigate-non-Document':'history','concept-fs-method':'forms','the-link-is-an-alternative-stylesheet':'interactive-elements','ascii-compatible-character-encoding':'infrastructure','dom-tr-valign':'obsolete','security-3':'history','form-submission-0':'forms','security-1':'browsers','safe-passing-of-structured-data':'infrastructure','dom-script-event':'obsolete','plugins':'infrastructure','dom-audio':'video','dom-location-resolveurl':'history','refsMQ':'references','dom-textarea-wrap':'forms','selector-active':'interactive-elements','htmloptionscollection-0':'infrastructure','terminology-0':'infrastructure','parsing-main-intbody':'syntax','insertion-mode':'syntax','dom-datatransfer-getdata':'editing','attr-input-placeholde':'forms','dom-based-xslt-1.0-processors':'embedded-content-0','concept-param-parameter':'text-level-semantics','flow-content-0':'dom','script-data-double-escaped-dash-dash-state':'syntax','dom-tokenlist-remove':'infrastructure','dom-window-item':'browsers','dom-validitystate-stepmismatch':'forms','sandboxPluginEmbed':'text-level-semantics','no_modification_allowed_err':'infrastructure','attr-meter-low':'forms','attr-script-defer':'semantics','dom-window-scrollbars':'browsers','nobr':'obsolete','handler-appcache-ondownloading':'offline','dom-textarea-defaultvalue':'forms','windowtimers':'webappapis','comment-state':'syntax','states-of-the-type-attribute':'forms','url_mismatch_err':'infrastructure','dom-style-type':'semantics','url-encoded-form-data':'forms','attr-col-charoff':'obsolete','attr-tbody-align':'obsolete','attr-tdth-valign':'obsolete','convert-a-list-of-dimensions-to-a-list-of-pixel-values':'the-xhtml-syntax','concept-option-disabled':'forms','inter-element-whitespace':'dom','dom-selection-iscollpsed':'editing','no-quirks-mode':'dom','dom-document-characterset':'dom','link-type-first':'interactive-elements','suffering-from-a-custom-error':'forms','attr-a-urn':'obsolete','dom-option-tvd':'forms','event-media-timeupdate':'video','dom-location-port':'history','the-h1-h2-h3-h4-h5-and-h6-elements':'semantics','the-insertion-mode':'syntax','attr-ul-type':'obsolete','namespace_err':'infrastructure','introduction-4':'the-xhtml-syntax','introduction-6':'the-xhtml-syntax','introduction-1':'offline','introduction-0':'forms','introduction-3':'editing','the-button-element':'forms','implied-strong-reference':'infrastructure','dom-output-value':'forms','dom-a-search':'text-level-semantics','suffering-from-a-step-mismatch':'forms','dom-button-type':'forms','the-ol-element':'semantics','meta-charset-during-parse':'syntax','event-appcache-cached':'offline','constructing-form-data-set':'forms','pending-application-cache-download-process-tasks':'offline','appcache-history-2':'history','attr-tdth-colspan':'tabular-data,'refsABNF':'references','attr-col-span':'tabular-data','document':'infrastructure','dom-textarea-input-selectionstart':'editing','parsing-main-incdata':'syntax','r2':'tabular-data','dom-input-autocomplete':'forms','dom-media-defaultplaybackrate':'video','the-i-element':'text-level-semantics','phrasing':'syntax','the-embed-element':'text-level-semantics','file-upload-state':'forms','paragraph':'embedded-content-0','dom-innerhtml':'embedded-content-0','attr-textarea-rows-value':'forms','refsCSSUI':'references','history':'history','dom-html-version':'obsolete','dom-keygen-challenge':'forms','handler-appcache-onprogress':'offline','history-autocomplete':'history','ascii-case-insensitive':'infrastructure','dom-script-src':'semantics','numbers':'infrastructure','default-view':'browsers','traverse-the-history-by-a-delta':'history','rules-for-parsing-a-legacy-color-value':'infrastructure','writing-cache-manifests':'offline','sandboxPluginNavigate':'history','undomanager':'editing','frameset-ok-flag':'syntax','attrtdth-rowspan':'tabular-data','script-s-url-character-encoding':'webappapis','width-of-the-select-s-labels':'the-xhtml-syntax','menus':'interactive-elements','creating-documents':'dom','attr-tdth-bgcolor':'obsolete','dom-img-ismap':'text-level-semantics','misnested-tags:-b-p-b-p':'syntax','refsNPAPI':'references','the-dd-element':'semantics','after-doctype-system-identifier-state':'syntax','concept-task':'webappapis','dom-area-protocol':'the-canvas-element','stop-parsing':'syntax','enabling-and-disabling-form-controls':'forms','reflect':'infrastructure','dom-linkstyle-disabled':'semantics','sandboxed-seamless-iframes-flag':'text-level-semantics','dom-document-anchors':'obsolete','attr-marquee-truespeed-false':'obsolete','adoptionAgency':'syntax','dom-document-applets':'obsolete','dom-history-go':'history','column-group-header':'tabular-data','color-spaces-and-color-correction':'the-canvas-element','dom-accesskeylabel':'editing','htmlaudioelement':'video','dom-option-selected':'forms','dom-popstateevent-state:'history','refsXPATH10':'references','candidate-for-constraint-validation':'forms','dom-parent':'browsers','selector-checked':'interactive-elements','attr-style-type':'semantics','the-lang-and-xml:lang-attributes':'dom','dom-marquee-hspace':'obsolete','dom-media-networkstate':'video','htmlmodelement':'text-level-semantics','dom-manipulation-task-source':'webappapis','meta-application-name':'semantics','dom-body-text':'obsolete','dom-media-have_future_data':'video','dom-mediaerror-media_err_network':'video','after-doctype-public-identifier-state':'syntax','beforeunloadevent':'history','edits-and-lists':'text-level-semantics','attr-input-type-date-keyword':'forms','dom-hr-size':'obsolete','windowproxy':'browsers','dom-head-profile':'obsolete','valid-date-or-time-string-in-content':'infrastructure','associatedSection':'semantics','refsCESU8':'references','parsing-main-intable':'syntax','interactive-content-0':'embedded-content-0','the-nav-element':'semantics','after-doctype-public-keyword-state':'syntax','seeing':'video','concept-appcache-status':'offline','event-media-pause':'video','selector-optional':'interactive-elements','rules-for-parsing-a-hash-name-reference':'infrastructure','concept-input-step-scale':'forms','conformance-requirements':'infrastructure','dom-media-autoplay':'video','dom-form-acceptcharset':'forms','dom-link-rel':'semantics','the-footer-element':'semantics','dom-select-size':'forms','concept-option-label':'forms','auxiliary-browsing-contexts':'browsers','implicit-submission':'forms','attr-textarea-required':'forms','dom-link-rev':'obsolete','generate-implied-end-tags':'syntax','handler-onkeyup':'webappapis','the-tbody-element':'tabular-data','attr-tbody-char':'obsolete','writing-xhtml-documents':'the-xhtml-syntax','attr-area-shape-keyword-poly':'the-canvas-element','attr-option-value':'forms','event-loops':'webappapis','dom-showmodaldialog':'webappapis','dom-area-rellist':'the-canvas-element','attr-input-type-password-keyword':'forms','editing-hosts':'the-xhtml-syntax','attr-param-name':text-level-semantics','event':'infrastructure','the-select-element':'forms','dom-input-value':'forms','broadcast-forminput-events':'forms','attr-embed-align':'obsolete','dom-selection-rangecount':'editing','tokenization':'syntax','attr-blockquote-cite':'semantics','dom-window-close':'browsers','attr-input-required':'forms','handler-onratechange':'webappapis','invalid_modification_err':'infrastructure','task-queue':'webappapis','offline':'offline','dom-document-body':'dom','dom-self':'browsers','concept-get-attributes-when-sniffing':'syntax','dom-media-buffered':'video','rules-for-parsing-dimension-values':'infrastructure','attr-img-src':'text-level-semantics','attr-lang':'dom','dom-iframe-frameborder':'obsolete','dom-fs-action':'forms','matches-the-environment':'infrastructure','attr-option-label':'forms','dom-windowtimers-setinterval':'webappapis','other-parsing-state-flags':'syntax','refsHTTP':'references','selection-0':'editing','completely-loaded':'syntax','expiring-application-caches':'offline','dom-fous':'editing','preceded-or-followed':'dom','the-after-after-frameset-insertion-mode':'syntax','dom-tr-ch':'obsolete','multipart-form-data-encoding-algorithm':'forms','security-risks-in-the-drag-and-drop-model':'editing','month-state':'forms','handler-onmouseover':'webappapis','attr-object-classid':'obsolete','allowed-to-navigate':'browsers','dom-hidden':'editing','insert-a-foreign-element':'syntax','the-script-block-s-source':'semantics','using-the-accesskey-attribute-on-a-legend-element-to-define-a-command':'interactive-elements','script-data-double-escaped-less-than-sign-state':'syntax','dom-colgroup-span':'tabular-data','script-data-escaped-dash-dash-state':'syntax','has-an-element-in-list-item-scope':'syntax','limiting-user-input-length':'forms','scoping':'syntax','attr-a-name':'obsolete','parse-state':'syntax','events-and-the-window-object':'webappapis','script':'semantics','introduction':'introduction','menus-intro':'interactive-elements','concept-input-value-default-range':'forms','button-state':'fors','list-state':'interactive-elements','dom-base-target':'semantics','attr-object-border':'obsolete','hyperlink-link':'semantics','dom-uda-search':'infrastructure','secondary-insertion-mode':'syntax','dragevent':'editing','pragma-directives':'semantics','list-of-scripts-that-will-execute-when-the-document-has-finished-parsing':'semantics','refsBECSS':'references','dom-applet-align':'obsolete','obsolete':'obsolete','eventtarget':'infrastructure','attr-meta-name':'semantics','transparent-content-models':'embedded-content-0','simple-dialogs':'webappapis','unload-a-document':'history','dom-tokenlist-tostring':'infrastructure','attr-li-type':'obsolete','text-content':'dom','hierarchical-link-types':'interactive-elements','attr-input-step':'forms','dom-area-pathname':'the-canvas-element','dom-img-border':'obsolete','handler-window-onpopstate':'webappapis','concept-cell':'tabular-data','url-host':'infrastructure','handler-window-onbeforeprint':'webappapis','the-a-element':'text-level-semantics','refsUNIVCHARDET':'eferences','phrasing-content-0':'dom','run-synthetic-click-activation-steps':'embedded-content-0','command-api':'interactive-elements','htmlallcollection':'infrastructure','executing-a-script-block':'semantics','interactive':'infrastructure','attr-tr-char':'obsolete','dom-window-focus':'editing','dom-table-width':'obsolete','the-colgroup-element':'tabular-data','the-tr-element':'tabular-data','warnings-for-obsolete-but-conforming-features':'obsolete','skip-whitespace':'infrastructure','html-namespace-0':'infrastructure','cache-failure-steps':'offline','adjust-svg-attributes':'syntax','dom-uda-protocol':'infrastructure','range-state':'forms','attr-area-shape-keyword-rect':'the-canvas-element','attributes-for-embedded-content-and-images':'the-xhtml-syntax','session-history':'history','dom-select-item':'forms','dom-document-referrer':'dom','dom-datatransfer-dropeffect':'editing','dom-media-controls':'video','syntax-doctype':'syntax','dom-frameset-rows':'obsolete','attr-table-border':'obsolete','the-input-elemet-as-a-check-box-and-radio-button-widgets':'the-xhtml-syntax','handler-appcache-onchecking':'offline','comment-end-space-state':'syntax','xlink-namespace':'infrastructure','attr-input-type-week-keyword':'forms','maximum-allowed-value-length':'forms','htmlpreelement':'semantics','dom-link-charset':'obsolete','dom-undomanagerevent-initundomanagerevent':'editing','the-draggable-attribute':'editing','attr-fs-method':'forms','insert-a-character':'syntax','sandboxWindowOpen':'browsers','before-doctype-public-identifier-state':'syntax','event-definition':'history','a-purely-decorative-image-that-doesn-t-add-any-information':'text-level-semantics','windows':'browsers','dom-tdth-choff':'obsolete','resetting-rules-for-inherited-properties':'the-xhtml-syntax','command-facet-label':'interactive-elements','dom-navigator-useragent':'webappapis','attr-area-shape':'the-canvas-element','dom-iframe-scrolling':'obsolete','attr-style-title':'semantics','dom-tokenlist-length':'infrastructure','refsIANACHARSET':'references','attibutes-for-form-submission':'forms','determining-the-character-encoding':'syntax','dom-command-ro-checked':'interactive-elements','maps-to-the-pixel-length-property':'the-xhtml-syntax','content-type-sniffing':'infrastructure','drag-and-drop-initialization-steps':'editing','attr-fs-method-put-keyword':'forms','concept-input-max':'forms','generic-raw-text-element-parsing-algorithm':'syntax','html-vs-xhtml':'introduction','refsRFC2046':'references','dom-ol-type':'obsolete','handler-onscroll':'webappapis','the-xhtml-syntax':'the-xhtml-syntax','dom-font-face':'obsolete','font':'obsolete','attr-option-disabled':'forms','concept-n-script':'webappapis','dom-frames':'browsers','entry-update':'history','appropriate-form-encoding-algorithm':'forms','attr-a-shape':'obsolete','dom-document-dir':'dom','dom-meter-low':'forms','attr-body-background':'obsolete','text-ping':'iana','dom-object-standby':'obsolete','interactive-elements':'interactive-elements','the-abbr-element':'text-level-semantics','dom-frame-noresize':'obsoete','attr-style-scoped':'semantics','ping-to':'iana','domsettabletokenlist-0':'infrastructure','attribute-value-unquoted-state':'syntax','temporary-buffer':'syntax','the-autocomplete-attribute':'forms','algorithm-for-extracting-an-encoding-from-a-content-type':'infrastructure','parse-a-month-component':'infrastructure','attr-input-type-tel-keyword':'forms','parsing-main-intabletext':'syntax','dom-select-nameditem':'forms','restrictions-for-contents-of-script-elements':'semantics','association-of-controls-and-forms':'forms','generic-rcdata-element-parsing-algorithm':'syntax','structure-of-this-specification':'introduction','refsSHIFTJIS':'references','the-label-element':'forms','dndevents':'editing','active-parser':'dom','handler-window-onfocus':'webappapis','the-meter-element':'forms','furthest-ancestor-browsing-context':'browsers','dom-input-max':'forms','concept-fe-checked':'forms','designMode':'editing','refsHATOM':'references','dom-applet-codebase':'obsolete','concept-time-date':'text-level-semantics',attr-param-valuetype':'obsolete','attr-fs-enctype-formdata':'forms','storage-mutex':'webappapis','parse-a-date-component':'infrastructure','marquee-scroll-distance':'obsolete','concept-input-checked-dirty-flag':'forms','lists-of-dimensions':'infrastructure','user-interface':'video','about-blank-origin':'browsers','attr-hyperlink-rel':'interactive-elements','text-node':'infrastructure','command-insertimage':'editing','attr-ol-start':'semantics','locked-for-focus':'editing','formatblock-candidate':'editing','dom-document-url':'dom','state-object':'history','concept-table':'tabular-data','attr-input-type-submit-keyword':'forms','dom-input-placeholder':'forms','htmloutputelement':'forms','dom-body-alink':'obsolete','dom-dim-height':'the-canvas-element','embedded-content':'embedded-content-0','script-data-less-than-sign-state':'syntax','appropriate-end-tag-token':'syntax','collections-0':'infrastructure','dom-embed-src':'text-level-semantics','event-media-ended':'video','dom-media-error':'video','dom-input-valuedefault':'forms','element-restrictions':'syntax','dom-body-link':'obsolete','attr-menu-label':'interactive-elements','htmltablerowelement':'tabular-data','hyperlink':'interactive-elements','dom-navigator':'webappapis','attr-body-vlink':'obsolete','handler-ondragleave':'webappapis','event-redo':'editing','context':'the-canvas-element','value-sanitization-algorithm':'forms','document.write':'embedded-content-0','htmlsourceelement':'video','dom-link-sizes':'semantics','concept-form-association':'forms','the-head-element':'dom','raw-text-elements':'syntax','handler-ondragover':'webappapis','collect-a-sequence-of-characters':'infrastructure','handler-onblur':'webappapis','dom-id':'dom','character-reference-in-rcdata-state':'syntax','browsing-context-scope-origin':'browsers','the-accesskey-attribute':'editing','event-dragstart':'editing','tag-name-state':'syntax','insertadjacenthtml':'embedded-content-0','dom-input-value-value':'forms','attr-th-scope-rowgroup':'tabular-data','dom-image-wh':'text-level-semantics',dom-media-play':'video','ascii-serialization-of-an-origin':'browsers','xmlns-namespace':'infrastructure','data-state':'syntax','dom-appcache-downloading':'offline','fatal-decode-error':'video','navigate-fragid-step':'history','refsSELECTORS':'references','downloading-or-updating-an-application-cache':'offline','htmlprogresselement':'forms','concept-appcache-completeness':'offline','handler-ondragend':'webappapis','dom-uda-port':'infrastructure','dom-form-item':'forms','dom-fs-formnovalidate':'forms','refsPINGBACK':'references','dom-script-charset':'semantics','attr-input-type-datetime-keyword':'forms','attr-embed-name':'obsolete','dom-object-archive':'obsolete','attr-textarea-wrap-hard-state':'forms','textarea-effective-width':'the-xhtml-syntax','user-editing-actions':'editing','concept-http-equiv-extensions':'semantics','dom-input-list':'forms','the-table-element':'tabular-data','event-popstate':'history','marquee-current-loop-index':'obsolete','event-appcache-progress':'offline','dom-tree-accessors':'dom''needs-a-date':'text-level-semantics','dom-textarea-input-selectionend':'editing','attr-table-frame':'obsolete','attr-input-type-datetime-local-keyword':'forms','dom-selection-focusnode':'editing','dom-a-hostname':'text-level-semantics','multicol':'obsolete','stopped-due-to-errors':'video','dom-windowmodal-returnvalue':'webappapis','converting-a-character-width-to-pixels':'the-xhtml-syntax','dom-meta-name':'semantics','concept-fs-enctype':'forms','attr-tdth-align':'obsolete','dom-option-label':'forms','ancestor-browsing-context':'browsers','dom-frame-longdesc':'obsolete','dom-a-ping':'text-level-semantics','url-decomposition-idl-attributes':'infrastructure','dom-ul-type':'obsolete','attr-fs-formtarget':'forms','parsing-main-inbody':'syntax','htmlframeelement':'obsolete','concept-http-equivalent-headers':'infrastructure','concept-appcache-fallback':'offline','dom-textarea-value':'forms','domhtmlimplementation':'dom','a-short-phrase-or-label-with-an-alternative-graphical-representation:-icons-logos':'text-levl-semantics','event-media-ratechange':'video','dom-link-href':'semantics','attr-object-name':'text-level-semantics','attr-area-coords':'the-canvas-element','embedding-custom-non-visible-data':'dom','wrong_document_err':'infrastructure','dom-location-protocol':'history','attr-mod-cite':'text-level-semantics','compatibility-caseless':'infrastructure','security-and-privacy-considerations':'video','newlines':'syntax','validitystate':'forms','attr-a-coords':'obsolete','dom-location-assign':'history','attr-input-maxlength':'forms','the-ul-element':'semantics','metadata-content-0':'dom','location':'history','dom-time-datetime':'text-level-semantics','the-ins-element':'text-level-semantics','event-media-abort':'video','attr-hr-size':'obsolete','concept-rel-extensions':'interactive-elements','dom-navigator-platform':'webappapis','run-final-activation-steps':'embedded-content-0','attr-form-name':'forms','event-offline':'offline','big':'obsolete','spin-the-event-loop':'webappapis','concept-embed-active':'text-level-seantics','attr-command-icon':'interactive-elements','handler-onloadedmetadata':'webappapis','dom-appcache-idle':'offline','script-data-double-escaped-state':'syntax','run-pre-click-activation-steps':'embedded-content-0','image-map':'the-canvas-element','dom-param-name':'text-level-semantics','concept-appcache-upgrade':'offline','the-caption-element':'tabular-data','parser-inserted':'semantics','undo-object':'editing','facets':'interactive-elements','ignore':'infrastructure','valid-local-date-and-time-string':'infrastructure','dom-media-network_idle':'video','dom-a-protocol':'text-level-semantics','terminology':'infrastructure','event-definitions':'history','converted-to-ascii-lowercase':'infrastructure','the-title-element-0':'semantics','dom-media-starttime':'video','dom-table-tfoot':'tabular-data','attr-source-media':'video','has-an-element-in-table-scope':'syntax','valid-floating-point-number':'infrastructure','dom-cva-checkvalidatity':'forms','dom-option-text':'forms','refsECMA357':'references','examples''tabular-data','naming-form-controls':'forms','dom-fs-formaction':'forms','refsWIN874':'references','bindings':'the-xhtml-syntax','refsCSSATTR':'references','attr-input-type-keywords':'forms','dom-input-valueasnumber':'forms','dom-legend-form':'forms','opening-the-input-stream':'embedded-content-0','noframes':'obsolete','refsCSSCOLOR':'references','selector-disabled':'interactive-elements','maps-to-the-dimension-property':'the-xhtml-syntax','dom-document-write':'embedded-content-0','attr-textarea-rows':'forms','the-list-attribute':'forms','dom-sharedworkerglobalscope-applicationcache':'offline','dom-details-open':'interactive-elements','escapingString':'syntax','dom-media-have_metadata':'video','interactive-content':'embedded-content-0','dom-location-search':'history','dom-col-align':'obsolete','dom-table-deletecaption':'tabular-data','dom-tr-rowindex':'tabular-data','event-dragleave':'editing','attr-iframe-src':'text-level-semantics','attr-object-standby':'obsolete','refsRFC5322':'references','queue-a-task:'webappapis','valid-browsing-context-name':'browsers','command-facet-accesskey':'interactive-elements','attr-input-type-number-keyword':'forms','self-closing-start-tag-state':'syntax','security-and-privacy':'webappapis','dom-embed-align':'obsolete','attr-fs-method-get-keyword':'forms','parsing-main-inhead':'syntax','location-of-the-media-resource':'video','refsRFC2646':'references','attr-link-sizes-any':'interactive-elements','refsRFC2318':'references','parser-pause-flag':'syntax','telephone-state':'forms','a-phrase-or-paragraph-with-an-alternative-graphical-representation:-charts-diagrams-graphs-maps-illustrations':'text-level-semantics','unfocusing-steps':'editing','dom-select-selectedoptions':'forms','frames':'obsolete','alphanumeric-ascii-characters':'infrastructure','suffering-from-a-pattern-mismatch':'forms','dom-document-querycommandvalue':'editing','quirks-mode-doctypes':'syntax','dom-pre-width':'obsolete','concept-link-type-sniffing':'semantics','concept-input-mutable':'forms','dom-option':'forms''dom-col-span':'tabular-data','text-field-selection':'editing','sections':'semantics','dom-navigator-registerprotocolhandler':'webappapis','document-metadata':'semantics','refsCOMPUTABLE':'references','reconstruct-the-active-formatting-elements':'syntax','common-event-behaviors':'forms','htmlulistelement':'semantics','attr-input-align':'obsolete','the-iframe-element':'text-level-semantics','the-before-head-insertion-mode':'syntax','datatransfer':'editing','dom-table-summary':'tabular-data','refsMAILTO':'references','run-canceled-activation-steps':'embedded-content-0','dom-marquee-width':'obsolete','constraint-validation':'forms','htmlparamelement':'text-level-semantics','attr-link-rev':'obsolete','the-th-element':'tabular-data','current-entry-of-the-joint-session-history':'history','attr-iframe-marginheight':'obsolete','script-data-escaped-end-tag-name-state':'syntax','reset-button-state':'forms','syntax-elements':'syntax','character-encodings':'infrastructure','attr-img-ismap':'text-level-semantics','text-hat-has-been-rendered-to-a-graphic-for-typographical-effect':'text-level-semantics','fragment-case':'syntax','refsCSSOM':'references','dom-document-fgcolor':'obsolete','intro-early-example':'introduction','attribute-value-single-quoted-state':'syntax','dom-timeranges-start':'video','linkui':'semantics','prompt-to-unload-a-document':'history','dom-object-contentwindow':'text-level-semantics','concept-output-mode':'forms','attr-col-char':'obsolete','valid-e-mail-address':'forms','attr-th-scope-auto':'tabular-data','refsCOOKIES':'references','undo:-moving-back-in-the-undo-transaction-history':'editing','attr-input-list':'forms','dom-getselection':'editing','attr-colgroup-span':'tabular-data','attr-object-archive':'obsolete','being-rendered':'the-xhtml-syntax','event-appcache-noupdate':'offline','elements':'dom','mediaevents':'video','dom-frameset-cols':'obsolete','editable':'editing','plain-text-form-data':'forms','application-cache-group':'offline','attr-marquee-truespeed':'obsolete','sandboxSubmitBlocked':'frms','text-state-and-search-state':'forms','non-negative-integers':'infrastructure','relevant-application-cache':'offline','valid-month-string':'infrastructure','syntax-attribute-name':'syntax','htmloptgroupelement':'forms','documents-in-the-dom':'dom','htmlvideoelement':'video','attr-button-type-reset':'forms','the-pattern-attribute':'forms','source-default-media':'video','attr-input-max':'forms','align-descendants':'the-xhtml-syntax','an-introduction-to-error-handling-and-strange-cases-in-the-parser':'syntax','extensibility':'infrastructure','content-type-sniffing:-text-or-binary':'infrastructure','script-s-browsing-context':'webappapis','undo-transaction-history':'editing','a-style-sheet-blocking-scripts':'semantics','event-media-volumechange':'video','change-the-encoding':'syntax','submit-body':'forms','headings-and-sections':'semantics','dom-table-cellspacing':'obsolete','handler-ondragstart':'webappapis','parse-a-month-string':'infrastructure','handler-onmousewheel':'webappapis','dom-map-images':'the-anvas-element','dom-meta-httpequiv':'semantics','handler-onabort':'webappapis','concept-week':'infrastructure','dom-media-readystate':'video','dom-fe-disabled':'forms','resources':'infrastructure','syntax-newlines':'syntax','media-resource':'video','syntax-references':'infrastructure','attr-iframe-seamless':'text-level-semantics','event-media-error':'video','valid-week-string':'infrastructure','valid-url':'infrastructure','dom-selection-selectallchildren':'editing','attr-data':'dom','before-attribute-value-state':'syntax','concept-fetch-loaded':'infrastructure','printing-steps':'webappapis','multipart-form-data':'forms','dom-link-rellist':'semantics','contenteditable':'editing','event-appcache-updateready':'offline','htmltableheadercellelement':'tabular-data','concept-column':'tabular-data','other-elements-attributes-and-apis':'obsolete','rawtext-end-tag-open-state':'syntax','dom-textarea-required':'forms','dom-htmlformcontrolscollection-nameditem':'infrastructure','unloading-documents':'history','dom-a-rev:'obsolete','application-cache':'offline','dimension-attributes':'the-canvas-element','handler-onmouseup':'webappapis','attr-embed-src':'text-level-semantics','video':'video','foster-parenting':'syntax','attr-img-name':'obsolete','dom-script-text':'semantics','affected-by-a-base-url-change':'infrastructure','index':'index','attr-media-autobuffer':'video','the-hgroup-element':'semantics','handler-window-onload':'webappapis','code-point-length':'infrastructure','events-0':'index','attr-ol-reversed':'semantics','valid-mime-type':'infrastructure','acronym':'obsolete','attr-meter-max':'forms','valid-time-string':'infrastructure','attr-contextmenu':'interactive-elements','attr-textarea-cols-value':'forms','rcdata-end-tag-name-state':'syntax','dom-input-step':'forms','context-menu-state':'interactive-elements','the-strong-element':'text-level-semantics','input-img-available':'forms','attr-fs-target':'forms','dom-uda-host':'infrastructure','script-data-escape-start-dash-state':'syntax','event-media-durationchange':video','attr-form-accept-charset':'forms','domsettabletokenlist':'infrastructure','a-key-part-of-the-content':'text-level-semantics','refsSCSU':'references','htmldivelement':'semantics','atom-namespace':'interactive-elements','media-element':'video','the-constraint-validation-api':'forms','script-data-end-tag-name-state':'syntax','dom-marquee-start':'obsolete','link-type-pingback':'interactive-elements','refsBIDI':'references','the-hr-element':'semantics','dom-input-align':'obsolete','link-type-next':'interactive-elements','dom-tr-insertcell':'tabular-data','validity-states':'forms','the-script-block-s-type':'semantics','child-browsing-context':'browsers','dom-history-back':'history','dom-media-src':'video','default-button':'forms','attr-fs-formaction':'forms','handler-onmousemove':'webappapis','dom-textarea-type':'forms','frame':'obsolete','navigating-auxiliary-browsing-contexts-in-the-dom':'browsers','syntax-attribute-value':'syntax','unit-of-related-similar-origin-browsing-contexts':'browsers','htmlmeterlement':'forms','dom-media-currentsrc':'video','dom-marquee-bgcolor':'obsolete','dom-tdth-align':'obsolete','content-type-sniffing-0':'infrastructure','dom-link-type':'semantics','doctype-name-state':'syntax','an-iframe-srcdoc-document':'text-level-semantics','refsWIN949':'references','refsCSS':'references','the-step-attribute':'forms','concept-meta-extensions':'semantics','concept-embed-type':'text-level-semantics','hyperlink-suffix':'text-level-semantics','creating-and-inserting-elements':'syntax','read-text':'history','delay-the-load-event':'syntax','dom-area-shape':'the-canvas-element','htmlappletelement':'obsolete','signed-integers':'infrastructure','htmllielement':'semantics','the-toolbar-barprop-object':'browsers','dom-a-port':'text-level-semantics','attr-img-vspace':'obsolete','windowmodal':'webappapis','dom-cva-setcustomvalidity':'forms','dom-img-align':'obsolete','attr-img-longdesc':'obsolete','number-of-days-in-month-month-of-year-year':'infrastructure','hyperlink-elements':'interactive-elements''read-xml':'history','browser-state':'offline','dom-windowtimers-settimeout':'webappapis','handler-onshow':'webappapis','dom-navigator-online':'offline','the-canvas-element':'the-canvas-element','attr-meta-http-equiv-content-type':'semantics','parsing-xhtml-documents':'the-xhtml-syntax','dom-frame-marginwidth':'obsolete','basefont':'obsolete','fetch':'infrastructure','before-doctype-system-identifier-state':'syntax','attr-style-media':'semantics','concept-select-toggle':'forms','refsRFC2806':'references','links':'interactive-elements','dom-document-getelementsbyclassname':'dom','submit-get-action':'forms','refsDOMEVENTS':'references','list-of-dragged-nodes':'editing','event-appcache-checking':'offline','refsARIA':'references','parsing-main-inframeset':'syntax','after-doctype-name-state':'syntax','attr-meta-http-equiv':'semantics','parsing-html-fragments':'syntax','htmldatalistelement':'forms','refsUTR36':'references','dom-input-stepdown':'forms','the-sub-and-sup-elements':'text-level-semantics','specially-fcusable':'editing','dom-applet-name':'obsolete','dom-title':'dom','algorithm-for-growing-downward-growing-cells':'tabular-data','dom-appcache-obsolete':'offline','the-style-element':'semantics','refsISO8601':'references','dom-img-src':'text-level-semantics','dom-undomanager-remove':'editing','refsRFC1494':'references','feed-the-parser':'the-xhtml-syntax','concept-appcache-init':'offline','origin-0':'browsers','event-appcache-obsolete':'offline','refsX690':'references','focus-management':'editing','attr-img-alt':'text-level-semantics','context-menus':'interactive-elements','dom-appcache-checking':'offline','read-ua-inline':'history','handler-oncontextmenu':'webappapis','refsXML':'references','attr-button-type-reset-state':'forms','refsXMLNS':'references','using-the-command-element-to-define-a-command':'interactive-elements','dom-media-seekable':'video','parsing-main-inheadnoscript':'syntax','element':'infrastructure','attr-iframe-marginwidth':'obsolete','concept-js-deref':'webappapis','concept-fetch-total':'nfrastructure','command-superscript':'editing','applicationcache':'offline','frames-and-framesets':'the-xhtml-syntax','concept-fs-novalidate':'forms','dom-a-type':'text-level-semantics','attr-tbody-charoff':'obsolete','attr-iframe-align':'obsolete','attr-input-type-hidden-keyword':'forms','coercing-an-html-dom-into-an-infoset':'syntax','documentEncoding':'syntax','htmlinputelement':'forms','dom-output-htmlfor':'forms','htmloptionelement':'forms','attr-input-type-file-keyword':'forms','the-base-element':'semantics','history-traversal-task-source':'webappapis','submit-mutate-action':'forms','user-interaction-task-source':'webappapis','dom-img-complete':'text-level-semantics','dom-selection-collapsetoend':'editing','dom-document-querycommandstate':'editing','dom-uda-pathname':'infrastructure','dom-command-radiogroup':'interactive-elements','entity-references':'infrastructure','concept-textarea-raw-value':'forms','handler-oncanplay':'webappapis','skip-white_space-characters':'infrastructure','concept-marquee-of':'obsolete','dropEffect-initialization':'editing','dom-document-images':'dom','activation-behavior':'embedded-content-0','attr-input-type-checkbox-keyword':'forms','parent-browsing-context':'browsers','dom-source-type':'video','transparent':'embedded-content-0','handler-onplay':'webappapis','event-handler-content-attributes':'webappapis','undo-position':'editing','linkTypes':'interactive-elements','dom-iscontenteditable':'editing','ping-from':'iana','the-html-element':'dom','attr-col-valign':'obsolete','processing-model-0':'tabular-data','processing-model-1':'webappapis','processing-model-2':'webappapis','refsMATHML':'references','concept-fs-action':'forms','attr-progress-max':'forms','link-type-archives':'interactive-elements','offsets-into-the-media-resource':'video','a-type-that-the-user-agent-knows-it-cannot-render':'video','dom-img-naturalheight':'text-level-semantics','runtime-script-errors':'webappapis','constraints':'forms','history-notes':'history','contenteditable-delete':'editing','attr-input-mutiple':'forms','the-input-element-as-a-color-well':'the-xhtml-syntax','htmlfontelement':'obsolete','dom-audio-s':'video','dom-document-charset':'dom','submit-mailto-body':'forms','meta':'semantics','dom-a-hreflang':'text-level-semantics','attr-link-type':'semantics','refsWEBWORKERS':'references','sandboxed-forms-browsing-context-flag':'text-level-semantics','refsPNG':'references','dom-media-network_no_source':'video','selector-indeterminate':'interactive-elements','the-before-html-insertion-mode':'syntax','between-doctype-public-and-system-identifiers-state':'syntax','the-hidden-attribute':'editing','dom-selection-focusoffset':'editing','handler-onerror':'webappapis','navigating-across-documents':'history','dom-input-selectedoption':'forms','attr-input-accept':'forms','dom-input-defaultvalue':'forms','attr-input-type-month-keyword':'forms','secondary-browsing-context':'browsers','undo':'editing','dom-object-vspace':'obsolete','character-reference-in-data-state':'syntax','suffering-from-being-missing':'forms,'dom-iframe-sandbox':'text-level-semantics','command-facet-disabledstate':'interactive-elements','attr-a-methods':'obsolete','dom-tr-bgcolor':'obsolete','usage-summary':'text-level-semantics','dom-media-pause':'video','dom-marquee-vspace':'obsolete','times':'infrastructure','attr-details-open':'interactive-elements','dom-input-size':'forms','dom-document-links':'dom','htmltabledatacellelement':'tabular-data','footnotes':'interactive-elements','concept-input-max-default':'forms','dom-window-menubar':'browsers','enabling-and-disabling-scripting':'webappapis','htmlbasefontelement':'obsolete','other-link-types':'interactive-elements','attr-abbr-title':'text-level-semantics','interactively-validate-the-constraints':'forms','dom-document-commands':'interactive-elements','suffering-from-an-overflow':'forms','a-group-of-images-that-form-a-single-larger-picture-with-no-links':'text-level-semantics','concept-input-type-image-coordinate':'forms','dom-applicationcache':'offline','apis-for-creating-and-navigating-browsng-contexts-by-name':'browsers','sandboxCookies':'dom','attr-area-alt':'the-canvas-element','dom-window':'browsers','concept-row-group':'tabular-data','sandboxOrigin':'browsers','represented-by-the-collection':'infrastructure','the-xml:base-attribute-xml-only':'dom','obsolete-permitted-doctype':'syntax','event-media-loadedmetadata':'video','sectioning-content-0':'dom','calling-scripts':'webappapis','htmlelement':'dom','selector-required':'interactive-elements','url-port':'infrastructure','refsRFC3864':'references','handler-window-onstorage':'webappapis','enumerated-attribute':'infrastructure','clear-the-stack-back-to-a-table-row-context':'syntax','dom-input-defaultchecked':'forms','attr-input-size':'forms','resolve-a-url':'infrastructure','dom-datatransfer-setdragimage':'editing','locked-for-reset':'forms','the-time-element-0':'the-xhtml-syntax','space-separated-tokens':'infrastructure','contenteditable-br':'editing','direction-of-playback':'video','the-details-element-0':'the-xhtml-syntax','htmlallcollectin-0':'infrastructure','dom-col-valign':'obsolete','dom-input-src':'forms','concept-textarea-dirty':'forms','await-a-stable-state':'webappapis','dom-command-ro-label':'interactive-elements','xml-documents':'dom','the-indicated-part-of-the-document':'history','attr-menu-type':'interactive-elements','other-applicable-specifications':'infrastructure','barprop':'browsers','dom-canvas-height':'the-canvas-element','dom-document-querycommandindeterm':'editing','concept-link-obtain':'semantics','semantics-0':'dom','htmlmediaelement':'video','plaintext':'obsolete','dom-command-ro-commandtype':'interactive-elements','metadata-content':'dom','dom-iframe-seamless':'text-level-semantics','parse-a-date-string':'infrastructure','dom-body-background':'obsolete','document-base-url':'infrastructure','expose-a-user-interface-to-the-user':'video','selectors':'interactive-elements','attr-object-vspace':'obsolete','security-with-canvas-elements':'the-canvas-element','invalid_character_err':'infrastructure','unexpected-markup-in-tbles':'syntax','attr-object-hspace':'obsolete','refsXSLT10':'references','script-data-end-tag-open-state':'syntax','attr-meta-charset':'semantics','attr-marquee-behavior-slide':'obsolete','dom-image-w':'text-level-semantics','attr-table-rules':'obsolete','attr-command-type-state-radio':'interactive-elements','the-selection':'editing','dom-navigator-appname':'webappapis','attr-tdth-width':'obsolete','dom-tdth-headers':'tabular-data','handler-window-onpagehide':'webappapis','htmlcanvaselement':'the-canvas-element','dom-dir':'dom','img-available':'text-level-semantics','dom-classlist':'dom','handler-window-onunload':'webappapis','url':'infrastructure','valid-date-or-time-string':'infrastructure','the-link-element':'semantics','url-fragment':'infrastructure','the-ready-states':'video','the-form-element':'forms','selection':'editing','rules-for-parsing-floating-point-number-values':'infrastructure','text':'syntax','attr-col-align':'obsolete','javascript-protocol':'webappapis','dom-frame-contentdocument':'obsolet','dom-tr-choff':'obsolete','attr-time-datetime':'text-level-semantics','the-body-element-0':'semantics','dom-media-seeking':'video','rcdata-elements':'syntax','html-documents':'dom','attr-table-cellpadding':'obsolete','pause':'webappapis','sectioning-content':'dom','the-html-element-0':'semantics','not_supported_err':'infrastructure','attr-area-shape-keyword-polygon':'the-canvas-element','application-cache-download-process':'offline','dom-document-vlinkcolor':'obsolete','attr-body-bgcolor':'obsolete','pending-parsing-blocking-script':'semantics','dom-document-clear':'obsolete','refsPSL':'references','comma-separated-tokens':'infrastructure','ready-for-editing-host-commands':'editing','dom-getelementsbyclassname':'dom','dialogs-implemented-using-separate-documents':'webappapis','attr-hx-align':'obsolete','labeled-control':'forms','dom-font-size':'obsolete','syntax':'syntax','the-figcaption-element':'semantics','effectAllowed-initialization':'editing','dom-datatransfer-addelement':'editing','recommended-readng':'introduction','selector-link':'interactive-elements','navigatoronline':'webappapis','document-s-character-encoding':'dom','dom-object-codebase':'obsolete','password-state':'forms','the-kbd-element':'text-level-semantics','view':'browsers','dom-textarea-readonly':'forms','attr-marquee-direction':'obsolete','the-head-element-0':'semantics','dom-open':'browsers','x-this':'introduction','seamless-browsing-context-flag':'text-level-semantics','dom-tabindex':'editing','attr-marquee-direction-up':'obsolete','dom-applet-archive':'obsolete','handler-ondrop':'webappapis','concept-month':'infrastructure','attr-video-poster':'video','dom-a-name':'obsolete','handler-window-onresize':'webappapis','normal-elements':'syntax','dom-img-hspace':'obsolete','link-type-prefetch':'interactive-elements','dom-a-host':'text-level-semantics','interfaces':'index','the-tfoot-element':'tabular-data','event-dragend':'editing','dom-object-name':'text-level-semantics','dom-script-type':'semantics','the-datalist-element':'forms','the-wndowproxy-object':'browsers','attr-table-bgcolor':'obsolete','aborting-a-document-load':'history','dom-meter-high':'forms','current-node':'syntax','commands':'interactive-elements','flow-content':'dom','plugin':'infrastructure','fallback-free':'dom','an-image-in-an-e-mail-or-private-document-intended-for-a-specific-person-who-is-known-to-be-able-to-view-images':'text-level-semantics','dom-tbody-deleterow':'tabular-data','dom-a-hash':'text-level-semantics','attr-meta-scheme':'obsolete','process-the-iframe-attributes':'text-level-semantics','refsBCP47':'references','dom-object-align':'obsolete','close-the-cell':'syntax','comment':'syntax','dom-div-align':'obsolete','valid-date-string':'infrastructure','concept-appcache-onlinewhitelist-wildcard':'offline','attr-canvas-width':'the-canvas-element','concept-date':'infrastructure','dom-textarea-textlength':'forms','pending-table-character-tokens':'syntax','additional-allowed-character':'syntax','abort_err':'infrastructure','handler-onsubmit':'webappapis','media-elment-load-algorithm':'video','dom-textarea-placeholder':'forms','seekUpdate':'video','event-media-seeked':'video','form-owner':'forms','refsWIN1254':'references','attribute-value-double-quoted-state':'syntax','dom-param-type':'obsolete','dom-menu-type':'interactive-elements','refsWEBSOCKET':'references','dom-appcache-uncached':'offline','concept-input-value-dirty-flag':'forms','dom-media-playbackrate':'video','dom-style-media':'semantics','dom-dl-compact':'obsolete','selector-visited':'interactive-elements','attr-input-src':'forms','rules-for-parsing-a-list-of-integers':'infrastructure','attr-tr-valign':'obsolete','attr-input-type':'forms','playing-the-media-resource':'video','dom-document-compatmode':'dom','defining-term':'text-level-semantics','the-textarea-element':'forms','attr-dim-width':'the-canvas-element','dom-datatransfer-cleardata':'editing','dom-legend-align':'obsolete','dom-tokenlist-toggle':'infrastructure','dom-dragevent-datatransfer':'editing','earliest-possible-position':'video','outline-deph':'semantics','scripting-flag':'syntax','valid-integer':'infrastructure','event-handlers':'webappapis','event-firing':'webappapis','dom-param-valuetype':'obsolete','the-hr-element-0':'the-xhtml-syntax','fonts-and-colors':'the-xhtml-syntax','immediate-user-selection':'editing','refsRFC2781':'references','dom-form-dispatchforminput':'forms','attr-object-codetype':'obsolete','noopener':'browsers','concept-appcache-master':'offline','dom-media-network_loading':'video','consume-a-character-reference':'syntax','submit-data-post':'forms','nested-browsing-contexts':'browsers','dom-optgroup-disabled':'forms','link-type-up':'interactive-elements','adjust-foreign-attributes':'syntax','dom-command-disabled':'interactive-elements','command-createlink':'editing','attr-media-autoplay':'video','htmldlistelement':'semantics','attr-progress-value':'forms','link-type-search':'interactive-elements','named-access-on-the-window-object':'browsers','dom-output-defaultvalue':'forms','handler-window-ononline':'webappapis','concept-ppcache-manifest-fallback':'offline','other-pragma-directives':'semantics','htmlformcontrolscollection':'infrastructure','concept-events-trusted':'infrastructure','center':'obsolete','refsWIN1252':'references','dom-meter-min':'forms','dom-selection-anchornode':'editing','unit-of-related-browsing-contexts':'browsers','dom-window-toolbar':'browsers','dom-area-nohref':'obsolete','handler-onloadstart':'webappapis','textFieldSelection':'editing','audio':'video','dom-document-alinkcolor':'obsolete','event-media-canplaythrough':'video','htmlcollection':'infrastructure','attr-tdth-nowrap':'obsolete','global-attributes':'dom','dom-link-target':'obsolete','the-section-element':'semantics','link-type-stylesheet':'interactive-elements','week-number-of-the-last-day':'infrastructure','attr-input-autocomplete-off-state':'forms','dom-document-scripts':'dom','attr-fs-enctype-text':'forms','autofocusing-a-form-control':'forms','nextid':'obsolete','syntax-end-tag':'syntax','dom-frameelement':'browsers','elements-in-the-dom':'om','handler-onmousedown':'webappapis','attr-link-hreflang':'semantics','dom-history-forward':'history','attr-html-version':'obsolete','editing-host':'editing','outlines':'semantics','after-attribute-value-quoted-state':'syntax','dom-tokenlist-contains':'infrastructure','attr-marquee-truespeed-true':'obsolete','dom-media-loop':'video','dom-htmlallcollection-tags':'infrastructure','attr-area-shape-poly':'the-canvas-element','hyperlink-auditing':'interactive-elements','percentages-and-dimensions':'infrastructure','dom-col-choff':'obsolete','attr-area-shape-rect':'the-canvas-element','dom-select-remove':'forms','dom-document-querycommandsupported':'editing','the-fieldset-element':'forms','dom-a-target':'text-level-semantics','dom-document-activeelement':'editing','innerhtml':'embedded-content-0','attr-xml-lang':'dom','concept-error-handled':'webappapis','attr-link-target':'obsolete','empty-cell':'tabular-data','concept-input-value-date-string':'forms','dom-form-checkvalidity':'forms','dom-navigator-registerconenthandler':'webappapis','sandboxed-origin-browsing-context-flag':'text-level-semantics','attr-button-type-button-state':'forms','dom-selection-removerange':'editing','dom-iframe-contentdocument':'text-level-semantics','attr-command-label':'interactive-elements','attr-input-pattern':'forms','how-to-read-this-specification':'introduction','dom-location-reload':'history','concept-input-list':'forms','text-cache-manifest':'iana','dom-p-align':'obsolete','attr-link-rel':'semantics','htmlformelement':'forms','dom-tdth-nowrap':'obsolete','attr-body-link':'obsolete','sample-handler-impl':'webappapis','handler-onreadystatechange':'webappapis','htmlanchorelement':'text-level-semantics','drag-and-drop-processing-model':'editing','rules-for-serializing-simple-color-values':'infrastructure','dom-hr-color':'obsolete','attr-textarea-wrap':'forms','dom-time-valueasdate':'text-level-semantics','sandboxPluginApplet':'obsolete','the-dir-attribute':'dom','the-doctype':'syntax','dom-location-hostname':'history','dom-label-contol':'forms','common-microsyntaxes':'infrastructure','dom-option-t':'forms','attr-img-border':'obsolete','concept-appcache-manifest':'offline','create-an-impotent-script':'webappapis','suffering-from-a-type-mismatch':'forms','dom-undomanagerevent-data':'editing','event-appcache-error':'offline','meta-author':'semantics','current-drag-operation':'editing','the-small-element':'text-level-semantics','custom-data-attribute':'dom','session-history-entry':'history','dom-frame-src':'obsolete','htmlembedelement':'text-level-semantics','common-input-element-apis':'forms','dom-lang':'dom','dom-style':'dom','focusing-steps':'editing','potentially-playing':'video','attr-ul-compact':'obsolete','attr-tdth-axis':'obsolete','navigatorid':'webappapis','dom-media-currenttime':'video','when-the-drag-and-drop-operation-starts-or-ends-in-another-application':'editing','url-state':'forms','mime-type':'infrastructure','valid-hash-name-reference':'infrastructure','attr-command-type-keyword-command':'interactive-elements','dom-fs-mehod':'forms','sandboxed-plugins-browsing-context-flag':'text-level-semantics','extracting-atom':'interactive-elements','command-facet-hint':'interactive-elements','script-s-global-object':'webappapis','event-input-input':'forms','selector-read-write':'interactive-elements','dom-lfe-labels':'forms','dom-datatransfer-setdata':'editing','column-header':'tabular-data','loading-the-media-resource':'video','time-state':'forms','application-xhtml-xml':'iana','dom-hashchangeevent-oldurl':'history','dom-datatransfer-types':'editing','document-level-focus-apis':'editing','the-b-element':'text-level-semantics','vaguer-moments-in-time':'infrastructure','the-css-user-agent-style-sheet-and-presentational-hints':'the-xhtml-syntax','content-models':'dom','refsUNICODE':'references','media-data':'video','command-facet-icon':'interactive-elements','concept-form-reset-control':'forms','dom-windowmodal-dialogarguments':'webappapis','dom-insertadjacenthtml':'embedded-content-0','algorithm-for-processing-row-groups':'tabular-data,'refsSVG':'references','dom-select-add':'forms','attr-fe-name':'forms','event-drop':'editing','text-level-semantics':'text-level-semantics','attr-area-shape-keyword-circ':'the-canvas-element','tag-cloud':'interactive-elements','function':'webappapis','serializability-of-script-execution':'introduction','already-started':'semantics','attr-input-type-search-keyword':'forms','handler-ondragenter':'webappapis','jump-to-a-code-entry-point':'webappapis','handler-onseeked':'webappapis','dom-embed-name':'obsolete','fully-active':'browsers','structured-clone':'infrastructure','rateUpdate':'video','internal-structured-cloning-algorithm':'infrastructure','current-playback-position':'video','attr-textarea-maxlength':'forms','dom-location-host':'history','comment-start-state':'syntax','display-types':'the-xhtml-syntax','handler-oncanplaythrough':'webappapis','dom-object-contentdocument':'text-level-semantics','caret-position':'editing','the-undomanager-interface':'editing','attr-legend-align':'obsolete','end-tags':'synax','dom-function-call':'webappapis','the-element-pointers':'syntax','source-browsing-context':'history','mime-types':'video','dom-marquee-height':'obsolete','dom-media-duration':'video','valid-lowercase-simple-color':'infrastructure','tokenizing-character-references':'syntax','dom-popstateevent-initpopstateevent':'history','dom-input-value-filename':'forms','named-character-references':'named-character-references','the-stack-of-open-elements':'syntax','paused-for-user-interaction':'video','space-character':'infrastructure','getting-media-metadata':'video','cdata-rcdata-restrictions':'syntax','dom-table-align':'obsolete','rel-icon':'interactive-elements','dom-ol-start':'semantics','base-dnd-feedback':'editing','dom-menu-label':'interactive-elements','attribute-name-state':'syntax','dom-input-maxlength':'forms','htmltablecellelement':'tabular-data','the-samp-element':'text-level-semantics','concept-input-checked-dirty':'forms','dom-tdth-cellindex':'tabular-data','grouping-content':'semantics','authors-using-tml':'iana','dom-progress-value':'forms','dom-link-disabled':'semantics','event-appcache-downloading':'offline','comment-end-state':'syntax','has-an-element-in-scope':'syntax','attr-canvas-height':'the-canvas-element','current-entry':'history','dom-htmlcollection-length':'infrastructure','link-type-tag':'interactive-elements','contenteditable-insertText':'editing','attr-object-codebase':'obsolete','dom-keygen-type':'forms','dom-location-replace':'history','htmllabelelement':'forms','attr-input-autocomplete-default-state':'forms','start-tags':'syntax','comment-end-dash-state':'syntax','content-categories':'dom','parsing-main-incolgroup':'syntax','attr-marquee-behavior-alternate':'obsolete','the-optgroup-element':'forms','submit-button-state':'forms','concept-select-option-list':'forms' }; 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: forms.html =================================================================== RCS file: /sources/public/html5/spec/forms.html,v retrieving revision 1.805 retrieving revision 1.806 diff -u -d -r1.805 -r1.806 --- forms.html 16 Feb 2010 08:26:30 -0000 1.805 +++ forms.html 16 Feb 2010 08:36:23 -0000 1.806 @@ -290,7 +290,7 @@ <a href="tabular-data.html">← 4.9 Tabular data</a> – <a href="spec.html#contents">Table of contents</a> – <a href="interactive-elements.html">4.11 Interactive elements →</a> - </nav><p>This is revision 1.3795.</p> + </nav><p>This is revision 1.3796.</p> <h3 id="forms"><span class="secno">4.10 </span>Forms</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>Forms allow unscripted client-server interaction: given a form, a @@ -492,10 +492,10 @@ <p>Once an element has been referenced using a particular name, that name will continue being available as a way to reference that element in this method, even if the element's actual ID or <code title="attr-fe-name"><a href="#attr-fe-name">name</a></code> changes, for as long as the - element remains in the <code>Document</code>.</p> + element remains in the <code><a href="infrastructure.html#document">Document</a></code>.</p> <p>If there are multiple matching items, then a - <code>NodeList</code> object containing all those elements is + <code><a href="infrastructure.html#nodelist">NodeList</a></code> object containing all those elements is returned.</p> <p>Returns null if no element with that <a href="dom.html#concept-id" title="concept-id">ID</a> or <code title="attr-fe-name"><a href="#attr-fe-name">name</a></code> could be found.</p> @@ -556,7 +556,7 @@ <hr><p>The <dfn id="dom-form-elements" title="dom-form-elements"><code>elements</code></dfn> IDL attribute must return an <code><a href="infrastructure.html#htmlformcontrolscollection">HTMLFormControlsCollection</a></code> - rooted at the <code>Document</code> node, whose filter matches <a href="#category-listed" title="category-listed">listed</a> elements whose <a href="#form-owner">form + rooted at the <code><a href="infrastructure.html#document">Document</a></code> node, whose filter matches <a href="#category-listed" title="category-listed">listed</a> elements whose <a href="#form-owner">form owner</a> is the <code><a href="#the-form-element">form</a></code> element, with the exception of <code><a href="#the-input-element">input</a></code> elements whose <code title="attr-input-type"><a href="#attr-input-type">type</a></code> attribute is in the <a href="#image-button-state" title="attr-input-type-image">Image Button</a> state, which must, for historical reasons, be excluded from this particular @@ -615,7 +615,7 @@ map</a>: return the object associated with <var title="">name</var> in that map.</p></li> </ol><p>If an element listed in the <code><a href="#the-form-element">form</a></code> element's <a href="#past-names-map">past - names map</a> is removed from the <code>Document</code>, then its + names map</a> is removed from the <code><a href="infrastructure.html#document">Document</a></code>, then its entries must be removed from the map.</p> <!-- @@ -853,9 +853,9 @@ may be specified to indicate a form control with which the caption is to be associated. If the attribute is specified, the attribute's value must be the ID of a <a href="#category-label" title="category-label">labelable - form-associated element</a> in the same <code>Document</code> as + form-associated element</a> in the same <code><a href="infrastructure.html#document">Document</a></code> as the <code><a href="#the-label-element">label</a></code> element. <span class="impl">If the attribute - is specified and there is an element in the <code>Document</code> + is specified and there is an element in the <code><a href="infrastructure.html#document">Document</a></code> whose ID is equal to the value of the <code title="attr-label-for"><a href="#attr-label-for">for</a></code> attribute, and the first such element is a <a href="#category-label" title="category-label">labelable form-associated element</a>, then that element is the <code><a href="#the-label-element">label</a></code> @@ -912,7 +912,7 @@ <dd> - <p>Returns a <code>NodeList</code> of all the <code><a href="#the-label-element">label</a></code> + <p>Returns a <code><a href="infrastructure.html#nodelist">NodeList</a></code> of all the <code><a href="#the-label-element">label</a></code> elements that the form control is associated with.</p> </dd> @@ -920,12 +920,12 @@ </dl><div class="impl"> <p><a href="#category-label" title="category-label">Labelable form-associated - elements</a> have a <code>NodeList</code> object associated with + elements</a> have a <code><a href="infrastructure.html#nodelist">NodeList</a></code> object associated with them that represents the list of <code><a href="#the-label-element">label</a></code> elements, in <a href="infrastructure.html#tree-order">tree order</a>, whose <a href="#labeled-control">labeled control</a> is the element in question. The <dfn id="dom-lfe-labels" title="dom-lfe-labels"><code>labels</code></dfn> IDL attribute of <a href="#category-label" title="category-label">labelable form-associated - elements</a>, on getting, must return that <code>NodeList</code> + elements</a>, on getting, must return that <code><a href="infrastructure.html#nodelist">NodeList</a></code> object.</p> </div><div class="example"> @@ -1027,7 +1027,7 @@ boolean <a href="#dom-cva-checkvalidatity" title="dom-cva-checkValidatity">checkValidity</a>(); void <a href="#dom-cva-setcustomvalidity" title="dom-cva-setCustomValidity">setCustomValidity</a>(in DOMString error); - readonly attribute <span>NodeList</span> <a href="#dom-lfe-labels" title="dom-lfe-labels">labels</a>; + readonly attribute <a href="infrastructure.html#nodelist">NodeList</a> <a href="#dom-lfe-labels" title="dom-lfe-labels">labels</a>; void <a href="editing.html#dom-textarea-input-select" title="dom-textarea/input-select">select</a>(); attribute unsigned long <a href="editing.html#dom-textarea-input-selectionstart" title="dom-textarea/input-selectionStart">selectionStart</a>; @@ -2172,7 +2172,7 @@ <p>When an <code><a href="#the-input-element">input</a></code> element is <a href="#concept-fe-disabled" title="concept-fe-disabled">disabled</a>, it is <i title="concept-input-immutable"><a href="#concept-input-immutable">immutable</a></i>.</p> <p>When an <code><a href="#the-input-element">input</a></code> element does not have a - <code>Document</code> node as one of its ancestors (i.e. when it is + <code><a href="infrastructure.html#document">Document</a></code> node as one of its ancestors (i.e. when it is not in the document), it is <i title="concept-input-immutable"><a href="#concept-input-immutable">immutable</a></i>.</p> <!-- XBL2 spec point --> @@ -5618,7 +5618,7 @@ boolean <a href="#dom-cva-checkvalidatity" title="dom-cva-checkValidatity">checkValidity</a>(); void <a href="#dom-cva-setcustomvalidity" title="dom-cva-setCustomValidity">setCustomValidity</a>(in DOMString error); - readonly attribute <span>NodeList</span> <a href="#dom-lfe-labels" title="dom-lfe-labels">labels</a>; + readonly attribute <a href="infrastructure.html#nodelist">NodeList</a> <a href="#dom-lfe-labels" title="dom-lfe-labels">labels</a>; };</pre> </dd> </dl><p>The <code><a href="#the-button-element">button</a></code> element <a href="the-xhtml-syntax.html#represents">represents</a> a @@ -5758,7 +5758,7 @@ boolean <a href="#dom-cva-checkvalidatity" title="dom-cva-checkValidatity">checkValidity</a>(); void <a href="#dom-cva-setcustomvalidity" title="dom-cva-setCustomValidity">setCustomValidity</a>(in DOMString error); - readonly attribute <span>NodeList</span> <a href="#dom-lfe-labels" title="dom-lfe-labels">labels</a>; + readonly attribute <a href="infrastructure.html#nodelist">NodeList</a> <a href="#dom-lfe-labels" title="dom-lfe-labels">labels</a>; };</pre> </dd> </dl><!-- Proposals for v2: @@ -5899,7 +5899,7 @@ <dt><var title="">select</var>(<var title="">name</var>)</dt> <dd> <p>Returns the item with ID or <code title="attr-option-name">name</code> <var title="">name</var> from the <a href="#concept-select-option-list" title="concept-select-option-list">list of options</a>.</p> - <p>If there are multiple matching items, then a <code>NodeList</code> object containing all those elements is returned.</p> + <p>If there are multiple matching items, then a <code><a href="infrastructure.html#nodelist">NodeList</a></code> object containing all those elements is returned.</p> <p>Returns null if no element with that ID could be found.</p> </dd> @@ -6238,10 +6238,10 @@ </div><p>The <dfn id="attr-option-label" title="attr-option-label"><code>label</code></dfn> attribute provides a label for element. The <dfn id="concept-option-label" title="concept-option-label">label</dfn> of an <code><a href="#the-option-element">option</a></code> element is the value of the <code title="attr-option-label"><a href="#attr-option-label">label</a></code> attribute, if there is one, - or the <code>textContent</code> of the element, if there isn't.</p><p>The <dfn id="attr-option-value" title="attr-option-value"><code>value</code></dfn> + or the <code><a href="infrastructure.html#textcontent">textContent</a></code> of the element, if there isn't.</p><p>The <dfn id="attr-option-value" title="attr-option-value"><code>value</code></dfn> attribute provides a value for element. The <dfn id="concept-option-value" title="concept-option-value">value</dfn> of an <code><a href="#the-option-element">option</a></code> element is the value of the <code title="attr-option-value"><a href="#attr-option-value">value</a></code> attribute, if there is one, - or the <code>textContent</code> of the element, if there isn't.</p><p>The <dfn id="attr-option-selected" title="attr-option-selected"><code>selected</code></dfn> + or the <code><a href="infrastructure.html#textcontent">textContent</a></code> of the element, if there isn't.</p><p>The <dfn id="attr-option-selected" title="attr-option-selected"><code>selected</code></dfn> attribute represents the default <a href="#concept-option-selectedness" title="concept-option-selectedness">selectedness</a> of the element.</p><div class="impl"> @@ -6302,7 +6302,7 @@ <dd> - <p>Same as <code>textContent</code>.</p> + <p>Same as <code><a href="infrastructure.html#textcontent">textContent</a></code>.</p> </dd> @@ -6329,7 +6329,7 @@ <p>The <dfn id="dom-option-value" title="dom-option-value"><code>value</code></dfn> IDL attribute, on getting, must return the value of the element's <code title="attr-option-value"><a href="#attr-option-value">value</a></code> content attribute, if it has - one, or else the value of the element's <code>textContent</code> IDL + one, or else the value of the element's <code><a href="infrastructure.html#textcontent">textContent</a></code> IDL attribute. On setting, the element's <code title="attr-option-value"><a href="#attr-option-value">value</a></code> content attribute must be set to the new value.</p> @@ -6342,8 +6342,8 @@ <p>The <dfn id="dom-option-text" title="dom-option-text"><code>text</code></dfn> IDL attribute, on getting, must return the same value as the - <code>textContent</code> IDL attribute on the element, and on - setting, must act as if the <code>textContent</code> IDL attribute + <code><a href="infrastructure.html#textcontent">textContent</a></code> IDL attribute on the element, and on + setting, must act as if the <code><a href="infrastructure.html#textcontent">textContent</a></code> IDL attribute on the element had been set to the new value.</p> <p>The <dfn id="dom-option-form" title="dom-option-form"><code>form</code></dfn> IDL @@ -6426,7 +6426,7 @@ boolean <a href="#dom-cva-checkvalidatity" title="dom-cva-checkValidatity">checkValidity</a>(); void <a href="#dom-cva-setcustomvalidity" title="dom-cva-setCustomValidity">setCustomValidity</a>(in DOMString error); - readonly attribute <span>NodeList</span> <a href="#dom-lfe-labels" title="dom-lfe-labels">labels</a>; + readonly attribute <a href="infrastructure.html#nodelist">NodeList</a> <a href="#dom-lfe-labels" title="dom-lfe-labels">labels</a>; void <a href="editing.html#dom-textarea-input-select" title="dom-textarea/input-select">select</a>(); attribute unsigned long <a href="editing.html#dom-textarea-input-selectionstart" title="dom-textarea/input-selectionStart">selectionStart</a>; @@ -6472,16 +6472,16 @@ initially set to false, and must be set to true whenever the user interacts with the control in a way that changes the <a href="#concept-textarea-raw-value" title="concept-textarea-raw-value">raw value</a>.</p> - <p>When the <code><a href="#the-textarea-element">textarea</a></code> element's <code>textContent</code> + <p>When the <code><a href="#the-textarea-element">textarea</a></code> element's <code><a href="infrastructure.html#textcontent">textContent</a></code> IDL attribute changes value, if the element's <a href="#concept-textarea-dirty" title="concept-textarea-dirty">dirty value flag</a> is false, then the element's <a href="#concept-textarea-raw-value" title="concept-textarea-raw-value">raw value</a> must be set to the value of the element's - <code>textContent</code> IDL attribute.</p> + <code><a href="infrastructure.html#textcontent">textContent</a></code> IDL attribute.</p> <p>The <a href="#concept-form-reset-control" title="concept-form-reset-control">reset algorithm</a> for <code><a href="#the-textarea-element">textarea</a></code> elements is to set the element's <a href="#concept-textarea-raw-value" title="concept-textarea-raw-value">value</a> to - the value of the element's <code>textContent</code> IDL + the value of the element's <code><a href="infrastructure.html#textcontent">textContent</a></code> IDL attribute.</p> </div><p>The <dfn id="attr-textarea-cols" title="attr-textarea-cols"><code>cols</code></dfn> @@ -6549,7 +6549,7 @@ <code><a href="#the-textarea-element">textarea</a></code> element's <a href="#concept-textarea-dirty" title="concept-textarea-dirty">dirty value flag</a>.</p><p>If the <code><a href="#the-textarea-element">textarea</a></code> element has a <a href="#maximum-allowed-value-length">maximum allowed value length</a>, then the element's children must be such that the <a href="infrastructure.html#code-point-length">code-point length</a> of the value of the element's - <code>textContent</code> IDL attribute is equal to or less than the + <code><a href="infrastructure.html#textcontent">textContent</a></code> IDL attribute is equal to or less than the element's <a href="#maximum-allowed-value-length">maximum allowed value length</a>.</p><p>The <dfn id="attr-textarea-required" title="attr-textarea-required"><code>required</code></dfn> attribute is a <a href="infrastructure.html#boolean-attribute">boolean attribute</a>. When specified, the user will be required to enter a value before submitting the form.</p><div class="impl"> @@ -6615,7 +6615,7 @@ attribute must return the value "<code title="">textarea</code>".</p> <p>The <dfn id="dom-textarea-defaultvalue" title="dom-textarea-defaultValue"><code>defaultValue</code></dfn> - IDL attribute must act like the element's <code>textContent</code> + IDL attribute must act like the element's <code><a href="infrastructure.html#textcontent">textContent</a></code> IDL attribute.</p> <p>The <dfn id="dom-textarea-value" title="dom-textarea-value"><code>value</code></dfn> @@ -6678,7 +6678,7 @@ boolean <a href="#dom-cva-checkvalidatity" title="dom-cva-checkValidatity">checkValidity</a>(); void <a href="#dom-cva-setcustomvalidity" title="dom-cva-setCustomValidity">setCustomValidity</a>(in DOMString error); - readonly attribute <span>NodeList</span> <a href="#dom-lfe-labels" title="dom-lfe-labels">labels</a>; + readonly attribute <a href="infrastructure.html#nodelist">NodeList</a> <a href="#dom-lfe-labels" title="dom-lfe-labels">labels</a>; };</pre> </dd> </dl><p>The <code><a href="#the-keygen-element">keygen</a></code> element <a href="the-xhtml-syntax.html#represents">represents</a> a key @@ -6937,7 +6937,7 @@ boolean <a href="#dom-cva-checkvalidatity" title="dom-cva-checkValidatity">checkValidity</a>(); void <a href="#dom-cva-setcustomvalidity" title="dom-cva-setCustomValidity">setCustomValidity</a>(in DOMString error); - readonly attribute <span>NodeList</span> <a href="#dom-lfe-labels" title="dom-lfe-labels">labels</a>; + readonly attribute <a href="infrastructure.html#nodelist">NodeList</a> <a href="#dom-lfe-labels" title="dom-lfe-labels">labels</a>; };</pre> </dd> </dl><p>The <code><a href="#the-output-element">output</a></code> element <a href="the-xhtml-syntax.html#represents">represents</a> the result of a @@ -6949,7 +6949,7 @@ if specified, must contain a string consisting of an <a href="infrastructure.html#unordered-set-of-unique-space-separated-tokens">unordered set of unique space-separated tokens</a>, each of which must have the value of an ID of an element in the same - <code>Document</code>.</p><p>The <code title="attr-fae-form"><a href="#attr-fae-form">form</a></code> attribute is used to + <code><a href="infrastructure.html#document">Document</a></code>.</p><p>The <code title="attr-fae-form"><a href="#attr-fae-form">form</a></code> attribute is used to explicitly associate the <code><a href="#the-output-element">output</a></code> element with its <a href="#form-owner">form owner</a>. The <code title="attr-fe-name"><a href="#attr-fe-name">name</a></code> attribute represents the element's name.</p><div class="impl"> @@ -6976,12 +6976,12 @@ <a href="#concept-output-mode" title="concept-output-mode">value mode flag</a> is in mode <i title="concept-output-mode-default">default</i>, the element's <a href="#concept-output-defaultvalue" title="concept-output-defaultValue">default value</a> must - be set to the value of the element's <code>textContent</code> IDL + be set to the value of the element's <code><a href="infrastructure.html#textcontent">textContent</a></code> IDL attribute.</p> <p>The <a href="#concept-form-reset-control" title="concept-form-reset-control">reset algorithm</a> for <code><a href="#the-output-element">output</a></code> elements is to set the - element's <code>textContent</code> IDL attribute to the value of the + element's <code><a href="infrastructure.html#textcontent">textContent</a></code> IDL attribute to the value of the element's <code title="dom-output-defaultValue"><a href="#dom-output-defaultvalue">defaultValue</a></code> IDL attribute (thus replacing the element's child nodes), and then to set the element's <a href="#concept-output-mode" title="concept-output-mode">value mode @@ -7018,7 +7018,7 @@ </dl><div class="impl"> <p>The <dfn id="dom-output-value" title="dom-output-value"><code>value</code></dfn> IDL - attribute must act like the element's <code>textContent</code> IDL + attribute must act like the element's <code><a href="infrastructure.html#textcontent">textContent</a></code> IDL attribute, except that on setting, in addition, before the child nodes are changed, the element's <a href="#concept-output-mode" title="concept-output-mode">value mode flag</a> must be set to <i title="concept-output-mode-value">value</i>.</p> @@ -7027,7 +7027,7 @@ setting, the attribute must set the element's <a href="#concept-output-defaultvalue" title="concept-output-defaultValue">default value</a>, and, if the element's <a href="#concept-output-mode" title="concept-output-mode">value mode flag</a> is in the mode <i title="concept-output-mode-default">default</i>, set the element's - <code>textContent</code> IDL attribute as well.</p> + <code><a href="infrastructure.html#textcontent">textContent</a></code> IDL attribute as well.</p> <p>The <dfn id="dom-output-type" title="dom-output-type"><code>type</code></dfn> attribute must return the string "<code title="">output</code>".</p> @@ -7078,7 +7078,7 @@ attribute float <a href="#dom-progress-max" title="dom-progress-max">max</a>; readonly attribute float <a href="#dom-progress-position" title="dom-progress-position">position</a>; readonly attribute <a href="#htmlformelement">HTMLFormElement</a> <a href="#dom-fae-form" title="dom-fae-form">form</a>; - readonly attribute <span>NodeList</span> <a href="#dom-lfe-labels" title="dom-lfe-labels">labels</a>; + readonly attribute <a href="infrastructure.html#nodelist">NodeList</a> <a href="#dom-lfe-labels" title="dom-lfe-labels">labels</a>; };</pre> </dd> </dl><p>The <code><a href="#the-progress-element">progress</a></code> element <a href="the-xhtml-syntax.html#represents">represents</a> the @@ -7217,7 +7217,7 @@ attribute float <a href="#dom-meter-high" title="dom-meter-high">high</a>; attribute float <a href="#dom-meter-optimum" title="dom-meter-optimum">optimum</a>; readonly attribute <a href="#htmlformelement">HTMLFormElement</a> <a href="#dom-fae-form" title="dom-fae-form">form</a>; - readonly attribute <span>NodeList</span> <a href="#dom-lfe-labels" title="dom-lfe-labels">labels</a>; + readonly attribute <a href="infrastructure.html#nodelist">NodeList</a> <a href="#dom-lfe-labels" title="dom-lfe-labels">labels</a>; };</pre> </dd> </dl><p>The <code><a href="#the-meter-element">meter</a></code> element <a href="the-xhtml-syntax.html#represents">represents</a> a scalar @@ -7491,7 +7491,7 @@ with its nearest ancestor <code><a href="#the-form-element">form</a></code> element<span class="impl"> (as described below)</span>, but may have a <dfn id="attr-fae-form" title="attr-fae-form"><code>form</code></dfn> attribute specified to override this.</p><p>If a <a href="#form-associated-element">form-associated element</a> has a <code title="attr-fae-form"><a href="#attr-fae-form">form</a></code> attribute specified, then its value must be the ID of a <code><a href="#the-form-element">form</a></code> element in the element's - owner <code>Document</code>.</p><div class="impl"> + owner <code><a href="infrastructure.html#document">Document</a></code>.</p><div class="impl"> <p>When a <a href="#form-associated-element">form-associated element</a> is created, its <a href="#form-owner">form owner</a> must be initialized to null (no owner).</p> @@ -7501,7 +7501,7 @@ <p>When a <a href="#form-associated-element">form-associated element</a>'s ancestor chain changes, e.g. because it or one of its ancestors was <a href="infrastructure.html#insert-an-element-into-a-document" title="insert an element into a document">inserted</a> or <a href="infrastructure.html#remove-an-element-from-a-document" title="remove an element from a document">removed</a> from a - <code>Document</code>, then the user agent must <a href="#reset-the-form-owner">reset the form + <code><a href="infrastructure.html#document">Document</a></code>, then the user agent must <a href="#reset-the-form-owner">reset the form owner</a> of that element.</p> <p>When a <a href="#form-associated-element">form-associated element</a>'s <code title="attr-fae-form"><a href="#attr-fae-form">form</a></code> attribute is added, removed, or @@ -7509,7 +7509,7 @@ owner</a> of that element.</p> <p>When a <a href="#form-associated-element">form-associated element</a> has a <code title="attr-fae-form"><a href="#attr-fae-form">form</a></code> attribute and the ID of any of the - <code><a href="#the-form-element">form</a></code> elements in the <code>Document</code> changes, + <code><a href="#the-form-element">form</a></code> elements in the <code><a href="infrastructure.html#document">Document</a></code> changes, then the user agent must <a href="#reset-the-form-owner">reset the form owner</a> of that <a href="#form-associated-element">form-associated element</a>.</p> @@ -7531,7 +7531,7 @@ content attribute, then run these substeps:</p> <ol><!-- note that this ignores the name="" attribute and is - unaffected by quirks mode (it's always case sensitive) --><li><p>If the first element in the <code>Document</code> to have + unaffected by quirks mode (it's always case sensitive) --><li><p>If the first element in the <code><a href="infrastructure.html#document">Document</a></code> to have an ID that is <a href="infrastructure.html#case-sensitive" title="case-sensitive">case-sensitively</a> equal to the element's <code title="attr-fae-form"><a href="#attr-fae-form">form</a></code> content attribute's value is a <code><a href="#the-form-element">form</a></code> element, then <a href="#concept-form-association" title="concept-form-association">associate</a> the @@ -8268,10 +8268,10 @@ run the following steps:</p> <ol><li id="sandboxSubmitBlocked"><p>If <var title="">form</var> is in - a <code>Document</code> that has no associated <a href="browsers.html#browsing-context">browsing + a <code><a href="infrastructure.html#document">Document</a></code> that has no associated <a href="browsers.html#browsing-context">browsing context</a> or whose <a href="browsers.html#browsing-context">browsing context</a> had its <a href="text-level-semantics.html#sandboxed-forms-browsing-context-flag">sandboxed forms browsing context flag</a> set when the - <code>Document</code> was created, then abort these steps without + <code><a href="infrastructure.html#document">Document</a></code> was created, then abort these steps without doing anything.</p></li> <li><p>If <var title="">form</var> is already being submitted @@ -8588,7 +8588,7 @@ </dl><p>If <var title="">method</var> is anything but GET or POST, and the <a href="browsers.html#origin">origin</a> of <var title="">action</var> is not the <a href="browsers.html#same-origin">same origin</a> as that of the <code><a href="#the-form-element">form</a></code> - element's <code>Document</code>, then abort these steps.</p> + element's <code><a href="infrastructure.html#document">Document</a></code>, then abort these steps.</p> <!-- CORS, one day --> <p>Otherwise, <a href="history.html#navigate">navigate</a> <var title="">target @@ -8608,7 +8608,7 @@ <p>If the <a href="browsers.html#origin">origin</a> of <var title="">action</var> is not the <a href="browsers.html#same-origin">same origin</a> as that of the - <code><a href="#the-form-element">form</a></code> element's <code>Document</code>, then abort + <code><a href="#the-form-element">form</a></code> element's <code><a href="infrastructure.html#document">Document</a></code>, then abort these steps.</p> <!-- CORS, one day --> <p>Otherwise, <a href="history.html#navigate">navigate</a> <var title="">target Index: interactive-elements.html =================================================================== RCS file: /sources/public/html5/spec/interactive-elements.html,v retrieving revision 1.803 retrieving revision 1.804 diff -u -d -r1.803 -r1.804 --- interactive-elements.html 16 Feb 2010 08:26:31 -0000 1.803 +++ interactive-elements.html 16 Feb 2010 08:36:24 -0000 1.804 @@ -290,7 +290,7 @@ <a href="forms.html">← 4.10 Forms</a> – <a href="spec.html#contents">Table of contents</a> – <a href="browsers.html">5 Loading Web pages →</a> - </nav><p>This is revision 1.3795.</p> + </nav><p>This is revision 1.3796.</p> <h3 id="interactive-elements"><span class="secno">4.11 </span>Interactive elements</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><h4 id="the-details-element"><span class="secno">4.11.1 </span>The <dfn><code>details</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/93">ISSUE-93</a> (details) blocks progress to Last Call</span></p><dl class="element"><dt>Categories</dt> @@ -3292,7 +3292,7 @@ <dt>An <code><a href="semantics.html#the-hr-element">hr</a></code> element</dt> <dt>An <code><a href="forms.html#the-option-element">option</a></code> element that has a <code title="attr-option-value"><a href="forms.html#attr-option-value">value</a></code> attribute set to the empty string, and has a <code title="attr-option-disabled"><a href="forms.html#attr-option-disabled">disabled</a></code> attribute, and whose - <code>textContent</code> consists of a string of one or more + <code><a href="infrastructure.html#textcontent">textContent</a></code> consists of a string of one or more hyphens (U+002D HYPHEN-MINUS)</dt> <dd>Append a separator to the menu.</dd> @@ -3649,14 +3649,14 @@ </div><hr><dl class="domintro"><dt><var title="">document</var> . <code title="dom-document-commands"><a href="#dom-document-commands">commands</a></code></dt> <dd> <p>Returns an <code><a href="infrastructure.html#htmlcollection">HTMLCollection</a></code> of the elements in the - <code>Document</code> that define commands and have IDs.</p> + <code><a href="infrastructure.html#document">Document</a></code> that define commands and have IDs.</p> </dd> </dl><div class="impl"> <p>The <dfn id="dom-document-commands" title="dom-document-commands"><code>commands</code></dfn> attribute of the document's <code><a href="dom.html#htmldocument">HTMLDocument</a></code> interface must return an - <code><a href="infrastructure.html#htmlcollection">HTMLCollection</a></code> rooted at the <code>Document</code> + <code><a href="infrastructure.html#htmlcollection">HTMLCollection</a></code> rooted at the <code><a href="infrastructure.html#document">Document</a></code> node, whose filter matches only elements that <a href="#concept-command" title="concept-command">define commands</a> and have <a href="#command-facet-id" title="command-facet-ID">IDs</a>.</p> </div><hr><p>User agents may expose the <a href="#concept-command" title="concept-command">commands</a> whose <a href="#command-facet-hiddenstate" title="command-facet-HiddenState">Hidden State</a> facet is false @@ -3677,7 +3677,7 @@ command is an <a href="#anonymous-command">anonymous command</a>.</p> <p>The <a href="#command-facet-label" title="command-facet-Label">Label</a> of the command - is the string given by the element's <code>textContent</code> IDL + is the string given by the element's <code><a href="infrastructure.html#textcontent">textContent</a></code> IDL attribute.</p> <p>The <a href="#command-facet-hint" title="command-facet-Hint">Hint</a> of the command @@ -3747,7 +3747,7 @@ <p>Otherwise, the <a href="#command-facet-type" title="command-facet-Type">Type</a> is "radio" or "checkbox". If the element is a <a href="forms.html#labeled-control">labeled - control</a>, the <code>textContent</code> of the first + control</a>, the <code><a href="infrastructure.html#textcontent">textContent</a></code> of the first <code><a href="forms.html#the-label-element">label</a></code> element in <a href="infrastructure.html#tree-order">tree order</a> whose <a href="forms.html#labeled-control">labeled control</a> is the element in question is the <a href="#command-facet-label" title="command-facet-Label">Label</a> (in DOM terms, this is the string given by <code><var title="">element</var>.labels[0].textContent</code>). Otherwise, @@ -3813,7 +3813,7 @@ <p>The <a href="#command-facet-label" title="command-facet-Label">Label</a> of the command is the value of the <code><a href="forms.html#the-option-element">option</a></code> element's <code title="attr-option-label"><a href="forms.html#attr-option-label">label</a></code> attribute, if there is one, or the value of the <code><a href="forms.html#the-option-element">option</a></code> element's - <code>textContent</code> IDL attribute if there isn't.</p> + <code><a href="infrastructure.html#textcontent">textContent</a></code> IDL attribute if there isn't.</p> <p>The <a href="#command-facet-hint" title="command-facet-Hint">Hint</a> of the command is the string given by the element's <code title="attr-title"><a href="dom.html#the-title-attribute">title</a></code> attribute, if any, and the empty @@ -3920,7 +3920,7 @@ command is an <a href="#anonymous-command">anonymous command</a>.</p> <p>The <a href="#command-facet-label" title="command-facet-Label">Label</a> of the command - is the string given by the element's <code>textContent</code> IDL + is the string given by the element's <code><a href="infrastructure.html#textcontent">textContent</a></code> IDL attribute.</p> <p>The <a href="#command-facet-hint" title="command-facet-Hint">Hint</a> of the command @@ -3961,7 +3961,7 @@ command is an <a href="#anonymous-command">anonymous command</a>.</p> <p>The <a href="#command-facet-label" title="command-facet-Label">Label</a> of the command - is the string given by the element's <code>textContent</code> IDL + is the string given by the element's <code><a href="infrastructure.html#textcontent">textContent</a></code> IDL attribute.</p> <p>The <a href="#command-facet-hint" title="command-facet-Hint">Hint</a> of the command @@ -4007,12 +4007,12 @@ <p>The <a href="#command-facet-label" title="command-facet-Label">Label</a> of the command depends on the element. If the element is a <a href="forms.html#labeled-control">labeled - control</a>, the <code>textContent</code> of the first + control</a>, the <code><a href="infrastructure.html#textcontent">textContent</a></code> of the first <code><a href="forms.html#the-label-element">label</a></code> element in <a href="infrastructure.html#tree-order">tree order</a> whose <a href="forms.html#labeled-control">labeled control</a> is the element in question is the <a href="#command-facet-label" title="command-facet-Label">Label</a> (in DOM terms, this is the string given by <code><var title="">element</var>.labels[0].textContent</code>). Otherwise, the <a href="#command-facet-label" title="command-facet-Label">Label</a> is the - <code>textContent</code> of the element itself.</p> + <code><a href="infrastructure.html#textcontent">textContent</a></code> of the element itself.</p> <p>The <a href="#command-facet-hint" title="command-facet-Hint">Hint</a> of the command is the value of the <code title="attr-title"><a href="dom.html#the-title-attribute">title</a></code> attribute @@ -4159,7 +4159,7 @@ is in.</p> <p>The navigation must be done with the <a href="browsers.html#browsing-context">browsing - context</a> that contains the <code>Document</code> object with + context</a> that contains the <code><a href="infrastructure.html#document">Document</a></code> object with which the hyperlink's element in question is associated as the <a href="history.html#source-browsing-context">source browsing context</a>.</p> @@ -4192,13 +4192,13 @@ POST method, with an entity body with the <a href="infrastructure.html#mime-type">MIME type</a> <code><a href="iana.html#text-ping">text/ping</a></code> consisting of the four-character string "<code title="">PING</code>", from the <a href="browsers.html#origin">origin</a> of the - <code>Document</code> containing the <a href="#hyperlink">hyperlink</a>. <!-- + <code><a href="infrastructure.html#document">Document</a></code> containing the <a href="#hyperlink">hyperlink</a>. <!-- not http-origin privacy sensitive --> All relevant cookie and HTTP authentication headers must be included in the request. Which other headers are required depends on the URLs involved.</p> <dl class="switch"><dt>If both the <a href="dom.html#the-document-s-address" title="the document's address">address</a> - of the <code>Document</code> object containing the hyperlink being + of the <code><a href="infrastructure.html#document">Document</a></code> object containing the hyperlink being audited and the ping URL have the <a href="browsers.html#same-origin">same origin</a></dt> <dd>The request must include a <code title="http-ping-from"><a href="iana.html#ping-from">Ping-From</a></code> HTTP header with, as its @@ -5587,19 +5587,19 @@ <h4 id="atom"><span class="secno">4.15.1 </span>Atom</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p> - <p>Given a <code>Document</code> <var title="">source</var>, a user + <p>Given a <code><a href="infrastructure.html#document">Document</a></code> <var title="">source</var>, a user agent may run the following algorithm to <dfn id="extracting-atom" title="extracting Atom">extract an Atom feed</dfn>. This is not the only algorithm that can be used for this purpose; for instance, a user agent might instead use the hAtom algorithm. <a href="references.html#refsHATOM">[HATOM]</a></p> - <ol><li><p>If the <code>Document</code> <var title="">source</var> does + <ol><li><p>If the <code><a href="infrastructure.html#document">Document</a></code> <var title="">source</var> does not contain any <code><a href="semantics.html#the-article-element">article</a></code> elements, then return nothing and abort these steps. This algorithm can only be used with documents that contain distinct articles.</p> </li><li><p>Let <var title="">R</var> be an empty <a href="dom.html#xml-documents" title="XML - documents">XML</a> <code>Document</code> object whose <a href="dom.html#the-document-s-address" title="the document's address">address</a> is user-agent + documents">XML</a> <code><a href="infrastructure.html#document">Document</a></code> object whose <a href="dom.html#the-document-s-address" title="the document's address">address</a> is user-agent defined.</p></li> <li><p>Append a <code title="">feed</code> element in the @@ -5696,7 +5696,7 @@ <dd> <p>Let <var title="">heading text</var> be the - <code>textContent</code> of <a href="dom.html#the-title-element">the <code>title</code> + <code><a href="infrastructure.html#textcontent">textContent</a></code> of <a href="dom.html#the-title-element">the <code>title</code> element</a>, if there is one, or the empty string otherwise.</p> @@ -5714,10 +5714,10 @@ of <var title="">heading</var>, sorted first by descending <a href="semantics.html#rank">rank</a> and then in <a href="infrastructure.html#tree-order">tree order</a> (so <code><a href="semantics.html#the-h1-h2-h3-h4-h5-and-h6-elements">h1</a></code>s first, then <code><a href="semantics.html#the-h1-h2-h3-h4-h5-and-h6-elements">h2</a></code>s, etc, with each - group in the order they appear in the document). Then, let <var title="">heading text</var> be the <code>textContent</code> of + group in the order they appear in the document). Then, let <var title="">heading text</var> be the <code><a href="infrastructure.html#textcontent">textContent</a></code> of the first entry in <var title="">headings list</var>, and if there are multiple entries, let <var title="">subheading - text</var> be the <code>textContent</code> of the second entry + text</var> be the <code><a href="infrastructure.html#textcontent">textContent</a></code> of the second entry in <var title="">headings list</var>.</p> </dd> @@ -5727,7 +5727,7 @@ <dd> <p>Let <var title="">heading text</var> be the - <code>textContent</code> of <var title="">heading</var>.</p> + <code><a href="infrastructure.html#textcontent">textContent</a></code> of <var title="">heading</var>.</p> </dd> @@ -5795,7 +5795,7 @@ order</a> (so <code><a href="semantics.html#the-h1-h2-h3-h4-h5-and-h6-elements">h1</a></code>s first, then <code><a href="semantics.html#the-h1-h2-h3-h4-h5-and-h6-elements">h2</a></code>s, etc, with each group in the order they appear in the document). Then, let <var title="">heading - text</var> be the <code>textContent</code> of the first entry + text</var> be the <code><a href="infrastructure.html#textcontent">textContent</a></code> of the first entry in <var title="">headings list</var>.</p> </dd> @@ -5805,7 +5805,7 @@ <dd> <p>Let <var title="">heading text</var> be the - <code>textContent</code> of <var title="">heading</var>.</p> + <code><a href="infrastructure.html#textcontent">textContent</a></code> of <var title="">heading</var>.</p> </dd> @@ -6008,7 +6008,7 @@ <p>If <var title="">global update date</var> has no value, then let it have a value that is a <a href="infrastructure.html#valid-global-date-and-time-string">valid global date and time string</a> representing the <a href="infrastructure.html#concept-datetime" title="concept-datetime">global date and time</a> of the date - and time of the <code>Document</code>'s source file's last + and time of the <code><a href="infrastructure.html#document">Document</a></code>'s source file's last modification, if it is known, or else of the moment that this algorithm was invoked.</p> Index: editing.html =================================================================== RCS file: /sources/public/html5/spec/editing.html,v retrieving revision 1.809 retrieving revision 1.810 diff -u -d -r1.809 -r1.810 --- editing.html 16 Feb 2010 08:26:30 -0000 1.809 +++ editing.html 16 Feb 2010 08:36:23 -0000 1.810 @@ -290,7 +290,7 @@ <a href="webappapis.html">← 6 Web application APIs</a> – <a href="spec.html#contents">Table of contents</a> – <a href="syntax.html">8 The HTML syntax →</a> - </nav><p>This is revision 1.3795.</p> + </nav><p>This is revision 1.3796.</p> <h2 id="editing"><span class="secno">7 </span><dfn>User interaction</dfn></h2><p>This section describes various features that allow authors to @@ -428,7 +428,7 @@ document must be targeted at <a href="dom.html#the-body-element">the body element</a>.</p> <p>User agents may track focus for each <a href="browsers.html#browsing-context">browsing - context</a> or <code>Document</code> individually, or may support + context</a> or <code><a href="infrastructure.html#document">Document</a></code> individually, or may support only one focused element per <a href="browsers.html#top-level-browsing-context">top-level browsing context</a> — user agents should follow platform conventions in this regard.</p> @@ -634,7 +634,7 @@ steps</a> for the affected element only.</p> <p class="example">For example, this might happen because the - element is removed from its <code>Document</code>, or has a <code title="attr-hidden"><a href="#the-hidden-attribute">hidden</a></code> attribute added. It would also + element is removed from its <code><a href="infrastructure.html#document">Document</a></code>, or has a <code title="attr-hidden"><a href="#the-hidden-attribute">hidden</a></code> attribute added. It would also happen to an <code><a href="forms.html#the-input-element">input</a></code> element when the element gets <a href="forms.html#concept-fe-disabled" title="concept-fe-disabled">disabled</a>.</p> </div><h4 id="document-level-focus-apis"><span class="secno">7.4.3 </span>Document-level focus APIs</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class="domintro"><dt><var title="">document</var> . <code title="dom-document-activeElement"><a href="#dom-document-activeelement">activeElement</a></code></dt> @@ -674,7 +674,7 @@ <p>The <dfn id="dom-document-activeelement" title="dom-document-activeElement"><code>activeElement</code></dfn> attribute on <code><a href="dom.html#htmldocument">HTMLDocument</a></code> objects must return the element in the document that is focused. If no element in the - <code>Document</code> is focused, this must return <a href="dom.html#the-body-element">the body + <code><a href="infrastructure.html#document">Document</a></code> is focused, this must return <a href="dom.html#the-body-element">the body element</a>.</p> <p>The <dfn id="dom-document-hasfocus" title="dom-document-hasFocus"><code>hasFocus()</code></dfn> method @@ -816,7 +816,7 @@ </ol><p>Once a user agent has selected and assigned an access key for an element, the user agent should not change the element's <a href="#assigned-access-key">assigned access key</a> unless the <code title="attr-accesskey"><a href="#the-accesskey-attribute">accesskey</a></code> content attribute is changed - or the element is moved to another <code>Document</code>.</p> + or the element is moved to another <code><a href="infrastructure.html#document">Document</a></code>.</p> <p>When the user presses the key combination corresponding to the <a href="#assigned-access-key">assigned access key</a> for an element, if the element @@ -1179,7 +1179,7 @@ <p>The <dfn id="dom-selection-collapse" title="dom-selection-collapse"><code>collapse(<var title="">parentNode</var>, <var title="">offset</var>)</code></dfn> method must raise a <code><a href="infrastructure.html#wrong_document_err">WRONG_DOCUMENT_ERR</a></code> DOM exception if - <var title="">parentNode</var>'s <code>Document</code> is not the + <var title="">parentNode</var>'s <code><a href="infrastructure.html#document">Document</a></code> is not the <code><a href="dom.html#htmldocument">HTMLDocument</a></code> object with which the <code><a href="#selection-0">Selection</a></code> object is associated. Otherwise it is, and the method must remove all the ranges in the <code><a href="#selection-0">Selection</a></code> @@ -1375,7 +1375,7 @@ elements">HTML element</a> with the <code title="attr-contenteditable"><a href="#attr-contenteditable">contenteditable</a></code> attribute set to a state other than the inherit state has its attribute set to the true state, or if it and its ancestors all have their <code title="attr-contenteditable"><a href="#attr-contenteditable">contenteditable</a></code> attribute set to - the inherit state but the <code>Document</code> has <code title="dom-document-designMode"><a href="#designMode">designMode</a></code> enabled, then the + the inherit state but the <code><a href="infrastructure.html#document">Document</a></code> has <code title="dom-document-designMode"><a href="#designMode">designMode</a></code> enabled, then the UA must treat the element as <dfn id="editable">editable</dfn> (as described below).</p> @@ -1386,7 +1386,7 @@ elements">HTML element</a> with the <code title="attr-contenteditable"><a href="#attr-contenteditable">contenteditable</a></code> attribute set to a state other than the inherit state has its attribute set to the false state, or all its ancestors have their <code title="attr-contenteditable"><a href="#attr-contenteditable">contenteditable</a></code> attribute set to - the inherit state and the <code>Document</code> itself has <code title="dom-document-designMode"><a href="#designMode">designMode</a></code> disabled; either + the inherit state and the <code><a href="infrastructure.html#document">Document</a></code> itself has <code title="dom-document-designMode"><a href="#designMode">designMode</a></code> disabled; either way, the element is not editable.</p> </div><dl class="domintro"><dt><var title="">element</var> . <code title="dom-contentEditable"><a href="#dom-contenteditable">contentEditable</a></code> [ = <var title="">value</var> ]</dt> @@ -1631,7 +1631,7 @@ <p>User agents may add <a href="#dom-changes">DOM changes</a> entries to the <a href="#undo-transaction-history">undo transaction history</a> of the <a href="#editing-host">editing - host</a>'s <code>Document</code> object each time an action is + host</a>'s <code><a href="infrastructure.html#document">Document</a></code> object each time an action is triggered.</p> <p>All of the actions defined above, whether triggered by the user @@ -1657,7 +1657,7 @@ </dl><div class="impl"> <p>The <code title="dom-document-designMode"><a href="#designMode">designMode</a></code> IDL - attribute on the <code>Document</code> object takes two values, + attribute on the <code><a href="infrastructure.html#document">Document</a></code> object takes two values, "<code title="">on</code>" and "<code title="">off</code>". When it is set, the new value must be compared in an <a href="infrastructure.html#ascii-case-insensitive">ASCII case-insensitive</a> manner to these two values. If it matches @@ -2229,7 +2229,7 @@ <p>The <dfn id="dom-datatransfer-setdragimage" title="dom-DataTransfer-setDragImage"><code>setDragImage(<var title="">element</var>, <var title="">x</var>, <var title="">y</var>)</code></dfn> method sets which element to use <a href="#base-dnd-feedback">to generate the drag feedback</a>. The <var title="">element</var> argument can be any - <code>Element</code>; if it is an <code><a href="text-level-semantics.html#the-img-element">img</a></code> element, then the + <code><a href="infrastructure.html#element">Element</a></code>; if it is an <code><a href="text-level-semantics.html#the-img-element">img</a></code> element, then the user agent should use the element's image (at its intrinsic size) to generate the feedback, otherwise the user agent should base the feedback on the given element (but the exact mechanism for doing so @@ -2669,7 +2669,7 @@ regardless of whether that event was canceled or not. (If <a href="dom.html#the-body-element">the body element</a> is null, then the <a href="#current-target-element">current target element</a> would be set to null too in this case, - it wouldn't be set to the <code>Document</code> + it wouldn't be set to the <code><a href="infrastructure.html#document">Document</a></code> object.)</p></dd> </dl></dd> @@ -2878,7 +2878,7 @@ document</h5><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p> <p>The model described above is independent of which - <code>Document</code> object the nodes involved are from; the events + <code><a href="infrastructure.html#document">Document</a></code> object the nodes involved are from; the events must be fired as described above and the rest of the processing model must be followed as described above, irrespective of how many documents are involved in the operation.</p> @@ -3084,7 +3084,7 @@ history</a> consists of batches of one or more of the following:</p> - <ul><li>Changes to the content attributes of an <code>Element</code> + <ul><li>Changes to the content attributes of an <code><a href="infrastructure.html#element">Element</a></code> node.</li> <li>Changes to the DOM hierarchy of nodes that are descendants of @@ -3619,7 +3619,7 @@ deleted</a>.</p></li> <li><p>Invoke the <a href="syntax.html#html-fragment-parsing-algorithm">HTML fragment parsing algorithm</a> with an arbitrary orphan <code><a href="semantics.html#the-body-element-0">body</a></code> element owned by the - same <code>Document</code> as the <i><a href="the-canvas-element.html#context">context</a></i> element and with + same <code><a href="infrastructure.html#document">Document</a></code> as the <i><a href="the-canvas-element.html#context">context</a></i> element and with the <var title="">value</var> argument as <i><a href="forms.html#the-input-element">input</a></i>.</p></li> <li><p>Insert the nodes returned by the previous step into the document at the location of the caret, firing any mutation events Index: video.html =================================================================== RCS file: /sources/public/html5/spec/video.html,v retrieving revision 1.680 retrieving revision 1.681 diff -u -d -r1.680 -r1.681 --- video.html 16 Feb 2010 08:26:32 -0000 1.680 +++ video.html 16 Feb 2010 08:36:26 -0000 1.681 @@ -290,7 +290,7 @@ <a href="text-level-semantics.html">← 4.6 Text-level semantics</a> – <a href="spec.html#contents">Table of contents</a> – <a href="the-canvas-element.html">4.8.10 The canvas element →</a> - </nav><p>This is revision 1.3795.</p> + </nav><p>This is revision 1.3796.</p> <h4 id="video"><span class="secno">4.8.6 </span>The <dfn><code>video</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/9">ISSUE-9</a> (video-accessibility) blocks progress to Last Call</span></p><dl class="element"><dt>Categories</dt> @@ -347,7 +347,7 @@ is set, its value must be <a href="infrastructure.html#resolve-a-url" title="resolve a url">resolved</a> relative to the element, and if that is successful, the resulting <a href="infrastructure.html#absolute-url">absolute URL</a> must be <a href="infrastructure.html#fetch" title="fetch">fetched</a>, from the element's - <code>Document</code>'s <a href="browsers.html#origin">origin</a>; this must <a href="syntax.html#delay-the-load-event">delay + <code><a href="infrastructure.html#document">Document</a></code>'s <a href="browsers.html#origin">origin</a>; this must <a href="syntax.html#delay-the-load-event">delay the load event</a> of the element's document. The <dfn id="poster-frame">poster frame</dfn> is then the image obtained from that resource, if any.</span></p><!-- thus it is unaffected by changes to the base @@ -1491,7 +1491,7 @@ <p>Begin to <a href="infrastructure.html#fetch">fetch</a> the <var title="">current media resource</var>, from the <a href="#media-element">media element</a>'s - <code>Document</code>'s <a href="browsers.html#origin">origin</a>.</p> <!-- not + <code><a href="infrastructure.html#document">Document</a></code>'s <a href="browsers.html#origin">origin</a>.</p> <!-- not http-origin privacy sensitive (looking forward to CORS here) --> <p>Every 350ms (±200ms) or for every byte received, whichever @@ -2614,8 +2614,8 @@ </ol></li> </ol><hr><p id="media-playback">When a <a href="#media-element">media element</a> is - <a href="#potentially-playing">potentially playing</a> and its <code>Document</code> is a - <a href="browsers.html#fully-active">fully active</a> <code>Document</code>, its <a href="#current-playback-position">current + <a href="#potentially-playing">potentially playing</a> and its <code><a href="infrastructure.html#document">Document</a></code> is a + <a href="browsers.html#fully-active">fully active</a> <code><a href="infrastructure.html#document">Document</a></code>, its <a href="#current-playback-position">current playback position</a> must increase monotonically at <code title="dom-media-playbackRate"><a href="#dom-media-playbackrate">playbackRate</a></code> units of media time per unit time of wall clock time.</p> @@ -2742,7 +2742,7 @@ agent must act as if the <code title="dom-media-pause"><a href="#dom-media-pause">pause()</a></code> method had been invoked.</p> <p class="note">If the <a href="#media-element">media element</a>'s - <code>Document</code> stops being a <a href="browsers.html#fully-active">fully active</a> + <code><a href="infrastructure.html#document">Document</a></code> stops being a <a href="browsers.html#fully-active">fully active</a> document, then the playback will <a href="#media-playback">stop</a> until the document is active again.</p> @@ -3027,97 +3027,97 @@ </th><th>Preconditions </th></tr></thead><tbody><tr><td><dfn id="event-media-loadstart" title="event-media-loadstart"><code>loadstart</code></dfn> - </td><td><code>Event</code> + </td><td><code><a href="infrastructure.html#event">Event</a></code> </td><td>The user agent begins looking for <a href="#media-data">media data</a>, as part of the <a href="#concept-media-load-algorithm" title="concept-media-load-algorithm">resource selection algorithm</a>. </td><td><code title="dom-media-networkState"><a href="#dom-media-networkstate">networkState</a></code> equals <code title="dom-media-NETWORK_LOADING"><a href="#dom-media-network_loading">NETWORK_LOADING</a></code> </td></tr><tr><td><dfn id="event-media-progress" title="event-media-progress"><code>progress</code></dfn> - </td><td><code>Event</code> + </td><td><code><a href="infrastructure.html#event">Event</a></code> </td><td>The user agent is fetching <a href="#media-data">media data</a>. </td><td><code title="dom-media-networkState"><a href="#dom-media-networkstate">networkState</a></code> equals <code title="dom-media-NETWORK_LOADING"><a href="#dom-media-network_loading">NETWORK_LOADING</a></code> </td></tr><tr><td><dfn id="event-media-suspend" title="event-media-suspend"><code>suspend</code></dfn> - </td><td><code>Event</code> + </td><td><code><a href="infrastructure.html#event">Event</a></code> </td><td>The user agent is intentionally not currently fetching <a href="#media-data">media data</a>, but does not have the entire <a href="#media-resource">media resource</a> downloaded. </td><td><code title="dom-media-networkState"><a href="#dom-media-networkstate">networkState</a></code> equals <code title="dom-media-NETWORK_IDLE"><a href="#dom-media-network_idle">NETWORK_IDLE</a></code> </td></tr><tr><td><dfn id="event-media-abort" title="event-media-abort"><code>abort</code></dfn> - </td><td><code>Event</code> + </td><td><code><a href="infrastructure.html#event">Event</a></code> </td><td>The user agent stops fetching the <a href="#media-data">media data</a> before it is completely downloaded, but not due to an error. </td><td><code title="dom-media-error"><a href="#dom-media-error">error</a></code> is an object with the code <code title="dom-MediaError-MEDIA_ERR_ABORTED"><a href="#dom-mediaerror-media_err_aborted">MEDIA_ERR_ABORTED</a></code>. <code title="dom-media-networkState"><a href="#dom-media-networkstate">networkState</a></code> equals either <code title="dom-media-NETWORK_EMPTY"><a href="#dom-media-network_empty">NETWORK_EMPTY</a></code> or <code title="dom-media-NETWORK_IDLE"><a href="#dom-media-network_idle">NETWORK_IDLE</a></code>, depending on when the download was aborted. </td></tr><tr><td><dfn id="event-media-error" title="event-media-error"><code>error</code></dfn> - </td><td><code>Event</code> + </td><td><code><a href="infrastructure.html#event">Event</a></code> </td><td>An error occurs while fetching the <a href="#media-data">media data</a>. </td><td><code title="dom-media-error"><a href="#dom-media-error">error</a></code> is an object with the code <code title="dom-MediaError-MEDIA_ERR_NETWORK"><a href="#dom-mediaerror-media_err_network">MEDIA_ERR_NETWORK</a></code> or higher. <code title="dom-media-networkState"><a href="#dom-media-networkstate">networkState</a></code> equals either <code title="dom-media-NETWORK_EMPTY"><a href="#dom-media-network_empty">NETWORK_EMPTY</a></code> or <code title="dom-media-NETWORK_IDLE"><a href="#dom-media-network_idle">NETWORK_IDLE</a></code>, depending on when the download was aborted. </td></tr><tr><td><dfn id="event-media-emptied" title="event-media-emptied"><code>emptied</code></dfn> - </td><td><code>Event</code> + </td><td><code><a href="infrastructure.html#event">Event</a></code> </td><td>A <a href="#media-element">media element</a> whose <code title="dom-media-networkState"><a href="#dom-media-networkstate">networkState</a></code> was previously not in the <code title="dom-media-NETWORK_EMPTY"><a href="#dom-media-network_empty">NETWORK_EMPTY</a></code> state has just switched to that state (either because of a fatal error during load that's about to be reported, or because the <code title="dom-media-load"><a href="#dom-media-load">load()</a></code> method was invoked while the <a href="#concept-media-load-algorithm" title="concept-media-load-algorithm">resource selection algorithm</a> was already running, in which case it is fired synchronously during the <code title="dom-media-load"><a href="#dom-media-load">load()</a></code> method call). </td><td><code title="dom-media-networkState"><a href="#dom-media-networkstate">networkState</a></code> is <code title="dom-media-NETWORK_EMPTY"><a href="#dom-media-network_empty">NETWORK_EMPTY</a></code>; all the IDL attributes are in their initial states. </td></tr><tr><td><dfn id="event-media-stalled" title="event-media-stalled"><code>stalled</code></dfn> - </td><td><code>Event</code> + </td><td><code><a href="infrastructure.html#event">Event</a></code> </td><td>The user agent is trying to fetch <a href="#media-data">media data</a>, but data is unexpectedly not forthcoming. </td><td><code title="dom-media-networkState"><a href="#dom-media-networkstate">networkState</a></code> is <code title="dom-media-NETWORK_LOADING"><a href="#dom-media-network_loading">NETWORK_LOADING</a></code>. </td></tr></tbody><tbody><tr><td><dfn id="event-media-play" title="event-media-play"><code>play</code></dfn> - </td><td><code>Event</code> + </td><td><code><a href="infrastructure.html#event">Event</a></code> </td><td>Playback has begun. Fired after the <code title="dom-media-play"><a href="#dom-media-play">play()</a></code> method has returned. </td><td><code title="dom-media-paused"><a href="#dom-media-paused">paused</a></code> is newly false. </td></tr><tr><td><dfn id="event-media-pause" title="event-media-pause"><code>pause</code></dfn> - </td><td><code>Event</code> + </td><td><code><a href="infrastructure.html#event">Event</a></code> </td><td>Playback has been paused. Fired after the <code title="dom-media-pause"><a href="#dom-media-pause">pause</a></code> method has returned. </td><td><code title="dom-media-paused"><a href="#dom-media-paused">paused</a></code> is newly true. </td></tr></tbody><tbody><tr><td><dfn id="event-media-loadedmetadata" title="event-media-loadedmetadata"><code>loadedmetadata</code></dfn> - </td><td><code>Event</code> + </td><td><code><a href="infrastructure.html#event">Event</a></code> </td><td>The user agent has just determined the duration and dimensions of the <a href="#media-resource">media resource</a>. </td><td><code title="dom-media-readyState"><a href="#dom-media-readystate">readyState</a></code> is newly equal to <code title="dom-media-HAVE_METADATA"><a href="#dom-media-have_metadata">HAVE_METADATA</a></code> or greater for the first time. </td></tr><tr><td><dfn id="event-media-loadeddata" title="event-media-loadeddata"><code>loadeddata</code></dfn> - </td><td><code>Event</code> + </td><td><code><a href="infrastructure.html#event">Event</a></code> </td><td>The user agent can render the <a href="#media-data">media data</a> at the <a href="#current-playback-position">current playback position</a> for the first time. </td><td><code title="dom-media-readyState"><a href="#dom-media-readystate">readyState</a></code> newly increased to <code title="dom-media-HAVE_CURRENT_DATA"><a href="#dom-media-have_current_data">HAVE_CURRENT_DATA</a></code> or greater for the first time. </td></tr><tr><td><dfn id="event-media-waiting" title="event-media-waiting"><code>waiting</code></dfn> - </td><td><code>Event</code> + </td><td><code><a href="infrastructure.html#event">Event</a></code> </td><td>Playback has stopped because the next frame is not available, but the user agent expects that frame to become available in due course. </td><td><code title="dom-media-readyState"><a href="#dom-media-readystate">readyState</a></code> is newly equal to or less than <code title="dom-media-HAVE_CURRENT_DATA"><a href="#dom-media-have_current_data">HAVE_CURRENT_DATA</a></code>, and <code title="dom-media-paused"><a href="#dom-media-paused">paused</a></code> is false. Either <code title="dom-media-seeking"><a href="#dom-media-seeking">seeking</a></code> is true, or the <a href="#current-playback-position">current playback position</a> is not contained in any of the ranges in <code title="dom-media-buffered"><a href="#dom-media-buffered">buffered</a></code>. It is possible for playback to stop for two other reasons without <code title="dom-media-paused"><a href="#dom-media-paused">paused</a></code> being false, but those two reasons do not fire this event: maybe <a href="#ended-playback" title="ended playback">playback ended</a>, or playback <a href="#stopped-due-to-errors">stopped due to errors</a>. </td></tr><tr><td><dfn id="event-media-playing" title="event-media-playing"><code>playing</code></dfn> - </td><td><code>Event</code> + </td><td><code><a href="infrastructure.html#event">Event</a></code> </td><td>Playback has started. </td><td><code title="dom-media-readyState"><a href="#dom-media-readystate">readyState</a></code> is newly equal to or greater than <code title="dom-media-HAVE_FUTURE_DATA"><a href="#dom-media-have_future_data">HAVE_FUTURE_DATA</a></code>, <code title="dom-media-paused"><a href="#dom-media-paused">paused</a></code> is false, <code title="dom-media-seeking"><a href="#dom-media-seeking">seeking</a></code> is false, or the <a href="#current-playback-position">current playback position</a> is contained in one of the ranges in <code title="dom-media-buffered"><a href="#dom-media-buffered">buffered</a></code>. </td></tr><tr><td><dfn id="event-media-canplay" title="event-media-canplay"><code>canplay</code></dfn> - </td><td><code>Event</code> + </td><td><code><a href="infrastructure.html#event">Event</a></code> </td><td>The user agent can resume playback of the <a href="#media-data">media data</a>, but estimates that if playback were to be started now, the <a href="#media-resource">media resource</a> could not be rendered at the current playback rate up to its end without having to stop for further buffering of content. </td><td><code title="dom-media-readyState"><a href="#dom-media-readystate">readyState</a></code> newly increased to <code title="dom-media-HAVE_FUTURE_DATA"><a href="#dom-media-have_future_data">HAVE_FUTURE_DATA</a></code> or greater. </td></tr><tr><td><dfn id="event-media-canplaythrough" title="event-media-canplaythrough"><code>canplaythrough</code></dfn> - </td><td><code>Event</code> + </td><td><code><a href="infrastructure.html#event">Event</a></code> </td><td>The user agent estimates that if playback were to be started now, the <a href="#media-resource">media resource</a> could be rendered at the current playback rate all the way to its end without having to stop for further buffering. </td><td><code title="dom-media-readyState"><a href="#dom-media-readystate">readyState</a></code> is newly equal to <code title="dom-media-HAVE_ENOUGH_DATA"><a href="#dom-media-have_enough_data">HAVE_ENOUGH_DATA</a></code>. </td></tr></tbody><tbody><tr><td><dfn id="event-media-seeking" title="event-media-seeking"><code>seeking</code></dfn> - </td><td><code>Event</code> + </td><td><code><a href="infrastructure.html#event">Event</a></code> </td><td>The <code title="dom-media-seeking"><a href="#dom-media-seeking">seeking</a></code> IDL attribute changed to true and the seek operation is taking long enough that the user agent has time to fire the event. </td><td> </td></tr><tr><td><dfn id="event-media-seeked" title="event-media-seeked"><code>seeked</code></dfn> - </td><td><code>Event</code> + </td><td><code><a href="infrastructure.html#event">Event</a></code> </td><td>The <code title="dom-media-seeking"><a href="#dom-media-seeking">seeking</a></code> IDL attribute changed to false. </td><td> </td></tr><tr><td><dfn id="event-media-timeupdate" title="event-media-timeupdate"><code>timeupdate</code></dfn> - </td><td><code>Event</code> + </td><td><code><a href="infrastructure.html#event">Event</a></code> </td><td>The <a href="#current-playback-position">current playback position</a> changed as part of normal playback or in an especially interesting way, for example discontinuously. </td><td> </td></tr><tr><td><dfn id="event-media-ended" title="event-media-ended"><code>ended</code></dfn> - </td><td><code>Event</code> + </td><td><code><a href="infrastructure.html#event">Event</a></code> </td><td>Playback has stopped because the end of the <a href="#media-resource">media resource</a> was reached. </td><td><code title="dom-media-currentTime"><a href="#dom-media-currenttime">currentTime</a></code> equals the end of the <a href="#media-resource">media resource</a>; <code title="dom-media-ended"><a href="#dom-media-ended">ended</a></code> is true. </td></tr></tbody><tbody><tr><td><dfn id="event-media-ratechange" title="event-media-ratechange"><code>ratechange</code></dfn> - </td><td><code>Event</code> + </td><td><code><a href="infrastructure.html#event">Event</a></code> </td><td>Either the <code title="dom-media-defaultPlaybackRate"><a href="#dom-media-defaultplaybackrate">defaultPlaybackRate</a></code> or the <code title="dom-media-playbackRate"><a href="#dom-media-playbackrate">playbackRate</a></code> attribute has just been updated. </td><td> </td></tr><tr><td><dfn id="event-media-durationchange" title="event-media-durationchange"><code>durationchange</code></dfn> - </td><td><code>Event</code> + </td><td><code><a href="infrastructure.html#event">Event</a></code> </td><td>The <code title="dom-media-duration"><a href="#dom-media-duration">duration</a></code> attribute has just been updated. </td><td> </td></tr><tr><td><dfn id="event-media-volumechange" title="event-media-volumechange"><code>volumechange</code></dfn> - </td><td><code>Event</code> + </td><td><code><a href="infrastructure.html#event">Event</a></code> </td><td>Either the <code title="dom-media-volume"><a href="#dom-media-volume">volume</a></code> attribute or the <code title="dom-media-muted"><a href="#dom-media-muted">muted</a></code> attribute has changed. Fired after the relevant attribute's setter has returned. </td><td> </td></tr></tbody></table><div class="impl"> @@ -3132,7 +3132,7 @@ <hr><p>If a victim page embeds hostile content, the threat is that the content might contain scripted code that attempts to interact with - the <code>Document</code> that embeds the content. To avoid this, + the <code><a href="infrastructure.html#document">Document</a></code> that embeds the content. To avoid this, user agents must ensure that there is no access from the content to the embedding page. In the case of media content that uses DOM concepts, the embedded content must be treated as if it was in its Index: browsers.html =================================================================== RCS file: /sources/public/html5/spec/browsers.html,v retrieving revision 1.809 retrieving revision 1.810 diff -u -d -r1.809 -r1.810 --- browsers.html 16 Feb 2010 08:26:29 -0000 1.809 +++ browsers.html 16 Feb 2010 08:36:23 -0000 1.810 @@ -290,7 +290,7 @@ <a href="interactive-elements.html">← 4.11 Interactive elements</a> – <a href="spec.html#contents">Table of contents</a> – <a href="history.html">5.4 Session history and navigation →</a> - </nav><p>This is revision 1.3795.</p> + </nav><p>This is revision 1.3796.</p> <h2 id="browsers"><span class="secno">5 </span>Loading Web pages</h2><p class="XXX annotation"><b>Status: </b><i>Last call for comments. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/94">ISSUE-94</a> (webcoresplit) blocks progress to Last Call</span></p><div class="impl"> @@ -301,28 +301,28 @@ agents, whether they are Web browsers or not.</p> </div><h3 id="windows"><span class="secno">5.1 </span>Browsing contexts</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>A <dfn id="browsing-context">browsing context</dfn> is an environment in which - <code>Document</code> objects are presented to the user.</p><p class="note">A tab or window in a Web browser typically contains + <code><a href="infrastructure.html#document">Document</a></code> objects are presented to the user.</p><p class="note">A tab or window in a Web browser typically contains a <a href="#browsing-context">browsing context</a>, as does an <code><a href="text-level-semantics.html#the-iframe-element">iframe</a></code><span class="impl"> or <code><a href="obsolete.html#frame">frame</a></code>s in a <code><a href="obsolete.html#frameset">frameset</a></code></span>.</p><p>Each <a href="#browsing-context">browsing context</a> has a corresponding <code><a href="#windowproxy">WindowProxy</a></code> object.</p><p>A <a href="#browsing-context">browsing context</a> has a <a href="history.html#session-history">session - history</a>, which lists the <code>Document</code> objects that + history</a>, which lists the <code><a href="infrastructure.html#document">Document</a></code> objects that that <a href="#browsing-context">browsing context</a> has presented, is presenting, or - will present. At any time, one <code>Document</code> in each + will present. At any time, one <code><a href="infrastructure.html#document">Document</a></code> in each <a href="#browsing-context">browsing context</a> is designated the <dfn id="active-document">active - document</dfn>.</p><p>Each <code>Document</code> has a collection of one or more <a href="#view" title="view">views</a>.</p><p>A <dfn id="view">view</dfn> is a user agent interface tied to a particular + document</dfn>.</p><p>Each <code><a href="infrastructure.html#document">Document</a></code> has a collection of one or more <a href="#view" title="view">views</a>.</p><p>A <dfn id="view">view</dfn> is a user agent interface tied to a particular media used for the presentation of a particular - <code>Document</code> object in some media. A view may be + <code><a href="infrastructure.html#document">Document</a></code> object in some media. A view may be interactive. Each view is represented by an <code>AbstractView</code> object. <a href="references.html#refsDOMVIEWS">[DOMVIEWS]</a></p><p>The main <a href="#view">view</a> through which a user primarily interacts with a user agent is the <dfn id="default-view">default view</dfn>. The <code>AbstractView</code> object that represents this view <span class="impl">must also implement the <code><a href="#window">Window</a></code> interface, - and</span> is referred to as the <code>Document</code>'s + and</span> is referred to as the <code><a href="infrastructure.html#document">Document</a></code>'s <code><a href="#window">Window</a></code> object. <code><a href="#windowproxy">WindowProxy</a></code> objects forward everything to the <a href="#active-document">active document</a>'s <a href="#default-view">default view</a>'s <code><a href="#window">Window</a></code> object.</p><div class="impl"> <p>The <code title="dom-document-defaultView">defaultView</code> - attribute on the <code>Document</code> object's + attribute on the <code><a href="infrastructure.html#document">Document</a></code> object's <code>DocumentView</code> interface must return the <a href="#browsing-context">browsing context</a>'s <code><a href="#windowproxy">WindowProxy</a></code> object, not the actual <code>AbstractView</code> object of the <a href="#default-view">default @@ -331,13 +331,13 @@ </div><p class="note">The <code title="dom-document">document</code> attribute of an <code>AbstractView</code> object representing a <a href="#view">view</a> gives the view's corresponding - <code>Document</code> object. <a href="references.html#refsDOMVIEWS">[DOMVIEWS]</a></p><p class="note">In general, there is a 1-to-1 mapping from the - <code><a href="#window">Window</a></code> object to the <code>Document</code> object. In + <code><a href="infrastructure.html#document">Document</a></code> object. <a href="references.html#refsDOMVIEWS">[DOMVIEWS]</a></p><p class="note">In general, there is a 1-to-1 mapping from the + <code><a href="#window">Window</a></code> object to the <code><a href="infrastructure.html#document">Document</a></code> object. In one particular case, a set of <a href="#view" title="view">views</a> can be - reused for the presentation of a second <code>Document</code> in the + reused for the presentation of a second <code><a href="infrastructure.html#document">Document</a></code> in the same <a href="#browsing-context">browsing context</a>, such that the mapping is then 2-to-1. This occurs when a <a href="#browsing-context">browsing context</a> is <a href="history.html#navigate" title="navigate">navigated</a> from the initial - <code><a href="infrastructure.html#about:blank">about:blank</a></code> <code>Document</code> to another, with + <code><a href="infrastructure.html#about:blank">about:blank</a></code> <code><a href="infrastructure.html#document">Document</a></code> to another, with <a href="history.html#replacement-enabled">replacement enabled</a>.</p><div class="impl"> <p>Events that use the <code>UIEvent</code> interface are related to @@ -350,13 +350,13 @@ view</a>. <a href="references.html#refsDOMEVENTS">[DOMEVENTS]</a></p> </div><p class="note">A typical Web browser has one obvious - <a href="#view">view</a> per <code>Document</code>: the browser's window + <a href="#view">view</a> per <code><a href="infrastructure.html#document">Document</a></code>: the browser's window (screen media). This is typically the <a href="#default-view">default view</a>. If a page is printed, however, a second view becomes evident, that of the print media. The two views always share the same underlying - <code>Document</code> object, but they have a different presentation + <code><a href="infrastructure.html#document">Document</a></code> object, but they have a different presentation of that object. A speech browser might have a different - <a href="#default-view">default view</a>, using the speech media.</p><p class="note">A <code>Document</code> does not necessarily have a + <a href="#default-view">default view</a>, using the speech media.</p><p class="note">A <code><a href="infrastructure.html#document">Document</a></code> does not necessarily have a <a href="#browsing-context">browsing context</a> associated with it. In particular, data mining tools are likely to never instantiate browsing contexts.</p><hr><p>A <a href="#browsing-context">browsing context</a> can have a <dfn id="creator-browsing-context">creator browsing @@ -369,15 +369,15 @@ context</a>. Otherwise, the <a href="#browsing-context">browsing context</a> has no <a href="#creator-browsing-context">creator browsing context</a>.</p><p>If a <a href="#browsing-context">browsing context</a> <var title="">A</var> has a <a href="#creator-browsing-context">creator browsing context</a>, then the - <code>Document</code> that was the <a href="#active-document">active document</a> of + <code><a href="infrastructure.html#document">Document</a></code> that was the <a href="#active-document">active document</a> of that <a href="#creator-browsing-context">creator browsing context</a> at the time <var title="">A</var> was created is the <dfn id="creator-document">creator <code>Document</code></dfn>.</p><div class="impl"> <p>When a <a href="#browsing-context">browsing context</a> is first created, it must be - created with a single <code>Document</code> in its session history, + created with a single <code><a href="infrastructure.html#document">Document</a></code> in its session history, whose <a href="dom.html#the-document-s-address" title="the document's address">address</a> is <code><a href="infrastructure.html#about:blank">about:blank</a></code>, which is marked as being an <a href="dom.html#html-documents" title="HTML documents">HTML document</a>, and whose <a href="dom.html#document-s-character-encoding" title="document's character encoding">character encoding</a> is - UTF-8. The <code>Document</code> must have a single child + UTF-8. The <code><a href="infrastructure.html#document">Document</a></code> must have a single child <code><a href="semantics.html#the-html-element-0">html</a></code> node, which itself has a single child <code><a href="semantics.html#the-body-element-0">body</a></code> node.</p> @@ -386,21 +386,21 @@ navigation will have <a href="history.html#replacement-enabled">replacement enabled</a>.</p> <p id="about-blank-origin">The <a href="#origin">origin</a> of the - <code><a href="infrastructure.html#about:blank">about:blank</a></code> <code>Document</code> is set when the - <code>Document</code> is created. If the new <a href="#browsing-context">browsing + <code><a href="infrastructure.html#about:blank">about:blank</a></code> <code><a href="infrastructure.html#document">Document</a></code> is set when the + <code><a href="infrastructure.html#document">Document</a></code> is created. If the new <a href="#browsing-context">browsing context</a> has a <a href="#creator-browsing-context">creator browsing context</a>, then the <a href="#origin">origin</a> of the <code><a href="infrastructure.html#about:blank">about:blank</a></code> - <code>Document</code> is the <a href="#origin">origin</a> of the + <code><a href="infrastructure.html#document">Document</a></code> is the <a href="#origin">origin</a> of the <a href="#creator-document">creator <code>Document</code></a>. Otherwise, the <a href="#origin">origin</a> of the <code><a href="infrastructure.html#about:blank">about:blank</a></code> - <code>Document</code> is a globally unique identifier assigned when + <code><a href="infrastructure.html#document">Document</a></code> is a globally unique identifier assigned when the new <a href="#browsing-context">browsing context</a> is created.</p> </div><h4 id="nested-browsing-contexts"><span class="secno">5.1.1 </span>Nested browsing contexts</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>Certain elements (for example, <code><a href="text-level-semantics.html#the-iframe-element">iframe</a></code> elements) can instantiate further <a href="#browsing-context" title="browsing context">browsing contexts</a>. These are called <dfn id="nested-browsing-context" title="nested browsing context">nested browsing contexts</dfn>. If a browsing context <var title="">P</var> has an element <var title="">E</var> in one of its - <code>Document</code>s <var title="">D</var> that nests another + <code><a href="infrastructure.html#document">Document</a></code>s <var title="">D</var> that nests another browsing context <var title="">C</var> inside it, then <var title="">P</var> is said to be the <dfn id="parent-browsing-context">parent browsing context</dfn> of <var title="">C</var>, <var title="">C</var> is said to be a <dfn id="child-browsing-context">child browsing context</dfn> of <var title="">P</var>, <var title="">C</var> is said to be <dfn id="browsing-context-nested-through" title="browsing context nested through">nested through</dfn> <var title="">D</var>, and <var title="">E</var> is said to be the @@ -419,7 +419,7 @@ context">parent browsing contexts</a> for a <a href="#nested-browsing-context">nested browsing context</a> gives the list of <dfn id="ancestor-browsing-context" title="ancestor browsing context">ancestor browsing contexts</dfn>.</p><p>The <dfn id="list-of-the-descendant-browsing-contexts">list of the descendant browsing contexts</dfn> of a - <code>Document</code> <var title="">d</var> is the list returned by + <code><a href="infrastructure.html#document">Document</a></code> <var title="">d</var> is the list returned by the following algorithm:</p><ol><li><p>Let <var title="">list</var> be an empty list.</p></li> <li><p>For each <a href="#child-browsing-context">child browsing context</a> of <var title="">d</var> that is <a href="#browsing-context-nested-through" title="browsing context nested @@ -433,17 +433,17 @@ <li><p>Return the constructed <var title="">list</var>.</p></li> - </ol><hr><p>A <code>Document</code> is said to be <dfn id="fully-active">fully active</dfn> + </ol><hr><p>A <code><a href="infrastructure.html#document">Document</a></code> is said to be <dfn id="fully-active">fully active</dfn> when it is the <a href="#active-document">active document</a> of its <a href="#browsing-context">browsing context</a>, and either its browsing context is a <a href="#top-level-browsing-context">top-level - browsing context</a>, or the <code>Document</code> <a href="#browsing-context-nested-through" title="browsing context nested through">through which</a> that + browsing context</a>, or the <code><a href="infrastructure.html#document">Document</a></code> <a href="#browsing-context-nested-through" title="browsing context nested through">through which</a> that browsing context is <a href="#nested-browsing-context" title="nested browsing context">nested</a> is itself <a href="#fully-active">fully active</a>.</p><p>Because they are nested through an element, <a href="#child-browsing-context" title="child browsing context">child browsing contexts</a> are always tied to - a specific <code>Document</code> in their <a href="#parent-browsing-context">parent browsing + a specific <code><a href="infrastructure.html#document">Document</a></code> in their <a href="#parent-browsing-context">parent browsing context</a>. User agents must not allow the user to interact with <a href="#child-browsing-context" title="child browsing context">child browsing contexts</a> - of elements that are in <code>Document</code>s that are not + of elements that are in <code><a href="infrastructure.html#document">Document</a></code>s that are not themselves <a href="#fully-active">fully active</a>.</p><p>A <a href="#nested-browsing-context">nested browsing context</a> can have a <a href="text-level-semantics.html#seamless-browsing-context-flag">seamless browsing context flag</a> set, if it is embedded through an <code><a href="text-level-semantics.html#the-iframe-element">iframe</a></code> element with a <code title="attr-iframe-seamless"><a href="text-level-semantics.html#attr-iframe-seamless">seamless</a></code> attribute.</p><h5 id="navigating-nested-browsing-contexts-in-the-dom"><span class="secno">5.1.1.1 </span>Navigating nested browsing contexts in the DOM</h5><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class="domintro"><dt><var title="">window</var> . <code title="dom-top"><a href="#dom-top">top</a></code></dt> @@ -466,7 +466,7 @@ <dd> - <p>Returns the <code>Element</code> for the <a href="#browsing-context-container">browsing context container</a>.</p> + <p>Returns the <code><a href="infrastructure.html#element">Element</a></code> for the <a href="#browsing-context-container">browsing context container</a>.</p> <p>Returns null if there isn't one.</p> @@ -477,7 +477,7 @@ </dl><div class="impl"> <p>The <dfn id="dom-top" title="dom-top"><code>top</code></dfn> IDL attribute on - the <code><a href="#window">Window</a></code> object of a <code>Document</code> in a + the <code><a href="#window">Window</a></code> object of a <code><a href="infrastructure.html#document">Document</a></code> in a <a href="#browsing-context">browsing context</a> <var title="">b</var> must return the <code><a href="#windowproxy">WindowProxy</a></code> object of its <a href="#top-level-browsing-context">top-level browsing context</a> (which would be its own <code><a href="#windowproxy">WindowProxy</a></code> @@ -486,7 +486,7 @@ <p>The <dfn id="dom-parent" title="dom-parent"><code>parent</code></dfn> IDL attribute on the <code><a href="#window">Window</a></code> object of a - <code>Document</code> in a <a href="#browsing-context">browsing context</a> <var title="">b</var> must return the <code><a href="#windowproxy">WindowProxy</a></code> object of + <code><a href="infrastructure.html#document">Document</a></code> in a <a href="#browsing-context">browsing context</a> <var title="">b</var> must return the <code><a href="#windowproxy">WindowProxy</a></code> object of the <a href="#parent-browsing-context">parent browsing context</a>, if there is one (i.e. if <var title="">b</var> is a <a href="#child-browsing-context">child browsing context</a>), or the <code><a href="#windowproxy">WindowProxy</a></code> object of the <a href="#browsing-context">browsing @@ -495,10 +495,10 @@ <p>The <dfn id="dom-frameelement" title="dom-frameElement"><code>frameElement</code></dfn> IDL attribute on the <code><a href="#window">Window</a></code> object of a - <code>Document</code> <var title="">d</var>, on getting, must run + <code><a href="infrastructure.html#document">Document</a></code> <var title="">d</var>, on getting, must run the following algorithm:</p> - <ol><li><p>If <var title="">d</var> is not a <code>Document</code> in a + <ol><li><p>If <var title="">d</var> is not a <code><a href="infrastructure.html#document">Document</a></code> in a <a href="#child-browsing-context">child browsing context</a>, return null and abort these steps.</p></li> @@ -560,14 +560,14 @@ <var title="">A</var> itself).</li> </ul><hr><p>An element has a <dfn id="browsing-context-scope-origin">browsing context scope origin</dfn> if its - <code>Document</code>'s <a href="#browsing-context">browsing context</a> is a + <code><a href="infrastructure.html#document">Document</a></code>'s <a href="#browsing-context">browsing context</a> is a <a href="#top-level-browsing-context">top-level browsing context</a> or if all of its - <code>Document</code>'s <a href="#ancestor-browsing-context" title="ancestor browsing + <code><a href="infrastructure.html#document">Document</a></code>'s <a href="#ancestor-browsing-context" title="ancestor browsing context">ancestor browsing contexts</a> all have <a href="#active-document" title="active document">active documents</a> whose <a href="#origin">origin</a> are the <a href="#same-origin">same origin</a> as the - element's <code>Document</code>'s <a href="#origin">origin</a>. If an element + element's <code><a href="infrastructure.html#document">Document</a></code>'s <a href="#origin">origin</a>. If an element has a <a href="#browsing-context-scope-origin">browsing context scope origin</a>, then its value is - the <a href="#origin">origin</a> of the element's <code>Document</code>.</p> + the <a href="#origin">origin</a> of the element's <code><a href="infrastructure.html#document">Document</a></code>.</p> </div><div class="impl"> @@ -749,7 +749,7 @@ readonly attribute <a href="#windowproxy">WindowProxy</a> <a href="#dom-top" title="dom-top">top</a>; [Replaceable] readonly attribute <a href="#windowproxy">WindowProxy</a> <a href="#dom-opener" title="dom-opener">opener</a>; readonly attribute <a href="#windowproxy">WindowProxy</a> <a href="#dom-parent" title="dom-parent">parent</a>; - readonly attribute <span>Element</span> <a href="#dom-frameelement" title="dom-frameElement">frameElement</a>; + readonly attribute <a href="infrastructure.html#element">Element</a> <a href="#dom-frameelement" title="dom-frameElement">frameElement</a>; <a href="#windowproxy">WindowProxy</a> <a href="#dom-open" title="dom-open">open</a>(in optional DOMString url, in optional DOMString target, in optional DOMString features, in optional DOMString replace); <a href="#dom-window-item" title="dom-window-item">getter</a> <a href="#windowproxy">WindowProxy</a> (in unsigned long index); <a href="#dom-window-nameditem" title="dom-window-namedItem">getter</a> <a href="#windowproxy">WindowProxy</a> (in DOMString name); @@ -836,7 +836,7 @@ attribute <a href="webappapis.html#function">Function</a> <a href="webappapis.html#handler-onvolumechange" title="handler-onvolumechange">onvolumechange</a>; attribute <a href="webappapis.html#function">Function</a> <a href="webappapis.html#handler-onwaiting" title="handler-onwaiting">onwaiting</a>; }; -<a href="#window">Window</a> implements <span>EventTarget</span>;</pre><!-- for more features to add here, look here: +<a href="#window">Window</a> implements <a href="infrastructure.html#eventtarget">EventTarget</a>;</pre><!-- for more features to add here, look here: http://msdn.microsoft.com/workshop/author/dhtml/reference/objects/obj_window.asp http://www.mozilla.org/docs/dom/domref/dom_window_ref.html http://lxr.mozilla.org/mozilla/source/dom/public/idl/base/nsIDOMWindow.idl - scrollBy, etc @@ -865,7 +865,7 @@ whenever any of the members of a <code><a href="#window">Window</a></code> object are accessed by scripts whose <a href="#effective-script-origin">effective script origin</a> is not the same as the <code><a href="#window">Window</a></code> object's - <code>Document</code>'s <a href="#effective-script-origin">effective script origin</a>, with + <code><a href="infrastructure.html#document">Document</a></code>'s <a href="#effective-script-origin">effective script origin</a>, with the following exceptions:</p> <ul><li>The <code title="dom-location"><a href="history.html#dom-location">location</a></code> object @@ -881,7 +881,7 @@ </li><li>The <a href="#dynamic-nested-browsing-context-properties">dynamic nested browsing context properties</a> </li></ul><p>When a script whose <a href="#effective-script-origin">effective script origin</a> is not - the same as the <code><a href="#window">Window</a></code> object's <code>Document</code>'s + the same as the <code><a href="#window">Window</a></code> object's <code><a href="infrastructure.html#document">Document</a></code>'s <a href="#effective-script-origin">effective script origin</a> attempts to access that <code><a href="#window">Window</a></code> object's methods or attributes, the user agent must act as if any changes to the <code><a href="#window">Window</a></code> object's @@ -889,7 +889,7 @@ <p>For members that return objects (including function objects), each distinct <a href="#effective-script-origin">effective script origin</a> that is not the - same as the <code><a href="#window">Window</a></code> object's <code>Document</code>'s + same as the <code><a href="#window">Window</a></code> object's <code><a href="infrastructure.html#document">Document</a></code>'s <a href="#effective-script-origin">effective script origin</a> must be provided with a separate set of objects. These objects must have the prototype chain appropriate for the script for which the objects are created (not @@ -899,7 +899,7 @@ <div class="example"> - <p>For instance, if two frames containing <code>Document</code>s + <p>For instance, if two frames containing <code><a href="infrastructure.html#document">Document</a></code>s from different <a href="#origin" title="origin">origins</a> access the same <code><a href="#window">Window</a></code> object's <code title="dom-window-postMessage-2">postMessage()</code> method, they will get distinct objects that are not equal.</p> @@ -1066,7 +1066,7 @@ <p>When a <code><a href="#window">Window</a></code> object is <dfn id="dom-window-item" title="dom-window-item">indexed to retrieve an indexed property</dfn> <var title="">index</var>, the value returned must be the <var title="">index</var>th <a href="#child-browsing-context">child browsing context</a> - of the <code>Document</code> that is nested through an element that + of the <code><a href="infrastructure.html#document">Document</a></code> that is nested through an element that is <a href="infrastructure.html#in-a-document" title="in a document">in the <code>Document</code></a>, sorted in the <a href="infrastructure.html#tree-order">tree order</a> of the elements nesting those <a href="#browsing-context" title="browsing context">browsing contexts</a>.</p> @@ -1134,7 +1134,7 @@ <li> <p>Otherwise return an <code><a href="infrastructure.html#htmlcollection">HTMLCollection</a></code> rooted at the - <code>Document</code> node, whose filter matches only <a href="#dom-window-nameditem-filter" title="dom-window-namedItem-filter">named elements</a> with + <code><a href="infrastructure.html#document">Document</a></code> node, whose filter matches only <a href="#dom-window-nameditem-filter" title="dom-window-namedItem-filter">named elements</a> with the name <var title="">name</var>.</p> <!-- the same one each time is returned, because of the rule under collections --> @@ -1156,11 +1156,11 @@ <h4 id="garbage-collection-and-browsing-contexts"><span class="secno">5.2.5 </span>Garbage collection and browsing contexts</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p> <p>A <a href="#browsing-context">browsing context</a> has a strong reference to each of - its <code>Document</code>s and its <code><a href="#windowproxy">WindowProxy</a></code> object, + its <code><a href="infrastructure.html#document">Document</a></code>s and its <code><a href="#windowproxy">WindowProxy</a></code> object, and the user agent itself has a strong reference to its <a href="#top-level-browsing-context" title="top-level browsing context">top-level browsing contexts</a>.</p> - <p>A <code>Document</code> has a strong reference to each of its + <p>A <code><a href="infrastructure.html#document">Document</a></code> has a strong reference to each of its <a href="#view" title="view">views</a> and their <code>AbstractView</code> objects.</p> @@ -1169,36 +1169,36 @@ steps:</p> <ol><li><p>Run any <a href="history.html#unloading-document-cleanup-steps">unloading document cleanup steps</a> for - the <code>Document</code> that are defined by this specification or + the <code><a href="infrastructure.html#document">Document</a></code> that are defined by this specification or any other relevant specifications.</p></li> <li><p>Remove any <a href="webappapis.html#concept-task" title="concept-task">tasks</a> - associated with the <code>Document</code> in any <a href="webappapis.html#task-source">task + associated with the <code><a href="infrastructure.html#document">Document</a></code> in any <a href="webappapis.html#task-source">task source</a>, without running those tasks.</p></li> <li><p><a href="#a-browsing-context-is-discarded" title="a browsing context is discarded">Discard</a> all the <a href="#child-browsing-context" title="child browsing context">child browsing - contexts</a> of the <code>Document</code>.</p></li> + contexts</a> of the <code><a href="infrastructure.html#document">Document</a></code>.</p></li> - <li><p>Lose the strong reference from the <code>Document</code>'s + <li><p>Lose the strong reference from the <code><a href="infrastructure.html#document">Document</a></code>'s <a href="#browsing-context">browsing context</a> to the - <code>Document</code>.</p></li> + <code><a href="infrastructure.html#document">Document</a></code>.</p></li> </ol><p class="note">The <a href="#browsing-context">browsing context</a>'s <a href="#default-view">default view</a>'s <code><a href="#window">Window</a></code> object <a href="infrastructure.html#implied-strong-reference" title="implied strong reference">has a strong reference</a> to its - <code>Document</code> object through the <code title="dom-document">document</code> attribute of the + <code><a href="infrastructure.html#document">Document</a></code> object through the <code title="dom-document">document</code> attribute of the <code>AbstractView</code> interface. Thus, references from other scripts to either of those objects will keep both alive. <a href="references.html#refsDOMVIEWS">[DOMVIEWS]</a></p> - <p class="note">Whenever a <code>Document</code> object is <a href="#discard-a-document" title="discard a Document">discarded</a>, it is also removed from - the list of <span>the worker's <code>Document</code>s</span> of each - worker whose list contains that <code>Document</code>.</p> + <p class="note">Whenever a <code><a href="infrastructure.html#document">Document</a></code> object is <a href="#discard-a-document" title="discard a Document">discarded</a>, it is also removed from + the list of <span>the worker's <code><a href="infrastructure.html#document">Document</a></code>s</span> of each + worker whose list contains that <code><a href="infrastructure.html#document">Document</a></code>.</p> <p>When <dfn id="a-browsing-context-is-discarded">a <em><span>browsing context</span></em> is discarded</dfn>, the strong reference from the user agent itself to the <a href="#browsing-context">browsing context</a> must be severed, and all the - <code>Document</code> objects for all the entries in the + <code><a href="infrastructure.html#document">Document</a></code> objects for all the entries in the <a href="#browsing-context">browsing context</a>'s session history must be <a href="#discard-a-document" title="discard a document">discarded</a> as well.</p> <p>User agents may <a href="#a-browsing-context-is-discarded" title="a browsing context is @@ -1255,7 +1255,7 @@ setting, the new value must be discarded.</p> <p>The following <code><a href="#barprop">BarProp</a></code> objects exist for each - <code>Document</code> object in a <a href="#browsing-context">browsing + <code><a href="infrastructure.html#document">Document</a></code> object in a <a href="#browsing-context">browsing context</a>. Some of the user interface elements represented by these objects might have no equivalent in some user agents; for those user agents, except when otherwise specified, the object must @@ -1350,7 +1350,7 @@ <p class="note">The <code><a href="#windowproxy">WindowProxy</a></code> object allows scripts to act as if each <a href="#browsing-context">browsing context</a> had a single <code><a href="#window">Window</a></code> object, while still keeping separate - <code><a href="#window">Window</a></code> objects for each <code>Document</code>.</p> + <code><a href="#window">Window</a></code> objects for each <code><a href="infrastructure.html#document">Document</a></code>.</p> <div class="example"> @@ -1438,7 +1438,7 @@ <li><p>Return the tuple (<var title="">scheme</var>, <var title="">host</var>, <var title="">port</var>).</p></li> </ol><p>In addition, if the <a href="infrastructure.html#url">URL</a> is in fact associated with - a <code>Document</code> object that was created by parsing the + a <code><a href="infrastructure.html#document">Document</a></code> object that was created by parsing the resource obtained from fetching <a href="infrastructure.html#url">URL</a>, and this was done over a secure connection, then the server's secure certificate may be added to the origin as additional data.</p> @@ -1455,14 +1455,14 @@ <dl class="switch"><dt>If a script is in a <code><a href="semantics.html#script">script</a></code> element</dt> - <dd>The owner is the <code>Document</code> to which the + <dd>The owner is the <code><a href="infrastructure.html#document">Document</a></code> to which the <code><a href="semantics.html#script">script</a></code> element belongs.</dd> <dt>If a script is in an <a href="webappapis.html#event-handler-content-attributes" title="event handler content attributes">event handler content attribute</a></dt> - <dd>The owner is the <code>Document</code> to which the + <dd>The owner is the <code><a href="infrastructure.html#document">Document</a></code> to which the attribute node belongs.</dd> @@ -1482,7 +1482,7 @@ <dt>If a script is a <a href="webappapis.html#javascript-protocol" title="javascript protocol"><code title="">javascript:</code> URL</a> in an attribute</dt> - <dd>The owner is the <code>Document</code> of the element on + <dd>The owner is the <code><a href="infrastructure.html#document">Document</a></code> of the element on which the attribute is found.</dd> @@ -1496,7 +1496,7 @@ the URL having been provided by the user (e.g. by using a <i>bookmarklet</i>)</dt> - <dd>The owner is the <code>Document</code> of the <a href="#browsing-context">browsing + <dd>The owner is the <code><a href="infrastructure.html#document">Document</a></code> of the <a href="#browsing-context">browsing context</a>'s <a href="#active-document">active document</a>.</dd> @@ -1504,7 +1504,7 @@ context</a> is being <a href="history.html#navigate" title="navigate">navigated</a>, the URL having been declared in markup</dt> - <dd>The owner is the <code>Document</code> of the element + <dd>The owner is the <code><a href="infrastructure.html#document">Document</a></code> of the element (e.g. an <code><a href="text-level-semantics.html#the-a-element">a</a></code> or <code><a href="the-canvas-element.html#the-area-element">area</a></code> element) that declared the URL.</dd> @@ -1522,30 +1522,30 @@ </dd> - <dt>For <code>Document</code> objects and images</dt> + <dt>For <code><a href="infrastructure.html#document">Document</a></code> objects and images</dt> <dd> - <dl class="switch"><dt id="sandboxOrigin">If a <code>Document</code> is in a + <dl class="switch"><dt id="sandboxOrigin">If a <code><a href="infrastructure.html#document">Document</a></code> is in a <a href="#browsing-context">browsing context</a> whose <a href="text-level-semantics.html#sandboxed-origin-browsing-context-flag">sandboxed origin browsing context flag</a> was set when the - <code>Document</code> was created</dt> + <code><a href="infrastructure.html#document">Document</a></code> was created</dt> - <dt>If a <code>Document</code> was generated from a resource + <dt>If a <code><a href="infrastructure.html#document">Document</a></code> was generated from a resource labeled as <code><a href="iana.html#text-html-sandboxed">text/html-sandboxed</a></code></dt> <dd>The <a href="#origin">origin</a> is a globally unique identifier - assigned when the <code>Document</code> is created.</dd> + assigned when the <code><a href="infrastructure.html#document">Document</a></code> is created.</dd> - <dt>If a <code>Document</code> or image was returned by the + <dt>If a <code><a href="infrastructure.html#document">Document</a></code> or image was returned by the <code>XMLHttpRequest</code> API</dt> <dd>The <a href="#origin">origin</a> is equal to the <span>XMLHttpRequest origin</span> of the <code>XMLHttpRequest</code> object. <a href="references.html#refsXHR">[XHR]</a></dd> - <dt>If a <code>Document</code> or image was generated from a + <dt>If a <code><a href="infrastructure.html#document">Document</a></code> or image was generated from a <a href="webappapis.html#javascript-protocol" title="javascript protocol"><code>javascript:</code> URL</a></dt> @@ -1554,17 +1554,17 @@ protocol"><code>javascript:</code> URL</a>.</dd> - <dt>If a <code>Document</code> or image was served over the + <dt>If a <code><a href="infrastructure.html#document">Document</a></code> or image was served over the network and has an address that uses a URL scheme with a server-based naming authority</dt> <dd>The <a href="#origin">origin</a> is the <a href="#origin">origin</a> of the <a href="dom.html#the-document-s-address" title="the document's address">address</a> of the - <code>Document</code> or the <a href="infrastructure.html#url">URL</a> of the image, as + <code><a href="infrastructure.html#document">Document</a></code> or the <a href="infrastructure.html#url">URL</a> of the image, as appropriate.</dd> - <dt>If a <code>Document</code> or image was generated from a + <dt>If a <code><a href="infrastructure.html#document">Document</a></code> or image was generated from a <code title="">data:</code> URL that was returned as the location of an HTTP redirect (<a href="infrastructure.html#concept-http-equivalent-codes" title="concept-http-equivalent-codes">or equivalent</a> in other protocols)</dt> @@ -1573,41 +1573,41 @@ <a href="infrastructure.html#url">URL</a> that redirected to the <code title="">data:</code> URL.</dd> - <dt>If a <code>Document</code> or image was generated from a + <dt>If a <code><a href="infrastructure.html#document">Document</a></code> or image was generated from a <code title="">data:</code> URL found in another - <code>Document</code> or in a script</dt> + <code><a href="infrastructure.html#document">Document</a></code> or in a script</dt> <dd>The <a href="#origin">origin</a> is the <a href="#origin">origin</a> of the - <code>Document</code> or script that initiated the <a href="history.html#navigate" title="navigate">navigation</a> to that <a href="infrastructure.html#url">URL</a>.</dd> + <code><a href="infrastructure.html#document">Document</a></code> or script that initiated the <a href="history.html#navigate" title="navigate">navigation</a> to that <a href="infrastructure.html#url">URL</a>.</dd> - <dt>If a <code>Document</code> has the <a href="dom.html#the-document-s-address" title="the + <dt>If a <code><a href="infrastructure.html#document">Document</a></code> has the <a href="dom.html#the-document-s-address" title="the document's address">address</a> "<code><a href="infrastructure.html#about:blank">about:blank</a></code>"</dt> - <dd>The <a href="#origin">origin</a> of the <code>Document</code> is <a href="#about-blank-origin">the <span>origin</span> it was + <dd>The <a href="#origin">origin</a> of the <code><a href="infrastructure.html#document">Document</a></code> is <a href="#about-blank-origin">the <span>origin</span> it was assigned when its browsing context was created</a>.</dd> - <dt>If a <code>Document</code> is <a href="text-level-semantics.html#an-iframe-srcdoc-document">an <code>iframe</code> <code title="attr-iframe-srcdoc">srcdoc</code> document</a></dt> + <dt>If a <code><a href="infrastructure.html#document">Document</a></code> is <a href="text-level-semantics.html#an-iframe-srcdoc-document">an <code>iframe</code> <code title="attr-iframe-srcdoc">srcdoc</code> document</a></dt> - <dd>The <a href="#origin">origin</a> of the <code>Document</code> is the - <a href="#origin">origin</a> of the <code>Document</code>'s <a href="#browsing-context">browsing + <dd>The <a href="#origin">origin</a> of the <code><a href="infrastructure.html#document">Document</a></code> is the + <a href="#origin">origin</a> of the <code><a href="infrastructure.html#document">Document</a></code>'s <a href="#browsing-context">browsing context</a>'s <a href="#browsing-context-container">browsing context container</a>'s - <code>Document</code>.</dd> + <code><a href="infrastructure.html#document">Document</a></code>.</dd> - <dt>If a <code>Document</code> or image was obtained in some + <dt>If a <code><a href="infrastructure.html#document">Document</a></code> or image was obtained in some other manner (e.g. a <code title="">data:</code> URL typed in by - the user, a <code>Document</code> created using the <code title="dom-DOMImplementation-createDocument">createDocument()</code> + the user, a <code><a href="infrastructure.html#document">Document</a></code> created using the <code title="dom-DOMImplementation-createDocument">createDocument()</code> API, etc)</dt> <dd>The <a href="#origin">origin</a> is a globally unique identifier - assigned when the <code>Document</code> or image is created.</dd> + assigned when the <code><a href="infrastructure.html#document">Document</a></code> or image is created.</dd> - </dl><p>When a <code>Document</code> is created, its <a href="#effective-script-origin">effective + </dl><p>When a <code><a href="infrastructure.html#document">Document</a></code> is created, its <a href="#effective-script-origin">effective script origin</a> is initialized to the <a href="#origin">origin</a> of - the <code>Document</code>. However, the <code title="dom-document-domain"><a href="#dom-document-domain">document.domain</a></code> attribute can + the <code><a href="infrastructure.html#document">Document</a></code>. However, the <code title="dom-document-domain"><a href="#dom-document-domain">document.domain</a></code> attribute can be used to change it.</p> </dd> @@ -1618,7 +1618,7 @@ <p>If value of the <a href="video.html#media-element">media element</a>'s <code title="dom-media-currentSrc"><a href="video.html#dom-media-currentsrc">currentSrc</a></code> attribute is the empty string, the <a href="#origin">origin</a> is the same as the - <a href="#origin">origin</a> of the element's <code>Document</code>'s + <a href="#origin">origin</a> of the element's <code><a href="infrastructure.html#document">Document</a></code>'s <a href="#origin">origin</a>.</p> <p>Otherwise, the <a href="#origin">origin</a> is equal to the @@ -1729,7 +1729,7 @@ </dl><div class="impl"> <p>The <dfn id="dom-document-domain" title="dom-document-domain"><code>domain</code></dfn> - attribute on <code>Document</code> objects must be initialized to + attribute on <code><a href="infrastructure.html#document">Document</a></code> objects must be initialized to <a href="#the-document-s-domain">the document's domain</a>, if it has one, and the empty string otherwise. If the value is an IPv6 address, then the square brackets from the host portion of the <a href="infrastructure.html#url-host" title="url-host"><host></a> component must be omitted from @@ -1815,7 +1815,7 @@ <li> <p>Set the host part of the <a href="#effective-script-origin">effective script origin</a> - tuple of the <code>Document</code> to <var title="">new + tuple of the <code><a href="infrastructure.html#document">Document</a></code> to <var title="">new value</var>.</p> </li> @@ -1823,7 +1823,7 @@ <li> <p>Set the port part of the <a href="#effective-script-origin">effective script origin</a> - tuple of the <code>Document</code> to "manual override" (a value + tuple of the <code><a href="infrastructure.html#document">Document</a></code> to "manual override" (a value that, for the purposes of <a href="#same-origin" title="same origin">comparing origins</a>, is identical to "manual override" but not identical to any other value).</p> @@ -1831,7 +1831,7 @@ </li> </ol><p>The <dfn id="the-document-s-domain" title="the document's domain">domain</dfn> of a - <code>Document</code> is the host part of the document's + <code><a href="infrastructure.html#document">Document</a></code> is the host part of the document's <a href="#origin">origin</a>, if that is a scheme/host/port tuple. If it isn't, then the document does not have a domain.</p> Index: the-xhtml-syntax.html =================================================================== RCS file: /sources/public/html5/spec/the-xhtml-syntax.html,v retrieving revision 1.809 retrieving revision 1.810 diff -u -d -r1.809 -r1.810 --- the-xhtml-syntax.html 16 Feb 2010 08:26:32 -0000 1.809 +++ the-xhtml-syntax.html 16 Feb 2010 08:36:26 -0000 1.810 @@ -290,7 +290,7 @@ <a href="named-character-references.html">← 8.5 Named character references</a> – <a href="spec.html#contents">Table of contents</a> – <a href="obsolete.html">11 Obsolete features →</a> - </nav><p>This is revision 1.3795.</p> + </nav><p>This is revision 1.3796.</p> <h2 id="the-xhtml-syntax"><span class="secno">9 </span><dfn id="xhtml">The XHTML syntax</dfn></h2><p class="note">This section only describes the rules for XML @@ -318,19 +318,19 @@ <p>An <dfn id="xml-parser">XML parser</dfn>, for the purposes of this specification, is a construct that follows the rules given in the XML specification - to map a string of bytes or characters into a <code>Document</code> + to map a string of bytes or characters into a <code><a href="infrastructure.html#document">Document</a></code> object.</p> <p>An <a href="#xml-parser">XML parser</a> is either associated with a - <code>Document</code> object when it is created, or creates one + <code><a href="infrastructure.html#document">Document</a></code> object when it is created, or creates one implicitly.</p> - <p>This <code>Document</code> must then be populated with DOM nodes + <p>This <code><a href="infrastructure.html#document">Document</a></code> must then be populated with DOM nodes that represent the tree structure of the input passed to the parser, as defined by the XML specification, the Namespaces in XML specification, and the DOM Core specification. DOM mutation events must not fire for the operations that the <a href="#xml-parser">XML parser</a> - performs on the <code>Document</code>'s tree, but the user agent + performs on the <code><a href="infrastructure.html#document">Document</a></code>'s tree, but the user agent must act as if elements and attributes were individually appended and set respectively so as to trigger rules in this specification regarding what happens when an element in inserted into a document @@ -415,15 +415,15 @@ <h3 id="serializing-xhtml-fragments"><span class="secno">9.3 </span>Serializing XHTML fragments</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p> <p>The <dfn id="xml-fragment-serialization-algorithm">XML fragment serialization algorithm</dfn> for a - <code>Document</code> or <code>Element</code> node either returns a + <code><a href="infrastructure.html#document">Document</a></code> or <code><a href="infrastructure.html#element">Element</a></code> node either returns a fragment of XML that represents that node or raises an exception.</p> - <p>For <code>Document</code>s, the algorithm must return a string in + <p>For <code><a href="infrastructure.html#document">Document</a></code>s, the algorithm must return a string in the form of a <a href="http://www.w3.org/TR/xml/#sec-well-formed">document entity</a>, if none of the error cases below apply.</p> - <p>For <code>Element</code>s, the algorithm must return a string in + <p>For <code><a href="infrastructure.html#element">Element</a></code>s, the algorithm must return a string in the form of an <a href="http://www.w3.org/TR/xml/#wf-entities">internal general parsed entity</a>, if none of the error cases below apply.</p> @@ -438,12 +438,12 @@ might be forced to use representations that don't match the DOM's, e.g. if a <code>CDATASection</code> node contains the string "<code title="">]]></code>").</p> - <p>For <code>Element</code>s, if any of the elements in the + <p>For <code><a href="infrastructure.html#element">Element</a></code>s, if any of the elements in the serialization are in no namespace, the default namespace in scope for those elements must be explicitly declared as the empty string.<!-- because otherwise round-tripping might break since it'll pick up the surrounding default ns when setting --> (This doesn't - apply in the <code>Document</code> case.) <a href="references.html#refsXML">[XML]</a> <a href="references.html#refsXMLNS">[XMLNS]</a></p> + apply in the <code><a href="infrastructure.html#document">Document</a></code> case.) <a href="references.html#refsXML">[XML]</a> <a href="references.html#refsXMLNS">[XMLNS]</a></p> <p>For the purposes of this section, an internal general parsed entity is considered XML namespace-well-formed if a document @@ -456,7 +456,7 @@ <code><a href="infrastructure.html#invalid_state_err">INVALID_STATE_ERR</a></code> exception instead of returning a string:</p> - <ul><li>A <code>Document</code> node with no child element nodes.</li> + <ul><li>A <code><a href="infrastructure.html#document">Document</a></code> node with no child element nodes.</li> <li>A <code>DocumentType</code> node that has an external subset public identifier that contains characters that are not matched by @@ -478,7 +478,7 @@ <li>An <code>Attr</code> node with no namespace whose local name is the lowercase string "<code title="">xmlns</code>". <a href="references.html#refsXMLNS">[XMLNS]</a></li> - <li>An <code>Element</code> node with two or more attributes with + <li>An <code><a href="infrastructure.html#element">Element</a></code> node with two or more attributes with the same local name and namespace.</li> <li>An <code>Attr</code> node, <code>Text</code> node, @@ -504,7 +504,7 @@ </ul><p class="note">These are the only ways to make a DOM unserializable. The DOM enforces all the other XML constraints; for - example, trying to append two elements to a <code>Document</code> + example, trying to append two elements to a <code><a href="infrastructure.html#document">Document</a></code> node will raise a <code><a href="infrastructure.html#hierarchy_request_err">HIERARCHY_REQUEST_ERR</a></code> exception.</p> @@ -512,7 +512,7 @@ <h3 id="parsing-xhtml-fragments"><span class="secno">9.4 </span>Parsing XHTML fragments</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p> <p>The <dfn id="xml-fragment-parsing-algorithm">XML fragment parsing algorithm</dfn> for either returns - a <code>Document</code> or raises a <code><a href="infrastructure.html#syntax_err">SYNTAX_ERR</a></code> + a <code><a href="infrastructure.html#document">Document</a></code> or raises a <code><a href="infrastructure.html#syntax_err">SYNTAX_ERR</a></code> exception. Given a string <var title="">input</var> and an optional context element <var title="">context</var>, the algorithm is as follows:</p> @@ -572,9 +572,9 @@ <p>If there is a <var title="">context</var> element, then return the child nodes of the root element of the resulting - <code>Document</code>, in <a href="infrastructure.html#tree-order">tree order</a>.</p> + <code><a href="infrastructure.html#document">Document</a></code>, in <a href="infrastructure.html#tree-order">tree order</a>.</p> - <p>Otherwise, return the children of the <code>Document</code> + <p>Otherwise, return the children of the <code><a href="infrastructure.html#document">Document</a></code> object, in <a href="infrastructure.html#tree-order">tree order</a>.</p> </li> @@ -614,7 +614,7 @@ <hr><p>An element is <dfn id="being-rendered">being rendered</dfn> if it is <a href="infrastructure.html#in-a-document">in a <code>Document</code></a>, either its parent node is itself - <a href="#being-rendered">being rendered</a> or it is the <code>Document</code> node, + <a href="#being-rendered">being rendered</a> or it is the <code><a href="infrastructure.html#document">Document</a></code> node, and it is not explicitly excluded from the rendering using either:</p> <ul class="brief"><li>the CSS 'display' property's 'none' value, or</li> <li>the 'visibility' property's 'collapse' value unless it is being treated as equivalent to the 'hidden' value, or</li> @@ -812,7 +812,7 @@ </td><td><code><a href="semantics.html#the-body-element-0">body</a></code> element's <code title="attr-body-marginwidth">marginwidth</code> attribute </td></tr><tr><td>The <code><a href="semantics.html#the-body-element-0">body</a></code> element's <a href="#container-frame-element">container frame element</a>'s <code title="attr-frame-marginwidth">marginwidth</code> attribute </td></tr><tr><td><code><a href="semantics.html#the-body-element-0">body</a></code> element's <code title="attr-body-leftmargin">rightmargin</code> attribute - </td></tr></tbody></table><p>If the <code><a href="semantics.html#the-body-element-0">body</a></code> element's <code>Document</code>'s + </td></tr></tbody></table><p>If the <code><a href="semantics.html#the-body-element-0">body</a></code> element's <code><a href="infrastructure.html#document">Document</a></code>'s <a href="browsers.html#browsing-context">browsing context</a> is a <a href="browsers.html#nested-browsing-context">nested browsing context</a>, and the <a href="browsers.html#browsing-context-container">browsing context container</a> of that <a href="browsers.html#nested-browsing-context">nested browsing context</a> is a <code><a href="obsolete.html#frame">frame</a></code> or @@ -829,8 +829,8 @@ a page is rendered not as the author intended, possibly for the purposes of phishing or otherwise misleading the user.</p> - <hr><p>If the <code>Document</code> has a <a href="infrastructure.html#root-element">root element</a>, and - the <code>Document</code>'s <a href="browsers.html#browsing-context">browsing context</a> is a + <hr><p>If the <code><a href="infrastructure.html#document">Document</a></code> has a <a href="infrastructure.html#root-element">root element</a>, and + the <code><a href="infrastructure.html#document">Document</a></code>'s <a href="browsers.html#browsing-context">browsing context</a> is a <a href="browsers.html#nested-browsing-context">nested browsing context</a>, and the <a href="browsers.html#browsing-context-container">browsing context container</a> of that <a href="browsers.html#nested-browsing-context">nested browsing context</a> is a <code><a href="obsolete.html#frame">frame</a></code> or <code><a href="text-level-semantics.html#the-iframe-element">iframe</a></code> element, and that element @@ -911,7 +911,7 @@ form { margin-bottom: 1em; }</pre> - <p>When a <code>Document</code> is in <a href="dom.html#quirks-mode">quirks mode</a>, + <p>When a <code><a href="infrastructure.html#document">Document</a></code> is in <a href="dom.html#quirks-mode">quirks mode</a>, margins on <a href="infrastructure.html#html-elements">HTML elements</a> at the top or bottom of <code><a href="semantics.html#the-body-element-0">body</a></code>, <code><a href="tabular-data.html#the-td-element">td</a></code>, or <code><a href="tabular-data.html#the-th-element">th</a></code> elements are expected to be collapsed to zero.</p> @@ -1119,21 +1119,21 @@ value</a>, and if that does not return an error, the user agent is expected to treat the attribute as a <a href="#presentational-hints" title="presentational hints">presentational hint</a> setting the 'color' property of - any element in the <code>Document</code> matching the ':link' + any element in the <code><a href="infrastructure.html#document">Document</a></code> matching the ':link' pseudo-class to the resulting color.</p> <p>When a <code><a href="semantics.html#the-body-element-0">body</a></code> element has a <code title="attr-body-vlink"><a href="obsolete.html#attr-body-vlink">vlink</a></code> attribute, its value is expected to be parsed using the <a href="infrastructure.html#rules-for-parsing-a-legacy-color-value">rules for parsing a legacy color value</a>, and if that does not return an error, the user agent is expected to treat the attribute as a <a href="#presentational-hints" title="presentational hints">presentational hint</a> setting the - 'color' property of any element in the <code>Document</code> + 'color' property of any element in the <code><a href="infrastructure.html#document">Document</a></code> matching the ':visited' pseudo-class to the resulting color.</p> <p>When a <code><a href="semantics.html#the-body-element-0">body</a></code> element has a <code title="attr-body-alink"><a href="obsolete.html#attr-body-alink">alink</a></code> attribute, its value is expected to be parsed using the <a href="infrastructure.html#rules-for-parsing-a-legacy-color-value">rules for parsing a legacy color value</a>, and if that does not return an error, the user agent is expected to treat the attribute as a <a href="#presentational-hints" title="presentational hints">presentational hint</a> setting the - 'color' property of any element in the <code>Document</code> + 'color' property of any element in the <code><a href="infrastructure.html#document">Document</a></code> matching the ':active' pseudo-class and either the ':link' pseudo-class or the ':visited' pseudo-class to the resulting color.</p> @@ -1611,7 +1611,7 @@ element already has intrinsic dimensions (e.g. from the <a href="the-canvas-element.html#dimension-attributes">dimension attributes</a> or CSS rules), and either the user agent has reason to believe that the image will become <i title="img-available"><a href="text-level-semantics.html#img-available">available</a></i><!--input-img-available also--> - and be rendered in due course or the <code>Document</code> is in + and be rendered in due course or the <code><a href="infrastructure.html#document">Document</a></code> is in <a href="dom.html#quirks-mode">quirks mode</a>, the element is expected to be treated as a replaced element whose content is the text that the element represents, if any, optionally alongside an icon indicating that the @@ -1656,7 +1656,7 @@ up if the user interacted with the actual image.</p> <hr><p>The following CSS rules are expected to apply when the - <code>Document</code> is in <a href="dom.html#quirks-mode">quirks mode</a>:</p> + <code><a href="infrastructure.html#document">Document</a></code> is in <a href="dom.html#quirks-mode">quirks mode</a>:</p> <pre class="css">@namespace url(http://www.w3.org/1999/xhtml); @@ -2780,13 +2780,13 @@ <p>User agents are expected to allow the user to request the opportunity to <dfn id="obtain-a-physical-form">obtain a physical form</dfn> (or a - representation of a physical form) of a <code>Document</code>. For + representation of a physical form) of a <code><a href="infrastructure.html#document">Document</a></code>. For example, selecting the option to print a page or convert it to PDF format.</p> <p>When the user actually <a href="#obtain-a-physical-form" title="obtain a physical form">obtains a physical form</a> (or a representation of a - physical form) of a <code>Document</code>, the user agent is + physical form) of a <code><a href="infrastructure.html#document">Document</a></code>, the user agent is expected to create a new view with the print media, render the result, and the discard the view.</p> Index: offline.html =================================================================== RCS file: /sources/public/html5/spec/offline.html,v retrieving revision 1.804 retrieving revision 1.805 diff -u -d -r1.804 -r1.805 --- offline.html 16 Feb 2010 08:26:31 -0000 1.804 +++ offline.html 16 Feb 2010 08:36:25 -0000 1.805 @@ -290,7 +290,7 @@ <a href="history.html">← 5.4 Session history and navigation</a> – <a href="spec.html#contents">Table of contents</a> – <a href="webappapis.html">6 Web application APIs →</a> - </nav><p>This is revision 1.3795.</p> + </nav><p>This is revision 1.3796.</p> <h3 id="offline"><span class="secno">5.6 </span>Offline Web applications</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><!-- v2 ideas for appcache: @@ -394,15 +394,15 @@ </th><th> Dispatched when... </th><th> Next events </th></tr></thead><tbody><tr><td> <dfn id="event-appcache-checking" title="event-appcache-checking"><code>checking</code></dfn> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> The user agent is checking for an update, or attempting to download the manifest for the first time. <strong>This is always the first event in the sequence.</strong> </td><td> <code title="event-appcache-noupdate"><a href="#event-appcache-noupdate">noupdate</a></code>, <code title="event-appcache-downloading"><a href="#event-appcache-downloading">downloading</a></code>, <code title="event-appcache-obsolete"><a href="#event-appcache-obsolete">obsolete</a></code>, <code title="event-appcache-error"><a href="#event-appcache-error">error</a></code> </td></tr><tr><td> <dfn id="event-appcache-noupdate" title="event-appcache-noupdate"><code>noupdate</code></dfn> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> The manifest hadn't changed. </td><td> Last event in sequence. </td></tr><tr><td> <dfn id="event-appcache-downloading" title="event-appcache-downloading"><code>downloading</code></dfn> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> The user agent has found an update and is fetching it, or is downloading the resources listed by the manifest for the first time. </td><td> <code title="event-appcache-progress"><a href="#event-appcache-progress">progress</a></code>, <code title="event-appcache-error"><a href="#event-appcache-error">error</a></code>, <code title="event-appcache-cached"><a href="#event-appcache-cached">cached</a></code>, <code title="event-appcache-updateready"><a href="#event-appcache-updateready">updateready</a></code> </td></tr><tr><td> <dfn id="event-appcache-progress" title="event-appcache-progress"><code>progress</code></dfn> @@ -410,19 +410,19 @@ </td><td> The user agent is downloading resources listed by the manifest. </td><td> <code title="event-appcache-progress"><a href="#event-appcache-progress">progress</a></code>, <code title="event-appcache-error"><a href="#event-appcache-error">error</a></code>, <code title="event-appcache-cached"><a href="#event-appcache-cached">cached</a></code>, <code title="event-appcache-updateready"><a href="#event-appcache-updateready">updateready</a></code> </td></tr><tr><td> <dfn id="event-appcache-cached" title="event-appcache-cached"><code>cached</code></dfn> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> The resources listed in the manifest have been downloaded, and the application is now cached. </td><td> Last event in sequence. </td></tr><tr><td> <dfn id="event-appcache-updateready" title="event-appcache-updateready"><code>updateready</code></dfn> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> The resources listed in the manifest have been newly redownloaded, and the script can use <code title="dom-appcache-swapCache"><a href="#dom-appcache-swapcache">swapCache()</a></code> to switch to the new cache. </td><td> Last event in sequence. </td></tr><tr><td> <dfn id="event-appcache-obsolete" title="event-appcache-obsolete"><code>obsolete</code></dfn> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> The manifest was found to have become a 404 or 410 page, so the application cache is being deleted. </td><td> Last event in sequence. </td></tr><tr><td rowspan="4"> <dfn id="event-appcache-error" title="event-appcache-error"><code>error</code></dfn> - </td><td rowspan="4"> <code>Event</code> + </td><td rowspan="4"> <code><a href="infrastructure.html#event">Event</a></code> </td><td> The manifest was a 404 or 410 page, so the attempt to cache the application has been aborted. </td><td rowspan="3"> Last event in sequence. </td></tr><tr><td> The manifest hadn't changed, but the page referencing the manifest failed to download properly. @@ -516,7 +516,7 @@ <p>Each <a href="#application-cache-group">application cache group</a> has a <dfn id="concept-appcache-pending-masters" title="concept-appcache-pending-masters">list of pending master entries</dfn>. Each entry in this list consists of a resource and a - corresponding <code>Document</code> object. It is used during the + corresponding <code><a href="infrastructure.html#document">Document</a></code> object. It is used during the <a href="#application-cache-download-process">application cache download process</a> to ensure that new master entries are cached even if the <a href="#application-cache-download-process">application cache download process</a> was already running for their @@ -526,7 +526,7 @@ must be ignored when looking at what <a href="#application-cache-group" title="application cache group">application cache groups</a> exist.</p> - <hr><p>A <dfn id="cache-host">cache host</dfn> is a <code>Document</code> or a + <hr><p>A <dfn id="cache-host">cache host</dfn> is a <code><a href="infrastructure.html#document">Document</a></code> or a <code>SharedWorkerGlobalScope</code> object. A <a href="#cache-host">cache host</a> can be associated with an <a href="#application-cache">application cache</a>. @@ -535,7 +535,7 @@ </p> - <p>A <code>Document</code> initially is not associated with an + <p>A <code><a href="infrastructure.html#document">Document</a></code> initially is not associated with an <a href="#application-cache">application cache</a>, but can become associated with one early during the page load process, when steps <a href="syntax.html#parser-appcache">in the parser</a> and in the <a href="history.html#navigate" title="navigate">navigation</a> sections cause <a href="#concept-appcache-init" title="concept-appcache-init">cache selection</a> to occur.</p> @@ -1121,7 +1121,7 @@ <a href="#application-cache-group">application cache group</a> identified by <var title="">manifest URL</var>.</p></li> <li><p>If these steps were invoked with a <a href="#concept-appcache-master" title="concept-appcache-master">master</a> resource, then add - the resource, along with the resource's <code>Document</code>, to + the resource, along with the resource's <code><a href="infrastructure.html#document">Document</a></code>, to <var title="">cache group</var>'s <a href="#concept-appcache-pending-masters" title="concept-appcache-pending-masters">list of pending master entries</a>.</p></li> @@ -1209,7 +1209,7 @@ equivalent</a>, then run these substeps:</p> <ol><li><p>Mark <var title="">cache group</var> as <a href="#concept-appcache-obsolete" title="concept-appcache-obsolete">obsolete</a>. This <var title="">cache group</var> no longer exists for any purpose other - than the processing of <code>Document</code> objects already + than the processing of <code><a href="infrastructure.html#document">Document</a></code> objects already associated with an <a href="#application-cache">application cache</a> in the <var title="">cache group</var>.</p></li> <li><p>Let <var title="">task list</var> be an empty list of @@ -1231,7 +1231,7 @@ to <a href="webappapis.html#fire-a-simple-event">fire a simple event</a> that is cancelable named <code title="event-appcache-error"><a href="#event-appcache-error">error</a></code> (not <code title="event-appcache-obsolete"><a href="#event-appcache-obsolete">obsolete</a></code>!) at the <code><a href="#applicationcache">ApplicationCache</a></code> singleton of the <a href="#cache-host">cache - host</a> the <code>Document</code> for this entry, if there + host</a> the <code><a href="infrastructure.html#document">Document</a></code> for this entry, if there still is one, and add it to <var title="">task list</var>. The default action of this event must be, if the user agent <a href="#shows-caching-progress">shows caching progress</a>, the display of some sort of @@ -1294,14 +1294,14 @@ user cancels the download), then create a <a href="webappapis.html#concept-task" title="concept-task">task</a> to <a href="webappapis.html#fire-a-simple-event">fire a simple event</a> that is cancelable named <code title="event-appcache-error"><a href="#event-appcache-error">error</a></code> at the <code><a href="#applicationcache">ApplicationCache</a></code> singleton of the <a href="#cache-host">cache - host</a> the <code>Document</code> for this entry, if there + host</a> the <code><a href="infrastructure.html#document">Document</a></code> for this entry, if there still is one, and add it to <var title="">task list</var>. The default action of this event must be, if the user agent <a href="#shows-caching-progress">shows caching progress</a>, the display of some sort of user interface indicating to the user that the user agent failed to save the application for offline use.</p> - <p>Otherwise, associate the <code>Document</code> for this entry + <p>Otherwise, associate the <code><a href="infrastructure.html#document">Document</a></code> for this entry with <var title="">cache</var>; store the resource for this entry in <var title="">cache</var>, if it isn't already there, and categorize its entry as a <a href="#concept-appcache-master" title="concept-appcache-master">master entry</a>. If the @@ -1348,7 +1348,7 @@ <i>incomplete</i>.</p></li> <li><p>For each entry in <var title="">cache group</var>'s <a href="#concept-appcache-pending-masters" title="concept-appcache-pending-masters">list of pending master - entries</a>, associate the <code>Document</code> for this entry + entries</a>, associate the <code><a href="infrastructure.html#document">Document</a></code> for this entry with <var title="">new cache</var>.</p></li> <li><p>Set the <a href="#concept-appcache-status" title="concept-appcache-status">status</a> @@ -1566,13 +1566,13 @@ <p>If the download failed (e.g. the connection times out, or the user cancels the download), then run these substeps:</p> - <ol><li><p>Unassociate the <code>Document</code> for this entry from + <ol><li><p>Unassociate the <code><a href="infrastructure.html#document">Document</a></code> for this entry from <var title="">new cache</var>.</p></li> <li><p><a href="#queue-a-post-load-task">Queue a post-load task</a> to <a href="webappapis.html#fire-a-simple-event">fire a simple event</a> that is cancelable named <code title="event-appcache-error"><a href="#event-appcache-error">error</a></code> at the <code><a href="#applicationcache">ApplicationCache</a></code> singleton of the - <code>Document</code> for this entry, if there still is one. The + <code><a href="infrastructure.html#document">Document</a></code> for this entry, if there still is one. The default action of this event must be, if the user agent <a href="#shows-caching-progress">shows caching progress</a>, the display of some sort of user interface indicating to the user that the user agent failed @@ -1687,13 +1687,13 @@ <ol><li><p>Wait for the resource for this entry to have either completely downloaded or failed.</p> - </li><li><p>Unassociate the <code>Document</code> for this entry from + </li><li><p>Unassociate the <code><a href="infrastructure.html#document">Document</a></code> for this entry from its <a href="#application-cache">application cache</a>, if it has one.</p></li> <li><p>Create a <a href="webappapis.html#concept-task" title="concept-task">task</a> to <a href="webappapis.html#fire-a-simple-event">fire a simple event</a> that is cancelable named <code title="event-appcache-error"><a href="#event-appcache-error">error</a></code> at the <code><a href="#applicationcache">ApplicationCache</a></code> singleton of the - <code>Document</code> for this entry, if there still is one, and + <code><a href="infrastructure.html#document">Document</a></code> for this entry, if there still is one, and add it to <var title="">task list</var>. The default action of these events must be, if the user agent <a href="#shows-caching-progress">shows caching progress</a>, the display of some sort of user interface @@ -1748,17 +1748,17 @@ allows user agents to keep caches primed and to update caches even before the user visits a site.</p> - <hr><p>Each <code>Document</code> has a list of <dfn id="pending-application-cache-download-process-tasks">pending application + <hr><p>Each <code><a href="infrastructure.html#document">Document</a></code> has a list of <dfn id="pending-application-cache-download-process-tasks">pending application cache download process tasks</dfn> that is used to delay events fired by the algorithm above until the document's <code title="event-load">load</code> event has fired. When the - <code>Document</code> is created, the list must be empty.</p> + <code><a href="infrastructure.html#document">Document</a></code> is created, the list must be empty.</p> <p>When the steps above say to <dfn id="queue-a-post-load-task">queue a post-load task</dfn> <var title="">task</var>, where <var title="">task</var> is a <a href="webappapis.html#concept-task" title="concept-task">task</a> that dispatches an event on a target <code><a href="#applicationcache">ApplicationCache</a></code> object <var title="">target</var>, the user agent must run the appropriate steps from the following list:</p> - <dl><dt>If <var title="">target</var>'s <code>Document</code> has + <dl><dt>If <var title="">target</var>'s <code><a href="infrastructure.html#document">Document</a></code> has <a href="syntax.html#completely-loaded">completely loaded</a></dt> <dd><p><a href="webappapis.html#queue-a-task" title="queue a task">Queue</a> the task <var title="">task</var>.</p></dd> @@ -1766,7 +1766,7 @@ <dt>Otherwise</dt> <dd><p>Add <var title="">task</var> to <var title="">target</var>'s - <code>Document</code>'s list of <a href="#pending-application-cache-download-process-tasks">pending application cache + <code><a href="infrastructure.html#document">Document</a></code>'s list of <a href="#pending-application-cache-download-process-tasks">pending application cache download process tasks</a>.</p></dd> </dl><p>The <a href="webappapis.html#task-source">task source</a> for these <a href="webappapis.html#concept-task" title="concept-task">tasks</a> is the <a href="webappapis.html#networking-task-source">networking task @@ -1779,7 +1779,7 @@ <p>When the <dfn id="concept-appcache-init" title="concept-appcache-init">application cache selection algorithm</dfn> algorithm is invoked with a - <code>Document</code> <var title="">document</var> and optionally a + <code><a href="infrastructure.html#document">Document</a></code> <var title="">document</var> and optionally a manifest <a href="infrastructure.html#url">URL</a> <var title="">manifest URL</var>, the user agent must run the first applicable set of steps from the following list:</p> @@ -1853,7 +1853,7 @@ <dd> - <p>The <code>Document</code> is not associated with any + <p>The <code><a href="infrastructure.html#document">Document</a></code> is not associated with any <a href="#application-cache">application cache</a>.</p> <p>If there was a <var title="">manifest URL</var>, the user agent @@ -1962,7 +1962,7 @@ attribute <a href="webappapis.html#function">Function</a> <a href="#handler-appcache-oncached" title="handler-appcache-oncached">oncached</a>; attribute <a href="webappapis.html#function">Function</a> <a href="#handler-appcache-onobsolete" title="handler-appcache-onobsolete">onobsolete</a>; }; -<a href="#applicationcache">ApplicationCache</a> implements <span>EventTarget</span>;</pre><dl class="domintro"><dt><var title="">cache</var> = <var title="">window</var> . <code title="dom-applicationCache"><a href="#dom-applicationcache">applicationCache</a></code></dt> +<a href="#applicationcache">ApplicationCache</a> implements <a href="infrastructure.html#eventtarget">EventTarget</a>;</pre><dl class="domintro"><dt><var title="">cache</var> = <var title="">window</var> . <code title="dom-applicationCache"><a href="#dom-applicationcache">applicationCache</a></code></dt> <dd> <p>(In a window.) Returns the <code><a href="#applicationcache">ApplicationCache</a></code> object that applies to the <a href="browsers.html#active-document">active document</a> of that <code><a href="browsers.html#window">Window</a></code>.</p> Index: obsolete.html =================================================================== RCS file: /sources/public/html5/spec/obsolete.html,v retrieving revision 1.801 retrieving revision 1.802 diff -u -d -r1.801 -r1.802 --- obsolete.html 16 Feb 2010 08:26:31 -0000 1.801 +++ obsolete.html 16 Feb 2010 08:36:25 -0000 1.802 @@ -290,7 +290,7 @@ <a href="the-xhtml-syntax.html">← 9 The XHTML syntax</a> – <a href="spec.html#contents">Table of contents</a> – <a href="iana.html">12 IANA considerations →</a> - </nav><p>This is revision 1.3795.</p> + </nav><p>This is revision 1.3796.</p> <h2 id="obsolete"><span class="secno">11 </span>Obsolete features</h2><h3 id="obsolete-but-conforming-features"><span class="secno">11.1 </span>Obsolete but conforming features</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>Features listed in this section will trigger warnings in @@ -591,10 +591,10 @@ <p id="sandboxPluginApplet">When the element is not <a href="infrastructure.html#in-a-document">in a <code>Document</code></a>, and when the element's document is not <a href="browsers.html#fully-active">fully active</a>, and when the element's - <code>Document</code>'s <a href="browsers.html#browsing-context">browsing context</a> had its + <code><a href="infrastructure.html#document">Document</a></code>'s <a href="browsers.html#browsing-context">browsing context</a> had its <a href="text-level-semantics.html#sandboxed-plugins-browsing-context-flag">sandboxed plugins browsing context flag</a> when that - <code>Document</code> was created, and when the element's - <code>Document</code> was parsed from a resource whose <a href="infrastructure.html#content-type-sniffing-0" title="Content-Type sniffing">sniffed type</a> as determined + <code><a href="infrastructure.html#document">Document</a></code> was created, and when the element's + <code><a href="infrastructure.html#document">Document</a></code> was parsed from a resource whose <a href="infrastructure.html#content-type-sniffing-0" title="Content-Type sniffing">sniffed type</a> as determined during <a href="history.html#navigate" title="navigate">navigation</a> is <code><a href="iana.html#text-html-sandboxed">text/html-sandboxed</a></code>, and when the element has an ancestor <a href="video.html#media-element">media element</a>, and when the element has an @@ -1001,7 +1001,7 @@ <p>The <dfn id="dom-frame-contentdocument" title="dom-frame-contentDocument"><code>contentDocument</code></dfn> IDL attribute of the <code><a href="#frame">frame</a></code> element must return the - <code>Document</code> object of the <a href="browsers.html#active-document">active document</a> of + <code><a href="infrastructure.html#document">Document</a></code> object of the <a href="browsers.html#active-document">active document</a> of the <code><a href="#frame">frame</a></code> element's <a href="browsers.html#nested-browsing-context">nested browsing context</a>.</p> @@ -1669,7 +1669,7 @@ readonly attribute <a href="infrastructure.html#htmlallcollection">HTMLAllCollection</a> <a href="#dom-document-all" title="dom-document-all">all</a>; };</pre> - <p>The attributes of the <code>Document</code> object listed in the + <p>The attributes of the <code><a href="infrastructure.html#document">Document</a></code> object listed in the first column of the following table must <a href="infrastructure.html#reflect">reflect</a> the content attribute on <a href="dom.html#the-body-element">the body element</a> with the name given in the corresponding cell in the second column on the same @@ -1693,13 +1693,13 @@ </td><td><code title="attr-body-alink"><a href="#attr-body-alink">alink</a></code> </td></tr></tbody></table><hr><p>The <dfn id="dom-document-anchors" title="dom-document-anchors"><code>anchors</code></dfn> attribute must return an <code><a href="infrastructure.html#htmlcollection">HTMLCollection</a></code> rooted at the - <code>Document</code> node, whose filter matches only <code><a href="text-level-semantics.html#the-a-element">a</a></code> + <code><a href="infrastructure.html#document">Document</a></code> node, whose filter matches only <code><a href="text-level-semantics.html#the-a-element">a</a></code> elements with <code title="attr-a-name"><a href="#attr-a-name">name</a></code> attributes.</p> <p>The <dfn id="dom-document-applets" title="dom-document-applets"><code>applets</code></dfn> attribute must return an <code><a href="infrastructure.html#htmlcollection">HTMLCollection</a></code> rooted at the - <code>Document</code> node, whose filter matches only + <code><a href="infrastructure.html#document">Document</a></code> node, whose filter matches only <code><a href="#the-applet-element">applet</a></code> elements.</p> <p>The <dfn id="dom-document-clear" title="dom-document-clear"><code>clear()</code></dfn> @@ -1707,7 +1707,7 @@ <hr><p>The <dfn id="dom-document-all" title="dom-document-all"><code>all</code></dfn> attribute must return an <code><a href="infrastructure.html#htmlallcollection">HTMLAllCollection</a></code> rooted at the - <code>Document</code> node, whose filter matches all elements.</p> + <code><a href="infrastructure.html#document">Document</a></code> node, whose filter matches all elements.</p> <p>The object returned for <code title="dom-document-all"><a href="#dom-document-all">all</a></code> has several unusual behaviors:</p> Index: named-character-references.html =================================================================== RCS file: /sources/public/html5/spec/named-character-references.html,v retrieving revision 1.802 retrieving revision 1.803 diff -u -d -r1.802 -r1.803 --- named-character-references.html 16 Feb 2010 08:26:31 -0000 1.802 +++ named-character-references.html 16 Feb 2010 08:36:25 -0000 1.803 @@ -290,7 +290,7 @@ <a href="syntax.html">← 8 The HTML syntax</a> – <a href="spec.html#contents">Table of contents</a> – <a href="the-xhtml-syntax.html">9 The XHTML syntax →</a> - </nav><p>This is revision 1.3795.</p> + </nav><p>This is revision 1.3796.</p> <h3 id="named-character-references"><span class="secno">8.5 </span><dfn>Named character references</dfn></h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>This table lists the character reference names that are supported Index: history.html =================================================================== RCS file: /sources/public/html5/spec/history.html,v retrieving revision 1.803 retrieving revision 1.804 diff -u -d -r1.803 -r1.804 --- history.html 16 Feb 2010 08:26:30 -0000 1.803 +++ history.html 16 Feb 2010 08:36:24 -0000 1.804 @@ -290,15 +290,15 @@ <a href="browsers.html">← 5 Loading Web pages</a> – <a href="spec.html#contents">Table of contents</a> – <a href="offline.html">5.6 Offline Web applications →</a> - </nav><p>This is revision 1.3795.</p> + </nav><p>This is revision 1.3796.</p> - <h3 id="history"><span class="secno">5.4 </span>Session history and navigation</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><h4 id="the-session-history-of-browsing-contexts"><span class="secno">5.4.1 </span>The session history of browsing contexts</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>The sequence of <code>Document</code>s in a <a href="browsers.html#browsing-context">browsing + <h3 id="history"><span class="secno">5.4 </span>Session history and navigation</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><h4 id="the-session-history-of-browsing-contexts"><span class="secno">5.4.1 </span>The session history of browsing contexts</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>The sequence of <code><a href="infrastructure.html#document">Document</a></code>s in a <a href="browsers.html#browsing-context">browsing context</a> is its <dfn id="session-history">session history</dfn>.</p><p><code><a href="#history-0">History</a></code> objects provide a representation of the pages in the session history of <a href="browsers.html#browsing-context" title="browsing context">browsing contexts</a>. Each <a href="browsers.html#browsing-context">browsing context</a>, including <a href="browsers.html#nested-browsing-context">nested browsing context</a>, has - a distinct session history.</p><p>Each <code>Document</code> object in a <a href="browsers.html#browsing-context">browsing + a distinct session history.</p><p>Each <code><a href="infrastructure.html#document">Document</a></code> object in a <a href="browsers.html#browsing-context">browsing context</a>'s <a href="#session-history">session history</a> is associated with a unique instance of the <code><a href="#history-0">History</a></code> object, although they all must model the same underlying <a href="#session-history">session history</a>.</p><div class="impl"> @@ -306,13 +306,13 @@ <p>The <dfn id="dom-history" title="dom-history"><code>history</code></dfn> attribute of the <code><a href="browsers.html#window">Window</a></code> interface must return the object implementing the <code><a href="#history-0">History</a></code> interface for that - <code><a href="browsers.html#window">Window</a></code> object's <code>Document</code>.</p> + <code><a href="browsers.html#window">Window</a></code> object's <code><a href="infrastructure.html#document">Document</a></code>.</p> </div><p><code><a href="#history-0">History</a></code> objects represent their <a href="browsers.html#browsing-context">browsing context</a>'s session history as a flat list of <a href="#session-history-entry" title="session history entry">session history entries</a>. Each <dfn id="session-history-entry">session history entry</dfn> consists of either a <a href="infrastructure.html#url">URL</a> or a <a href="#state-object">state object</a>, or both<span class="impl">, and may in addition have a title, a - <code>Document</code> object, form data, a scroll position, and + <code><a href="infrastructure.html#document">Document</a></code> object, form data, a scroll position, and other information associated with it</span>.</p><div class="impl"> <p class="note">This does not imply that the user interface need be @@ -321,7 +321,7 @@ </div><p class="note">Titles associated with <a href="#session-history-entry" title="session history entry">session history entries</a> need not have any relation with the current <code><a href="semantics.html#the-title-element-0">title</a></code> of the - <code>Document</code>. The title of a <a href="#session-history-entry">session history + <code><a href="infrastructure.html#document">Document</a></code>. The title of a <a href="#session-history-entry">session history entry</a> is intended to explain the state of the document at that point, so that the user can navigate the document's history.</p><p>URLs without associated <a href="#state-object" title="state object">state @@ -335,28 +335,28 @@ <a href="browsers.html#active-document">active document</a> of the <a href="browsers.html#browsing-context">browsing context</a>. The <a href="#current-entry">current entry</a> is usually an entry for the <a href="#dom-location-href" title="dom-location-href">location</a> of the - <code>Document</code>. However, it can also be one of the entries + <code><a href="infrastructure.html#document">Document</a></code>. However, it can also be one of the entries for <a href="#state-object" title="state object">state objects</a> added to the history by that document.</p><p>Entries that consist of <a href="#state-object" title="state object">state - objects</a> share the same <code>Document</code> as the entry for + objects</a> share the same <code><a href="infrastructure.html#document">Document</a></code> as the entry for the page that was active when they were added.</p><p>Contiguous entries that differ just by fragment identifier also - share the same <code>Document</code>.</p><p class="note">All entries that share the same - <code>Document</code> (and that are therefore merely different + share the same <code><a href="infrastructure.html#document">Document</a></code>.</p><p class="note">All entries that share the same + <code><a href="infrastructure.html#document">Document</a></code> (and that are therefore merely different states of one particular document) are contiguous by definition.</p><div class="impl"> <p>User agents may <a href="browsers.html#discard-a-document" title="discard a Document">discard</a> - the <code>Document</code> objects of entries other than the + the <code><a href="infrastructure.html#document">Document</a></code> objects of entries other than the <a href="#current-entry">current entry</a> that are not referenced from any script, reloading the pages afresh when the user or script navigates back to such pages. This specification does not specify when user agents - should discard <code>Document</code> objects and when they should + should discard <code><a href="infrastructure.html#document">Document</a></code> objects and when they should cache them.</p> - <p>Entries that have had their <code>Document</code> objects + <p>Entries that have had their <code><a href="infrastructure.html#document">Document</a></code> objects discarded must, for the purposes of the algorithms given below, act as if they had not. When the user or script navigates back or forwards to a page which has no in-memory DOM objects, any other - entries that shared the same <code>Document</code> object with it + entries that shared the same <code><a href="infrastructure.html#document">Document</a></code> object with it must share the new object as well.</p> </div><h4 id="the-history-interface"><span class="secno">5.4.2 </span>The <code><a href="#history-0">History</a></code> interface</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><pre class="idl">interface <dfn id="history-0">History</dfn> { @@ -426,7 +426,7 @@ object is the union of all the <a href="#session-history" title="session history">session histories</a> of all <a href="browsers.html#browsing-context" title="browsing context">browsing contexts</a> of all the <a href="browsers.html#fully-active">fully active</a> - <code>Document</code> objects that share the <code><a href="#history-0">History</a></code> + <code><a href="infrastructure.html#document">Document</a></code> objects that share the <code><a href="#history-0">History</a></code> object's <a href="browsers.html#top-level-browsing-context">top-level browsing context</a>, with all the entries that are <a href="#current-entry" title="current entry">current entries</a> in their respective <a href="#session-history" title="session history">session @@ -600,7 +600,7 @@ <p>User agents may limit the number of state objects added to the session history per page. If a page hits the UA-defined limit, user agents must remove the entry immediately after the first entry for - that <code>Document</code> object in the session history after + that <code><a href="infrastructure.html#document">Document</a></code> object in the session history after having added the new entry. (Thus the state history acts as a FIFO buffer for eviction, but as a LIFO buffer for navigation.)</p> @@ -697,7 +697,7 @@ State: <OUTPUT NAME=I>1</OUTPUT> <INPUT VALUE="Increment" TYPE=BUTTON ONCLICK="inc()"> </FORM></pre> - </div><h4 id="the-location-interface"><span class="secno">5.4.3 </span>The <code><a href="#location">Location</a></code> interface</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>Each <code>Document</code> object in a <a href="browsers.html#browsing-context">browsing + </div><h4 id="the-location-interface"><span class="secno">5.4.3 </span>The <code><a href="#location">Location</a></code> interface</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>Each <code><a href="infrastructure.html#document">Document</a></code> object in a <a href="browsers.html#browsing-context">browsing context</a>'s session history is associated with a unique instance of a <code><a href="#location">Location</a></code> object.</p><dl class="domintro"><dt><var title="">document</var> . <code title="dom-document-location"><a href="#dom-document-location">location</a></code> [ = <var title="">value</var> ]</dt> <dt><var title="">window</var> . <code title="dom-location"><a href="#dom-location">location</a></code> [ = <var title="">value</var> ]</dt> @@ -714,13 +714,13 @@ <p>The <dfn id="dom-document-location" title="dom-document-location"><code>location</code></dfn> attribute of the <code><a href="dom.html#htmldocument">HTMLDocument</a></code> interface must return the - <code><a href="#location">Location</a></code> object for that <code>Document</code> object, + <code><a href="#location">Location</a></code> object for that <code><a href="infrastructure.html#document">Document</a></code> object, if it is in a <a href="browsers.html#browsing-context">browsing context</a>, and null otherwise.</p> <p>The <dfn id="dom-location" title="dom-location"><code>location</code></dfn> attribute of the <code><a href="browsers.html#window">Window</a></code> interface must return the <code><a href="#location">Location</a></code> object for that <code><a href="browsers.html#window">Window</a></code> object's - <code>Document</code>.</p> + <code><a href="infrastructure.html#document">Document</a></code>.</p> </div><p><code><a href="#location">Location</a></code> objects provide a representation of <a href="dom.html#the-document-s-current-address" title="the document's current address">their document's current address</a>, and allow the <a href="#current-entry">current entry</a> of the @@ -789,7 +789,7 @@ <p>The <dfn id="dom-location-href" title="dom-location-href"><code>href</code></dfn> attribute must return <a href="dom.html#the-document-s-current-address" title="the document's current address">the current address</a> of the associated - <code>Document</code> object, as an <a href="infrastructure.html#absolute-url">absolute URL</a>.</p> + <code><a href="infrastructure.html#document">Document</a></code> object, as an <a href="infrastructure.html#absolute-url">absolute URL</a>.</p> <p>On setting, <!-- READ ME WHEN EDITING THIS: Mozilla does this, but IE doesn't. What should we do?: the behavior depends on the @@ -813,8 +813,8 @@ URL</a>, and if that is successful, must <a href="#navigate">navigate</a> the <a href="browsers.html#browsing-context">browsing context</a> to the specified <var title="">url</var>. If the <a href="browsers.html#browsing-context">browsing context</a>'s <a href="#session-history">session history</a> contains only one - <code>Document</code>, and that was the <code><a href="infrastructure.html#about:blank">about:blank</a></code> - <code>Document</code> created when the <a href="browsers.html#browsing-context">browsing context</a> + <code><a href="infrastructure.html#document">Document</a></code>, and that was the <code><a href="infrastructure.html#about:blank">about:blank</a></code> + <code><a href="infrastructure.html#document">Document</a></code> created when the <a href="browsers.html#browsing-context">browsing context</a> was created, then the navigation must be done with <a href="#replacement-enabled">replacement enabled</a>.</p> <!-- READ ME WHEN EDITING THIS: IE and Firefox only seem to treat it that way if the DOM is @@ -863,7 +863,7 @@ </dl><p>When a user requests that the current page be reloaded through a user interface element, the user agent should <a href="#navigate">navigate</a> the <a href="browsers.html#browsing-context">browsing context</a> to the same resource as - <code>Document</code>, with <a href="#replacement-enabled">replacement enabled</a>. In the + <code><a href="infrastructure.html#document">Document</a></code>, with <a href="#replacement-enabled">replacement enabled</a>. In the case of non-idempotent methods (e.g. HTTP POST), the user agent should prompt the user to confirm the operation first, since otherwise transactions (e.g. purchases or database modifications) @@ -874,7 +874,7 @@ <a href="infrastructure.html#url-decomposition-idl-attributes">URL decomposition IDL attributes</a>, <dfn id="dom-location-protocol" title="dom-location-protocol"><code>protocol</code></dfn>, <dfn id="dom-location-host" title="dom-location-host"><code>host</code></dfn>, <dfn id="dom-location-port" title="dom-location-port"><code>port</code></dfn>, <dfn id="dom-location-hostname" title="dom-location-hostname"><code>hostname</code></dfn>, <dfn id="dom-location-pathname" title="dom-location-pathname"><code>pathname</code></dfn>, <dfn id="dom-location-search" title="dom-location-search"><code>search</code></dfn>, and <dfn id="dom-location-hash" title="dom-location-hash"><code>hash</code></dfn>. <span class="impl">These must follow the rules given for URL decomposition IDL attributes, with the <a href="infrastructure.html#concept-uda-input" title="concept-uda-input">input</a> being <a href="dom.html#the-document-s-current-address" title="the document's current address">the current - address</a> of the associated <code>Document</code> object, as an + address</a> of the associated <code><a href="infrastructure.html#document">Document</a></code> object, as an <a href="infrastructure.html#absolute-url">absolute URL</a> (same as the <code title="dom-location-href"><a href="#dom-location-href">href</a></code> attribute), and the <a href="infrastructure.html#concept-uda-setter" title="concept-uda-setter">common setter action</a> being the same as setting the <code title="dom-location-href"><a href="#dom-location-href">href</a></code> attribute to the new output value.</span></p><div class="impl"> @@ -893,7 +893,7 @@ <p>User agents must raise a <code><a href="infrastructure.html#security_err">SECURITY_ERR</a></code> exception whenever any of the members of a <code><a href="#location">Location</a></code> object are accessed by scripts whose <a href="browsers.html#effective-script-origin">effective script origin</a> is not the <a href="browsers.html#same-origin" title="same origin">same</a> as the <code><a href="#location">Location</a></code> - object's associated <code>Document</code>'s <a href="browsers.html#effective-script-origin">effective script + object's associated <code><a href="infrastructure.html#document">Document</a></code>'s <a href="browsers.html#effective-script-origin">effective script origin</a>, with the following exceptions:</p> <ul><li>The <code title="dom-location-href"><a href="#dom-location-href">href</a></code> setter, if the @@ -1008,7 +1008,7 @@ <li><p>If there is a preexisting attempt to navigate the <a href="browsers.html#browsing-context">browsing context</a>, and either that attempt has not yet <a href="#concept-navigate-mature" title="concept-navigate-mature">matured</a> (i.e. it has - not passed the point of making its <code>Document</code> the + not passed the point of making its <code><a href="infrastructure.html#document">Document</a></code> the <a href="browsers.html#active-document">active document</a>), or that navigation's resource is not to be fetched using HTTP GET <a href="infrastructure.html#concept-http-equivalent-get" title="concept-http-equivalent-get">or equivalent</a>, or its resource's <a href="infrastructure.html#absolute-url">absolute URL</a> differs from this attempt's by @@ -1038,7 +1038,7 @@ mechanism instead.</p></li> <li><p><a href="#prompt-to-unload-a-document" title="prompt to unload a document">Prompt to - unload</a> the <code>Document</code> object. If the user + unload</a> the <code><a href="infrastructure.html#document">Document</a></code> object. If the user <a href="#refused-to-allow-the-document-to-be-unloaded">refused to allow the document to be unloaded</a>, then these steps must be aborted.</p></li> @@ -1234,7 +1234,7 @@ </dl><p><dfn id="set-the-document-s-address" title="set the document's address">Setting the document's address</dfn>: If there is no <dfn id="override-url">override URL</dfn>, then any - <code>Document</code> created by these steps must have its <a href="dom.html#the-document-s-address" title="the document's address">address</a> set to the + <code><a href="infrastructure.html#document">Document</a></code> created by these steps must have its <a href="dom.html#the-document-s-address" title="the document's address">address</a> set to the <a href="infrastructure.html#url">URL</a> that was originally to be <a href="infrastructure.html#fetch" title="fetch">fetched</a>, ignoring any other data that was used to obtain the resource (e.g. the entity body in the case of a POST submission is not part of <a href="dom.html#the-document-s-address">the document's @@ -1242,7 +1242,7 @@ case of the original load having failed and that URL having been found to match a <a href="offline.html#concept-appcache-fallback-ns" title="concept-appcache-fallback-ns">fallback namespace</a>). However, if there <em>is</em> an <a href="#override-url">override - URL</a>, then any <code>Document</code> created by these steps + URL</a>, then any <code><a href="infrastructure.html#document">Document</a></code> created by these steps must have its <a href="dom.html#the-document-s-address" title="the document's address">address</a> set to that <a href="infrastructure.html#url">URL</a> instead.</p> @@ -1251,20 +1251,20 @@ <code>javascript:</code> URL</a>.</p> <p><dfn id="create-a-document-object" title="create a Document object">Creating a new - <code>Document</code> object</dfn>: When a <code>Document</code> + <code>Document</code> object</dfn>: When a <code><a href="infrastructure.html#document">Document</a></code> is created as part of the above steps, a new set of <a href="browsers.html#view" title="view">views</a> along with the associated <code><a href="browsers.html#window">Window</a></code> object must be created and associated with the - <code>Document</code>, with one exception: if the <a href="browsers.html#browsing-context">browsing + <code><a href="infrastructure.html#document">Document</a></code>, with one exception: if the <a href="browsers.html#browsing-context">browsing context</a>'s only entry in its <a href="#session-history">session history</a> is - the <code><a href="infrastructure.html#about:blank">about:blank</a></code> <code>Document</code> that was added + the <code><a href="infrastructure.html#about:blank">about:blank</a></code> <code><a href="infrastructure.html#document">Document</a></code> that was added when the <a href="browsers.html#browsing-context">browsing context</a> was created, and navigation is occurring with <a href="#replacement-enabled">replacement enabled</a>, and that - <code>Document</code> has the <a href="browsers.html#same-origin">same origin</a> as the new - <code>Document</code>, then the <code><a href="browsers.html#window">Window</a></code> object and + <code><a href="infrastructure.html#document">Document</a></code> has the <a href="browsers.html#same-origin">same origin</a> as the new + <code><a href="infrastructure.html#document">Document</a></code>, then the <code><a href="browsers.html#window">Window</a></code> object and associated <a href="browsers.html#view" title="view">views</a> of that - <code>Document</code> must be used instead, and the <code title="dom-document">document</code> attribute of the + <code><a href="infrastructure.html#document">Document</a></code> must be used instead, and the <code title="dom-document">document</code> attribute of the <code>AbstractView</code> objects of those <a href="browsers.html#view" title="view">views</a> must be changed to point to the new - <code>Document</code> instead.</p> + <code><a href="infrastructure.html#document">Document</a></code> instead.</p> </li> @@ -1295,7 +1295,7 @@ steps:</p> <ol><li><p><a href="#unload-a-document" title="unload a document">Unload</a> the - <code>Document</code> object of the <a href="#current-entry">current entry</a>, + <code><a href="infrastructure.html#document">Document</a></code> object of the <a href="#current-entry">current entry</a>, with the <var title="">recycle</var> parameter set to false.</p></li> @@ -1306,10 +1306,10 @@ <dd> - <ol><li><p>Replace the <code>Document</code> of the entry being + <ol><li><p>Replace the <code><a href="infrastructure.html#document">Document</a></code> of the entry being updated, and any other entries that referenced the same document as that entry, with the new - <code>Document</code>.</p></li> + <code><a href="infrastructure.html#document">Document</a></code>.</p></li> <li><p><a href="#traverse-the-history">Traverse the history</a> to the new entry.</p></li> @@ -1318,7 +1318,7 @@ is no the <a href="#current-entry">current entry</a>, and can never happen with <a href="#replacement-enabled">replacement enabled</a>. (It happens when the user tried to traverse to a session history entry that no longer had - a <code>Document</code> object.)</p> + a <code><a href="infrastructure.html#document">Document</a></code> object.)</p> </dd> @@ -1349,7 +1349,7 @@ <li><p>Append a new entry at the end of the <code><a href="#history-0">History</a></code> object representing the new resource and its - <code>Document</code> object and related state.</p></li> + <code><a href="infrastructure.html#document">Document</a></code> object and related state.</p></li> <li><p><a href="#traverse-the-history">Traverse the history</a> to the new entry. If the navigation was initiated with <a href="#replacement-enabled">replacement @@ -1371,7 +1371,7 @@ agent to optimize the user experience in the face of performance concerns.)</p></li> - <li><p>If the <code>Document</code> object has no parser, or its + <li><p>If the <code><a href="infrastructure.html#document">Document</a></code> object has no parser, or its parser has <a href="syntax.html#stop-parsing" title="stop parsing">stopped parsing</a>, or the user agent has reason to believe the user is no longer interested in scrolling to the fragment identifier, then abort @@ -1414,7 +1414,7 @@ which eventually causes a <code title="event-load">load</code> event to be fired.</p> - <p>After creating the <code>Document</code> object, but before any + <p>After creating the <code><a href="infrastructure.html#document">Document</a></code> object, but before any script execution, certainly before the parser <a href="syntax.html#stop-parsing" title="stop parsing">stops</a>, the user agent must <a href="#update-the-session-history-with-the-new-page">update the session history with the new page</a>.</p> @@ -1453,11 +1453,11 @@ algorithm</a> with the resulting <a href="infrastructure.html#absolute-url">absolute URL</a> with any <a href="infrastructure.html#url-fragment" title="url-fragment"><fragment></a> component removed as the manifest URL, and passing in the newly-created - <code>Document</code>. Otherwise, if the attribute is absent or + <code><a href="infrastructure.html#document">Document</a></code>. Otherwise, if the attribute is absent or resolving it fails, then as soon as the root element is <a href="infrastructure.html#insert-an-element-into-a-document" title="insert an element into a document">inserted into the document</a>, the user agent must run the <a href="offline.html#concept-appcache-init" title="concept-appcache-init">application cache selection algorithm</a> with no manifest, and passing in the - <code>Document</code>.</p> + <code><a href="infrastructure.html#document">Document</a></code>.</p> <p class="note">Because the processing of the <code title="attr-html-manifest"><a href="semantics.html#attr-html-manifest">manifest</a></code> attribute happens only once the root element is parsed, any URLs referenced by @@ -1465,7 +1465,7 @@ cannot be cached.</p><!-- v2: fix this somehow --> <p>User agents may examine the namespace of the root - <code>Element</code> node of this <code>Document</code> object to + <code><a href="infrastructure.html#element">Element</a></code> node of this <code><a href="infrastructure.html#document">Document</a></code> object to perform namespace-based dispatch to alternative processing tools, e.g. determining that the content is actually a syndication feed and passing it to a feed handler. If such processing is to take place, @@ -1473,7 +1473,7 @@ "non-document content") in the <a href="#navigate">navigate</a> steps above.</p> - <p>Otherwise, then, with the newly created <code>Document</code>, + <p>Otherwise, then, with the newly created <code><a href="infrastructure.html#document">Document</a></code>, the user agents must <a href="#update-the-session-history-with-the-new-page">update the session history with the new page</a>. User agents may do this before the complete document has been parsed (thus achieving <i>incremental rendering</i>), and @@ -1481,7 +1481,7 @@ <p>Error messages from the parse process (e.g. XML namespace well-formedness errors) may be reported inline by mutating the - <code>Document</code>.</p> + <code><a href="infrastructure.html#document">Document</a></code>.</p> <h4 id="read-text"><span class="secno">5.5.4 </span><dfn title="navigate-text">Page load processing model for text files</dfn></h4><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed</i></p> @@ -1508,10 +1508,10 @@ <p>The <a href="dom.html#document-s-character-encoding">document's character encoding</a> must be set to the character encoding used to decode the document.</p> - <p>Upon creation of the <code>Document</code> object, the user agent + <p>Upon creation of the <code><a href="infrastructure.html#document">Document</a></code> object, the user agent must run the <a href="offline.html#concept-appcache-init" title="concept-appcache-init">application cache selection algorithm</a> with no manifest, and passing in the - newly-created <code>Document</code>.</p> + newly-created <code><a href="infrastructure.html#document">Document</a></code>.</p> <!-- next two paragraphs are nearly identical to the navigate-html section and similar to the "navigate-ua-inline" section, and the @@ -1523,12 +1523,12 @@ which eventually causes a <code title="event-load">load</code> event to be fired.</p> - <p>After creating the <code>Document</code> object, but potentially + <p>After creating the <code><a href="infrastructure.html#document">Document</a></code> object, but potentially before the page has finished parsing, the user agent must <a href="#update-the-session-history-with-the-new-page">update the session history with the new page</a>.</p> <p>User agents may add content to the <code><a href="semantics.html#the-head-element-0">head</a></code> element of - the <code>Document</code>, e.g. linking to a style sheet or an XBL + the <code><a href="infrastructure.html#document">Document</a></code>, e.g. linking to a style sheet or an XBL binding, providing script, giving the document a <code><a href="semantics.html#the-title-element-0">title</a></code>, etc.</p> @@ -1541,7 +1541,7 @@ <p>When an image resource is to be loaded in a <a href="browsers.html#browsing-context">browsing context</a>, the user agent should <a href="#create-a-document-object">create a <code>Document</code> object</a>, mark it as being an <a href="dom.html#html-documents" title="HTML documents">HTML document</a>, append an - <code><a href="semantics.html#the-html-element-0">html</a></code> element to the <code>Document</code>, append a + <code><a href="semantics.html#the-html-element-0">html</a></code> element to the <code><a href="infrastructure.html#document">Document</a></code>, append a <code><a href="semantics.html#the-head-element-0">head</a></code> element and a <code><a href="semantics.html#the-body-element-0">body</a></code> element to the <code><a href="semantics.html#the-html-element-0">html</a></code> element, append an <code><a href="text-level-semantics.html#the-img-element">img</a></code> to the <code><a href="semantics.html#the-body-element-0">body</a></code> element, and set the <code title="attr-img-src"><a href="text-level-semantics.html#attr-img-src">src</a></code> attribute of the <code><a href="text-level-semantics.html#the-img-element">img</a></code> @@ -1553,17 +1553,17 @@ <p>Then, the user agent must act as if it had <a href="syntax.html#stop-parsing" title="stop parsing">stopped parsing</a>.</p> - <p>Upon creation of the <code>Document</code> object, the user agent + <p>Upon creation of the <code><a href="infrastructure.html#document">Document</a></code> object, the user agent must run the <a href="offline.html#concept-appcache-init" title="concept-appcache-init">application cache selection algorithm</a> with no manifest, and passing in the - newly-created <code>Document</code>.</p> + newly-created <code><a href="infrastructure.html#document">Document</a></code>.</p> - <p>After creating the <code>Document</code> object, but potentially + <p>After creating the <code><a href="infrastructure.html#document">Document</a></code> object, but potentially before the page has finished fully loading, the user agent must <a href="#update-the-session-history-with-the-new-page">update the session history with the new page</a>.</p> <p>User agents may add content to the <code><a href="semantics.html#the-head-element-0">head</a></code> element of - the <code>Document</code>, or attributes to the <code><a href="text-level-semantics.html#the-img-element">img</a></code> + the <code><a href="infrastructure.html#document">Document</a></code>, or attributes to the <code><a href="text-level-semantics.html#the-img-element">img</a></code> element, e.g. to link to a style sheet or an XBL binding, to provide a script, to give the document a <code><a href="semantics.html#the-title-element-0">title</a></code>, etc.</p> @@ -1574,7 +1574,7 @@ is to be loaded in a <a href="browsers.html#browsing-context">browsing context</a>, the user agent should <a href="#create-a-document-object">create a <code>Document</code> object</a>, mark it as being an <a href="dom.html#html-documents" title="HTML documents">HTML document</a>, - append an <code><a href="semantics.html#the-html-element-0">html</a></code> element to the <code>Document</code>, + append an <code><a href="semantics.html#the-html-element-0">html</a></code> element to the <code><a href="infrastructure.html#document">Document</a></code>, append a <code><a href="semantics.html#the-head-element-0">head</a></code> element and a <code><a href="semantics.html#the-body-element-0">body</a></code> element to the <code><a href="semantics.html#the-html-element-0">html</a></code> element, append an <code><a href="text-level-semantics.html#the-embed-element">embed</a></code> to the <code><a href="semantics.html#the-body-element-0">body</a></code> element, and set the <code title="attr-embed-src"><a href="text-level-semantics.html#attr-embed-src">src</a></code> attribute of the @@ -1586,23 +1586,23 @@ <p>Then, the user agent must act as if it had <a href="syntax.html#stop-parsing" title="stop parsing">stopped parsing</a>.</p> - <p>Upon creation of the <code>Document</code> object, the user agent + <p>Upon creation of the <code><a href="infrastructure.html#document">Document</a></code> object, the user agent must run the <a href="offline.html#concept-appcache-init" title="concept-appcache-init">application cache selection algorithm</a> with no manifest, and passing in the - newly-created <code>Document</code>.</p> + newly-created <code><a href="infrastructure.html#document">Document</a></code>.</p> - <p>After creating the <code>Document</code> object, but potentially + <p>After creating the <code><a href="infrastructure.html#document">Document</a></code> object, but potentially before the page has finished fully loading, the user agent must <a href="#update-the-session-history-with-the-new-page">update the session history with the new page</a>.</p> <p>User agents may add content to the <code><a href="semantics.html#the-head-element-0">head</a></code> element of - the <code>Document</code>, or attributes to the <code><a href="text-level-semantics.html#the-embed-element">embed</a></code> + the <code><a href="infrastructure.html#document">Document</a></code>, or attributes to the <code><a href="text-level-semantics.html#the-embed-element">embed</a></code> element, e.g. to link to a style sheet or an XBL binding, or to give the document a <code><a href="semantics.html#the-title-element-0">title</a></code>.</p> <p class="note" id="sandboxPluginNavigate">If the <a href="text-level-semantics.html#sandboxed-plugins-browsing-context-flag">sandboxed plugins browsing context flag</a> was set on the <a href="browsers.html#browsing-context">browsing - context</a> when the <code>Document</code> was created, the + context</a> when the <code><a href="infrastructure.html#document">Document</a></code> was created, the synthesized <code><a href="text-level-semantics.html#the-embed-element">embed</a></code> element will <a href="text-level-semantics.html#sandboxPluginEmbed">fail to render the content</a>.</p> @@ -1611,9 +1611,9 @@ <p>When the user agent is to display a user agent page inline in a <a href="browsers.html#browsing-context">browsing context</a>, the user agent should <a href="#create-a-document-object">create a <code>Document</code> object</a>, mark it as being an <a href="dom.html#html-documents" title="HTML documents">HTML document</a>, and then either - associate that <code>Document</code> with a custom rendering that is - not rendered using the normal <code>Document</code> rendering rules, - or mutate that <code>Document</code> until it represents the content + associate that <code><a href="infrastructure.html#document">Document</a></code> with a custom rendering that is + not rendered using the normal <code><a href="infrastructure.html#document">Document</a></code> rendering rules, + or mutate that <code><a href="infrastructure.html#document">Document</a></code> until it represents the content the user agent wants to render.</p> <!-- next two paragraphs are similar to the navigate-text section, @@ -1622,12 +1622,12 @@ <p>Once the page has been set up, the user agent must act as if it had <a href="syntax.html#stop-parsing" title="stop parsing">stopped parsing</a>.</p> - <p>Upon creation of the <code>Document</code> object, the user agent + <p>Upon creation of the <code><a href="infrastructure.html#document">Document</a></code> object, the user agent must run the <a href="offline.html#concept-appcache-init" title="concept-appcache-init">application cache selection algorithm</a> with no manifest, passing in the - newly-created <code>Document</code>.</p> + newly-created <code><a href="infrastructure.html#document">Document</a></code>.</p> - <p>After creating the <code>Document</code> object, but potentially + <p>After creating the <code><a href="infrastructure.html#document">Document</a></code> object, but potentially before the page has been completely set up, the user agent must <a href="#update-the-session-history-with-the-new-page">update the session history with the new page</a>.</p> @@ -1655,7 +1655,7 @@ the <a href="webappapis.html#history-traversal-task-source">history traversal task source</a>.</p></li> <li><p>Append a new entry at the end of the <code><a href="#history-0">History</a></code> - object representing the new resource and its <code>Document</code> + object representing the new resource and its <code><a href="infrastructure.html#document">Document</a></code> object and related state. Its <a href="infrastructure.html#url">URL</a> must be set to the address to which the user agent was <a href="#navigate" title="navigate">navigating</a>. The title must be left unset.</p></li> @@ -1680,7 +1680,7 @@ fragment identifier, if any, identifies. The semantics of the fragment identifier in terms of mapping it to a specific DOM Node is defined by the specification that defines the <a href="infrastructure.html#mime-type">MIME type</a> - used by the <code>Document</code> (for example, the processing of + used by the <code><a href="infrastructure.html#document">Document</a></code> (for example, the processing of fragment identifiers for <a href="infrastructure.html#xml-mime-type" title="XML MIME type">XML MIME types</a> is the responsibility of RFC3023). <a href="references.html#refsRFC3023">[RFC3023]</a></p> @@ -1735,13 +1735,13 @@ to a <i>specified entry</i>, optionally with <a href="#replacement-enabled">replacement enabled</a>, the user agent must act as follows:</p> - <ol><li><p>If there is no longer a <code>Document</code> object for the + <ol><li><p>If there is no longer a <code><a href="infrastructure.html#document">Document</a></code> object for the entry in question, the user agent must <a href="#navigate">navigate</a> the browsing context to the location for that entry to perform an <a href="#entry-update">entry update</a> of that entry, and abort these steps. The "<a href="#navigate">navigate</a>" algorithm reinvokes this "traverse" algorithm to complete the traversal, at which point there - <em>is</em> a <code>Document</code> object and so this step gets + <em>is</em> a <code><a href="infrastructure.html#document">Document</a></code> object and so this step gets skipped. The navigation must be done using the same <a href="#source-browsing-context">source browsing context</a> as was used the first time this entry was created. (This can never happen with <a href="#replacement-enabled">replacement @@ -1755,7 +1755,7 @@ <li> <p>If appropriate, update the <a href="#current-entry">current entry</a> in the - <a href="browsers.html#browsing-context">browsing context</a>'s <code>Document</code> object's + <a href="browsers.html#browsing-context">browsing context</a>'s <code><a href="infrastructure.html#document">Document</a></code> object's <code><a href="#history-0">History</a></code> object to reflect any state that the user agent wishes to persist. The entry is then said to be <dfn id="an-entry-with-persisted-user-state">an entry with persisted user state</dfn>.</p> @@ -1766,20 +1766,20 @@ </li> <li><p>If the <i>specified entry</i> has a different - <code>Document</code> object than the <a href="#current-entry">current entry</a> + <code><a href="infrastructure.html#document">Document</a></code> object than the <a href="#current-entry">current entry</a> then the user agent must run the following substeps:</p> <ol><li>If the browsing context is a <a href="browsers.html#top-level-browsing-context">top-level browsing context</a>, but not an <a href="browsers.html#auxiliary-browsing-context">auxiliary browsing context</a>, and the <a href="browsers.html#origin">origin</a> of the - <code>Document</code> of the <i>specified entry</i> is not the + <code><a href="infrastructure.html#document">Document</a></code> of the <i>specified entry</i> is not the <a href="browsers.html#same-origin" title="same origin">same</a> as the <a href="browsers.html#origin">origin</a> - of the <code>Document</code> of the <a href="#current-entry">current entry</a>, + of the <code><a href="infrastructure.html#document">Document</a></code> of the <a href="#current-entry">current entry</a>, then the following sub-sub-steps must be run: <ol><li>The current <a href="browsers.html#browsing-context-name">browsing context name</a> must be stored with all the entries in the history that are associated - with <code>Document</code> objects with the <a href="browsers.html#same-origin">same + with <code><a href="infrastructure.html#document">Document</a></code> objects with the <a href="browsers.html#same-origin">same origin</a> as the <a href="browsers.html#active-document">active document</a> <em>and</em> that are contiguous with the <a href="#current-entry">current entry</a>.</li> @@ -1789,7 +1789,7 @@ </ol></li> <li id="appcache-history-2">The user agent must make the - <i>specified entry</i>'s <code>Document</code> object the + <i>specified entry</i>'s <code><a href="infrastructure.html#document">Document</a></code> object the <a href="browsers.html#active-document">active document</a> of the <a href="browsers.html#browsing-context">browsing context</a>.</li> @@ -1802,22 +1802,22 @@ <li>Any <a href="browsers.html#browsing-context-name">browsing context name</a> stored with the entries in the history that are associated with - <code>Document</code> objects with the <a href="browsers.html#same-origin">same origin</a> + <code><a href="infrastructure.html#document">Document</a></code> objects with the <a href="browsers.html#same-origin">same origin</a> as the new <a href="browsers.html#active-document">active document</a>, and that are contiguous with the specified entry, must be cleared.</li> </ol></li> <li id="history-autocomplete"><p>If the <i>specified entry</i>'s - <code>Document</code> has any <code><a href="forms.html#the-input-element">input</a></code> elements whose + <code><a href="infrastructure.html#document">Document</a></code> has any <code><a href="forms.html#the-input-element">input</a></code> elements whose <a href="forms.html#resulting-autocompletion-state">resulting autocompletion state</a> is <i title="">off</i>, invoke the <a href="forms.html#concept-form-reset-control" title="concept-form-reset-control">reset algorithm</a> of each of those elements.</p></li> <li><p>If the <a href="dom.html#current-document-readiness">current document readiness</a> of the - <i>specified entry</i>'s <code>Document</code> is "complete", + <i>specified entry</i>'s <code><a href="infrastructure.html#document">Document</a></code> is "complete", <a href="webappapis.html#queue-a-task">queue a task</a> to <a href="webappapis.html#fire-a-simple-event">fire a simple event</a> named <code title="event-pageshow">pageshow</code> at that - <code>Document</code>'s <code><a href="browsers.html#window">Window</a></code> object.</p></li> + <code><a href="infrastructure.html#document">Document</a></code>'s <code><a href="browsers.html#window">Window</a></code> object.</p></li> </ol></li> @@ -1826,7 +1826,7 @@ <li><p>If the <i>specified entry</i> has a URL that differs from the <a href="#current-entry">current entry</a>'s only by its fragment identifier, - and the two share the same <code>Document</code> object, then let + and the two share the same <code><a href="infrastructure.html#document">Document</a></code> object, then let <var title="">hash changed</var> be true, and let <var title="">old URL</var> be the URL of the <a href="#current-entry">current entry</a> and <var title="">new URL</var> be the URL of the <i>specified entry</i>. Otherwise, let <var title="">hash changed</var> be @@ -1848,7 +1848,7 @@ <li> <p>If the <i>specified entry</i> is a state object or the first - entry for a <code>Document</code>, the user agent must run the + entry for a <code><a href="infrastructure.html#document">Document</a></code>, the user agent must run the following substeps:</p> <ol><li><p>If the entry is a <a href="#state-object">state object</a> entry, let <var title="">state</var> be a <a href="infrastructure.html#structured-clone">structured clone</a> of that @@ -1864,14 +1864,14 @@ string "complete"</dt> <dd><p><a href="webappapis.html#queue-a-task">Queue a task</a> to fire a <code title="event-popstate"><a href="#event-popstate">popstate</a></code> event at the - <code><a href="browsers.html#window">Window</a></code> object of the <code>Document</code>, using + <code><a href="browsers.html#window">Window</a></code> object of the <code><a href="infrastructure.html#document">Document</a></code>, using the <code><a href="#popstateevent">PopStateEvent</a></code> interface, with the <code title="dom-PopStateEvent-state"><a href="#dom-popstateevent-state">state</a></code> attribute set to the value of <var title="">state</var>. This event must bubble but not be cancelable and has no default action.</p></dd> <dt>Otherwise</dt> - <dd><p>Let the <code>Document</code>'s <dfn id="pending-state-object">pending state + <dd><p>Let the <code><a href="infrastructure.html#document">Document</a></code>'s <dfn id="pending-state-object">pending state object</dfn> be <var title="">state</var>. (If there was already a <a href="#pending-state-object">pending state object</a>, the previous one is discarded.)</p> @@ -1923,7 +1923,7 @@ <p>The <dfn id="dom-popstateevent-state" title="dom-PopStateEvent-state"><code>state</code></dfn> attribute represents the context information for the event, or null, if the state represented is the initial state of the - <code>Document</code>.</p> + <code><a href="infrastructure.html#document">Document</a></code>.</p> </div><hr><p>The <dfn id="event-hashchange" title="event-hashchange"><code>hashchange</code></dfn> event is fired when navigating to a <a href="#session-history-entry">session history @@ -1969,7 +1969,7 @@ </div><h4 id="unloading-documents"><span class="secno">5.5.10 </span>Unloading documents</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><div class="impl"> - <p>A <code>Document</code> has a <var title="">salvageable</var> + <p>A <code><a href="infrastructure.html#document">Document</a></code> has a <var title="">salvageable</var> state, which is initially true.</p> <p>When a user agent is to <dfn id="prompt-to-unload-a-document">prompt to unload a document</dfn>, @@ -1980,12 +1980,12 @@ bubble but is cancelable.</p></li> <li><p><i>Dispatch</i>: Dispatch <var title="">event</var> at the - <code>Document</code>'s <code><a href="browsers.html#window">Window</a></code> object.</p></li> + <code><a href="infrastructure.html#document">Document</a></code>'s <code><a href="browsers.html#window">Window</a></code> object.</p></li> <li><p>Release the <a href="webappapis.html#storage-mutex">storage mutex</a>.</p></li> <li><p>If any event listeners were triggered by the earlier - <i>dispatch</i> step, then set the <code>Document</code>'s <var title="">salvageable</var> state to false.</p></li> + <i>dispatch</i> step, then set the <code><a href="infrastructure.html#document">Document</a></code>'s <var title="">salvageable</var> state to false.</p></li> <li> @@ -2015,7 +2015,7 @@ <li><p>Let <var title="">descendants</var> be the <a href="browsers.html#list-of-the-descendant-browsing-contexts">list of the descendant browsing contexts</a> of the - <code>Document</code>.</p></li> + <code><a href="infrastructure.html#document">Document</a></code>.</p></li> <li> @@ -2040,24 +2040,24 @@ </ol><p>When a user agent is to <dfn id="unload-a-document">unload a document</dfn>, it must run the following steps. These steps are passed an argument, <var title="">recycle</var>, which is either true or false, indicating - whether the <code>Document</code> object is going to be + whether the <code><a href="infrastructure.html#document">Document</a></code> object is going to be re-used. (This is set by the <code title="dom-document-open"><a href="embedded-content-0.html#dom-document-open">document.open()</a></code> method.)</p> <ol><li><p><a href="webappapis.html#fire-a-simple-event">Fire a simple event</a> named <code title="event-pagehide">pagehide</code> at the - <code>Document</code>'s <code><a href="browsers.html#window">Window</a></code> object.</p></li> + <code><a href="infrastructure.html#document">Document</a></code>'s <code><a href="browsers.html#window">Window</a></code> object.</p></li> <li><p><i>Unload event</i>: <a href="webappapis.html#fire-a-simple-event">Fire a simple event</a> named <code title="event-unload">unload</code> at the - <code>Document</code>'s <code><a href="browsers.html#window">Window</a></code> object.</p></li> + <code><a href="infrastructure.html#document">Document</a></code>'s <code><a href="browsers.html#window">Window</a></code> object.</p></li> <li><p>Release the <a href="webappapis.html#storage-mutex">storage mutex</a>.</p></li> <li><p>If any event listeners were triggered by the earlier - <i>unload event</i> step, then set the <code>Document</code> + <i>unload event</i> step, then set the <code><a href="infrastructure.html#document">Document</a></code> object's <var title="">salvageable</var> state to false.</p></li> <li><p>Run any <a href="#unloading-document-cleanup-steps">unloading document cleanup steps</a> for - <code>Document</code> that are defined by this specification or any + <code><a href="infrastructure.html#document">Document</a></code> that are defined by this specification or any other relevant specifications.</p></li> <li><p>If this algorithm was invoked by another instance of the @@ -2067,7 +2067,7 @@ <li><p>Let <var title="">descendants</var> be the <a href="browsers.html#list-of-the-descendant-browsing-contexts">list of the descendant browsing contexts</a> of the - <code>Document</code>.</p></li> + <code><a href="infrastructure.html#document">Document</a></code>.</p></li> <li> @@ -2088,13 +2088,13 @@ </ol></li> <li><p>If <var title="">salvageable</var> and <var title="">recycle</var> are both false, then the - <code>Document</code>'s <a href="browsers.html#browsing-context">browsing context</a> must <a href="browsers.html#discard-a-document" title="discard a document">discard the + <code><a href="infrastructure.html#document">Document</a></code>'s <a href="browsers.html#browsing-context">browsing context</a> must <a href="browsers.html#discard-a-document" title="discard a document">discard the <code>Document</code></a>.</p></li> </ol><p>This specification defines the following <dfn id="unloading-document-cleanup-steps">unloading document cleanup steps</dfn>. Other specifications can define more.</p> - <ol><li><p>Empty the <code>Document</code>'s <code><a href="browsers.html#window">Window</a></code>'s + <ol><li><p>Empty the <code><a href="infrastructure.html#document">Document</a></code>'s <code><a href="browsers.html#window">Window</a></code>'s <a href="webappapis.html#list-of-active-timeouts">list of active timeouts</a> and its <a href="webappapis.html#list-of-active-intervals">list of active intervals</a>.</p></li> <!-- XXX Should this affect <var title="">salvageable</var>? Should it happen at all? --> @@ -2102,14 +2102,14 @@ <li><p>If there are any outstanding transactions that have callbacks that involve <a href="webappapis.html#concept-script" title="concept-script">scripts</a> whose <a href="webappapis.html#script-s-global-object" title="script's global object">global object</a> is - the <code>Document</code>'s <code><a href="browsers.html#window">Window</a></code> object, roll them + the <code><a href="infrastructure.html#document">Document</a></code>'s <code><a href="browsers.html#window">Window</a></code> object, roll them back (without invoking any of the callbacks) and set <var title="">salvageable</var> to false. <a href="references.html#refsWEBSQL">[WEBSQL]</a> </p></li> <li><p><span>Close the Web Socket connection</span> of any <code>WebSocket</code> objects that were created by the <code title="dom-WebSocket">WebSocket()</code> constructor visible on the - <code>Document</code>'s <code><a href="browsers.html#window">Window</a></code> object. If this + <code><a href="infrastructure.html#document">Document</a></code>'s <code><a href="browsers.html#window">Window</a></code> object. If this affected any <code>WebSocket</code> objects, set <var title="">salvageable</var> to false. <a href="references.html#refsWEBSOCKET">[WEBSOCKET]</a> @@ -2144,11 +2144,11 @@ <h4 id="aborting-a-document-load"><span class="secno">5.5.11 </span>Aborting a document load</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p> <p>If the user cancels any instance of the <a href="infrastructure.html#fetch" title="fetch">fetching algorithm</a> in the context of a - <code>Document</code> in a <a href="browsers.html#browsing-context">browsing context</a>, then, if - that <code>Document</code> is an <a href="browsers.html#active-document">active document</a>, the + <code><a href="infrastructure.html#document">Document</a></code> in a <a href="browsers.html#browsing-context">browsing context</a>, then, if + that <code><a href="infrastructure.html#document">Document</a></code> is an <a href="browsers.html#active-document">active document</a>, the user agent must <a href="webappapis.html#queue-a-task">queue a task</a> to <a href="webappapis.html#fire-a-simple-event">fire a simple event</a> named <code title="event-abort">abort</code> at that - <code>Document</code>'s <code><a href="browsers.html#window">Window</a></code> object.</p> + <code><a href="infrastructure.html#document">Document</a></code>'s <code><a href="browsers.html#window">Window</a></code> object.</p> <!-- I'd love to make this more precise, anyone have any suggestions on what it should say? --> Index: semantics.html =================================================================== RCS file: /sources/public/html5/spec/semantics.html,v retrieving revision 1.811 retrieving revision 1.812 diff -u -d -r1.811 -r1.812 --- semantics.html 16 Feb 2010 08:26:31 -0000 1.811 +++ semantics.html 16 Feb 2010 08:36:25 -0000 1.812 @@ -290,7 +290,7 @@ <a href="embedded-content-0.html">← 3.2.5.1.6 Embedded content</a> – <a href="spec.html#contents">Table of contents</a> – <a href="text-level-semantics.html">4.6 Text-level semantics →</a> - </nav><p>This is revision 1.3795.</p> + </nav><p>This is revision 1.3796.</p> <h2 id="semantics"><span class="secno">4 </span>The elements of HTML</h2><h3 id="the-root-element"><span class="secno">4.1 </span>The root element</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><h4 id="the-html-element-0"><span class="secno">4.1.1 </span>The <dfn><code>html</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class="element"><dt>Categories</dt> @@ -349,7 +349,7 @@ <pre class="idl">interface <dfn id="htmlheadelement">HTMLHeadElement</dfn> : <a href="dom.html#htmlelement">HTMLElement</a> {};</pre> </dd> </dl><p>The <code><a href="#the-head-element-0">head</a></code> element <a href="the-xhtml-syntax.html#represents">represents</a> a - collection of metadata for the <code>Document</code>.</p><div class="example"> + collection of metadata for the <code><a href="infrastructure.html#document">Document</a></code>.</p><div class="example"> <p>The collection of metadata in a <code><a href="#the-head-element-0">head</a></code> element can be large or small. Here is an example of a very short one:</p> @@ -422,7 +422,7 @@ node">text nodes</a> that are direct children of the <code><a href="#the-title-element-0">title</a></code> element (ignoring any other nodes such as comments or elements), in tree order. On setting, it must act the - same way as the <code>textContent</code> IDL attribute.</p> + same way as the <code><a href="infrastructure.html#textcontent">textContent</a></code> IDL attribute.</p> </div><div class="example"> @@ -483,7 +483,7 @@ </div><p>The <dfn id="attr-base-target" title="attr-base-target"><code>target</code></dfn> attribute, if specified, must contain a <a href="browsers.html#valid-browsing-context-name-or-keyword">valid browsing context name or keyword</a>, which specifies which <a href="browsers.html#browsing-context">browsing - context</a> is to be used as the default when <a href="interactive-elements.html#hyperlink" title="hyperlink">hyperlinks</a> and <a href="forms.html#the-form-element" title="form">forms</a> in the <code>Document</code> cause <a href="history.html#navigate" title="navigate">navigation</a>.</p><p>A <code><a href="#the-base-element">base</a></code> element, if it has a <code title="attr-base-target"><a href="#attr-base-target">target</a></code> attribute, must come before + context</a> is to be used as the default when <a href="interactive-elements.html#hyperlink" title="hyperlink">hyperlinks</a> and <a href="forms.html#the-form-element" title="form">forms</a> in the <code><a href="infrastructure.html#document">Document</a></code> cause <a href="history.html#navigate" title="navigate">navigation</a>.</p><p>A <code><a href="#the-base-element">base</a></code> element, if it has a <code title="attr-base-target"><a href="#attr-base-target">target</a></code> attribute, must come before any elements in the tree that represent <a href="interactive-elements.html#hyperlink" title="hyperlink">hyperlinks</a>.</p><div class="impl"> <p class="note">If there are multiple <code><a href="#the-base-element">base</a></code> elements @@ -1602,7 +1602,7 @@ attribute is a <a href="infrastructure.html#boolean-attribute">boolean attribute</a>. If set, it indicates that the styles are intended just for the subtree rooted at the <code><a href="#the-style-element">style</a></code> element's parent element, as opposed to the whole - <code>Document</code>.</p><div class="impl"> + <code><a href="infrastructure.html#document">Document</a></code>.</p><div class="impl"> <p>If the <code title="attr-style-scoped"><a href="#attr-style-scoped">scoped</a></code> attribute is present, then the user agent must apply the specified style @@ -1618,7 +1618,7 @@ attribute on <code><a href="#the-style-element">style</a></code> elements, like the <code title="attr-link-title"><a href="#attr-link-title">title</a></code> attribute on <code><a href="#the-link-element">link</a></code> elements, differs from the global <code title="attr-title"><a href="dom.html#the-title-attribute">title</a></code> attribute in that a <code><a href="#the-style-element">style</a></code> block without a title does not inherit the title - of the parent element: it merely has no title.</p><p>The <code>textContent</code> of a <code><a href="#the-style-element">style</a></code> element must + of the parent element: it merely has no title.</p><p>The <code><a href="infrastructure.html#textcontent">textContent</a></code> of a <code><a href="#the-style-element">style</a></code> element must match the <code title="">style</code> production in the following ABNF, the character set for which is Unicode. <a href="references.html#refsABNF">[ABNF]</a></p><pre>style = no-c-start *( c-start no-c-end c-end no-c-start ) no-c-start = <any string that doesn't contain a substring that matches c-start > @@ -1811,10 +1811,10 @@ script once the <a href="webappapis.html#event-loop">event loop</a> reaches its "update the rendering" step.</p> - <p>A style sheet in the context of the <code>Document</code> of an + <p>A style sheet in the context of the <code><a href="infrastructure.html#document">Document</a></code> of an <a href="syntax.html#html-parser">HTML parser</a> or <a href="the-xhtml-syntax.html#xml-parser">XML parser</a> is said to be <dfn id="a-style-sheet-blocking-scripts">a style sheet blocking scripts</dfn> if the element was created - by that <code>Document</code>'s parser, and the element is either a + by that <code><a href="infrastructure.html#document">Document</a></code>'s parser, and the element is either a <code><a href="#the-style-element">style</a></code> element or a <code><a href="#the-link-element">link</a></code> element that was an <a href="interactive-elements.html#link-type-stylesheet" title="rel-stylesheet">external resource link that contributes to the styling processing model</a> when the element @@ -2057,7 +2057,7 @@ <p>If the element has a <code title="attr-script-src"><a href="#attr-script-src">src</a></code> attribute, then the value of that attribute must be <a href="infrastructure.html#resolve-a-url" title="resolve a url">resolved</a> relative to the element, and if that is successful, the specified resource must then be <a href="infrastructure.html#fetch" title="fetch">fetched</a>, from the <a href="browsers.html#origin">origin</a> of the - element's <code>Document</code>.</p> <!-- not http-origin privacy + element's <code><a href="infrastructure.html#document">Document</a></code>.</p> <!-- not http-origin privacy sensitive --> <p>For historical reasons, if the <a href="infrastructure.html#url">URL</a> is a <a href="webappapis.html#javascript-protocol" title="javascript protocol"><code title="">javascript:</code> @@ -2326,7 +2326,7 @@ node">text nodes</a> that are direct children of the <code><a href="#script">script</a></code> element (ignoring any other nodes such as comments or elements), in tree order. On setting, it must act the - same way as the <code>textContent</code> IDL attribute.</p> + same way as the <code><a href="infrastructure.html#textcontent">textContent</a></code> IDL attribute.</p> </div><p class="note">When inserted using the <code title="dom-document-write"><a href="embedded-content-0.html#dom-document-write">document.write()</a></code> method, <code><a href="#script">script</a></code> elements execute (typically synchronously), but @@ -2432,7 +2432,7 @@ parameter for the purpose of comparing <a href="infrastructure.html#mime-type" title="MIME type">MIME types</a> here.</p> - </div><h5 id="restrictions-for-contents-of-script-elements"><span class="secno">4.3.1.2 </span><dfn title="script content restrictions">Restrictions for contents of <code>script</code> elements</dfn></h5><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>The <code>textContent</code> of a <code><a href="#script">script</a></code> element must match the + </div><h5 id="restrictions-for-contents-of-script-elements"><span class="secno">4.3.1.2 </span><dfn title="script content restrictions">Restrictions for contents of <code>script</code> elements</dfn></h5><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>The <code><a href="infrastructure.html#textcontent">textContent</a></code> of a <code><a href="#script">script</a></code> element must match the <code title="">script</code> production in the following ABNF, the character set for which is Unicode. <a href="references.html#refsABNF">[ABNF]</a></p><pre>script = data1 *( escape [ script-start data3 ] "-->" data1 ) [ escape ] escape = "<!--" data2 *( script-start data3 script-end data2 ) @@ -2759,14 +2759,14 @@ <code><a href="#the-body-element-0">body</a></code> element, shadow the generic <a href="webappapis.html#event-handlers">event handlers</a> with the same names normally supported by <a href="infrastructure.html#html-elements">HTML elements</a>.</p><p class="example">Thus, for example, a bubbling <code title="event-error">error</code> event fired on a child of <a href="dom.html#the-body-element">the - body element</a> of a <code>Document</code> would first trigger + body element</a> of a <code><a href="infrastructure.html#document">Document</a></code> would first trigger the <code title="handler-onerror"><a href="webappapis.html#handler-onerror">onerror</a></code> <a href="webappapis.html#event-handler-content-attributes">event handler content attributes</a> of that element, then that of the root <code><a href="#the-html-element-0">html</a></code> element, and only <em>then</em> would it trigger the <code title="handler-window-onerror"><a href="webappapis.html#handler-window-onerror">onerror</a></code> <a href="webappapis.html#event-handler-content-attributes" title="event handler content attributes">event handler content attribute</a> on the <code><a href="#the-body-element-0">body</a></code> element. This is because the event would bubble from the target, to the <code><a href="#the-body-element-0">body</a></code>, to - the <code><a href="#the-html-element-0">html</a></code>, to the <code>Document</code>, to the + the <code><a href="#the-html-element-0">html</a></code>, to the <code><a href="infrastructure.html#document">Document</a></code>, to the <code><a href="browsers.html#window">Window</a></code>, and the <a href="webappapis.html#event-handlers" title="event handlers">event handler</a> on the <code><a href="#the-body-element-0">body</a></code> is watching the <code><a href="browsers.html#window">Window</a></code> not the <code><a href="#the-body-element-0">body</a></code>. A regular event @@ -3575,13 +3575,13 @@ </dd> - <dt>If <var title="">node</var>'s <code>Document</code> has <a href="dom.html#the-body-element" title="the body element">a body element</a></dt> + <dt>If <var title="">node</var>'s <code><a href="infrastructure.html#document">Document</a></code> has <a href="dom.html#the-body-element" title="the body element">a body element</a></dt> <dd> <p>The contact information of <var title="">node</var> is the same as the contact information <a href="dom.html#the-body-element">the body element</a> of the - <code>Document</code>.</p> + <code><a href="infrastructure.html#document">Document</a></code>.</p> </dd> @@ -3972,7 +3972,7 @@ are ancestors of <var title="">section</var> in the <a href="#outline">outline</a> that <var title="">section</var> finds itself in when the <a href="#outline" title="outline">outlines</a> of its - <code>Document</code>'s elements are created, plus 1. The + <code><a href="infrastructure.html#document">Document</a></code>'s elements are created, plus 1. The <a href="#outline-depth">outline depth</a> of a <a href="dom.html#heading-content">heading content</a> element not associated with a <a href="#concept-section" title="concept-section">section</a> is 1.</p> Index: index.html =================================================================== RCS file: /sources/public/html5/spec/index.html,v retrieving revision 1.809 retrieving revision 1.810 diff -u -d -r1.809 -r1.810 --- index.html 16 Feb 2010 08:26:30 -0000 1.809 +++ index.html 16 Feb 2010 08:36:24 -0000 1.810 @@ -290,7 +290,7 @@ <a href="iana.html">← 12 IANA considerations</a> – <a href="spec.html#contents">Table of contents</a> – <a href="references.html">References →</a> - </nav><p>This is revision 1.3795.</p> + </nav><p>This is revision 1.3796.</p> <h2 class="no-num" id="index">Index</h2><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed</i></p><div class="impl"> @@ -2700,23 +2700,23 @@ </th><th> Interface </th><th> Description </th></tr></thead><tbody><tr><td> <code title="event-DOMActivate">DOMActivate</code> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> Fired at an element before its <a href="embedded-content-0.html#activation-behavior">activation behavior</a> is run </td></tr><tr><td> <code title="event-DOMContentLoaded">DOMContentLoaded</code> - </td><td> <code>Event</code> - </td><td> Fired at the <code>Document</code> once it and its scripts have loaded, without waiting for other subresources + </td><td> <code><a href="infrastructure.html#event">Event</a></code> + </td><td> Fired at the <code><a href="infrastructure.html#document">Document</a></code> once it and its scripts have loaded, without waiting for other subresources </td></tr><tr><td> <code title="event-abort">abort</code> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> Fired at the <code><a href="browsers.html#window">Window</a></code> when the download was aborted by the user </td></tr><tr><td> <code title="event-afterprint">afterprint</code> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> Fired at the <code><a href="browsers.html#window">Window</a></code> after printing </td></tr><tr><td> <code title="event-beforeprint">beforeprint</code> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> Fired at the <code><a href="browsers.html#window">Window</a></code> before printing </td></tr><tr><td> <code title="event-beforeunload">beforeunload</code> @@ -2724,31 +2724,31 @@ </td><td> Fired at the <code><a href="browsers.html#window">Window</a></code> when the page is about to be unloaded, in case the page would like to show a warning prompt </td></tr><tr><td> <code title="event-blur">blur</code> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> Fired at nodes losing focus </td></tr><tr><td> <code title="event-change">change</code> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> Fired at controls when the user commits a value change </td></tr><tr><td> <code title="event-contextmenu">contextmenu</code> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> Fired at elements when the user requests their context menu </td></tr><tr><td> <code title="event-error">error</code> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> Fired at elements when network and script errors occur </td></tr><tr><td> <code title="event-focus">focus</code> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> Fired at nodes gaining focus </td></tr><tr><td> <code title="event-formchange">formchange</code> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> Fired at form controls when the user commits a value change to a control on the form </td></tr><tr><td> <code title="event-forminput">forminput</code> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> Fired at form controls when the user changes the value of a control on the form </td></tr><tr><td> <code title="event-hashchange"><a href="history.html#event-hashchange">hashchange</a></code> @@ -2756,15 +2756,15 @@ </td><td> Fired at the <code><a href="browsers.html#window">Window</a></code> when the fragment identifier part of <a href="dom.html#the-document-s-current-address">the document's current address</a> changes </td></tr><tr><td> <code title="event-input">input</code> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> Fired at controls when the user changes the value </td></tr><tr><td> <code title="event-invalid">invalid</code> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> Fired at controls during form validation if they do not satisfy their constraints </td></tr><tr><td> <code title="event-load">load</code> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> Fired at the <code><a href="browsers.html#window">Window</a></code> when the document has finished loading; fired at an element containing a resource (e.g. <code><a href="text-level-semantics.html#the-img-element">img</a></code>, <code><a href="text-level-semantics.html#the-embed-element">embed</a></code>) when its resource has finished loading </td></tr><tr><td> <code title="event-message">message</code> @@ -2772,19 +2772,19 @@ </td><td> Fired at an object when the object receives a message </td></tr><tr><td> <code title="event-offline"><a href="offline.html#event-offline">offline</a></code> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> Fired at the <code><a href="browsers.html#window">Window</a></code> when the network connections fails </td></tr><tr><td> <code title="event-online"><a href="offline.html#event-online">online</a></code> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> Fired at the <code><a href="browsers.html#window">Window</a></code> when the network connections returns </td></tr><tr><td> <code title="event-pagehide">pagehide</code> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> Fired at the <code><a href="browsers.html#window">Window</a></code> when the page's entry in the <a href="history.html#session-history">session history</a> stops being the <a href="history.html#current-entry">current entry</a> </td></tr><tr><td> <code title="event-pageshow">pageshow</code> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> Fired at the <code><a href="browsers.html#window">Window</a></code> when the page's entry in the <a href="history.html#session-history">session history</a> becomes the <a href="history.html#current-entry">current entry</a> </td></tr><tr><td> <code title="event-popstate"><a href="history.html#event-popstate">popstate</a></code> @@ -2792,23 +2792,23 @@ </td><td> Fired at the <code><a href="browsers.html#window">Window</a></code> when the user navigates the <a href="history.html#session-history">session history</a> </td></tr><tr><td> <code title="event-readystatechange">readystatechange</code> - </td><td> <code>Event</code> - </td><td> Fired at the <code>Document</code> when it finishes parsing and again when all its subresources have finished loading + </td><td> <code><a href="infrastructure.html#event">Event</a></code> + </td><td> Fired at the <code><a href="infrastructure.html#document">Document</a></code> when it finishes parsing and again when all its subresources have finished loading </td></tr><tr><td> <code title="event-redo"><a href="editing.html#event-redo">redo</a></code> </td><td> <code><a href="editing.html#undomanagerevent">UndoManagerEvent</a></code> </td><td> Fired at the <code><a href="browsers.html#window">Window</a></code> object when the user <a href="editing.html#redo:-moving-forward-in-the-undo-transaction-history" title="do-redo">goes forward in the undo transaction history</a> </td></tr><tr><td> <code title="event-reset">reset</code> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> Fired at a <code><a href="forms.html#the-form-element">form</a></code> element when it is <a href="forms.html#concept-form-reset" title="concept-form-reset">reset</a> </td></tr><tr><td> <code title="event-show">show</code> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> Fired at a <code><a href="interactive-elements.html#menus">menu</a></code> element when it is shown as a context menu </td></tr><tr><td> <code title="event-submit">submit</code> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> Fired at a <code><a href="forms.html#the-form-element">form</a></code> element when it is <a href="forms.html#concept-form-submit" title="concept-form-submit">submitted</a> </td></tr><tr><td> <code title="event-undo"><a href="editing.html#event-undo">undo</a></code> @@ -2816,7 +2816,7 @@ </td><td> Fired at the <code><a href="browsers.html#window">Window</a></code> object when the user <a href="editing.html#undo:-moving-back-in-the-undo-transaction-history" title="do-undo">goes backward in the undo transaction history</a> </td></tr><tr><td> <code title="event-unload">unload</code> - </td><td> <code>Event</code> + </td><td> <code><a href="infrastructure.html#event">Event</a></code> </td><td> Fired at the <code><a href="browsers.html#window">Window</a></code> object when the page is going away </td></tr></tbody></table><p class="note">See also <a href="video.html#mediaevents">media element Index: spec.html =================================================================== RCS file: /sources/public/html5/spec/spec.html,v retrieving revision 1.809 retrieving revision 1.810 diff -u -d -r1.809 -r1.810 --- spec.html 16 Feb 2010 08:26:32 -0000 1.809 +++ spec.html 16 Feb 2010 08:36:25 -0000 1.810 @@ -305,7 +305,7 @@ </dl><p>This specification is available in the following formats: <a href="Overview.html">single page HTML</a>, <a href="spec.html">multipage HTML</a>. -This is revision 1.3795. +This is revision 1.3796. </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 Index: introduction.html =================================================================== RCS file: /sources/public/html5/spec/introduction.html,v retrieving revision 1.811 retrieving revision 1.812 diff -u -d -r1.811 -r1.812 --- introduction.html 16 Feb 2010 08:26:31 -0000 1.811 +++ introduction.html 16 Feb 2010 08:36:25 -0000 1.812 @@ -288,7 +288,7 @@ </div><nav> <a href="spec.html#contents">Table of contents</a> – <a href="infrastructure.html">2 Common infrastructure →</a> - </nav><p>This is revision 1.3795.</p> + </nav><p>This is revision 1.3796.</p> <h2 id="introduction"><span class="secno">1 </span>Introduction</h2><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><h3 id="background"><span class="secno">1.1 </span>Background</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p><i>This section is non-normative.</i></p><p>The World Wide Web's markup language has always been HTML. HTML Index: syntax.html =================================================================== RCS file: /sources/public/html5/spec/syntax.html,v retrieving revision 1.809 retrieving revision 1.810 diff -u -d -r1.809 -r1.810 --- syntax.html 16 Feb 2010 08:26:32 -0000 1.809 +++ syntax.html 16 Feb 2010 08:36:25 -0000 1.810 @@ -290,7 +290,7 @@ <a href="editing.html">← 7 User interaction</a> – <a href="spec.html#contents">Table of contents</a> – <a href="named-character-references.html">8.5 Named character references →</a> - </nav><p>This is revision 1.3795.</p> + </nav><p>This is revision 1.3796.</p> <h2 id="syntax"><span class="secno">8 </span><dfn>The HTML syntax</dfn></h2><p class="note">This section only describes the rules for resources @@ -983,12 +983,12 @@ <p>The input to the HTML parsing process consists of a stream of Unicode characters, which is passed through a <a href="#tokenization">tokenization</a> stage followed by a <a href="#tree-construction">tree - construction</a> stage. The output is a <code>Document</code> + construction</a> stage. The output is a <code><a href="infrastructure.html#document">Document</a></code> object.</p> <p class="note">Implementations that <a href="infrastructure.html#non-scripted">do not support scripting</a> do not have to actually create a DOM - <code>Document</code> object, but the DOM tree in such cases is + <code><a href="infrastructure.html#document">Document</a></code> object, but the DOM tree in such cases is still used as the model for the rest of the specification.</p> <p>In the common case, the data handled by the tokenization stage @@ -2053,7 +2053,7 @@ <li><code><a href="tabular-data.html#the-table-element">table</a></code> in the HTML namespace</li> </ul><p>Nothing happens if at any time any of the elements in the <a href="#stack-of-open-elements">stack of open elements</a> are moved to a new location in, - or removed from, the <code>Document</code> tree. In particular, the + or removed from, the <code><a href="infrastructure.html#document">Document</a></code> tree. In particular, the stack is not changed in this situation. This can cause, amongst other strange effects, content to be appended to nodes that are no longer in the DOM.</p> @@ -2179,7 +2179,7 @@ <h5 id="other-parsing-state-flags"><span class="secno">8.2.3.5 </span>Other parsing state flags</h5><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p> <p>The <dfn id="scripting-flag">scripting flag</dfn> is set to "enabled" if <a href="webappapis.html#concept-n-script" title="concept-n-script">scripting was enabled</a> for the - <code>Document</code> with which the parser is associated when the + <code><a href="infrastructure.html#document">Document</a></code> with which the parser is associated when the parser was created, and "disabled" otherwise.</p> <p class="note">The <a href="#scripting-flag">scripting flag</a> can be enabled even @@ -4284,12 +4284,12 @@ <p>The input to the tree construction stage is a sequence of tokens from the <a href="#tokenization">tokenization</a> stage. The tree construction - stage is associated with a DOM <code>Document</code> object when a + stage is associated with a DOM <code><a href="infrastructure.html#document">Document</a></code> object when a parser is created. The "output" of this stage consists of dynamically modifying or extending that document's DOM tree.</p> <p>This specification does not define when an interactive user agent - has to render the <code>Document</code> so that it is available to + has to render the <code><a href="infrastructure.html#document">Document</a></code> so that it is available to the user, or when it has to begin accepting user input.</p> <p>As each token is emitted from the tokenizer, the user agent must @@ -4374,7 +4374,7 @@ <a href="infrastructure.html#other-applicable-specifications">other applicable specifications</a>) is <code><a href="dom.html#htmlunknownelement">HTMLUnknownElement</a></code>. Element in other namespaces whose interface is not defined by that namespace's specification must use - the interface <code>Element</code>.</p> + the interface <code><a href="infrastructure.html#element">Element</a></code>.</p> <p>When a <a href="forms.html#category-reset" title="category-reset">resettable</a> element is created in this manner, its <a href="forms.html#concept-form-reset-control" title="concept-form-reset-control">reset algorithm</a> must be @@ -4597,7 +4597,7 @@ <dt>A comment token</dt> <dd> - <p>Append a <code>Comment</code> node to the <code>Document</code> + <p>Append a <code>Comment</code> node to the <code><a href="infrastructure.html#document">Document</a></code> object with the <code title="">data</code> attribute set to the data given in the comment token.</p> </dd> @@ -4653,7 +4653,7 @@ checker.)</p> <p>Append a <code>DocumentType</code> node to the - <code>Document</code> node, with the <code title="">name</code> + <code><a href="infrastructure.html#document">Document</a></code> node, with the <code title="">name</code> attribute set to the name given in the DOCTYPE token, or the empty string if the name was missing; the <code title="">publicId</code> attribute set to the public identifier given in the DOCTYPE token, @@ -4663,13 +4663,13 @@ system identifier was missing; and the other attributes specific to <code>DocumentType</code> objects set to null and empty lists as appropriate. Associate the <code>DocumentType</code> node with - the <code>Document</code> object so that it is returned as the + the <code><a href="infrastructure.html#document">Document</a></code> object so that it is returned as the value of the <code title="">doctype</code> attribute of the - <code>Document</code> object.</p> + <code><a href="infrastructure.html#document">Document</a></code> object.</p> <p id="quirks-mode-doctypes">Then, if the DOCTYPE token matches one of the conditions in the following list, then set the - <code>Document</code> to <a href="dom.html#quirks-mode">quirks mode</a>:</p> + <code><a href="infrastructure.html#document">Document</a></code> to <a href="dom.html#quirks-mode">quirks mode</a>:</p> <ul class="brief"><li> The <i>force-quirks flag</i> is set to <i>on</i>. </li> <li> The name is set to anything other than "<code title="">html</code>" (compared <a href="infrastructure.html#case-sensitive" title="case-sensitive">case-sensitively</a>). </li> @@ -4749,7 +4749,7 @@ <li> The system identifier is missing and the public identifier starts with: "<code title="">-//W3C//DTD HTML 4.01 Frameset//<!--EN--></code>" </li> <li> The system identifier is missing and the public identifier starts with: "<code title="">-//W3C//DTD HTML 4.01 Transitional//<!--EN--></code>" </li> </ul><p>Otherwise, if the DOCTYPE token matches one of the conditions - in the following list, then set the <code>Document</code> to + in the following list, then set the <code><a href="infrastructure.html#document">Document</a></code> to <a href="dom.html#limited-quirks-mode">limited quirks mode</a>:</p> <ul class="brief"><li> The public identifier starts with: "<code title="">-//W3C//DTD XHTML 1.0 Frameset//<!--EN--></code>" </li> @@ -4772,7 +4772,7 @@ <p>If the document is <em>not</em> <a href="text-level-semantics.html#an-iframe-srcdoc-document">an <code>iframe</code> <code title="attr-iframe-srcdoc">srcdoc</code> document</a>, then this is a <a href="#parse-error">parse error</a>; set the - <code>Document</code> to <a href="dom.html#quirks-mode">quirks mode</a>.</p> + <code><a href="infrastructure.html#document">Document</a></code> to <a href="dom.html#quirks-mode">quirks mode</a>.</p> <p>In any case, switch the <a href="#insertion-mode">insertion mode</a> to "<a href="#the-before-html-insertion-mode" title="insertion mode: before html">before html</a>", then reprocess the current token.</p> @@ -4791,7 +4791,7 @@ <dt>A comment token</dt> <dd> - <p>Append a <code>Comment</code> node to the <code>Document</code> + <p>Append a <code>Comment</code> node to the <code><a href="infrastructure.html#document">Document</a></code> object with the <code title="">data</code> attribute set to the data given in the comment token.</p> </dd> @@ -4807,11 +4807,11 @@ <dd> <p><a href="#create-an-element-for-the-token">Create an element for the token</a> in the <a href="infrastructure.html#html-namespace-0">HTML - namespace</a>. Append it to the <code>Document</code> + namespace</a>. Append it to the <code><a href="infrastructure.html#document">Document</a></code> object. Put this element in the <a href="#stack-of-open-elements">stack of open elements</a>.</p> - <p id="parser-appcache">If the <code>Document</code> is being + <p id="parser-appcache">If the <code><a href="infrastructure.html#document">Document</a></code> is being loaded as part of <a href="history.html#navigate" title="navigate">navigation</a> of a <a href="browsers.html#browsing-context">browsing context</a>, then: if the newly created element has a <code title="attr-html-manifest"><a href="semantics.html#attr-html-manifest">manifest</a></code> attribute, @@ -4823,7 +4823,7 @@ removed; otherwise, if there is no such attribute or resolving it fails, run the <a href="offline.html#concept-appcache-init" title="concept-appcache-init">application cache selection algorithm</a> with no manifest. The algorithm - must be passed the <code>Document</code> object.</p> + must be passed the <code><a href="infrastructure.html#document">Document</a></code> object.</p> <p>Switch the <a href="#insertion-mode">insertion mode</a> to "<a href="#the-before-head-insertion-mode" title="insertion mode: before head">before head</a>".</p> @@ -4843,13 +4843,13 @@ <dd> <p>Create an <code><a href="semantics.html#the-html-element-0">html</a></code> element. Append it to the - <code>Document</code> object. Put this element in the <a href="#stack-of-open-elements">stack + <code><a href="infrastructure.html#document">Document</a></code> object. Put this element in the <a href="#stack-of-open-elements">stack of open elements</a>.</p> - <p>If the <code>Document</code> is being loaded as part of <a href="history.html#navigate" title="navigate">navigation</a> of a <a href="browsers.html#browsing-context">browsing + <p>If the <code><a href="infrastructure.html#document">Document</a></code> is being loaded as part of <a href="history.html#navigate" title="navigate">navigation</a> of a <a href="browsers.html#browsing-context">browsing context</a>, then: run the <a href="offline.html#concept-appcache-init" title="concept-appcache-init">application cache selection algorithm</a> with no manifest, passing it the - <code>Document</code> object.</p> + <code><a href="infrastructure.html#document">Document</a></code> object.</p> <p>Switch the <a href="#insertion-mode">insertion mode</a> to "<a href="#the-before-head-insertion-mode" title="insertion mode: before head">before head</a>", then reprocess the current token.</p> @@ -4857,7 +4857,7 @@ </dd> </dl><p>The root element can end up being removed from the - <code>Document</code> object, e.g. by scripts; nothing in particular + <code><a href="infrastructure.html#document">Document</a></code> object, e.g. by scripts; nothing in particular happens in such cases, content continues being appended to the nodes as described in the next section.</p> @@ -6036,7 +6036,7 @@ <dt>A start tag whose tag name is "table"</dt> <dd> - <p>If the <code>Document</code> is <em>not</em> set to + <p>If the <code><a href="infrastructure.html#document">Document</a></code> is <em>not</em> set to <a href="dom.html#quirks-mode">quirks mode</a>, and the <a href="#stack-of-open-elements">stack of open elements</a> <a href="#has-an-element-in-scope" title="has an element in scope">has a <code>p</code> element in scope</a>, then act as if an end tag @@ -7823,7 +7823,7 @@ <dl class="switch"><dt>A comment token</dt> <dd> - <p>Append a <code>Comment</code> node to the <code>Document</code> + <p>Append a <code>Comment</code> node to the <code><a href="infrastructure.html#document">Document</a></code> object with the <code title="">data</code> attribute set to the data given in the comment token.</p> </dd> @@ -7857,7 +7857,7 @@ <dl class="switch"><dt>A comment token</dt> <dd> - <p>Append a <code>Comment</code> node to the <code>Document</code> + <p>Append a <code>Comment</code> node to the <code><a href="infrastructure.html#document">Document</a></code> object with the <code title="">data</code> attribute set to the data given in the comment token.</p> </dd> @@ -7931,38 +7931,38 @@ <li><p><a href="webappapis.html#queue-a-task">Queue a task</a> to <a href="webappapis.html#fire-a-simple-event">fire a simple event</a> named <code title="event-DOMContentLoaded">DOMContentLoaded</code> at the - <code>Document</code>.</p></li> + <code><a href="infrastructure.html#document">Document</a></code>.</p></li> <li><p><a href="webappapis.html#spin-the-event-loop">Spin the event loop</a> until there is nothing that <dfn id="delay-the-load-event" title="delay the load event">delays the load event</dfn> in - the <code>Document</code>.</p></li> + the <code><a href="infrastructure.html#document">Document</a></code>.</p></li> <li><p><a href="webappapis.html#queue-a-task">Queue a task</a> to set the <a href="dom.html#current-document-readiness">current document readiness</a> to "complete". <!-- this also fires an event synchronously during the task --></p></li> - <li><p>If the <code>Document</code> is in a <a href="browsers.html#browsing-context">browsing + <li><p>If the <code><a href="infrastructure.html#document">Document</a></code> is in a <a href="browsers.html#browsing-context">browsing context</a>, then <a href="webappapis.html#queue-a-task">queue a task</a> to <a href="webappapis.html#fire-a-simple-event">fire a simple event</a> named <code title="event-load">load</code> at - the <code>Document</code>'s <code><a href="browsers.html#window">Window</a></code> object, but with + the <code><a href="infrastructure.html#document">Document</a></code>'s <code><a href="browsers.html#window">Window</a></code> object, but with its <code title="dom-event-target">target</code> set to the - <code>Document</code> object (and the <code title="dom-event-currentTarget">currentTarget</code> set to the + <code><a href="infrastructure.html#document">Document</a></code> object (and the <code title="dom-event-currentTarget">currentTarget</code> set to the <code><a href="browsers.html#window">Window</a></code> object).</p></li> - <li><p>If the <code>Document</code> is in a <a href="browsers.html#browsing-context">browsing + <li><p>If the <code><a href="infrastructure.html#document">Document</a></code> is in a <a href="browsers.html#browsing-context">browsing context</a>, then <a href="webappapis.html#queue-a-task">queue a task</a> to <a href="webappapis.html#fire-a-simple-event">fire a simple event</a> named <code title="event-pageshow">pageshow</code> at the - <code>Document</code>'s <code><a href="browsers.html#window">Window</a></code> object.</p></li> + <code><a href="infrastructure.html#document">Document</a></code>'s <code><a href="browsers.html#window">Window</a></code> object.</p></li> - <li><p>If the <code>Document</code> has a <a href="history.html#pending-state-object">pending state + <li><p>If the <code><a href="infrastructure.html#document">Document</a></code> has a <a href="history.html#pending-state-object">pending state object</a>, then <a href="webappapis.html#queue-a-task">queue a task</a> to fire a <code title="event-popstate"><a href="history.html#event-popstate">popstate</a></code> event at the - <code>Document</code>'s <code><a href="browsers.html#window">Window</a></code> object using the + <code><a href="infrastructure.html#document">Document</a></code>'s <code><a href="browsers.html#window">Window</a></code> object using the <code><a href="history.html#popstateevent">PopStateEvent</a></code> interface, with the <code title="dom-PopStateEvent-state"><a href="history.html#dom-popstateevent-state">state</a></code> attribute set to the current value of the <a href="history.html#pending-state-object">pending state object</a>. This event must bubble but not be cancelable and has no default action.</p></li> - <li><p>If the <code>Document</code> has any <a href="offline.html#pending-application-cache-download-process-tasks">pending + <li><p>If the <code><a href="infrastructure.html#document">Document</a></code> has any <a href="offline.html#pending-application-cache-download-process-tasks">pending application cache download process tasks</a>, then <a href="webappapis.html#queue-a-task" title="queue a task">queue</a> each such <a href="webappapis.html#concept-task" title="concept-task">task</a> in the order they were added to the list of <a href="offline.html#pending-application-cache-download-process-tasks">pending application cache download process tasks</a>, and then empty the list of <a href="offline.html#pending-application-cache-download-process-tasks">pending application @@ -7970,7 +7970,7 @@ for these <a href="webappapis.html#concept-task" title="concept-task">tasks</a> is the <a href="webappapis.html#networking-task-source">networking task source</a>.</p></li> - <li><p>The <code>Document</code> is now <dfn id="completely-loaded">completely + <li><p>The <code><a href="infrastructure.html#document">Document</a></code> is now <dfn id="completely-loaded">completely loaded</dfn>.</p></li> </ol><p>Except where otherwise specified, the <a href="webappapis.html#task-source">task source</a> @@ -8284,13 +8284,13 @@ </span></li><li class="t1"><code><a href="semantics.html#script">script</a></code><ul><li class="t3"><code>#text</code>: <span title="">var div = document.getElementById('a'); ⏎ parent.document.body.appendChild(div);</span></li></ul></li></ul></li></ul></li></ul></li></ul><p>After the script is parsed, though, the <code><a href="semantics.html#the-div-element">div</a></code> element and its child <code><a href="semantics.html#script">script</a></code> element are gone:</p> - <ul class="domTree"><li class="t1"><code><a href="semantics.html#the-html-element-0">html</a></code><ul><li class="t1"><code><a href="semantics.html#the-head-element-0">head</a></code></li><li class="t1"><code><a href="semantics.html#the-body-element-0">body</a></code></li></ul></li></ul><p>They are, at this point, in the <code>Document</code> of the + <ul class="domTree"><li class="t1"><code><a href="semantics.html#the-html-element-0">html</a></code><ul><li class="t1"><code><a href="semantics.html#the-head-element-0">head</a></code></li><li class="t1"><code><a href="semantics.html#the-body-element-0">body</a></code></li></ul></li></ul><p>They are, at this point, in the <code><a href="infrastructure.html#document">Document</a></code> of the aforementioned outer <a href="browsers.html#browsing-context">browsing context</a>. However, the <a href="#stack-of-open-elements">stack of open elements</a> <em>still contains the <code><a href="semantics.html#the-div-element">div</a></code> element</em>.</p> <p>Thus, when the second <code><a href="semantics.html#script">script</a></code> element is parsed, it - is inserted <em>into the outer <code>Document</code> + is inserted <em>into the outer <code><a href="infrastructure.html#document">Document</a></code> object</em>.</p> <p>This also means that the <a href="webappapis.html#script-s-global-object">script's global object</a> is @@ -8299,15 +8299,15 @@ <code><a href="text-level-semantics.html#the-iframe-element">iframe</a></code>.</p> <p class="note">This isn't a security problem since the script that - moves the <code><a href="semantics.html#the-div-element">div</a></code> into the outer <code>Document</code> can - only do so because the two <code>Document</code> object have the + moves the <code><a href="semantics.html#the-div-element">div</a></code> into the outer <code><a href="infrastructure.html#document">Document</a></code> can + only do so because the two <code><a href="infrastructure.html#document">Document</a></code> object have the same <a href="browsers.html#origin">origin</a>.</p> <p>Thus, the first alert says "http://example.com/outer".</p> <p>Once the <code><a href="semantics.html#the-div-element">div</a></code> element's end tag is parsed, the <code><a href="semantics.html#the-div-element">div</a></code> element is popped off the stack, and so the next - <code><a href="semantics.html#script">script</a></code> element is in the inner <code>Document</code>:</p> + <code><a href="semantics.html#script">script</a></code> element is in the inner <code><a href="infrastructure.html#document">Document</a></code>:</p> <ul class="domTree"><li class="t1"><code><a href="semantics.html#the-html-element-0">html</a></code><ul><li class="t1"><code><a href="semantics.html#the-head-element-0">head</a></code></li><li class="t1"><code><a href="semantics.html#the-body-element-0">body</a></code><ul><li class="t1"><code><a href="semantics.html#script">script</a></code><ul><li class="t3"><code>#text</code>: <span title="">alert(document.URL);</span></li></ul></li></ul></li></ul></li></ul><p>This second alert will say "http://example.com/inner".</p> @@ -8318,7 +8318,7 @@ <p>The following steps form the <dfn id="html-fragment-serialization-algorithm">HTML fragment serialization algorithm</dfn>. The algorithm takes as input a DOM - <code>Element</code> or <code>Document</code>, referred to as <var title="">the node</var>, and either returns a string or raises an + <code><a href="infrastructure.html#element">Element</a></code> or <code><a href="infrastructure.html#document">Document</a></code>, referred to as <var title="">the node</var>, and either returns a string or raises an exception.</p> <p class="note">This algorithm serializes the <em>children</em> of @@ -8502,7 +8502,7 @@ <p>The following steps form the <dfn id="html-fragment-parsing-algorithm">HTML fragment parsing algorithm</dfn>. The algorithm optionally takes as input an - <code>Element</code> node, referred to as the <var title="">context</var> element, which gives the context for the + <code><a href="infrastructure.html#element">Element</a></code> node, referred to as the <var title="">context</var> element, which gives the context for the parser, as well as <var title="">input</var>, a string to parse, and returns a list of zero or more nodes.</p> @@ -8517,7 +8517,7 @@ <ol><li> - <p>Create a new <code>Document</code> node, and mark it as being + <p>Create a new <code><a href="infrastructure.html#document">Document</a></code> node, and mark it as being an <a href="dom.html#html-documents" title="HTML documents">HTML document</a>.</p> </li> @@ -8525,20 +8525,20 @@ <li> <p>If there is a <var title="">context</var> element, and the - <code>Document</code> of the <var title="">context</var> element - is in <a href="dom.html#quirks-mode">quirks mode</a>, then let the <code>Document</code> - be in <a href="dom.html#quirks-mode">quirks mode</a>. Otherwise, if there is a <var title="">context</var> element, and the <code>Document</code> of + <code><a href="infrastructure.html#document">Document</a></code> of the <var title="">context</var> element + is in <a href="dom.html#quirks-mode">quirks mode</a>, then let the <code><a href="infrastructure.html#document">Document</a></code> + be in <a href="dom.html#quirks-mode">quirks mode</a>. Otherwise, if there is a <var title="">context</var> element, and the <code><a href="infrastructure.html#document">Document</a></code> of the <var title="">context</var> element is in <a href="dom.html#limited-quirks-mode">limited quirks - mode</a>, then let the <code>Document</code> be in + mode</a>, then let the <code><a href="infrastructure.html#document">Document</a></code> be in <a href="dom.html#limited-quirks-mode">limited quirks mode</a>. Otherwise, leave the - <code>Document</code> in <a href="dom.html#no-quirks-mode">no quirks mode</a>.</p> + <code><a href="infrastructure.html#document">Document</a></code> in <a href="dom.html#no-quirks-mode">no quirks mode</a>.</p> </li> <li> <p>Create a new <a href="#html-parser">HTML parser</a>, and associate it with - the just created <code>Document</code> node.</p> + the just created <code><a href="infrastructure.html#document">Document</a></code> node.</p> </li> @@ -8608,7 +8608,7 @@ <li> <p>Append the element <var title="">root</var> to the - <code>Document</code> node created above.</p> + <code><a href="infrastructure.html#document">Document</a></code> node created above.</p> </li> @@ -8663,7 +8663,7 @@ child nodes of <var title="">root</var>, in <a href="infrastructure.html#tree-order">tree order</a>.</p> - <p>Otherwise, return the children of the <code>Document</code> + <p>Otherwise, return the children of the <code><a href="infrastructure.html#document">Document</a></code> object, in <a href="infrastructure.html#tree-order">tree order</a>.</p> </li>
Received on Tuesday, 16 February 2010 08:36:30 UTC