- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Mon, 31 Aug 2009 02:36:30 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec
In directory hutz:/tmp/cvs-serv10974
Modified Files:
acknowledgements.html browsers.html comms.html dom.html
editing.html embedded-content-0.html forms.html
fragment-links.js history.html iana-considerations.html
index.html infrastructure.html interactive-elements.html
introduction.html microdata.html
named-character-references.html no.html obsolete.html
offline.html references.html semantics.html spec.html
syntax.html tabular-data.html text-level-semantics.html
the-canvas-element.html the-xhtml-syntax.html toc-status.html
toc-status.xml video.html
Log Message:
Work around bug in the ARIA spec that requires the <body> element to be the 'root' instead of <html>... (whatwg r3714)
[updated by splitter]
Index: infrastructure.html
===================================================================
RCS file: /sources/public/html5/spec/infrastructure.html,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -d -r1.191 -r1.192
--- infrastructure.html 30 Aug 2009 21:46:29 -0000 1.191
+++ infrastructure.html 31 Aug 2009 02:36:27 -0000 1.192
@@ -182,17 +182,17 @@
<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.2891.</p>
+ </nav><p>This is revision 1.2893.</p>
- <h2 id="infrastructure"><span class="secno">2 </span>Common infrastructure</h2><h3 id="terminology"><span class="secno">2.1 </span>Terminology</h3><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><p>This specification refers to both HTML and XML attributes and DOM
+ <h2 id="infrastructure"><span class="secno">2 </span>Common infrastructure</h2><h3 id="terminology"><span class="secno">2.1 </span>Terminology</h3><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><p>This specification refers to both HTML and XML attributes and IDL
attributes, often in the same context. When it is not clear which is
being referred to, they are referred to as <dfn title="">content
- attributes</dfn> for HTML and XML attributes, and <dfn title="">DOM
- attributes</dfn> for those from the DOM. Similarly, the term
- "properties" is used for both JavaScript object properties and CSS
- properties. When these are ambiguous they are qualified as <dfn title="">object properties</dfn> and <dfn title="">CSS properties</dfn>
- respectively.</p><p>Generally, when the specification states that a feature applies
+ attributes</dfn> for HTML and XML attributes, and <dfn title="">IDL
+ attributes</dfn> for those defined on IDL interfaces. Similarly, the
+ term "properties" is used for both JavaScript object properties and
+ CSS properties. When these are ambiguous they are qualified as <dfn title="">object properties</dfn> and <dfn title="">CSS
+ properties</dfn> respectively.</p><p>Generally, when the specification states that a feature applies
to <a href="syntax.html#syntax">the HTML syntax</a> or <a href="the-xhtml-syntax.html#the-xhtml-syntax">the XHTML syntax</a>, it
also includes the other. When a feature specifically only applies to
one of the two languages, it is called out by explicitly stating
@@ -258,7 +258,7 @@
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
- <code title="">ownerDocument</code> DOM attribute returns.</p><p>When an element's <a href="#root-element">root element</a> is the <a href="#root-element">root
+ <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
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
@@ -268,7 +268,7 @@
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> DOM attribute thus always returns that
+ <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
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
@@ -282,7 +282,7 @@
an attribute to a value it already has does not change it.</p><h4 id="scripting-0"><span class="secno">2.1.4 </span>Scripting</h4><p>The construction "a <code>Foo</code> object", where
<code>Foo</code> is actually an interface, is sometimes used instead
of the more accurate "an object implementing the interface
- <code>Foo</code>".</p><p>A DOM attribute is said to be <dfn title="">getting</dfn> when its value is
+ <code>Foo</code>".</p><p>A IDL attribute is said to be <dfn title="">getting</dfn> when its value is
being retrieved (e.g. by author script), and is said to be
<dfn title="">setting</dfn> when a new value is assigned to it.</p><p>If a DOM object is said to be <dfn id="live">live</dfn>, then that means
that any attributes returning that object <span class="impl">must</span> always return the same object (not a new
@@ -628,7 +628,7 @@
required for conforming IDL fragments, as described in the Web IDL
specification. <a href="references.html#refsWEBIDL">[WEBIDL]</a></p>
- <p id="float-nan">Unless otherwise specified, if a DOM attribute
+ <p id="float-nan">Unless otherwise specified, if a IDL attribute
that is a floating point number type (<code title="">float</code>)
is assigned an Infinity or Not-a-Number (NaN) value, a
<code><a href="#not_supported_err">NOT_SUPPORTED_ERR</a></code> exception must be raised.</p>
@@ -702,7 +702,7 @@
<div class="example">
<p>For example, while strongly discouraged from doing so, an
- implementation "Foo Browser" could add a new DOM attribute "<code title="">fooTypeTime</code>" to a control's DOM interface that
+ implementation "Foo Browser" could add a new IDL attribute "<code title="">fooTypeTime</code>" to a control's DOM interface that
returned the time it took the user to select the current value of a
control (say). On the other hand, defining a new control that
appears in a form's <code title="dom-form-elements"><a href="forms.html#dom-form-elements">elements</a></code>
@@ -2888,13 +2888,13 @@
<p class="example">Changing the base URL doesn't affect the image
displayed by <code><a href="text-level-semantics.html#the-img-element">img</a></code> elements, although subsequent
- accesses of the <code title="dom-img-src"><a href="text-level-semantics.html#dom-img-src">src</a></code> DOM attribute
+ accesses of the <code title="dom-img-src"><a href="text-level-semantics.html#dom-img-src">src</a></code> IDL attribute
from script will return a new <a href="#absolute-url">absolute URL</a> that might
no longer correspond to the image being shown.</p>
</dd>
- </dl></div><h4 id="interfaces-for-url-manipulation"><span class="secno">2.5.3 </span>Interfaces for URL manipulation</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>An interface that has a complement of <dfn id="url-decomposition-dom-attributes">URL decomposition DOM
+ </dl></div><h4 id="interfaces-for-url-manipulation"><span class="secno">2.5.3 </span>Interfaces for URL manipulation</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>An interface that has a complement of <dfn id="url-decomposition-idl-attributes">URL decomposition IDL
attributes</dfn> will have seven attributes with the following
definitions:</p><pre class="idl extract">
attribute DOMString <a href="#dom-uda-protocol" title="dom-uda-protocol">protocol</a>;
@@ -2951,17 +2951,17 @@
</dl><div class="impl">
- <hr><p>The attributes defined to be URL decomposition DOM attributes must
+ <hr><p>The attributes defined to be URL decomposition IDL attributes must
act as described for the attributes with the same corresponding
names in this section.</p>
- <p>In addition, an interface with a complement of URL decomposition DOM
+ <p>In addition, an interface with a complement of URL decomposition IDL
attributes will define an <dfn id="concept-uda-input" title="concept-uda-input">input</dfn>, which is a <a href="#url">URL</a>
that the attributes act on, and a <dfn id="concept-uda-setter" title="concept-uda-setter">common setter action</dfn>, which is a
set of steps invoked when any of the attributes' setters are
invoked.</p>
- <p>The seven URL decomposition DOM attributes have similar
+ <p>The seven URL decomposition IDL attributes have similar
requirements.</p>
<p>On getting, if the <a href="#concept-uda-input" title="concept-uda-input">input</a>
@@ -3392,46 +3392,46 @@
and use of these encodings can thus lead to unexpected behavior in
implementations of this specification.</p>
- </div><h3 id="common-dom-interfaces"><span class="secno">2.8 </span>Common DOM interfaces</h3><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><h4 id="reflecting-content-attributes-in-dom-attributes"><span class="secno">2.8.1 </span>Reflecting content attributes in DOM attributes</h4><p>Some <span title="DOM attribute">DOM attributes</span> are
+ </div><h3 id="common-dom-interfaces"><span class="secno">2.8 </span>Common DOM interfaces</h3><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><h4 id="reflecting-content-attributes-in-idl-attributes"><span class="secno">2.8.1 </span>Reflecting content attributes in IDL attributes</h4><p>Some <span title="IDL attribute">IDL attributes</span> are
defined to <dfn id="reflect">reflect</dfn> a particular <span>content
- attribute</span>. This means that on getting, the DOM attribute
+ attribute</span>. This means that on getting, the IDL attribute
returns the current value of the content attribute, and on setting,
- the DOM attribute changes the value of the content attribute to the
- given value.</p><p class="note">A list of <a href="index.html#reflecting-dom-attributes">reflecting DOM attributes</a> and
+ the IDL attribute changes the value of the content attribute to the
+ given value.</p><p class="note">A list of <a href="index.html#reflecting-idl-attributes">reflecting IDL attributes</a> and
their corresponding content attributes is given in the index.</p><div class="impl">
<p>In general, on getting, if the content attribute is not present,
- the DOM attribute must act as if the content attribute's value is
+ the IDL attribute must act as if the content attribute's value is
the empty string; and on setting, if the content attribute is not
present, it must first be added.</p>
- <p>If a reflecting DOM attribute is a <code>DOMString</code>
+ <p>If a reflecting IDL attribute is a <code>DOMString</code>
attribute whose content attribute is defined to contain a
- <a href="#url">URL</a>, then on getting, the DOM attribute must <a href="#resolve-a-url" title="resolve a url">resolve</a> the value of the content
+ <a href="#url">URL</a>, then on getting, the IDL attribute must <a href="#resolve-a-url" title="resolve a url">resolve</a> the value of the content
attribute relative to the element and return the resulting
<a href="#absolute-url">absolute URL</a> if that was successful, or the empty
string otherwise; and on setting, must set the content attribute to
the specified literal value. If the content attribute is absent, the
- DOM attribute must return the default value, if the content
+ IDL attribute must return the default value, if the content
attribute has one, or else the empty string.</p>
- <p>If a reflecting DOM attribute is a <code>DOMString</code>
+ <p>If a reflecting IDL attribute is a <code>DOMString</code>
attribute whose content attribute is defined to contain one or more
- <a href="#url" title="URL">URLs</a>, then on getting, the DOM attribute
+ <a href="#url" title="URL">URLs</a>, then on getting, the IDL attribute
must <a href="#split-a-string-on-spaces" title="split a string on spaces">split the content
attribute on spaces</a> and return the concatenation of <a href="#resolve-a-url" title="resolve a URL">resolving</a> each token URL to an
<a href="#absolute-url">absolute URL</a> relative to the element, with a single
U+0020 SPACE character between each URL, ignoring any tokens that
did not resolve successfully. If the content attribute is absent,
- the DOM attribute must return the default value, if the content
- attribute has one, or else the empty string. On setting, the DOM
+ the IDL attribute must return the default value, if the content
+ attribute has one, or else the empty string. On setting, the IDL
attribute must set the content attribute to the specified literal
value.</p>
- <p>If a reflecting DOM attribute is a <code>DOMString</code> whose
+ <p>If a reflecting IDL attribute is a <code>DOMString</code> whose
content attribute is an <a href="#enumerated-attribute">enumerated attribute</a>, and the
- DOM attribute is <dfn id="limited-to-only-known-values">limited to only known values</dfn>, then, on
- getting, the DOM attribute must return the conforming value
+ IDL attribute is <dfn id="limited-to-only-known-values">limited to only known values</dfn>, then, on
+ getting, the IDL attribute must return the conforming value
associated with the state the attribute is in (in its canonical
case), or the empty string if the attribute is in a state that has
no associated keyword value; and on setting, if the new value is an
@@ -3443,23 +3443,23 @@
removed, otherwise, the setter must raise a <code><a href="#syntax_err">SYNTAX_ERR</a></code>
exception.</p>
- <p>If a reflecting DOM attribute is a <code>DOMString</code> but
+ <p>If a reflecting IDL attribute is a <code>DOMString</code> but
doesn't fall into any of the above categories, then the getting and
setting must be done in a transparent, case-preserving manner.</p>
- <p>If a reflecting DOM attribute is a boolean attribute, then on
- getting the DOM attribute must return true if the attribute is set,
+ <p>If a reflecting IDL attribute is a boolean attribute, then on
+ getting the IDL attribute must return true if the attribute is set,
and false if it is absent. On setting, the content attribute must be
- removed if the DOM attribute is set to false, and must be set to
- have the same value as its name if the DOM attribute is set to
+ removed if the IDL attribute is set to false, and must be set to
+ have the same value as its name if the IDL attribute is set to
true. (This corresponds to the rules for <a href="#boolean-attribute" title="boolean
attribute">boolean content attributes</a>.)</p>
- <p>If a reflecting DOM attribute is a signed integer type
+ <p>If a reflecting IDL attribute is a signed integer type
(<code>long</code>) then, on getting, the content attribute must be
parsed according to the <a href="#rules-for-parsing-integers" title="rules for parsing
integers">rules for parsing signed integers</a>, and if that is
- successful, and the value is in the range of the DOM attribute's
+ successful, and the value is in the range of the IDL attribute's
type, the resulting value must be returned. If, on the other hand,
it fails or returns an out of range value, or if the attribute is
absent, then the default value must be returned instead, or 0 if
@@ -3468,11 +3468,11 @@
a <a href="#valid-integer">valid integer</a> and then that string must be used as
the new content attribute value.</p>
- <p>If a reflecting DOM attribute is an <em>unsigned</em> integer
+ <p>If a reflecting IDL attribute is an <em>unsigned</em> integer
type (<code>unsigned long</code>) then, on getting, the content
attribute must be parsed according to the <a href="#rules-for-parsing-non-negative-integers">rules for parsing
non-negative integers</a>, and if that is successful, and the
- value is in the range of the DOM attribute's type, the resulting
+ value is in the range of the IDL attribute's type, the resulting
value must be returned. If, on the other hand, it fails or returns
an out of range value, or if the attribute is absent, the default
value must be returned instead, or 0 if there is no default
@@ -3481,13 +3481,13 @@
non-negative integer</a> and then that string must be used as the
new content attribute value.</p>
- <p>If a reflecting DOM attribute is an unsigned integer type
+ <p>If a reflecting IDL attribute is an unsigned integer type
(<code>unsigned long</code>) that is <dfn id="limited-to-only-positive-non-zero-numbers">limited to only positive
non-zero numbers</dfn>, then the behavior is similar to the previous
case, but zero is not allowed. On getting, the content attribute
must first be parsed according to the <a href="#rules-for-parsing-non-negative-integers">rules for parsing
non-negative integers</a>, and if that is successful, and the
- value is in the range of the DOM attribute's type, the resulting
+ value is in the range of the IDL attribute's type, the resulting
value must be returned. If, on the other hand, it fails or returns
an out of range value, or if the attribute is absent, the default
value must be returned instead, or 1 if there is no default
@@ -3497,11 +3497,11 @@
number as a <a href="#valid-non-negative-integer">valid non-negative integer</a> and then that
string must be used as the new content attribute value.</p>
- <p>If a reflecting DOM attribute is a floating point number type
+ <p>If a reflecting IDL attribute is a floating point number type
(<code>float</code>), then, on getting, the content attribute must
be parsed according to the <a href="#rules-for-parsing-floating-point-number-values">rules for parsing floating point
number values</a>, and if that is successful, and the value is in
- the range of the DOM attribute's type, the resulting value must be
+ the range of the IDL attribute's type, the resulting value must be
returned. If, on the other hand, it fails or returns an out of range
value, or if the attribute is absent, the default value must be
returned instead, or 0.0 if there is no default value. On setting,
@@ -3513,7 +3513,7 @@
throw an exception on setting, as <a href="#float-nan">defined
earlier</a>.</p>
- <p>If a reflecting DOM attribute is of the type
+ <p>If a reflecting IDL attribute is of the type
<code><a href="#domtokenlist">DOMTokenList</a></code> or <code><a href="#domsettabletokenlist">DOMSettableTokenList</a></code>, then
on getting it must return a <code><a href="#domtokenlist">DOMTokenList</a></code> or
<code><a href="#domsettabletokenlist">DOMSettableTokenList</a></code> object (as appropriate) whose
@@ -3539,28 +3539,28 @@
</div>
- <p>If a reflecting DOM attribute has the type
+ <p>If a reflecting IDL attribute has the type
<code><a href="dom.html#htmlelement">HTMLElement</a></code>, or an interface that descends from
<code><a href="dom.html#htmlelement">HTMLElement</a></code>, then, on getting, it must run the
following algorithm (stopping at the first point where a value is
returned):
</p><ol><li>If the corresponding content attribute is absent, then the
- DOM attribute must return null.</li>
+ IDL attribute must return null.</li>
<li>Let <var title="">candidate</var> be the element that the <code title="">document.getElementById()</code> method would find if it
was passed as its argument the current value of the corresponding
content attribute.</li>
<li>If <var title="">candidate</var> is null, or if it is not
- type-compatible with the DOM attribute, then the DOM attribute must
+ type-compatible with the IDL attribute, then the IDL attribute must
return null.</li>
<li>Otherwise, it must return <var title="">candidate</var>.</li>
</ol><p>On setting, if the given element has an <code title="attr-id"><a href="dom.html#the-id-attribute">id</a></code> attribute, then the content attribute must
be set to the value of that <code title="attr-id"><a href="dom.html#the-id-attribute">id</a></code>
- attribute. Otherwise, the DOM attribute must be set to the empty
+ attribute. Otherwise, the IDL attribute must be set to the empty
string.</p>
</div><h4 id="collections-0"><span class="secno">2.8.2 </span>Collections</h4><p>The <code><a href="#htmlcollection">HTMLCollection</a></code>, <code><a href="#htmlallcollection">HTMLAllCollection</a></code>,
@@ -3869,7 +3869,7 @@
on a <code>NodeList</code> object.</p>
<p>The <dfn id="dom-radionodelist-value" title="dom-RadioNodeList-value"><code>value</code></dfn>
- DOM attribute on the <code><a href="#radionodelist">RadioNodeList</a></code> object, on getting,
+ IDL attribute on the <code><a href="#radionodelist">RadioNodeList</a></code> object, on getting,
must return the value returned by running the following steps:</p>
<ol><li><p>Let <var title="">element</var> be the first element in
@@ -3887,7 +3887,7 @@
<li><p>Otherwise, return the value of <var title="">element</var>'s
<code title="attr-input-value"><a href="forms.html#attr-input-value">value</a></code> attribute.</p></li>
- </ol><p>On setting, the <code title="dom-RadioNodeList-value"><a href="#dom-radionodelist-value">value</a></code> DOM attribute must run
+ </ol><p>On setting, the <code title="dom-RadioNodeList-value"><a href="#dom-radionodelist-value">value</a></code> IDL attribute must run
the following steps:</p>
<ol><li><p>Let <var title="">element</var> be the first element in
@@ -4144,7 +4144,7 @@
on a <code>NodeList</code> object.</p>
<p>The <dfn id="dom-propertynodelist-contents" title="dom-PropertyNodeList-contents"><code>contents</code></dfn>
- DOM attribute on the <code><a href="#propertynodelist">PropertyNodeList</a></code> object, on
+ IDL attribute on the <code><a href="#propertynodelist">PropertyNodeList</a></code> object, on
getting, must return a newly constructed array whose values are the
values obtained from the <code title="dom-content"><a href="microdata.html#dom-content">content</a></code>
DOM property of each of the elements represented by the object, in
@@ -4586,7 +4586,7 @@
<h4 id="garbage-collection"><span class="secno">2.8.9 </span>Garbage collection</h4>
- <p>There is an <dfn id="implied-strong-reference">implied strong reference</dfn> from any DOM
+ <p>There is an <dfn id="implied-strong-reference">implied strong reference</dfn> from any IDL
attribute that returns a pre-existing object to that object.</p>
<div class="example">
Index: text-level-semantics.html
===================================================================
RCS file: /sources/public/html5/spec/text-level-semantics.html,v
retrieving revision 1.184
retrieving revision 1.185
diff -u -d -r1.184 -r1.185
--- text-level-semantics.html 30 Aug 2009 21:46:30 -0000 1.184
+++ text-level-semantics.html 31 Aug 2009 02:36:28 -0000 1.185
@@ -182,7 +182,7 @@
<a href="semantics.html">← 4 The elements of HTML</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="video.html">4.8.7 The video element →</a>
- </nav><p>This is revision 1.2891.</p>
+ </nav><p>This is revision 1.2893.</p>
<h3 id="text-level-semantics"><span class="secno">4.6 </span>Text-level semantics</h3><h4 id="the-a-element"><span class="secno">4.6.1 </span>The <dfn><code>a</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class="element"><dt>Categories</dt>
@@ -214,7 +214,7 @@
attribute DOMString <a href="#dom-a-hreflang" title="dom-a-hreflang">hreflang</a>;
attribute DOMString <a href="#dom-a-type" title="dom-a-type">type</a>;
- // <a href="infrastructure.html#url-decomposition-dom-attributes">URL decomposition DOM attributes</a>
+ // <a href="infrastructure.html#url-decomposition-idl-attributes">URL decomposition IDL attributes</a>
attribute DOMString <a href="#dom-a-protocol" title="dom-a-protocol">protocol</a>;
attribute DOMString <a href="#dom-a-host" title="dom-a-host">host</a>;
attribute DOMString <a href="#dom-a-hostname" title="dom-a-hostname">hostname</a>;
@@ -297,17 +297,17 @@
suffix</a></var>, then take that into account when following the
hyperlink.</p></li>
- </ol><p>The DOM attributes <dfn id="dom-a-href" title="dom-a-href"><code>href</code></dfn>, <dfn id="dom-a-ping" title="dom-a-ping"><code>ping</code></dfn>, <dfn id="dom-a-target" title="dom-a-target"><code>target</code></dfn>, <dfn id="dom-a-rel" title="dom-a-rel"><code>rel</code></dfn>, <dfn id="dom-a-media" title="dom-a-media"><code>media</code></dfn>, <dfn id="dom-a-hreflang" title="dom-a-hreflang"><code>hreflang</code></dfn>, and <dfn id="dom-a-type" title="dom-a-type"><code>type</code></dfn>, must
+ </ol><p>The IDL attributes <dfn id="dom-a-href" title="dom-a-href"><code>href</code></dfn>, <dfn id="dom-a-ping" title="dom-a-ping"><code>ping</code></dfn>, <dfn id="dom-a-target" title="dom-a-target"><code>target</code></dfn>, <dfn id="dom-a-rel" title="dom-a-rel"><code>rel</code></dfn>, <dfn id="dom-a-media" title="dom-a-media"><code>media</code></dfn>, <dfn id="dom-a-hreflang" title="dom-a-hreflang"><code>hreflang</code></dfn>, and <dfn id="dom-a-type" title="dom-a-type"><code>type</code></dfn>, must
<a href="infrastructure.html#reflect">reflect</a> the respective content attributes of the same
name.</p>
- <p>The DOM attribute <dfn id="dom-a-rellist" title="dom-a-rellist"><code>relList</code></dfn> must
+ <p>The IDL attribute <dfn id="dom-a-rellist" title="dom-a-rellist"><code>relList</code></dfn> must
<a href="infrastructure.html#reflect">reflect</a> the <code title="attr-hyperlink-rel"><a href="history.html#attr-hyperlink-rel">rel</a></code>
content attribute.</p>
<p>The <code><a href="#the-a-element">a</a></code> element also supports the complement of
- <a href="infrastructure.html#url-decomposition-dom-attributes">URL decomposition DOM attributes</a>, <dfn id="dom-a-protocol" title="dom-a-protocol"><code>protocol</code></dfn>, <dfn id="dom-a-host" title="dom-a-host"><code>host</code></dfn>, <dfn id="dom-a-port" title="dom-a-port"><code>port</code></dfn>, <dfn id="dom-a-hostname" title="dom-a-hostname"><code>hostname</code></dfn>, <dfn id="dom-a-pathname" title="dom-a-pathname"><code>pathname</code></dfn>, <dfn id="dom-a-search" title="dom-a-search"><code>search</code></dfn>, and <dfn id="dom-a-hash" title="dom-a-hash"><code>hash</code></dfn>. These must follow the
- rules given for URL decomposition DOM attributes, with the <a href="infrastructure.html#concept-uda-input" title="concept-uda-input">input</a> being the result of <a href="infrastructure.html#resolve-a-url" title="resolve a url">resolving</a> the element's <code title="attr-hyperlink-href"><a href="history.html#attr-hyperlink-href">href</a></code> attribute relative to the
+ <a href="infrastructure.html#url-decomposition-idl-attributes">URL decomposition IDL attributes</a>, <dfn id="dom-a-protocol" title="dom-a-protocol"><code>protocol</code></dfn>, <dfn id="dom-a-host" title="dom-a-host"><code>host</code></dfn>, <dfn id="dom-a-port" title="dom-a-port"><code>port</code></dfn>, <dfn id="dom-a-hostname" title="dom-a-hostname"><code>hostname</code></dfn>, <dfn id="dom-a-pathname" title="dom-a-pathname"><code>pathname</code></dfn>, <dfn id="dom-a-search" title="dom-a-search"><code>search</code></dfn>, and <dfn id="dom-a-hash" title="dom-a-hash"><code>hash</code></dfn>. 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 the result of <a href="infrastructure.html#resolve-a-url" title="resolve a url">resolving</a> the element's <code title="attr-hyperlink-href"><a href="history.html#attr-hyperlink-href">href</a></code> attribute relative to the
element, if there is such an attribute and resolving it is
successful, or the empty string otherwise; and the <a href="infrastructure.html#concept-uda-setter" title="concept-uda-setter">common setter action</a> being the
same as setting the element's <code title="attr-hyperlink-href"><a href="history.html#attr-hyperlink-href">href</a></code> attribute to the new output
@@ -928,7 +928,7 @@
</div><div class="impl">
- <p>The <dfn id="dom-time-datetime" title="dom-time-datetime"><code>dateTime</code></dfn> DOM
+ <p>The <dfn id="dom-time-datetime" title="dom-time-datetime"><code>dateTime</code></dfn> IDL
attribute must <a href="infrastructure.html#reflect">reflect</a> the <code title="attr-time-datetime"><a href="#attr-time-datetime">datetime</a></code> content attribute.</p>
<p>User agents, to obtain the <dfn id="concept-time-date" title="concept-time-date">date</dfn>, <dfn id="concept-time-time" title="concept-time-time">time</dfn>, and <dfn id="concept-time-timezone" title="concept-time-timezone">time-zone offset</dfn> represented by
@@ -993,19 +993,19 @@
</dl><div>
- <p>The <dfn id="dom-time-date" title="dom-time-date"><code>date</code></dfn> DOM
+ <p>The <dfn id="dom-time-date" title="dom-time-date"><code>date</code></dfn> IDL
attribute must return null if the <a href="#concept-time-date" title="concept-time-date">date</a> is unknown, and otherwise must
return the time corresponding to midnight UTC (i.e. the first
second) of the given <a href="#concept-time-date" title="concept-time-date">date</a>.</p>
- <p>The <dfn id="dom-time-time" title="dom-time-time"><code>time</code></dfn> DOM attribute
+ <p>The <dfn id="dom-time-time" title="dom-time-time"><code>time</code></dfn> IDL attribute
must return null if the <a href="#concept-time-time" title="concept-time-time">time</a> is
unknown, and otherwise must return the time corresponding to the
given <a href="#concept-time-time" title="concept-time-time">time</a> of 1970-01-01, with
the time zone UTC.</p>
<p>The <dfn id="dom-time-timezone" title="dom-time-timezone"><code>timezone</code></dfn>
- DOM attribute must return null if the <a href="#concept-time-timezone" title="concept-time-timezone">time-zone offset</a> is unknown,
+ IDL attribute must return null if the <a href="#concept-time-timezone" title="concept-time-timezone">time-zone offset</a> is unknown,
and otherwise must return the time corresponding to 1970-01-01 00:00
UTC in the given <a href="#concept-time-timezone" title="concept-time-timezone">time-zone
offset</a>, with the time zone set to UTC (i.e. the time
@@ -1604,9 +1604,9 @@
progress bar, and in the former case, should indicate the relative
position of the current value relative to the maximum value.</p>
- <p>The <dfn id="dom-progress-max" title="dom-progress-max"><code>max</code></dfn> and <dfn id="dom-progress-value" title="dom-progress-value"><code>value</code></dfn> DOM attributes
+ <p>The <dfn id="dom-progress-max" title="dom-progress-max"><code>max</code></dfn> and <dfn id="dom-progress-value" title="dom-progress-value"><code>value</code></dfn> IDL attributes
must <a href="infrastructure.html#reflect">reflect</a> the respective content attributes of the
- same name. When the relevant content attributes are absent, the DOM
+ same name. When the relevant content attributes are absent, the IDL
attributes must return zero. The value parsed from the
<code>textContent</code> never affects the DOM values.</p>
@@ -1623,7 +1623,7 @@
</dd></dl><div>
<p>If the progress bar is an indeterminate progress bar, then the
- <dfn id="dom-progress-position" title="dom-progress-position"><code>position</code></dfn> DOM
+ <dfn id="dom-progress-position" title="dom-progress-position"><code>position</code></dfn> IDL
attribute must return −1. Otherwise, it must return the result of
dividing the current value by the maximum value.</p>
@@ -2018,9 +2018,9 @@
second line.</p>
</div>
- <p>The <dfn id="dom-meter-min" title="dom-meter-min"><code>min</code></dfn>, <dfn id="dom-meter-max" title="dom-meter-max"><code>max</code></dfn>, <dfn id="dom-meter-value" title="dom-meter-value"><code>value</code></dfn>, <dfn id="dom-meter-low" title="dom-meter-low"><code>low</code></dfn>, <dfn id="dom-meter-high" title="dom-meter-high"><code>high</code></dfn>, and <dfn id="dom-meter-optimum" title="dom-meter-optimum"><code>optimum</code></dfn> DOM attributes
+ <p>The <dfn id="dom-meter-min" title="dom-meter-min"><code>min</code></dfn>, <dfn id="dom-meter-max" title="dom-meter-max"><code>max</code></dfn>, <dfn id="dom-meter-value" title="dom-meter-value"><code>value</code></dfn>, <dfn id="dom-meter-low" title="dom-meter-low"><code>low</code></dfn>, <dfn id="dom-meter-high" title="dom-meter-high"><code>high</code></dfn>, and <dfn id="dom-meter-optimum" title="dom-meter-optimum"><code>optimum</code></dfn> IDL attributes
must <a href="infrastructure.html#reflect">reflect</a> the respective content attributes of the
- same name. When the relevant content attributes are absent, the DOM
+ same name. When the relevant content attributes are absent, the IDL
attributes must return zero. The value parsed from the
<code>textContent</code> never affects the DOM values.</p>
@@ -2532,8 +2532,8 @@
attribute DOMString <a href="#dom-mod-datetime" title="dom-mod-datetime">dateTime</a>;
};</pre><div class="impl">
- <p>The <dfn id="dom-mod-cite" title="dom-mod-cite"><code>cite</code></dfn> DOM
- attribute must <a href="infrastructure.html#reflect">reflect</a> the element's <code title="attr-mod-cite"><a href="#attr-mod-cite">cite</a></code> content attribute. The <dfn id="dom-mod-datetime" title="dom-mod-datetime"><code>dateTime</code></dfn> DOM attribute
+ <p>The <dfn id="dom-mod-cite" title="dom-mod-cite"><code>cite</code></dfn> IDL
+ attribute must <a href="infrastructure.html#reflect">reflect</a> the element's <code title="attr-mod-cite"><a href="#attr-mod-cite">cite</a></code> content attribute. The <dfn id="dom-mod-datetime" title="dom-mod-datetime"><code>dateTime</code></dfn> IDL attribute
must <a href="infrastructure.html#reflect">reflect</a> the element's <code title="">datetime</code> content attribute.</p>
</div><h4 id="edits-and-paragraphs"><span class="secno">4.7.4 </span>Edits and paragraphs</h4><p>Since the <code><a href="#the-ins-element">ins</a></code> and <code><a href="#the-del-element">del</a></code> elements do not
@@ -2730,7 +2730,7 @@
<legend>The castle through the ages: 1423, 1858, and 1999 respectively.</legend>
</figure></pre>
- </div><h4 id="the-img-element"><span class="secno">4.8.2 </span>The <dfn><code>img</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/66">ISSUE-66</a> (image-analysis) and <a href="http://www.w3.org/html/wg/tracker/issues/30">ISSUE-30</a> (longdesc) block progress to Last Call</span></p><dl class="element"><dt>Categories</dt>
+ </div><h4 id="the-img-element"><span class="secno">4.8.2 </span>The <dfn><code>img</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/30">ISSUE-30</a> (longdesc) and <a href="http://www.w3.org/html/wg/tracker/issues/66">ISSUE-66</a> (image-analysis) block progress to Last Call</span></p><dl class="element"><dt>Categories</dt>
<dd><a href="dom.html#flow-content">Flow content</a>.</dd>
<dd><a href="dom.html#phrasing-content">Phrasing content</a>.</dd>
<dd><a href="embedded-content-0.html#embedded-content">Embedded content</a>.</dd>
@@ -3038,7 +3038,7 @@
with an <code title="attr-hyperlink-href"><a href="history.html#attr-hyperlink-href">href</a></code> attribute.</p><p>The <code><a href="#the-img-element">img</a></code> element supports <a href="the-canvas-element.html#dimension-attributes">dimension
attributes</a>.</p><div class="impl">
- <p>The DOM attributes <dfn id="dom-img-alt" title="dom-img-alt"><code>alt</code></dfn>, <dfn id="dom-img-src" title="dom-img-src"><code>src</code></dfn>, <dfn id="dom-img-usemap" title="dom-img-useMap"><code>useMap</code></dfn>, and <dfn id="dom-img-ismap" title="dom-img-isMap"><code>isMap</code></dfn> each must
+ <p>The IDL attributes <dfn id="dom-img-alt" title="dom-img-alt"><code>alt</code></dfn>, <dfn id="dom-img-src" title="dom-img-src"><code>src</code></dfn>, <dfn id="dom-img-usemap" title="dom-img-useMap"><code>useMap</code></dfn>, and <dfn id="dom-img-ismap" title="dom-img-isMap"><code>isMap</code></dfn> each must
<a href="infrastructure.html#reflect">reflect</a> the respective content attributes of the same
name.</p>
@@ -3075,7 +3075,7 @@
</dl><div class="impl">
- <p>The DOM attributes <dfn id="dom-img-width" title="dom-img-width"><code>width</code></dfn> and <dfn id="dom-img-height" title="dom-img-height"><code>height</code></dfn> must return the
+ <p>The IDL attributes <dfn id="dom-img-width" title="dom-img-width"><code>width</code></dfn> and <dfn id="dom-img-height" title="dom-img-height"><code>height</code></dfn> must return the
rendered width and height of the image, in CSS pixels, if the image
is being rendered, and is being rendered to a visual medium; or else
the intrinsic width and height of the image, in CSS pixels, if the
@@ -3086,7 +3086,7 @@
<p>On setting, they must act as if they <a href="infrastructure.html#reflect" title="reflect">reflected</a> the respective content attributes
of the same name.</p>
- <p>The DOM attribute <dfn id="dom-img-complete" title="dom-img-complete"><code>complete</code></dfn> must return
+ <p>The IDL attribute <dfn id="dom-img-complete" title="dom-img-complete"><code>complete</code></dfn> must return
true if the user agent has fetched the image specified in the <code title="attr-img-src"><a href="#attr-img-src">src</a></code> attribute, and it is in a supported
image type (i.e. it was decoded without fatal errors), even if the
final <a href="browsers.html#concept-task" title="concept-task">task</a> queued by the
@@ -4096,7 +4096,7 @@
origin</a> for the purposes of the <a href="browsers.html#origin" title="origin">same-origin policy</a>.</p>
<p>This flag also <a href="dom.html#sandboxCookies">prevents script from
- reading the <code title="dom-document-cookie">document.cookie</code> DOM
+ reading the <code title="dom-document-cookie">document.cookie</code> IDL
attribute</a>.</p>
<div class="note">
@@ -4177,7 +4177,7 @@
<iframe sandbox src="getusercontent.cgi?id=12193"></iframe></pre>
<p>Note that cookies are still sent to the server in the <code title="">getusercontent.cgi</code> request, though they are not
- visible in the <code title="dom-document-cookie"><a href="dom.html#dom-document-cookie">document.cookie</a></code> DOM
+ visible in the <code title="dom-document-cookie"><a href="dom.html#dom-document-cookie">document.cookie</a></code> IDL
attribute.</p>
</div><div class="example">
@@ -4330,17 +4330,17 @@
documents</a>.</p><p class="note">The <a href="syntax.html#html-parser">HTML parser</a> treats markup inside
<code><a href="#the-iframe-element">iframe</a></code> elements as text.</p><div class="impl">
- <p>The DOM attributes <dfn id="dom-iframe-src" title="dom-iframe-src"><code>src</code></dfn>, <dfn id="dom-iframe-name" title="dom-iframe-name"><code>name</code></dfn>, <dfn id="dom-iframe-sandbox" title="dom-iframe-sandbox"><code>sandbox</code></dfn>, and <dfn id="dom-iframe-seamless" title="dom-iframe-seamless"><code>seamless</code></dfn> must
+ <p>The IDL attributes <dfn id="dom-iframe-src" title="dom-iframe-src"><code>src</code></dfn>, <dfn id="dom-iframe-name" title="dom-iframe-name"><code>name</code></dfn>, <dfn id="dom-iframe-sandbox" title="dom-iframe-sandbox"><code>sandbox</code></dfn>, and <dfn id="dom-iframe-seamless" title="dom-iframe-seamless"><code>seamless</code></dfn> must
<a href="infrastructure.html#reflect">reflect</a> the respective content attributes of the same
name.</p>
<p>The <dfn id="dom-iframe-contentdocument" title="dom-iframe-contentDocument"><code>contentDocument</code></dfn>
- DOM attribute must return the <code>Document</code> object of the
+ IDL attribute must return the <code>Document</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>
<p>The <dfn id="dom-iframe-contentwindow" title="dom-iframe-contentWindow"><code>contentWindow</code></dfn>
- DOM attribute must return the <code><a href="browsers.html#windowproxy">WindowProxy</a></code> object of the
+ IDL attribute must return the <code><a href="browsers.html#windowproxy">WindowProxy</a></code> object 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>
@@ -4531,7 +4531,7 @@
</div><p>The <code><a href="#the-embed-element">embed</a></code> element supports <a href="the-canvas-element.html#dimension-attributes">dimension
attributes</a>.</p><div class="impl">
- <p>The DOM attributes <dfn id="dom-embed-src" title="dom-embed-src"><code>src</code></dfn> and <dfn id="dom-embed-type" title="dom-embed-type"><code>type</code></dfn> each must
+ <p>The IDL attributes <dfn id="dom-embed-src" title="dom-embed-src"><code>src</code></dfn> and <dfn id="dom-embed-type" title="dom-embed-type"><code>type</code></dfn> each must
<a href="infrastructure.html#reflect">reflect</a> the respective content attributes of the same
name.</p>
@@ -4910,18 +4910,18 @@
</div><p>The <code><a href="#the-object-element">object</a></code> element supports <a href="the-canvas-element.html#dimension-attributes">dimension
attributes</a>.</p><div class="impl">
- <p>The DOM attributes <dfn id="dom-object-data" title="dom-object-data"><code>data</code></dfn>, <dfn id="dom-object-type" title="dom-object-type"><code>type</code></dfn>, <dfn id="dom-object-name" title="dom-object-name"><code>name</code></dfn>, and <dfn id="dom-object-usemap" title="dom-object-useMap"><code>useMap</code></dfn> each must
+ <p>The IDL attributes <dfn id="dom-object-data" title="dom-object-data"><code>data</code></dfn>, <dfn id="dom-object-type" title="dom-object-type"><code>type</code></dfn>, <dfn id="dom-object-name" title="dom-object-name"><code>name</code></dfn>, and <dfn id="dom-object-usemap" title="dom-object-useMap"><code>useMap</code></dfn> each must
<a href="infrastructure.html#reflect">reflect</a> the respective content attributes of the same
name.</p>
<p>The <dfn id="dom-object-contentdocument" title="dom-object-contentDocument"><code>contentDocument</code></dfn>
- DOM attribute must return the <code>Document</code> object of the
+ IDL attribute must return the <code>Document</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>
<p>The <dfn id="dom-object-contentwindow" title="dom-object-contentWindow"><code>contentWindow</code></dfn>
- DOM attribute must return the <code><a href="browsers.html#windowproxy">WindowProxy</a></code> object of the
+ IDL attribute must return the <code><a href="browsers.html#windowproxy">WindowProxy</a></code> object 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>
@@ -4980,7 +4980,7 @@
element defines a <dfn id="concept-param-parameter" title="concept-param-parameter">parameter</dfn> with the given
name/value pair.</p>
- <p>The DOM attributes <dfn id="dom-param-name" title="dom-param-name"><code>name</code></dfn> and <dfn id="dom-param-value" title="dom-param-value"><code>value</code></dfn> must both
+ <p>The IDL attributes <dfn id="dom-param-name" title="dom-param-name"><code>name</code></dfn> and <dfn id="dom-param-value" title="dom-param-value"><code>value</code></dfn> must both
<a href="infrastructure.html#reflect">reflect</a> the respective content attributes of the same
name.</p>
Index: the-canvas-element.html
===================================================================
RCS file: /sources/public/html5/spec/the-canvas-element.html,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -d -r1.53 -r1.54
--- the-canvas-element.html 30 Aug 2009 21:46:30 -0000 1.53
+++ the-canvas-element.html 31 Aug 2009 02:36:28 -0000 1.54
@@ -182,7 +182,7 @@
<a href="video.html">← 4.8.7 The video element</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="tabular-data.html">4.9 Tabular data →</a>
- </nav><p>This is revision 1.2891.</p>
+ </nav><p>This is revision 1.2893.</p>
<h4 id="the-canvas-element"><span class="secno">4.8.11 </span>The <dfn id="canvas"><code>canvas</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/74">ISSUE-74</a> (canvas-accessibility) blocks progress to Last Call</span></p><dl class="element"><dt>Categories</dt>
@@ -262,7 +262,7 @@
dimensions.</p>
<p>The <dfn id="dom-canvas-width" title="dom-canvas-width"><code>width</code></dfn> and
- <dfn id="dom-canvas-height" title="dom-canvas-height"><code>height</code></dfn> DOM
+ <dfn id="dom-canvas-height" title="dom-canvas-height"><code>height</code></dfn> IDL
attributes must <a href="infrastructure.html#reflect">reflect</a> the respective content
attributes of the same name.</p>
@@ -1972,7 +1972,7 @@
</dl><div class="impl">
- <p>The <dfn id="dom-context-2d-font" title="dom-context-2d-font"><code>font</code></dfn> DOM
+ <p>The <dfn id="dom-context-2d-font" title="dom-context-2d-font"><code>font</code></dfn> IDL
attribute, on setting, must be parsed the same way as the 'font'
property of CSS (but without supporting property-independent style
sheet syntax like 'inherit'), and the resulting font must be
@@ -2030,7 +2030,7 @@
interpreted relative to the normal-weight 10px sans-serif
default.</p>
- <p>The <dfn id="dom-context-2d-textalign" title="dom-context-2d-textAlign"><code>textAlign</code></dfn> DOM
+ <p>The <dfn id="dom-context-2d-textalign" title="dom-context-2d-textAlign"><code>textAlign</code></dfn> IDL
attribute, on getting, must return the current value. On setting, if
the value is one of <code title="">start</code>, <code title="">end</code>, <code title="">left</code>, <code title="">right</code>, or <code title="">center</code>, then the
value must be changed to the new value. Otherwise, the new value
@@ -2038,7 +2038,7 @@
initially have the value <code title="">start</code>.</p>
<p>The <dfn id="dom-context-2d-textbaseline" title="dom-context-2d-textBaseline"><code>textBaseline</code></dfn>
- DOM attribute, on getting, must return the current value. On
+ IDL attribute, on getting, must return the current value. On
setting, if the value is one of <code title="dom-context-2d-textBaseline-top"><a href="#dom-context-2d-textbaseline-top">top</a></code>, <code title="dom-context-2d-textBaseline-hanging"><a href="#dom-context-2d-textbaseline-hanging">hanging</a></code>, <code title="dom-context-2d-textBaseline-middle"><a href="#dom-context-2d-textbaseline-middle">middle</a></code>, <code title="dom-context-2d-textBaseline-alphabetic"><a href="#dom-context-2d-textbaseline-alphabetic">alphabetic</a></code>,
<code title="dom-context-2d-textBaseline-ideographic"><a href="#dom-context-2d-textbaseline-ideographic">ideographic</a></code>,
or <code title="dom-context-2d-textBaseline-bottom"><a href="#dom-context-2d-textbaseline-bottom">bottom</a></code>,
@@ -3046,7 +3046,7 @@
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>
- <p>The DOM attribute <dfn id="dom-map-name" title="dom-map-name"><code>name</code></dfn> must
+ <p>The IDL attribute <dfn id="dom-map-name" title="dom-map-name"><code>name</code></dfn> must
<a href="infrastructure.html#reflect">reflect</a> the content attribute of the same name.</p>
</div><h4 id="the-area-element"><span class="secno">4.8.13 </span>The <dfn><code>area</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class="element"><dt>Categories</dt>
@@ -3083,7 +3083,7 @@
attribute DOMString <a href="#dom-area-hreflang" title="dom-area-hreflang">hreflang</a>;
attribute DOMString <a href="#dom-area-type" title="dom-area-type">type</a>;
- // <a href="infrastructure.html#url-decomposition-dom-attributes">URL decomposition DOM attributes</a>
+ // <a href="infrastructure.html#url-decomposition-idl-attributes">URL decomposition IDL attributes</a>
attribute DOMString <a href="#dom-area-protocol" title="dom-area-protocol">protocol</a>;
attribute DOMString <a href="#dom-area-host" title="dom-area-host">host</a>;
attribute DOMString <a href="#dom-area-hostname" title="dom-area-hostname">hostname</a>;
@@ -3201,21 +3201,21 @@
hyperlinks">follow the hyperlink</a> defined by the
<code><a href="#the-area-element">area</a></code> element, if any.</li>
- </ol><p>The DOM attributes <dfn id="dom-area-alt" title="dom-area-alt"><code>alt</code></dfn>, <dfn id="dom-area-coords" title="dom-area-coords"><code>coords</code></dfn>, <dfn id="dom-area-href" title="dom-area-href"><code>href</code></dfn>, <dfn id="dom-area-target" title="dom-area-target"><code>target</code></dfn>, <dfn id="dom-area-ping" title="dom-area-ping"><code>ping</code></dfn>, <dfn id="dom-area-rel" title="dom-area-rel"><code>rel</code></dfn>, <dfn id="dom-area-media" title="dom-area-media"><code>media</code></dfn>, <dfn id="dom-area-hreflang" title="dom-area-hreflang"><code>hreflang</code></dfn>, and <dfn id="dom-area-type" title="dom-area-type"><code>type</code></dfn>, each must
+ </ol><p>The IDL attributes <dfn id="dom-area-alt" title="dom-area-alt"><code>alt</code></dfn>, <dfn id="dom-area-coords" title="dom-area-coords"><code>coords</code></dfn>, <dfn id="dom-area-href" title="dom-area-href"><code>href</code></dfn>, <dfn id="dom-area-target" title="dom-area-target"><code>target</code></dfn>, <dfn id="dom-area-ping" title="dom-area-ping"><code>ping</code></dfn>, <dfn id="dom-area-rel" title="dom-area-rel"><code>rel</code></dfn>, <dfn id="dom-area-media" title="dom-area-media"><code>media</code></dfn>, <dfn id="dom-area-hreflang" title="dom-area-hreflang"><code>hreflang</code></dfn>, and <dfn id="dom-area-type" title="dom-area-type"><code>type</code></dfn>, each must
<a href="infrastructure.html#reflect">reflect</a> the respective content attributes of the same
name.</p>
- <p>The DOM attribute <dfn id="dom-area-shape" title="dom-area-shape"><code>shape</code></dfn> must
+ <p>The IDL attribute <dfn id="dom-area-shape" title="dom-area-shape"><code>shape</code></dfn> must
<a href="infrastructure.html#reflect">reflect</a> the <code title="attr-area-shape"><a href="#attr-area-shape">shape</a></code>
content attribute, <a href="infrastructure.html#limited-to-only-known-values">limited to only known values</a>.</p>
- <p>The DOM attribute <dfn id="dom-area-rellist" title="dom-area-rellist"><code>relList</code></dfn> must
+ <p>The IDL attribute <dfn id="dom-area-rellist" title="dom-area-rellist"><code>relList</code></dfn> must
<a href="infrastructure.html#reflect">reflect</a> the <code title="attr-hyperlink-rel"><a href="history.html#attr-hyperlink-rel">rel</a></code>
content attribute.</p>
<p>The <code><a href="#the-area-element">area</a></code> element also supports the complement of
- <a href="infrastructure.html#url-decomposition-dom-attributes">URL decomposition DOM attributes</a>, <dfn id="dom-area-protocol" title="dom-area-protocol"><code>protocol</code></dfn>, <dfn id="dom-area-host" title="dom-area-host"><code>host</code></dfn>, <dfn id="dom-area-port" title="dom-area-port"><code>port</code></dfn>, <dfn id="dom-area-hostname" title="dom-area-hostname"><code>hostname</code></dfn>, <dfn id="dom-area-pathname" title="dom-area-pathname"><code>pathname</code></dfn>, <dfn id="dom-area-search" title="dom-area-search"><code>search</code></dfn>, and <dfn id="dom-area-hash" title="dom-area-hash"><code>hash</code></dfn>. These must follow the
- rules given for URL decomposition DOM attributes, with the <a href="infrastructure.html#concept-uda-input" title="concept-uda-input">input</a> being the result of <a href="infrastructure.html#resolve-a-url" title="resolve a url">resolving</a> the element's <code title="attr-hyperlink-href"><a href="history.html#attr-hyperlink-href">href</a></code> attribute relative to the
+ <a href="infrastructure.html#url-decomposition-idl-attributes">URL decomposition IDL attributes</a>, <dfn id="dom-area-protocol" title="dom-area-protocol"><code>protocol</code></dfn>, <dfn id="dom-area-host" title="dom-area-host"><code>host</code></dfn>, <dfn id="dom-area-port" title="dom-area-port"><code>port</code></dfn>, <dfn id="dom-area-hostname" title="dom-area-hostname"><code>hostname</code></dfn>, <dfn id="dom-area-pathname" title="dom-area-pathname"><code>pathname</code></dfn>, <dfn id="dom-area-search" title="dom-area-search"><code>search</code></dfn>, and <dfn id="dom-area-hash" title="dom-area-hash"><code>hash</code></dfn>. 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 the result of <a href="infrastructure.html#resolve-a-url" title="resolve a url">resolving</a> the element's <code title="attr-hyperlink-href"><a href="history.html#attr-hyperlink-href">href</a></code> attribute relative to the
element, if there is such an attribute and resolving it is
successful, or the empty string otherwise; and the <a href="infrastructure.html#concept-uda-setter" title="concept-uda-setter">common setter action</a> being the
same as setting the element's <code title="attr-hyperlink-href"><a href="history.html#attr-hyperlink-href">href</a></code> attribute to the new output
@@ -3536,7 +3536,7 @@
expected to use these attributes <a href="the-xhtml-syntax.html#dimRendering">as hints
for the rendering</a>.</p>
- <p>The <dfn id="dom-dim-width" title="dom-dim-width"><code>width</code></dfn> and <dfn id="dom-dim-height" title="dom-dim-height"><code>height</code></dfn> DOM attributes on
+ <p>The <dfn id="dom-dim-width" title="dom-dim-width"><code>width</code></dfn> and <dfn id="dom-dim-height" title="dom-dim-height"><code>height</code></dfn> IDL attributes on
the <code><a href="text-level-semantics.html#the-iframe-element">iframe</a></code>, <code><a href="text-level-semantics.html#the-embed-element">embed</a></code>, <code><a href="text-level-semantics.html#the-object-element">object</a></code>,
and <code><a href="video.html#video">video</a></code> elements must <a href="infrastructure.html#reflect">reflect</a> the
respective content attributes of the same name.</p>
Index: toc-status.xml
===================================================================
RCS file: /sources/public/html5/spec/toc-status.xml,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- toc-status.xml 30 Aug 2009 00:36:31 -0000 1.6
+++ toc-status.xml 31 Aug 2009 02:36:28 -0000 1.7
@@ -138,7 +138,7 @@
<li><a href="#common-dom-interfaces" shape="rect"><span class="secno">2.8</span>
Common DOM interfaces</a>
<ol>
-<li><a href="#reflecting-content-attributes-in-dom-attributes" shape="rect"><span class="secno">2.8.1</span> Reflecting content attributes in DOM
+<li><a href="#reflecting-content-attributes-in-idl-attributes" shape="rect"><span class="secno">2.8.1</span> Reflecting content attributes in IDL
attributes</a></li>
<li><a href="#collections-0" shape="rect"><span class="secno">2.8.2</span>
Collections</a>
Index: tabular-data.html
===================================================================
RCS file: /sources/public/html5/spec/tabular-data.html,v
retrieving revision 1.185
retrieving revision 1.186
diff -u -d -r1.185 -r1.186
--- tabular-data.html 30 Aug 2009 21:46:30 -0000 1.185
+++ tabular-data.html 31 Aug 2009 02:36:28 -0000 1.186
@@ -182,7 +182,7 @@
<a href="the-canvas-element.html">← 4.8.11 The canvas element</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="forms.html">4.10 Forms →</a>
- </nav><p>This is revision 1.2891.</p>
+ </nav><p>This is revision 1.2893.</p>
<h3 id="tabular-data"><span class="secno">4.9 </span>Tabular data</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/32">ISSUE-32</a> (table-summary) blocks progress to Last Call</span></p><h4 id="the-table-element"><span class="secno">4.9.1 </span>The <dfn><code>table</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class="element"><dt>Categories</dt>
@@ -536,7 +536,7 @@
</dd></dd></dl><div class="impl">
- <p>The <dfn id="dom-table-caption" title="dom-table-caption"><code>caption</code></dfn> DOM
+ <p>The <dfn id="dom-table-caption" title="dom-table-caption"><code>caption</code></dfn> IDL
attribute must return, on getting, the first <code><a href="#the-caption-element">caption</a></code>
element child of the <code><a href="#the-table-element">table</a></code> element, if any, or null
otherwise. On setting, if the new value is a <code><a href="#the-caption-element">caption</a></code>
@@ -557,7 +557,7 @@
method must remove the first <code><a href="#the-caption-element">caption</a></code> element child of
the <code><a href="#the-table-element">table</a></code> element, if any.</p>
- <p>The <dfn id="dom-table-thead" title="dom-table-tHead"><code>tHead</code></dfn> DOM
+ <p>The <dfn id="dom-table-thead" title="dom-table-tHead"><code>tHead</code></dfn> IDL
attribute must return, on getting, the first <code><a href="#the-thead-element">thead</a></code>
element child of the <code><a href="#the-table-element">table</a></code> element, if any, or null
otherwise. On setting, if the new value is a <code><a href="#the-thead-element">thead</a></code>
@@ -583,7 +583,7 @@
method must remove the first <code><a href="#the-thead-element">thead</a></code> element child of the
<code><a href="#the-table-element">table</a></code> element, if any.</p>
- <p>The <dfn id="dom-table-tfoot" title="dom-table-tFoot"><code>tFoot</code></dfn> DOM
+ <p>The <dfn id="dom-table-tfoot" title="dom-table-tFoot"><code>tFoot</code></dfn> IDL
attribute must return, on getting, the first <code><a href="#the-tfoot-element">tfoot</a></code>
element child of the <code><a href="#the-table-element">table</a></code> element, if any, or null
otherwise. On setting, if the new value is a <code><a href="#the-tfoot-element">tfoot</a></code>
@@ -788,7 +788,7 @@
<p>The <code><a href="#the-colgroup-element">colgroup</a></code> element and its <code title="attr-colgroup-span"><a href="#attr-colgroup-span">span</a></code> attribute take part in the
<a href="#table-model">table model</a>.</p>
- <p>The <dfn id="dom-colgroup-span" title="dom-colgroup-span"><code>span</code></dfn> DOM
+ <p>The <dfn id="dom-colgroup-span" title="dom-colgroup-span"><code>span</code></dfn> IDL
attribute must <a href="infrastructure.html#reflect">reflect</a> the respective content attribute
of the same name. The value must be <a href="infrastructure.html#limited-to-only-positive-non-zero-numbers">limited to only positive
non-zero numbers</a>.</p>
@@ -821,7 +821,7 @@
<p>The <code><a href="#the-col-element">col</a></code> element and its <code title="attr-col-span"><a href="#attr-col-span">span</a></code> attribute take part in the
<a href="#table-model">table model</a>.</p>
- <p>The <dfn id="dom-col-span" title="dom-col-span"><code>span</code></dfn> DOM
+ <p>The <dfn id="dom-col-span" title="dom-col-span"><code>span</code></dfn> IDL
attribute must <a href="infrastructure.html#reflect">reflect</a> the content attribute of the
same name. The value must be <a href="infrastructure.html#limited-to-only-positive-non-zero-numbers">limited to only positive non-zero
numbers</a>.</p>
@@ -1180,7 +1180,7 @@
<p>The <code><a href="#the-th-element">th</a></code> element and its <code title="attr-tdth-colspan"><a href="#attr-tdth-colspan">colspan</a></code>, <code title="attr-tdth-rowspan"><a href="#attr-tdth-rowspan">rowspan</a></code>, <code title="attr-tdth-headers"><a href="#attr-tdth-headers">headers</a></code>, and <code title="attr-th-scope"><a href="#attr-th-scope">scope</a></code> attributes take part in the
<a href="#table-model">table model</a>.</p>
- <p>The <dfn id="dom-th-scope" title="dom-th-scope"><code>scope</code></dfn> DOM
+ <p>The <dfn id="dom-th-scope" title="dom-th-scope"><code>scope</code></dfn> IDL
attribute must <a href="infrastructure.html#reflect">reflect</a> the content attribute of the
same name.</p>
@@ -1274,23 +1274,23 @@
</dl><div class="impl">
- <p>The <dfn id="dom-tdth-colspan" title="dom-tdth-colSpan"><code>colSpan</code></dfn> DOM
+ <p>The <dfn id="dom-tdth-colspan" title="dom-tdth-colSpan"><code>colSpan</code></dfn> IDL
attribute must <a href="infrastructure.html#reflect">reflect</a> the content attribute of the
same name. The value must be <a href="infrastructure.html#limited-to-only-positive-non-zero-numbers">limited to only positive non-zero
numbers</a>.</p>
- <p>The <dfn id="dom-tdth-rowspan" title="dom-tdth-rowSpan"><code>rowSpan</code></dfn> DOM
+ <p>The <dfn id="dom-tdth-rowspan" title="dom-tdth-rowSpan"><code>rowSpan</code></dfn> IDL
attribute must <a href="infrastructure.html#reflect">reflect</a> the content attribute of the
same name. Its default value, which must be used if <a href="infrastructure.html#rules-for-parsing-non-negative-integers" title="rules for parsing non-negative integers">parsing the
attribute as a non-negative integer</a> returns an error, is also
1.</p>
- <p>The <dfn id="dom-tdth-headers" title="dom-tdth-headers"><code>headers</code></dfn> DOM
+ <p>The <dfn id="dom-tdth-headers" title="dom-tdth-headers"><code>headers</code></dfn> IDL
attribute must <a href="infrastructure.html#reflect">reflect</a> the content attribute of the
same name.</p>
<p>The <dfn id="dom-tdth-cellindex" title="dom-tdth-cellIndex"><code>cellIndex</code></dfn>
- DOM attribute must, if the element has a parent <code><a href="#the-tr-element">tr</a></code>
+ IDL attribute must, if the element has a parent <code><a href="#the-tr-element">tr</a></code>
element, return the index of the cell's element in the parent
element's <code title="dom-tr-cells"><a href="#dom-tr-cells">cells</a></code> collection. If
there is no such parent element, then the attribute must return
Index: microdata.html
===================================================================
RCS file: /sources/public/html5/spec/microdata.html,v
retrieving revision 1.145
retrieving revision 1.146
diff -u -d -r1.145 -r1.146
--- microdata.html 30 Aug 2009 21:46:29 -0000 1.145
+++ microdata.html 31 Aug 2009 02:36:27 -0000 1.146
@@ -182,7 +182,7 @@
<a href="interactive-elements.html">← 4.11 Interactive elements</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="browsers.html">6 Web browsers →</a>
- </nav><p>This is revision 1.2891.</p>
+ </nav><p>This is revision 1.2893.</p>
<h2 id="microdata"><span class="secno">5 </span><dfn>Microdata</dfn></h2><p class="XXX annotation"><b>Status: </b><i>First draft. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/76">ISSUE-76</a> (Microdata/RDFa) blocks progress to Last Call</span></p><!-- v2
@@ -484,7 +484,7 @@
<code>NodeList</code> containing the items with the specified types,
or all types if no argument is specified.</p><p>Each <a href="#concept-item" title="concept-item">item</a> is represented in the
DOM by the element on which the relevant <code title="attr-item"><a href="#items:-the-item-attribute">item</a></code> attribute is found. The type of that
- element can be obtained using the <code title="dom-item"><a href="#dom-item">element.item</a></code> DOM attribute.</p><div class="example">
+ element can be obtained using the <code title="dom-item"><a href="#dom-item">element.item</a></code> IDL attribute.</p><div class="example">
<p>This sample shows how the <code title="dom-document-getItems"><a href="#dom-document-getitems">getItems()</a></code> method can be used
to obtain a list of all the top-level microdata items of one type
@@ -493,12 +493,12 @@
<pre>var cats = document.getItems("com.example.feline");</pre>
</div><p>Once an element representing an <a href="#concept-item" title="concept-item">item</a> has been obtained, its properties
- can be extracted using the <code title="dom-properties"><a href="#dom-properties">properties</a></code> DOM attribute. This
+ can be extracted using the <code title="dom-properties"><a href="#dom-properties">properties</a></code> IDL attribute. This
attribute returns an <code><a href="infrastructure.html#htmlpropertycollection">HTMLPropertyCollection</a></code>, which can
be enumerated to go through each element that adds one or more
properties to the item. It can also be indexed by name, which will
return an object with a list of the elements that add properties
- with that name.</p><p>Each element that adds a property also has a <code title="dom-content"><a href="#dom-content">content</a></code> DOM attribute that returns its
+ with that name.</p><p>Each element that adds a property also has a <code title="dom-content"><a href="#dom-content">content</a></code> IDL attribute that returns its
value.
</p><div class="example">
@@ -535,7 +535,7 @@
}</pre>
</div><p>It's also possible to get a list of all the <a href="#property-names">property
- names</a> using the object's <code title="dom-HTMLPropertyCollection-names"><a href="infrastructure.html#dom-htmlpropertycollection-names">names</a></code> DOM
+ names</a> using the object's <code title="dom-HTMLPropertyCollection-names"><a href="infrastructure.html#dom-htmlpropertycollection-names">names</a></code> IDL
attribute.</p><div class="example">
<p>This example creates a big list with a nested list for each item
@@ -809,20 +809,20 @@
containing all the <a href="#top-level-microdata-items">top-level microdata items</a> in the
document.</p>
- <p>The <dfn id="dom-item" title="dom-item"><code>item</code></dfn> DOM attribute
+ <p>The <dfn id="dom-item" title="dom-item"><code>item</code></dfn> IDL attribute
on elements must <a href="infrastructure.html#reflect">reflect</a> the element's <code title="attr-item"><a href="#items:-the-item-attribute">item</a></code> content attribute.</p>
- <p>The <dfn id="dom-itemprop" title="dom-itemprop"><code>itemprop</code></dfn> DOM
+ <p>The <dfn id="dom-itemprop" title="dom-itemprop"><code>itemprop</code></dfn> IDL
attribute on elements must <a href="infrastructure.html#reflect">reflect</a> the element's <code title="attr-itemprop"><a href="#names:-the-itemprop-attribute">itemprop</a></code> content attribute.</p>
- <p>The <dfn id="dom-properties" title="dom-properties"><code>properties</code></dfn> DOM
+ <p>The <dfn id="dom-properties" title="dom-properties"><code>properties</code></dfn> IDL
attribute on elements must return an
<code><a href="infrastructure.html#htmlpropertycollection">HTMLPropertyCollection</a></code> rooted at the
<code>Document</code> node, whose filter matches only elements that
have <a href="#property-names">property names</a> and have a <a href="#concept-item-corresponding" title="concept-item-corresponding">corresponding item</a> that is
equal to the element on which the attribute was invoked.</p>
- <p>The <dfn id="dom-content" title="dom-content"><code>content</code></dfn> DOM
+ <p>The <dfn id="dom-content" title="dom-content"><code>content</code></dfn> IDL
attribute's behavior depends on the element, as follows:</p>
<dl><dt>If the element is a <code><a href="semantics.html#meta">meta</a></code> element</dt>
@@ -859,7 +859,7 @@
<dd><p>The attribute must act the same as the element's
<code>textContent</code> attribute.</p></dd>
- </dl><p>The <dfn id="dom-subject" title="dom-subject"><code>itemfor</code></dfn> DOM
+ </dl><p>The <dfn id="dom-subject" title="dom-subject"><code>itemfor</code></dfn> IDL
attribute on elements must <a href="infrastructure.html#reflect">reflect</a> the element's <code title="attr-itemfor"><a href="#attr-itemfor">itemfor</a></code> content attribute.</p>
</div><h3 id="predefined-vocabularies-0"><span class="secno">5.4 </span>Predefined vocabularies</h3><p class="XXX annotation"><span><a href="http://www.w3.org/html/wg/tracker/issues/73">ISSUE-73</a> (predefined-voc) blocks progress to Last Call</span></p><p>A number of <dfn id="predefined-type" title="predefined type">predefined types</dfn>
Index: embedded-content-0.html
===================================================================
RCS file: /sources/public/html5/spec/embedded-content-0.html,v
retrieving revision 1.181
retrieving revision 1.182
diff -u -d -r1.181 -r1.182
--- embedded-content-0.html 30 Aug 2009 21:46:29 -0000 1.181
+++ embedded-content-0.html 31 Aug 2009 02:36:27 -0000 1.182
@@ -182,7 +182,7 @@
<a href="dom.html">← 3 Semantics, structure, and APIs of HTML documents</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="semantics.html">4 The elements of HTML →</a>
- </nav><p>This is revision 1.2891.</p>
+ </nav><p>This is revision 1.2893.</p>
<h6 id="embedded-content-0"><span class="secno">3.2.5.1.6 </span>Embedded content</h6><p><dfn id="embedded-content">Embedded content</dfn> is content that imports another
@@ -550,7 +550,7 @@
</td><td><code title="attr-aria-role-button">button</code> role
</td></tr><tr><td><code><a href="forms.html#the-input-element">input</a></code> element with a <code title="attr-input-type"><a href="forms.html#attr-input-type">type</a></code> attribute in the <a href="forms.html#checkbox-state" title="attr-input-type-checkbox">Checkbox</a> state
- </td><td><code title="attr-aria-role-checkbox">checkbox</code> role, with the <code title="attr-aria-checked">aria-checked</code> state set to "mixed" if the element's <code title="dom-input-indeterminate"><a href="forms.html#dom-input-indeterminate">indeterminate</a></code> DOM attribute is true, or "true" if the element's <a href="forms.html#concept-fe-checked" title="concept-fe-checked">checkedness</a> is true, or "false" otherwise
+ </td><td><code title="attr-aria-role-checkbox">checkbox</code> role, with the <code title="attr-aria-checked">aria-checked</code> state set to "mixed" if the element's <code title="dom-input-indeterminate"><a href="forms.html#dom-input-indeterminate">indeterminate</a></code> IDL attribute is true, or "true" if the element's <a href="forms.html#concept-fe-checked" title="concept-fe-checked">checkedness</a> is true, or "false" otherwise
</td></tr><tr><td><code><a href="forms.html#the-input-element">input</a></code> element with a <code title="attr-input-type"><a href="forms.html#attr-input-type">type</a></code> attribute in the <a href="forms.html#color-state" title="attr-input-type-color">Color</a> state
</td><td>No role
@@ -697,10 +697,6 @@
</td><td><code title="attr-aria-role-note">note</code> role
</td><td>Role must be either <code title="attr-aria-role-note">note</code>, <code title="attr-aria-role-complementary">complementary</code>, or <code title="attr-aria-role-search">search</code>
- </td></tr><tr><td><code><a href="semantics.html#the-html-element-0">html</a></code> element
- </td><td><code title="attr-aria-role-document">document</code> role
- </td><td>Role must be either <code title="attr-aria-role-document">document</code> or <code title="attr-aria-role-application">application</code>
-
</td></tr><tr><td><code><a href="semantics.html#the-li-element">li</a></code> element whose parent is an <code><a href="semantics.html#the-ol-element">ol</a></code> or <code><a href="semantics.html#the-ul-element">ul</a></code> element
</td><td><code title="attr-aria-role-listitem">listitem</code> role
</td><td>Role must be either <code title="attr-aria-role-listitem">listitem</code> or <code title="attr-aria-role-treeitem">treeitem</code>
@@ -725,6 +721,10 @@
</td><td><code title="attr-aria-role-list">list</code> role
</td><td>Role must be either <code title="attr-aria-role-list">list</code> or <code title="attr-aria-role-tree">tree</code>, or <code title="attr-aria-role-directory">directory</code>
+ </td></tr><tr><td><a href="dom.html#the-body-element">The body element</a>
+ </td><td><code title="attr-aria-role-document">document</code> role
+ </td><td>Role must be either <code title="attr-aria-role-document">document</code> or <code title="attr-aria-role-application">application</code>
+
</td></tr></tbody></table><div class="impl">
<p>User agents may apply different defaults than those described in
@@ -1191,7 +1191,7 @@
invoked with the same argument(s), plus an extra argument consisting
of a string containing a single line feed character (U+000A).</p>
- </div><h4 id="innerhtml"><span class="secno">3.5.5 </span><code title="dom-innerHTML"><a href="#dom-innerhtml">innerHTML</a></code></h4><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed</i></p><p>The <dfn id="dom-innerhtml" title="dom-innerHTML"><code>innerHTML</code></dfn> DOM
+ </div><h4 id="innerhtml"><span class="secno">3.5.5 </span><code title="dom-innerHTML"><a href="#dom-innerhtml">innerHTML</a></code></h4><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed</i></p><p>The <dfn id="dom-innerhtml" title="dom-innerHTML"><code>innerHTML</code></dfn> IDL
attribute represents the markup of the node's contents.</p><dl class="domintro"><dt><var title="">document</var> . <code title="dom-innerHTML"><a href="#dom-innerhtml">innerHTML</a></code> [ = <var title="">value</var> ]</dt>
<dd>
@@ -1303,7 +1303,7 @@
</li>
- </ol></div><h4 id="outerhtml"><span class="secno">3.5.6 </span><code title="dom-outerHTML"><a href="#dom-outerhtml">outerHTML</a></code></h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>The <dfn id="dom-outerhtml" title="dom-outerHTML"><code>outerHTML</code></dfn> DOM
+ </ol></div><h4 id="outerhtml"><span class="secno">3.5.6 </span><code title="dom-outerHTML"><a href="#dom-outerhtml">outerHTML</a></code></h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>The <dfn id="dom-outerhtml" title="dom-outerHTML"><code>outerHTML</code></dfn> IDL
attribute represents the markup of the element and its contents.</p><dl class="domintro"><dt><var title="">element</var> . <code title="dom-outerHTML"><a href="#dom-outerhtml">outerHTML</a></code> [ = <var title="">value</var> ]</dt>
<dd>
Index: dom.html
===================================================================
RCS file: /sources/public/html5/spec/dom.html,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -d -r1.191 -r1.192
--- dom.html 30 Aug 2009 21:46:29 -0000 1.191
+++ dom.html 31 Aug 2009 02:36:26 -0000 1.192
@@ -182,7 +182,7 @@
<a href="infrastructure.html">← 2 Common infrastructure</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="embedded-content-0.html">3.2.5.1.6 Embedded content →</a>
- </nav><p>This is revision 1.2891.</p>
+ </nav><p>This is revision 1.2893.</p>
<h2 id="dom"><span class="secno">3 </span>Semantics, structure, and APIs of HTML documents</h2><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><h3 id="documents"><span class="secno">3.1 </span>Documents</h3><p>Every XML and HTML document in an HTML UA is represented by a
@@ -272,7 +272,7 @@
DOMString <a href="editing.html#dom-document-querycommandvalue" title="dom-document-queryCommandValue">queryCommandValue</a>(in DOMString commandId);
readonly attribute <a href="infrastructure.html#htmlcollection">HTMLCollection</a> <a href="interactive-elements.html#dom-document-commands" title="dom-document-commands">commands</a>;
- // <a href="browsers.html#event-handler-dom-attributes">event handler DOM attributes</a>
+ // <a href="browsers.html#event-handler-idl-attributes">event handler IDL attributes</a>
attribute <a href="browsers.html#function">Function</a> <a href="browsers.html#handler-onabort" title="handler-onabort">onabort</a>;
attribute <a href="browsers.html#function">Function</a> <a href="browsers.html#handler-onblur" title="handler-onblur">onblur</a>;
attribute <a href="browsers.html#function">Function</a> <a href="browsers.html#handler-oncanplay" title="handler-oncanplay">oncanplay</a>;
@@ -366,7 +366,7 @@
referrers in this case, or if the navigation was initiated for a
<a href="history.html#hyperlink">hyperlink</a> with a <code title="rel-noreferrer"><a href="history.html#link-type-noreferrer">noreferrer</a></code> keyword.</p>
- <p class="note">In the case of HTTP, the <code title="dom-document-referrer"><a href="#dom-document-referrer">referrer</a></code> DOM attribute will
+ <p class="note">In the case of HTTP, the <code title="dom-document-referrer"><a href="#dom-document-referrer">referrer</a></code> IDL attribute will
match the <code title="http-referer">Referer</code> (sic) header
that was sent when <a href="infrastructure.html#fetch" title="fetch">fetching</a> the current
page.</p>
@@ -507,7 +507,7 @@
from the default by the <a href="syntax.html#html-parser">HTML parser</a>, based on the
presence, absence, or value of the DOCTYPE string.</p>
- <p>The <dfn id="dom-document-compatmode" title="dom-document-compatMode"><code>compatMode</code></dfn> DOM
+ <p>The <dfn id="dom-document-compatmode" title="dom-document-compatMode"><code>compatMode</code></dfn> IDL
attribute must return the literal string "<code title="">CSS1Compat</code>" unless the document has been set to
<a href="#quirks-mode">quirks mode</a> by the <a href="syntax.html#html-parser">HTML parser</a>, in which
case it must instead return the literal string "<code title="">BackCompat</code>".</p>
@@ -539,7 +539,7 @@
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>
<p>The <dfn id="dom-document-charset" title="dom-document-charset"><code>charset</code></dfn>
- DOM attribute must, on getting, return the preferred MIME name of
+ IDL attribute must, on getting, return the preferred MIME name of
the <a href="#document-s-character-encoding">document's character encoding</a>. On setting, if the
new value is an IANA-registered alias for a character encoding
supported by the user agent, the <a href="#document-s-character-encoding">document's character
@@ -547,11 +547,11 @@
nothing happens.)</p>
<p>The <dfn id="dom-document-characterset" title="dom-document-characterSet"><code>characterSet</code></dfn>
- DOM attribute must, on getting, return the preferred MIME name of
+ IDL attribute must, on getting, return the preferred MIME name of
the <a href="#document-s-character-encoding">document's character encoding</a>.</p>
<p>The <dfn id="dom-document-defaultcharset" title="dom-document-defaultCharset"><code>defaultCharset</code></dfn>
- DOM attribute must, on getting, return the preferred MIME name of a
+ IDL attribute must, on getting, return the preferred MIME name of a
character encoding, possibly the user's default encoding, or an
encoding associated with the user's current geographical location,
or any arbitrary encoding name.</p>
@@ -579,7 +579,7 @@
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>
- <p>The <dfn id="dom-document-readystate" title="dom-document-readyState"><code>readyState</code></dfn> DOM
+ <p>The <dfn id="dom-document-readystate" title="dom-document-readyState"><code>readyState</code></dfn> IDL
attribute must, on getting, return the <a href="#current-document-readiness">current document
readiness</a>.</p>
@@ -610,7 +610,7 @@
<ol><li><p>If the <a href="infrastructure.html#root-element">root element</a> is an <code><a href="the-canvas-element.html#svg">svg</a></code>
element in the "<code title="">http://www.w3.org/2000/svg</code>"
namespace, and the user agent supports SVG, then return the value
- that would have been returned by the DOM attribute of the same name
+ that would have been returned by the IDL attribute of the same name
on the <code>SVGDocument</code> interface. <a href="references.html#refsSVG">[SVG]</a></p></li>
<li><p>Otherwise, let <var title="">value</var> be a concatenation
@@ -632,7 +632,7 @@
<ol><li><p>If the <a href="infrastructure.html#root-element">root element</a> is an <code><a href="the-canvas-element.html#svg">svg</a></code>
element in the "<code title="">http://www.w3.org/2000/svg</code>"
namespace, and the user agent supports SVG, then the setter must
- defer to the setter for the DOM attribute of the same name on the
+ defer to the setter for the IDL attribute of the same name on the
<code>SVGDocument</code> interface (if it is readonly, then this
will raise an exception). Stop the algorithm here. <a href="references.html#refsSVG">[SVG]</a></p></li>
@@ -1081,7 +1081,7 @@
// <span>styling</span>
readonly attribute <span>CSSStyleDeclaration</span> <a href="#dom-style" title="dom-style">style</a>;
- // <a href="browsers.html#event-handler-dom-attributes">event handler DOM attributes</a>
+ // <a href="browsers.html#event-handler-idl-attributes">event handler IDL attributes</a>
attribute <a href="browsers.html#function">Function</a> <a href="browsers.html#handler-onabort" title="handler-onabort">onabort</a>;
attribute <a href="browsers.html#function">Function</a> <a href="browsers.html#handler-onblur" title="handler-onblur">onblur</a>;
attribute <a href="browsers.html#function">Function</a> <a href="browsers.html#handler-oncanplay" title="handler-oncanplay">oncanplay</a>;
@@ -1267,7 +1267,7 @@
IDs, if other mechanisms (e.g. DOM Core methods) can set an
element's ID in a way that doesn't conflict with the <code title="attr-id"><a href="#the-id-attribute">id</a></code> attribute.</p>
- <p>The <dfn id="dom-id" title="dom-id"><code>id</code></dfn> DOM attribute must
+ <p>The <dfn id="dom-id" title="dom-id"><code>id</code></dfn> IDL attribute must
<a href="infrastructure.html#reflect">reflect</a> the <code title="attr-id"><a href="#the-id-attribute">id</a></code> content
attribute.</p>
@@ -1302,7 +1302,7 @@
<code><a href="forms.html#the-input-element">input</a></code>, define additional semantics for the <code title="attr-title"><a href="#the-title-attribute">title</a></code> attribute beyond the semantics
described above.</p><div class="impl">
- <hr><p>The <dfn id="dom-title" title="dom-title"><code>title</code></dfn> DOM attribute
+ <hr><p>The <dfn id="dom-title" title="dom-title"><code>title</code></dfn> IDL attribute
must <a href="infrastructure.html#reflect">reflect</a> the <code title="attr-title"><a href="#the-title-attribute">title</a></code>
content attribute.</p>
@@ -1377,7 +1377,7 @@
directionality. (commented out because text directionality is a
rendering-level concern.)--></p>
- <hr><p>The <dfn id="dom-lang" title="dom-lang"><code>lang</code></dfn> DOM attribute
+ <hr><p>The <dfn id="dom-lang" title="dom-lang"><code>lang</code></dfn> IDL attribute
must <a href="infrastructure.html#reflect">reflect</a> the <code title="attr-lang"><a href="#attr-lang">lang</a></code>
content attribute in no namespace.</p>
@@ -1422,11 +1422,11 @@
</dl><div class="impl">
- <p>The <dfn id="dom-dir" title="dom-dir"><code>dir</code></dfn> DOM attribute on
+ <p>The <dfn id="dom-dir" title="dom-dir"><code>dir</code></dfn> IDL attribute on
an element must <a href="infrastructure.html#reflect">reflect</a> the <code title="attr-dir"><a href="#the-dir-attribute">dir</a></code> content attribute of that element,
<a href="infrastructure.html#limited-to-only-known-values">limited to only known values</a>.</p>
- <p>The <dfn id="dom-document-dir" title="dom-document-dir"><code>dir</code></dfn> DOM
+ <p>The <dfn id="dom-document-dir" title="dom-document-dir"><code>dir</code></dfn> IDL
attribute on <code><a href="#htmldocument">HTMLDocument</a></code> objects must
<a href="infrastructure.html#reflect">reflect</a> the <code title="attr-dir"><a href="#the-dir-attribute">dir</a></code> content
attribute of <a href="#the-html-element">the <code>html</code> element</a>, if any,
@@ -1456,7 +1456,7 @@
content.</p><div class="impl">
<hr><p>The <dfn id="dom-classname" title="dom-className"><code>className</code></dfn> and
- <dfn id="dom-classlist" title="dom-classList"><code>classList</code></dfn> DOM
+ <dfn id="dom-classlist" title="dom-classList"><code>classList</code></dfn> IDL
attributes must both <a href="infrastructure.html#reflect">reflect</a> the <code title="attr-class"><a href="#classes">class</a></code> content attribute.</p>
</div><h5 id="the-style-attribute"><span class="secno">3.2.3.7 </span>The <dfn title="attr-style"><code>style</code></dfn> attribute</h5><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed</i></p><p>All <a href="infrastructure.html#html-elements">HTML elements</a> may have the <code title="attr-style"><a href="#the-style-attribute">style</a></code> content attribute set. If specified,
@@ -1484,7 +1484,7 @@
</dl><div class="impl">
- <p>The <dfn id="dom-style" title="dom-style"><code>style</code></dfn> DOM attribute
+ <p>The <dfn id="dom-style" title="dom-style"><code>style</code></dfn> IDL attribute
must return a <code>CSSStyleDeclaration</code> whose value
represents the declarations specified in the attribute, if
present. Mutating the <code>CSSStyleDeclaration</code> object must
@@ -1543,9 +1543,9 @@
</dl><div class="impl">
- <p>The <dfn id="dom-dataset" title="dom-dataset"><code>dataset</code></dfn> DOM
+ <p>The <dfn id="dom-dataset" title="dom-dataset"><code>dataset</code></dfn> IDL
attribute provides convenient accessors for all the <code title="attr-data-*"><a href="#attr-data">data-*</a></code> attributes on an element. On
- getting, the <code title="dom-dataset"><a href="#dom-dataset">dataset</a></code> DOM attribute
+ getting, the <code title="dom-dataset"><a href="#dom-dataset">dataset</a></code> IDL attribute
must return a <code><a href="infrastructure.html#domstringmap">DOMStringMap</a></code> object, associated with the
following algorithms, which expose these attributes on their
element:</p>
Index: acknowledgements.html
===================================================================
RCS file: /sources/public/html5/spec/acknowledgements.html,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -d -r1.191 -r1.192
--- acknowledgements.html 30 Aug 2009 21:46:29 -0000 1.191
+++ acknowledgements.html 31 Aug 2009 02:36:26 -0000 1.192
@@ -180,7 +180,7 @@
</div><nav>
<a href="references.html">← References</a> –
<a href="spec.html#contents">Table of contents</a>
- </nav><p>This is revision 1.2891.</p>
+ </nav><p>This is revision 1.2893.</p>
<h2 class="no-num" id="acknowledgements">Acknowledgements</h2><p class="XXX annotation"><b>Status: </b><i>Being edited right now</i></p><!-- ACKS --><p>Thanks to
Index: history.html
===================================================================
RCS file: /sources/public/html5/spec/history.html,v
retrieving revision 1.185
retrieving revision 1.186
diff -u -d -r1.185 -r1.186
--- history.html 30 Aug 2009 21:46:29 -0000 1.185
+++ history.html 31 Aug 2009 02:36:27 -0000 1.186
@@ -182,7 +182,7 @@
<a href="offline.html">← 6.9 Offline Web applications</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="editing.html">7 User Interaction →</a>
- </nav><p>This is revision 1.2891.</p>
+ </nav><p>This is revision 1.2893.</p>
<h3 id="history"><span class="secno">6.10 </span>Session history and navigation</h3><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><h4 id="the-session-history-of-browsing-contexts"><span class="secno">6.10.1 </span>The session history of browsing contexts</h4><p>The sequence of <code>Document</code>s in a <a href="browsers.html#browsing-context">browsing
@@ -555,7 +555,7 @@
void <a href="#dom-location-replace" title="dom-location-replace">replace</a>(in DOMString url);
void <a href="#dom-location-reload" title="dom-location-reload">reload</a>();
- // <a href="infrastructure.html#url-decomposition-dom-attributes">URL decomposition DOM attributes</a> <!-- blame brendan for these "innovative" names -->
+ // <a href="infrastructure.html#url-decomposition-idl-attributes">URL decomposition IDL attributes</a> <!-- blame brendan for these "innovative" names -->
attribute DOMString <a href="#dom-location-protocol" title="dom-location-protocol">protocol</a>;
attribute DOMString <a href="#dom-location-host" title="dom-location-host">host</a>;
attribute DOMString <a href="#dom-location-hostname" title="dom-location-hostname">hostname</a>;
@@ -695,7 +695,7 @@
override any caches when reloading.</p>
</div><p>The <code><a href="#location">Location</a></code> interface also has the complement of
- <a href="infrastructure.html#url-decomposition-dom-attributes">URL decomposition DOM 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 DOM
+ <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
@@ -1756,7 +1756,7 @@
<a href="#source-browsing-context">source browsing context</a>.</p>
- <h5 id="hyperlink-auditing"><span class="secno">6.12.2.1 </span><dfn>Hyperlink auditing</dfn></h5><p class="XXX annotation"><b>Status: </b><i>Controversial Working Draft. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/1">ISSUE-1</a> (PINGPOST), <a href="http://www.w3.org/html/wg/tracker/issues/63">ISSUE-63</a> (origin-req-scope) and <a href="http://www.w3.org/html/wg/tracker/issues/2">ISSUE-2</a> (PINGUI) block progress to Last Call</span></p>
+ <h5 id="hyperlink-auditing"><span class="secno">6.12.2.1 </span><dfn>Hyperlink auditing</dfn></h5><p class="XXX annotation"><b>Status: </b><i>Controversial Working Draft. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/1">ISSUE-1</a> (PINGPOST), <a href="http://www.w3.org/html/wg/tracker/issues/2">ISSUE-2</a> (PINGUI) and <a href="http://www.w3.org/html/wg/tracker/issues/63">ISSUE-63</a> (origin-req-scope) block progress to Last Call</span></p>
<p>If an <code><a href="text-level-semantics.html#the-a-element">a</a></code> or <code><a href="the-canvas-element.html#the-area-element">area</a></code> hyperlink element has a
<code title="attr-hyperlink-ping"><a href="#ping">ping</a></code> attribute, and the
@@ -2455,7 +2455,7 @@
</p>
</nav></pre>
- </div><p class="note">The <code title="dom-a-relList"><a href="text-level-semantics.html#dom-a-rellist">relList</a></code> DOM
+ </div><p class="note">The <code title="dom-a-relList"><a href="text-level-semantics.html#dom-a-rellist">relList</a></code> IDL
attribute (e.g. on the <code><a href="text-level-semantics.html#the-a-element">a</a></code> element) does not currently
represent multiple <code title="rel-up"><a href="#link-type-up">up</a></code> keywords (the
interface hides duplicates).</p><h5 id="sequential-link-types"><span class="secno">6.12.3.19 </span>Sequential link types</h5><p>Some documents form part of a sequence of documents.</p><p>A sequence of documents is one where each document can have a
Index: iana-considerations.html
===================================================================
RCS file: /sources/public/html5/spec/iana-considerations.html,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -d -r1.34 -r1.35
--- iana-considerations.html 30 Aug 2009 21:46:29 -0000 1.34
+++ iana-considerations.html 31 Aug 2009 02:36:27 -0000 1.35
@@ -182,7 +182,7 @@
<a href="no.html">← 13 Things that you can't do with this specification because they are better handled using other technologies that are further described herein</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="index.html">Index →</a>
- </nav><p>This is revision 1.2891.</p>
+ </nav><p>This is revision 1.2893.</p>
<h2 class="no-num" id="iana-considerations">IANA considerations</h2><p class="XXX annotation"><b>Status: </b><i>First draft</i></p><!-- http://www.w3.org/2002/06/registering-mediatype.html --><p>This registration is for community review and will be submitted
Index: forms.html
===================================================================
RCS file: /sources/public/html5/spec/forms.html,v
retrieving revision 1.185
retrieving revision 1.186
diff -u -d -r1.185 -r1.186
--- forms.html 30 Aug 2009 21:46:29 -0000 1.185
+++ forms.html 31 Aug 2009 02:36:27 -0000 1.186
@@ -182,7 +182,7 @@
<a href="tabular-data.html">← 4.9 Tabular data</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="interactive-elements.html">4.11 Interactive elements →</a>
- </nav><p>This is revision 1.2891.</p>
+ </nav><p>This is revision 1.2893.</p>
<h3 id="forms"><span class="secno">4.10 </span>Forms</h3><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><p>Forms allow unscripted client-server interaction: given a form, a
@@ -196,7 +196,7 @@
content</a>, and <a href="embedded-content-0.html#interactive-content">interactive content</a>.</p><p>A number of the elements are <dfn id="form-associated-element" title="form-associated
element">form-associated elements</dfn>, which means they can have a
[...1350 lines suppressed...]
- The <dfn id="dom-fs-formmethod" title="dom-fs-formMethod"><code>formMethod</code></dfn> DOM
+ The <dfn id="dom-fs-formmethod" title="dom-fs-formMethod"><code>formMethod</code></dfn> IDL
attribute must reflect the <code title="attr-fs-formmethod"><a href="#attr-fs-formmethod">formmethod</a></code> content attribute. The
<dfn id="dom-fs-formnovalidate" title="dom-fs-formNoValidate"><code>formNoValidate</code></dfn>
- DOM attribute must reflect the <code title="attr-fs-formnovalidate"><a href="#attr-fs-formnovalidate">formnovalidate</a></code> content
- attribute. The <dfn id="dom-fs-formtarget" title="dom-fs-formTarget"><code>formTarget</code></dfn> DOM
+ IDL attribute must reflect the <code title="attr-fs-formnovalidate"><a href="#attr-fs-formnovalidate">formnovalidate</a></code> content
+ attribute. The <dfn id="dom-fs-formtarget" title="dom-fs-formTarget"><code>formTarget</code></dfn> IDL
attribute must reflect the <code title="attr-fs-formtarget"><a href="#attr-fs-formtarget">formtarget</a></code> content attribute.
</p></div><h4 id="constraints"><span class="secno">4.10.15 </span>Constraints</h4><h5 id="definitions"><span class="secno">4.10.15.1 </span>Definitions</h5><div class="impl">
@@ -7153,7 +7153,7 @@
</li>
- <li><p>Let <var title="">type</var> be the value of the <code title="">type</code> DOM attribute of <var title="">field</var>.</p></li> <!-- if the field is an <object>
+ <li><p>Let <var title="">type</var> be the value of the <code title="">type</code> IDL attribute of <var title="">field</var>.</p></li> <!-- if the field is an <object>
element, this will get ignored. -->
<li>
Index: interactive-elements.html
===================================================================
RCS file: /sources/public/html5/spec/interactive-elements.html,v
retrieving revision 1.185
retrieving revision 1.186
diff -u -d -r1.185 -r1.186
--- interactive-elements.html 30 Aug 2009 21:46:29 -0000 1.185
+++ interactive-elements.html 31 Aug 2009 02:36:27 -0000 1.186
@@ -182,7 +182,7 @@
<a href="forms.html">← 4.10 Forms</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="microdata.html">5 Microdata →</a>
- </nav><p>This is revision 1.2891.</p>
+ </nav><p>This is revision 1.2893.</p>
<h3 id="interactive-elements"><span class="secno">4.11 </span>Interactive elements</h3><h4 id="the-details-element"><span class="secno">4.11.1 </span>The <dfn><code>details</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class="element"><dt>Categories</dt>
@@ -328,7 +328,7 @@
<!- -vsDGS: multiple - ->
<p>The <dfn
- title="dom-datagrid-disabled"><code>disabled</code></dfn> DOM
+ title="dom-datagrid-disabled"><code>disabled</code></dfn> IDL
attribute must <span>reflect</span> the content attribute of the
same name.</p>
@@ -746,7 +746,7 @@
<h6>The listener</h6>
<p>The <dfn
- title="dom-datagrid-listener"><code>listener</code></dfn> DOM
+ title="dom-datagrid-listener"><code>listener</code></dfn> IDL
attribute allows authors to specify an object that will receive all
the notifications from the <code>datagrid</code>. Initially, its
value must be null. On getting, it must return its value. On
@@ -855,7 +855,7 @@
<hr>
<p>The <dfn
- title="dom-datagrid-sortColumn"><code>sortColumn</code></dfn> DOM
+ title="dom-datagrid-sortColumn"><code>sortColumn</code></dfn> IDL
attribute gives the current column used for sorting. Initially, its
value must be the empty string. On getting, it must return its
current value. On setting, if the new value doesn't match the
@@ -868,7 +868,7 @@
<p>The <dfn
title="dom-datagrid-sortAscending"><code>sortAscending</code></dfn>
- DOM attribute specifies the direction that the tree is sorted in,
+ IDL attribute specifies the direction that the tree is sorted in,
ascending (true) or descending (false). Initially, its value must be
true (ascending). On getting, it must return its current value. On
setting, if the new value is not the same as its current value, then
@@ -2096,7 +2096,7 @@
must <span>queue a task</span> to invoke the
<span>RenderingContext2DCallback</span> callback, passing it a
newly created <code>CanvasRenderingContext2D</code> object whose
- <code title="dom-context-2d-canvas">canvas</code> DOM attribute is
+ <code title="dom-context-2d-canvas">canvas</code> IDL attribute is
null as the first argument, the actual cell width in CSS pixels as
the second argument, and the actual cell height in CSS pixels as
the third argument.</p>
@@ -2565,7 +2565,7 @@
<p>The <code>DataGridListener</code> interface, once implemented by
an object in a script and hooked up to a <code>datagrid</code> using
- the <code title="dom-datagrid-listener">listener</code> DOM
+ the <code title="dom-datagrid-listener">listener</code> IDL
attribute, receives notifications when the <code>datagrid</code>
needs information (such as which rows exist) for display.</p>
@@ -2733,7 +2733,7 @@
changed using the methods described in this section.</p>
<p>The selection of a <code>datagrid</code> is represented by its
- <dfn title="dom-datagrid-selection"><code>selection</code></dfn> DOM
+ <dfn title="dom-datagrid-selection"><code>selection</code></dfn> IDL
attribute, which must be a <code>DataGridSelection</code> object.</p>
<p><code>DataGridSelection</code> objects represent the rows in the
@@ -2930,7 +2930,7 @@
<p>The <dfn id="dom-command-type" title="dom-command-type"><code>type</code></dfn>, <dfn id="dom-command-label" title="dom-command-label"><code>label</code></dfn>, <dfn id="dom-command-icon" title="dom-command-icon"><code>icon</code></dfn>, <dfn id="dom-command-disabled" title="dom-command-disabled"><code>disabled</code></dfn>, <dfn id="dom-command-checked" title="dom-command-checked"><code>checked</code></dfn>, and <dfn id="dom-command-radiogroup" title="dom-command-radiogroup"><code>radiogroup</code></dfn><!--,
and <dfn title="dom-command-default"><code>default</code></dfn>-->
- DOM attributes must <a href="infrastructure.html#reflect">reflect</a> the respective content
+ IDL attributes must <a href="infrastructure.html#reflect">reflect</a> the respective content
attributes of the same name.</p>
<p>The element's <a href="embedded-content-0.html#activation-behavior">activation behavior</a> depends on the
@@ -3021,7 +3021,7 @@
containing another menu would use the nested menu's <code title="attr-menu-label"><a href="#attr-menu-label">label</a></code> attribute for the submenu's
menu label.</p><div class="impl">
- <p>The <dfn id="dom-menu-type" title="dom-menu-type"><code>type</code></dfn> and <dfn id="dom-menu-label" title="dom-menu-label"><code>label</code></dfn> DOM attributes must
+ <p>The <dfn id="dom-menu-type" title="dom-menu-type"><code>type</code></dfn> and <dfn id="dom-menu-label" title="dom-menu-label"><code>label</code></dfn> IDL attributes must
<a href="infrastructure.html#reflect">reflect</a> the respective content attributes of the same
name.</p>
@@ -3396,7 +3396,7 @@
<p>The <dfn id="dom-command-ro-label" title="dom-command-ro-label"><code>label</code></dfn>
attribute must return the command's <a href="#command-facet-label" title="command-facet-Label">Label</a>, or null if the element
does not define a command or does not specify a <a href="#command-facet-label" title="command-facet-Label">Label</a>. This attribute will be
- shadowed by the <code title="">label</code> DOM attribute on
+ shadowed by the <code title="">label</code> IDL attribute on
<code><a href="forms.html#the-option-element">option</a></code> and <code><a href="#the-command">command</a></code> elements.</p>
<p>The <dfn id="dom-command-ro-icon" title="dom-command-ro-icon"><code>icon</code></dfn>
@@ -3404,7 +3404,7 @@
<a href="#command-facet-icon" title="command-facet-Icon">Icon</a>. If the element does
not specify an icon, or if the element does not define a command,
then the attribute must return null. This attribute will be shadowed
- by the <code title="dom-command-icon"><a href="#dom-command-icon">icon</a></code> DOM attribute on
+ by the <code title="dom-command-icon"><a href="#dom-command-icon">icon</a></code> IDL attribute on
<code><a href="#the-command">command</a></code> elements.</p>
<p>The <dfn id="dom-command-ro-disabled" title="dom-command-ro-disabled"><code>disabled</code></dfn>
@@ -3434,12 +3434,12 @@
-->
<p class="note">The <a href="#command-facet-id" title="command-facet-ID">ID</a> facet
- is exposed by the the <code title="dom-id"><a href="dom.html#dom-id">id</a></code> DOM attribute,
+ is exposed by the the <code title="dom-id"><a href="dom.html#dom-id">id</a></code> IDL attribute,
the <a href="#command-facet-hint" title="command-facet-Hint">Hint</a> facet is exposed by
- the <code title="dom-title"><a href="dom.html#dom-title">title</a></code> DOM attribute, the <a href="#command-facet-accesskey" title="command-facet-AccessKey">AccessKey</a> facet is exposed by
- the <code title="dom-accessKeyLabel"><a href="editing.html#dom-accesskeylabel">accessKeyLabel</a></code> DOM
+ the <code title="dom-title"><a href="dom.html#dom-title">title</a></code> IDL attribute, the <a href="#command-facet-accesskey" title="command-facet-AccessKey">AccessKey</a> facet is exposed by
+ the <code title="dom-accessKeyLabel"><a href="editing.html#dom-accesskeylabel">accessKeyLabel</a></code> IDL
attribute, and the <a href="#command-facet-hiddenstate" title="command-facet-HiddenState">Hidden
- State</a> facet is exposed by the <code title="dom-hidden"><a href="editing.html#dom-hidden">hidden</a></code> DOM attribute.</p>
+ State</a> facet is exposed by the <code title="dom-hidden"><a href="editing.html#dom-hidden">hidden</a></code> IDL attribute.</p>
</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>
@@ -3472,7 +3472,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> DOM
+ is the string given by the element's <code>textContent</code> IDL
attribute.</p>
<p>The <a href="#command-facet-hint" title="command-facet-Hint">Hint</a> of the command
@@ -3608,7 +3608,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> DOM attribute if there isn't.</p>
+ <code>textContent</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
@@ -3715,7 +3715,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> DOM
+ is the string given by the element's <code>textContent</code> IDL
attribute.</p>
<p>The <a href="#command-facet-hint" title="command-facet-Hint">Hint</a> of the command
@@ -3756,7 +3756,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> DOM
+ is the string given by the element's <code>textContent</code> IDL
attribute.</p>
<p>The <a href="#command-facet-hint" title="command-facet-Hint">Hint</a> of the command
@@ -3871,12 +3871,12 @@
</dl><div class="impl">
- <p>The <dfn id="dom-legend-form" title="dom-legend-form"><code>form</code></dfn> DOM
+ <p>The <dfn id="dom-legend-form" title="dom-legend-form"><code>form</code></dfn> IDL
attribute's behavior depends on whether the <code><a href="#the-legend-element">legend</a></code>
element is in a <code><a href="forms.html#the-fieldset-element">fieldset</a></code> element or not. If the
<code><a href="#the-legend-element">legend</a></code> has a <code><a href="forms.html#the-fieldset-element">fieldset</a></code> element as its
- parent, then the <code title="dom-legend-form"><a href="#dom-legend-form">form</a></code> DOM
- attribute must return the same value as the <code title="dom-fae-form"><a href="forms.html#dom-fae-form">form</a></code> DOM attribute on that
+ parent, then the <code title="dom-legend-form"><a href="#dom-legend-form">form</a></code> IDL
+ attribute must return the same value as the <code title="dom-fae-form"><a href="forms.html#dom-fae-form">form</a></code> IDL attribute on that
<code><a href="forms.html#the-fieldset-element">fieldset</a></code> element. Otherwise, it must return null.</p>
</div><h4 id="the-div-element"><span class="secno">4.12.2 </span>The <dfn><code>div</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Implemented and widely deployed</i></p><dl class="element"><dt>Categories</dt>
@@ -4081,7 +4081,7 @@
<p>The <code title="selector-indeterminate"><a href="#selector-indeterminate">:indeterminate</a></code>
pseudo-class must match <code><a href="forms.html#the-input-element">input</a></code> elements whose <code title="attr-input-type"><a href="forms.html#attr-input-type">type</a></code> attribute is in the <a href="forms.html#checkbox-state" title="attr-input-type-checkbox">Checkbox</a> state and whose
- <code title="dom-input-indeterminate"><a href="forms.html#dom-input-indeterminate">indeterminate</a></code> DOM
+ <code title="dom-input-indeterminate"><a href="forms.html#dom-input-indeterminate">indeterminate</a></code> IDL
attribute is set to true.</p>
</dd>
Index: editing.html
===================================================================
RCS file: /sources/public/html5/spec/editing.html,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -d -r1.191 -r1.192
--- editing.html 30 Aug 2009 21:46:29 -0000 1.191
+++ editing.html 31 Aug 2009 02:36:26 -0000 1.192
@@ -182,7 +182,7 @@
<a href="history.html">← 6.10 Session history and navigation</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="comms.html">8 Communication →</a>
- </nav><p>This is revision 1.2891.</p>
+ </nav><p>This is revision 1.2893.</p>
<h2 id="editing"><span class="secno">7 </span><dfn>User Interaction</dfn></h2><p>This section describes various features that allow authors to
@@ -225,7 +225,7 @@
and submit respectively. Only their presentation to the user
changes.</p><div class="impl">
- <p>The <dfn id="dom-hidden" title="dom-hidden"><code>hidden</code></dfn> DOM
+ <p>The <dfn id="dom-hidden" title="dom-hidden"><code>hidden</code></dfn> IDL
attribute must <a href="infrastructure.html#reflect">reflect</a> the content attribute of the
same name.</p>
@@ -461,10 +461,10 @@
user to begin a drag operations for those elements without the use
of a pointing device</li>
- </ul><p>The <dfn id="dom-tabindex" title="dom-tabIndex"><code>tabIndex</code></dfn> DOM
+ </ul><p>The <dfn id="dom-tabindex" title="dom-tabIndex"><code>tabIndex</code></dfn> IDL
attribute must <a href="infrastructure.html#reflect">reflect</a> the value of the <code title="attr-tabindex"><a href="#attr-tabindex">tabindex</a></code> content attribute. If the
attribute is not present, or parsing its value returns an error,
- then the DOM attribute must return 0 for elements that are focusable
+ then the IDL attribute must return 0 for elements that are focusable
and −1 for elements that are not focusable.</p>
</div><div class="impl">
@@ -699,13 +699,13 @@
</div><div class="impl">
- <p>The <dfn id="dom-accesskey" title="dom-accessKey"><code>accessKey</code></dfn> DOM
+ <p>The <dfn id="dom-accesskey" title="dom-accessKey"><code>accessKey</code></dfn> IDL
attribute must <a href="infrastructure.html#reflect">reflect</a> the <code title="attr-accesskey"><a href="#the-accesskey-attribute">accesskey</a></code> content attribute.</p>
- <p>The <dfn id="dom-accesskeylabel" title="dom-accessKeyLabel"><code>accessKeyLabel</code></dfn> DOM
+ <p>The <dfn id="dom-accesskeylabel" title="dom-accessKeyLabel"><code>accessKeyLabel</code></dfn> IDL
attribute must return a string that represents the element's
<a href="#assigned-access-key">assigned access key</a>, if any. If the element does not
- have one, then the DOM attribute must return the empty string.</p>
+ have one, then the IDL attribute must return the empty string.</p>
</div><div class="example">
@@ -1282,7 +1282,7 @@
</dl><div class="impl">
- <p>The <dfn id="dom-contenteditable" title="dom-contentEditable"><code>contentEditable</code></dfn> DOM
+ <p>The <dfn id="dom-contenteditable" title="dom-contentEditable"><code>contentEditable</code></dfn> IDL
attribute, on getting, must return the string "<code title="">true</code>" if the content attribute is set to the true
state, <code title="">false</code>" if the content attribute is set
to the false state, and "<code title="">inherit</code>"
@@ -1297,7 +1297,7 @@
attribute setter must raise a <code><a href="infrastructure.html#syntax_err">SYNTAX_ERR</a></code> exception.</p>
<p>The <dfn id="dom-iscontenteditable" title="dom-isContentEditable"><code>isContentEditable</code></dfn>
- DOM attribute, on getting, must return true if the element is
+ IDL attribute, on getting, must return true if the element is
<a href="#editable">editable</a>, and false otherwise.</p>
<p>If an element is <a href="#editable">editable</a> and its parent element is
@@ -1482,14 +1482,14 @@
<dd><p>When an <a href="#editable">editable</a> form control is edited, the
changes must be reflected in both its current value <em>and</em>
its default value. For <code><a href="forms.html#the-input-element">input</a></code> elements this means
- updating the <code title="dom-input-defaultValue"><a href="forms.html#dom-input-defaultvalue">defaultValue</a></code> DOM attribute as
- well as the <code title="dom-input-value"><a href="forms.html#dom-input-value">value</a></code> DOM
+ updating the <code title="dom-input-defaultValue"><a href="forms.html#dom-input-defaultvalue">defaultValue</a></code> IDL attribute as
+ well as the <code title="dom-input-value"><a href="forms.html#dom-input-value">value</a></code> IDL
attribute; for <code><a href="forms.html#the-select-element">select</a></code> elements it means updating the
- <code><a href="forms.html#the-option-element">option</a></code> elements' <code title="dom-option-defaultSelected"><a href="forms.html#dom-option-defaultselected">defaultSelected</a></code> DOM
- attribute as well as the <code title="dom-option-selected"><a href="forms.html#dom-option-selected">selected</a></code> DOM attribute; for
- <code><a href="forms.html#the-textarea-element">textarea</a></code> elements this means updating the <code title="dom-textarea-defaultValue"><a href="forms.html#dom-textarea-defaultvalue">defaultValue</a></code> DOM attribute
- as well as the <code title="dom-textarea-value"><a href="forms.html#dom-textarea-value">value</a></code> DOM
- attribute. (Updating the <code title="">default*</code> DOM
+ <code><a href="forms.html#the-option-element">option</a></code> elements' <code title="dom-option-defaultSelected"><a href="forms.html#dom-option-defaultselected">defaultSelected</a></code> IDL
+ attribute as well as the <code title="dom-option-selected"><a href="forms.html#dom-option-selected">selected</a></code> IDL attribute; for
+ <code><a href="forms.html#the-textarea-element">textarea</a></code> elements this means updating the <code title="dom-textarea-defaultValue"><a href="forms.html#dom-textarea-defaultvalue">defaultValue</a></code> IDL attribute
+ as well as the <code title="dom-textarea-value"><a href="forms.html#dom-textarea-value">value</a></code> IDL
+ attribute. (Updating the <code title="">default*</code> IDL
attributes causes content attributes to be updated as well.)</p></dd>
<!-- XXX something about not supporting resizing? -->
@@ -1522,7 +1522,7 @@
</dl><div class="impl">
- <p>The <code title="dom-document-designMode"><a href="#designMode">designMode</a></code> DOM
+ <p>The <code title="dom-document-designMode"><a href="#designMode">designMode</a></code> IDL
attribute on the <code>Document</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
@@ -1532,7 +1532,7 @@
disabled. Other values must be ignored.</p>
<p>When <code title="dom-document-designMode"><a href="#designMode">designMode</a></code> is
- enabled, the DOM attribute must return the value "<code title="">on</code>", and when it is disabled, it must return the
+ enabled, the IDL attribute must return the value "<code title="">on</code>", and when it is disabled, it must return the
value "<code title="">off</code>".</p>
<p>The last state set must persist until the document is destroyed
@@ -1591,7 +1591,7 @@
</dl><div class="impl">
- <p>The <dfn id="dom-spellcheck" title="dom-spellcheck"><code>spellcheck</code></dfn> DOM
+ <p>The <dfn id="dom-spellcheck" title="dom-spellcheck"><code>spellcheck</code></dfn> IDL
attribute, on getting, must return the string "<code title="">true</code>" if the content attribute is set to the true
state, <code title="">false</code>" if the content attribute is set
to the false state, and "<code title="">default</code>"
@@ -1606,7 +1606,7 @@
attribute setter must raise a <code><a href="infrastructure.html#syntax_err">SYNTAX_ERR</a></code> exception.</p>
<p class="note">The <code title="dom-spellcheck"><a href="#dom-spellcheck">spellcheck</a></code>
- DOM attribute is not affected by user preferences that override the
+ IDL attribute is not affected by user preferences that override the
<code title="attr-spellcheck"><a href="#attr-spellcheck">spellcheck</a></code> content attribute,
and therefore might not reflect the actual spellchecking state.</p>
@@ -2145,7 +2145,7 @@
was invoked on a selection, then it is the selection that is being
dragged. Otherwise, it is the first element, going up the ancestor
chain, starting at the node that the user tried to drag, that has
- the DOM attribute <code title="dom-draggable"><a href="#dom-draggable">draggable</a></code> set
+ the IDL attribute <code title="dom-draggable"><a href="#dom-draggable">draggable</a></code> set
to true. If there is no such element, then nothing is being dragged,
the drag-and-drop operation is never started, and the user agent
must not continue with this algorithm.</p>
@@ -2665,32 +2665,32 @@
</dl><div class="impl">
- <p>The <dfn id="dom-draggable" title="dom-draggable"><code>draggable</code></dfn> DOM
+ <p>The <dfn id="dom-draggable" title="dom-draggable"><code>draggable</code></dfn> IDL
attribute, whose value depends on the content attribute's in the way
described below, controls whether or not the element is
draggable. Generally, only text selections are draggable, but
- elements whose <code title="dom-draggable"><a href="#dom-draggable">draggable</a></code> DOM
+ elements whose <code title="dom-draggable"><a href="#dom-draggable">draggable</a></code> IDL
attribute is true become draggable as well.</p>
<p>If an element's <code title="attr-draggable"><a href="#the-draggable-attribute">draggable</a></code>
- content attribute has the state <i>true</i>, the <code title="dom-draggable"><a href="#dom-draggable">draggable</a></code> DOM attribute must return
+ content attribute has the state <i>true</i>, the <code title="dom-draggable"><a href="#dom-draggable">draggable</a></code> IDL attribute must return
true.</p>
<p>Otherwise, if the element's <code title="attr-draggable"><a href="#the-draggable-attribute">draggable</a></code> content attribute has the
- state <i>false</i>, the <code title="dom-draggable"><a href="#dom-draggable">draggable</a></code> DOM attribute must return
+ state <i>false</i>, the <code title="dom-draggable"><a href="#dom-draggable">draggable</a></code> IDL attribute must return
false.</p>
<p>Otherwise, the element's <code title="attr-draggable"><a href="#the-draggable-attribute">draggable</a></code> content attribute has the
state <i>auto</i>. If the element is an <code><a href="text-level-semantics.html#the-img-element">img</a></code> element,
- or, if the element is an <code><a href="text-level-semantics.html#the-a-element">a</a></code> element with an <code title="attr-hyperlink-href"><a href="history.html#attr-hyperlink-href">href</a></code> content attribute, the <code title="dom-draggable"><a href="#dom-draggable">draggable</a></code> DOM attribute must return
+ or, if the element is an <code><a href="text-level-semantics.html#the-a-element">a</a></code> element with an <code title="attr-hyperlink-href"><a href="history.html#attr-hyperlink-href">href</a></code> content attribute, the <code title="dom-draggable"><a href="#dom-draggable">draggable</a></code> IDL attribute must return
true.</p>
<p>Otherwise, the <code title="dom-draggable"><a href="#dom-draggable">draggable</a></code> DOM
must return false.</p>
- <p>If the <code title="dom-draggable"><a href="#dom-draggable">draggable</a></code> DOM attribute
+ <p>If the <code title="dom-draggable"><a href="#dom-draggable">draggable</a></code> IDL attribute
is set to the value false, the <code title="attr-draggable"><a href="#the-draggable-attribute">draggable</a></code> content attribute must be
- set to the literal value <code title="">false</code>. If the <code title="dom-draggable"><a href="#dom-draggable">draggable</a></code> DOM attribute is set to the
+ set to the literal value <code title="">false</code>. If the <code title="dom-draggable"><a href="#dom-draggable">draggable</a></code> IDL attribute is set to the
value true, the <code title="attr-draggable"><a href="#the-draggable-attribute">draggable</a></code>
content attribute must be set to the literal value <code title="">true</code>.</p>
@@ -2787,9 +2787,9 @@
<ul><li>Changes to the content attributes of an <code>Element</code>
node.</li>
- <li>Changes to the DOM attributes of a <code>Node</code>.</li> <!--
+ <li>Changes to the IDL attributes of a <code>Node</code>.</li> <!--
XXX uh, these change on their own, so clearly this isn't going to
- fly. Which DOM attributes, exactly? -->
+ fly. Which IDL attributes, exactly? -->
<li>Changes to the DOM hierarchy of nodes that are descendants of
the <code><a href="dom.html#htmldocument">HTMLDocument</a></code> object (<code>parentNode</code>,
Index: video.html
===================================================================
RCS file: /sources/public/html5/spec/video.html,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -d -r1.60 -r1.61
--- video.html 30 Aug 2009 21:46:30 -0000 1.60
+++ video.html 31 Aug 2009 02:36:28 -0000 1.61
@@ -182,10 +182,10 @@
<a href="text-level-semantics.html">← 4.6 Text-level semantics</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="the-canvas-element.html">4.8.11 The canvas element →</a>
- </nav><p>This is revision 1.2891.</p>
+ </nav><p>This is revision 1.2893.</p>
- <h4 id="video"><span class="secno">4.8.7 </span>The <dfn><code>video</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/10">ISSUE-10</a> (video-smil), <a href="http://www.w3.org/html/wg/tracker/issues/7">ISSUE-7</a> (video-codecs) and <a href="http://www.w3.org/html/wg/tracker/issues/9">ISSUE-9</a> (video-synchronization) block progress to Last Call</span></p><dl class="element"><dt>Categories</dt>
+ <h4 id="video"><span class="secno">4.8.7 </span>The <dfn><code>video</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments. </i><span><a href="http://www.w3.org/html/wg/tracker/issues/7">ISSUE-7</a> (video-codecs), <a href="http://www.w3.org/html/wg/tracker/issues/9">ISSUE-9</a> (video-synchronization) and <a href="http://www.w3.org/html/wg/tracker/issues/10">ISSUE-10</a> (video-smil) block progress to Last Call</span></p><dl class="element"><dt>Categories</dt>
<dd><a href="dom.html#flow-content">Flow content</a>.</dd>
<dd><a href="dom.html#phrasing-content">Phrasing content</a>.</dd>
<dd><a href="embedded-content-0.html#embedded-content">Embedded content</a>.</dd>
@@ -243,7 +243,7 @@
(typically one of the first non-blank frames) that gives the user an
idea of what the video is like.</p><div class="impl">
- <p>The <dfn id="dom-video-poster" title="dom-video-poster"><code>poster</code></dfn> DOM
+ <p>The <dfn id="dom-video-poster" title="dom-video-poster"><code>poster</code></dfn> IDL
attribute must <a href="infrastructure.html#reflect">reflect</a> the <code title="attr-video-poster"><a href="#attr-video-poster">poster</a></code> content attribute.</p>
<hr><p>When no video data is available (the element's <code title="dom-media-readyState"><a href="#dom-media-readystate">readyState</a></code> attribute is either
@@ -319,9 +319,9 @@
aspect ratio, clean aperture, resolution, and so forth, as defined
for the format used by the resource.</p>
- <p>The <dfn id="dom-video-videowidth" title="dom-video-videoWidth"><code>videoWidth</code></dfn> DOM
+ <p>The <dfn id="dom-video-videowidth" title="dom-video-videoWidth"><code>videoWidth</code></dfn> IDL
attribute must return the <a href="#concept-video-intrinsic-width" title="concept-video-intrinsic-width">intrinsic width</a> of the
- video in CSS pixels. The <dfn id="dom-video-videoheight" title="dom-video-videoHeight"><code>videoHeight</code></dfn> DOM
+ video in CSS pixels. The <dfn id="dom-video-videoheight" title="dom-video-videoHeight"><code>videoHeight</code></dfn> IDL
attribute must return the <a href="#concept-video-intrinsic-height" title="concept-video-intrinsic-height">intrinsic height</a> of
the video in CSS pixels. If the element's <code title="dom-media-readyState"><a href="#dom-media-readystate">readyState</a></code> attribute is <code title="dom-media-HAVE_NOTHING"><a href="#dom-media-have_nothing">HAVE_NOTHING</a></code>, then the
attributes must return 0.</p>
@@ -636,7 +636,7 @@
agent must invoke the <a href="#media-element">media element</a>'s <a href="#concept-media-load-algorithm" title="concept-media-load-algorithm">resource selection
algorithm</a>.</p>
- <p>The DOM attributes <dfn id="dom-source-src" title="dom-source-src"><code>src</code></dfn>, <dfn id="dom-source-type" title="dom-source-type"><code>type</code></dfn>, and <dfn id="dom-source-media" title="dom-source-media"><code>media</code></dfn> must
+ <p>The IDL attributes <dfn id="dom-source-src" title="dom-source-src"><code>src</code></dfn>, <dfn id="dom-source-type" title="dom-source-type"><code>type</code></dfn>, and <dfn id="dom-source-media" title="dom-source-media"><code>media</code></dfn> must
<a href="infrastructure.html#reflect">reflect</a> the respective content attributes of the same
name.</p>
@@ -831,7 +831,7 @@
<a href="#concept-media-load-algorithm" title="concept-media-load-algorithm">resource selection
algorithm</a>.</p>
- <p>The <dfn id="dom-media-src" title="dom-media-src"><code>src</code></dfn> DOM
+ <p>The <dfn id="dom-media-src" title="dom-media-src"><code>src</code></dfn> IDL
attribute on <a href="#media-element" title="media element">media elements</a> must
<a href="infrastructure.html#reflect">reflect</a> the respective content attribute of the same
name.</p>
@@ -848,7 +848,7 @@
</dl><div class="impl">
- <p>The <dfn id="dom-media-currentsrc" title="dom-media-currentSrc"><code>currentSrc</code></dfn> DOM
+ <p>The <dfn id="dom-media-currentsrc" title="dom-media-currentSrc"><code>currentSrc</code></dfn> IDL
attribute is initially the empty string. Its value is changed by the
<a href="#concept-media-load-algorithm" title="concept-media-load-algorithm">resource selection
algorithm</a> defined below.</p>
@@ -1735,7 +1735,7 @@
if the <code title="attr-media-autoplay"><a href="#attr-media-autoplay">autoplay</a></code> attribute
is present.</span></p><div class="impl">
- <p>The <dfn id="dom-media-autobuffer" title="dom-media-autobuffer"><code>autobuffer</code></dfn> DOM
+ <p>The <dfn id="dom-media-autobuffer" title="dom-media-autobuffer"><code>autobuffer</code></dfn> IDL
attribute must <a href="infrastructure.html#reflect">reflect</a> the content attribute of the
same name.</p>
@@ -1900,7 +1900,7 @@
indicates that the <a href="#media-element">media element</a> is to seek back to the
start of the <a href="#media-resource">media resource</a> upon reaching the end.</p><div class="impl">
- <p>The <dfn id="dom-media-loop" title="dom-media-loop"><code>loop</code></dfn> DOM
+ <p>The <dfn id="dom-media-loop" title="dom-media-loop"><code>loop</code></dfn> IDL
attribute must <a href="infrastructure.html#reflect">reflect</a> the content attribute of the
same name.</p>
@@ -2076,7 +2076,7 @@
<code title="dom-media-HAVE_FUTURE_DATA"><a href="#dom-media-have_future_data">HAVE_FUTURE_DATA</a></code>
states.</p><div class="impl">
- <p>The <dfn id="dom-media-readystate" title="dom-media-readyState"><code>readyState</code></dfn> DOM
+ <p>The <dfn id="dom-media-readystate" title="dom-media-readyState"><code>readyState</code></dfn> IDL
attribute must, on getting, return the value described above that
describes the current ready state of the <a href="#media-element">media
element</a>.</p>
@@ -2094,7 +2094,7 @@
user agent wait for the user to start playback explicitly.</p><div class="impl">
<p>The <dfn id="dom-media-autoplay" title="dom-media-autoplay"><code>autoplay</code></dfn>
- DOM attribute must <a href="infrastructure.html#reflect">reflect</a> the content attribute of the
+ IDL attribute must <a href="infrastructure.html#reflect">reflect</a> the content attribute of the
same name.</p>
</div><!--v2CUERANGE
@@ -2649,7 +2649,7 @@
<ol><li><p>If the <a href="#media-element">media element</a>'s <code title="dom-media-readyState"><a href="#dom-media-readystate">readyState</a></code> is <code title="dom-media-HAVE_NOTHING"><a href="#dom-media-have_nothing">HAVE_NOTHING</a></code>, then the user
agent must raise an <code><a href="infrastructure.html#invalid_state_err">INVALID_STATE_ERR</a></code> exception (if
- the seek was in response to a DOM method call or setting of a DOM
+ the seek was in response to a DOM method call or setting of a IDL
attribute), and abort these steps.</p></li>
<li><p>If the <var title="">new playback position</var> is later
@@ -2663,13 +2663,13 @@
<li><p>If the (possibly now changed) <var title="">new playback
position</var> is not in one of the ranges given in the <code title="dom-media-seekable"><a href="#dom-media-seekable">seekable</a></code> attribute, then the user
agent must raise an <code><a href="infrastructure.html#index_size_err">INDEX_SIZE_ERR</a></code> exception (if the
- seek was in response to a DOM method call or setting of a DOM
+ seek was in response to a DOM method call or setting of a IDL
attribute), and abort these steps.</p></li>
<li><p>The <a href="#current-playback-position">current playback position</a> must be set to
the given <var title="">new playback position</var>.</p></li>
- <li><p>The <code title="dom-media-seeking"><a href="#dom-media-seeking">seeking</a></code> DOM
+ <li><p>The <code title="dom-media-seeking"><a href="#dom-media-seeking">seeking</a></code> IDL
attribute must be set to true.</p></li>
<li id="seekUpdate"><p>The user agent must <a href="browsers.html#queue-a-task">queue a
@@ -2691,7 +2691,7 @@
element.</p></li>
<li><p>If the seek was in response to a DOM method call or setting
- of a DOM attribute, then continue the script. The remainder of
+ of a IDL attribute, then continue the script. The remainder of
these steps must be run asynchronously.</p></li>
<li><p>The user agent must wait until it has established whether or
@@ -2699,7 +2699,7 @@
position</var> is available, and, if it is, until it has decoded
enough data to play back that position.</p></li>
- <li><p>The <code title="dom-media-seeking"><a href="#dom-media-seeking">seeking</a></code> DOM
+ <li><p>The <code title="dom-media-seeking"><a href="#dom-media-seeking">seeking</a></code> IDL
attribute must be set to false.</p></li>
<li><p>The user agent must <a href="browsers.html#queue-a-task">queue a task</a> to <a href="browsers.html#fire-a-simple-event">fire
@@ -2759,7 +2759,7 @@
so that, e.g., all the same events fire.</p>
<p>The <dfn id="dom-media-controls" title="dom-media-controls"><code>controls</code></dfn>
- DOM attribute must <a href="infrastructure.html#reflect">reflect</a> the content attribute of the
+ IDL attribute must <a href="infrastructure.html#reflect">reflect</a> the content attribute of the
same name.</p>
<hr></div><dl class="domintro"><dt><var title="">media</var> . <code title="dom-media-volume"><a href="#dom-media-volume">volume</a></code> [ = <var title="">value</var> ]</dt>
@@ -2859,7 +2859,7 @@
</dl><div class="impl">
<p>The <dfn id="dom-timeranges-length" title="dom-TimeRanges-length"><code>length</code></dfn>
- DOM attribute must return the number of ranges represented by the object.</p>
+ IDL attribute must return the number of ranges represented by the object.</p>
<p>The <dfn id="dom-timeranges-start" title="dom-TimeRanges-start"><code>start(<var title="">index</var>)</code></dfn> method must return the position
of the start of the <var title="">index</var>th range represented by
@@ -2889,7 +2889,7 @@
overlap, aren't empty, and don't touch (adjacent ranges are folded
into one bigger range).</p>
- <p>The timelines used by the objects returned by the <code title="dom-media-buffered"><a href="#dom-media-buffered">buffered</a></code>, <code title="dom-media-seekable"><a href="#dom-media-seekable">seekable</a></code> and <code title="dom-media-played"><a href="#dom-media-played">played</a></code> DOM attributes of <a href="#media-element" title="media element">media elements</a> must be the same as that
+ <p>The timelines used by the objects returned by the <code title="dom-media-buffered"><a href="#dom-media-buffered">buffered</a></code>, <code title="dom-media-seekable"><a href="#dom-media-seekable">seekable</a></code> and <code title="dom-media-played"><a href="#dom-media-played">played</a></code> IDL attributes of <a href="#media-element" title="media element">media elements</a> must be the same as that
element's <a href="#media-resource">media resource</a>'s timeline.</p>
</div><h5 id="mediaevents"><span class="secno">4.8.10.12 </span>Event summary</h5><p>The following events fire on <a href="#media-element" title="media element">media
@@ -2931,7 +2931,7 @@
</td></tr><tr><td><dfn id="event-emptied" title="event-emptied"><code>emptied</code></dfn>
</td><td><code>Event</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 DOM attributes are in their initial states.
+ </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-stalled" title="event-stalled"><code>stalled</code></dfn>
</td><td><code>ProgressEvent</code>
</td><td>The user agent is trying to fetch <a href="#media-data">media data</a>, but data is unexpectedly not forthcoming.
@@ -2973,11 +2973,11 @@
</td></tr></tbody><tbody><tr><td><dfn id="event-seeking" title="event-seeking"><code>seeking</code></dfn>
</td><td><code>Event</code>
- </td><td>The <code title="dom-media-seeking"><a href="#dom-media-seeking">seeking</a></code> DOM attribute changed to true and the seek operation is taking long enough that the user agent has time to fire the event.
+ </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-seeked" title="event-seeked"><code>seeked</code></dfn>
</td><td><code>Event</code>
- </td><td>The <code title="dom-media-seeking"><a href="#dom-media-seeking">seeking</a></code> DOM attribute changed to false.
+ </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-timeupdate" title="event-timeupdate"><code>timeupdate</code></dfn>
</td><td><code>Event</code>
Index: browsers.html
===================================================================
RCS file: /sources/public/html5/spec/browsers.html,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -d -r1.191 -r1.192
--- browsers.html 30 Aug 2009 21:46:29 -0000 1.191
+++ browsers.html 31 Aug 2009 02:36:26 -0000 1.192
@@ -182,7 +182,7 @@
<a href="microdata.html">← 5 Microdata</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="offline.html">6.9 Offline Web applications →</a>
- </nav><p>This is revision 1.2891.</p>
+ </nav><p>This is revision 1.2893.</p>
<h2 id="browsers"><span class="secno">6 </span>Web browsers</h2><div class="impl">
@@ -347,7 +347,7 @@
</dl><div class="impl">
- <p>The <dfn id="dom-top" title="dom-top"><code>top</code></dfn> DOM attribute on
+ <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
<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
@@ -355,7 +355,7 @@
object if it was a <a href="#top-level-browsing-context">top-level browsing context</a>
itself).</p>
- <p>The <dfn id="dom-parent" title="dom-parent"><code>parent</code></dfn> DOM
+ <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
the <a href="#parent-browsing-context">parent browsing context</a>, if there is one (i.e. if
@@ -365,7 +365,7 @@
is a <a href="#top-level-browsing-context">top-level browsing context</a>).</p>
<p>The <dfn id="dom-frameelement" title="dom-frameElement"><code>frameElement</code></dfn>
- DOM attribute on the <code><a href="#window">Window</a></code> object of a
+ 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
the following algorithm:</p>
@@ -391,7 +391,7 @@
and it has a <dfn id="furthest-ancestor-browsing-context">furthest ancestor browsing context</dfn>, which is
the <a href="#top-level-browsing-context">top-level browsing context</a> of the <a href="#opener-browsing-context">opener
browsing context</a> when the <a href="#auxiliary-browsing-context">auxiliary browsing
- context</a> was created.</p><h5 id="navigating-auxiliary-browsing-contexts-in-the-dom"><span class="secno">6.1.2.1 </span>Navigating auxiliary browsing contexts in the DOM</h5><p>The <dfn id="dom-opener" title="dom-opener"><code>opener</code></dfn> DOM
+ context</a> was created.</p><h5 id="navigating-auxiliary-browsing-contexts-in-the-dom"><span class="secno">6.1.2.1 </span>Navigating auxiliary browsing contexts in the DOM</h5><p>The <dfn id="dom-opener" title="dom-opener"><code>opener</code></dfn> IDL
attribute on the <code><a href="#window">Window</a></code> object must return the
<code><a href="#windowproxy">WindowProxy</a></code> object of the <a href="#browsing-context">browsing context</a>
from which the current <a href="#browsing-context">browsing context</a> was created
@@ -634,7 +634,7 @@
void <a href="comms.html#dom-window-postmessage-2" title="dom-window-postMessage-2">postMessage</a>(in any message, in DOMString targetOrigin);
void <a href="comms.html#dom-window-postmessage-3" title="dom-window-postMessage-3">postMessage</a>(in any message, in <a href="comms.html#messageportarray">MessagePortArray</a> ports, in DOMString targetOrigin);
- // <a href="#event-handler-dom-attributes">event handler DOM attributes</a>
+ // <a href="#event-handler-idl-attributes">event handler IDL attributes</a>
attribute <a href="#function">Function</a> <a href="#handler-onabort" title="handler-onabort">onabort</a>;
attribute <a href="#function">Function</a> <a href="#handler-window-onafterprint" title="handler-window-onafterprint">onafterprint</a>;
attribute <a href="#function">Function</a> <a href="#handler-window-onbeforeprint" title="handler-window-onbeforeprint">onbeforeprint</a>;
@@ -722,7 +722,7 @@
<p>The <code><a href="#window">Window</a></code> object must also implement the
<code>EventTarget</code> interface.</p>
- <p>The <dfn id="dom-window" title="dom-window"><code>window</code></dfn>, <dfn id="dom-frames" title="dom-frames"><code>frames</code></dfn>, and <dfn id="dom-self" title="dom-self"><code>self</code></dfn> DOM attributes must all
+ <p>The <dfn id="dom-window" title="dom-window"><code>window</code></dfn>, <dfn id="dom-frames" title="dom-frames"><code>frames</code></dfn>, and <dfn id="dom-self" title="dom-self"><code>self</code></dfn> IDL attributes must all
return the <code><a href="#window">Window</a></code> object's <a href="#browsing-context">browsing
context</a>'s <code><a href="#windowproxy">WindowProxy</a></code> object.</p>
@@ -913,21 +913,21 @@
</dl><div class="impl">
- <p>The <dfn id="dom-length" title="dom-length"><code>length</code></dfn> DOM
+ <p>The <dfn id="dom-length" title="dom-length"><code>length</code></dfn> IDL
attribute on the <code><a href="#window">Window</a></code> interface must return the
number of <a href="#child-browsing-context" title="child browsing context">child browsing
contexts</a> of the <a href="#active-document">active document</a> of that
<code><a href="#window">Window</a></code> object, if that <code><a href="#window">Window</a></code>'s
<a href="#browsing-context">browsing context</a> shares the same <a href="#event-loop">event
loop</a> as the <a href="#script-s-browsing-context">script's browsing context</a> of the
- <a href="#first-script">first script</a> accessing the DOM attribute; otherwise, it
+ <a href="#first-script">first script</a> accessing the IDL attribute; otherwise, it
must return zero.</p>
<!-- in other words, frames are only accessible to same-thread processes -->
<p>The <span>indices of the supported indexed properties</span> on
the <code><a href="#window">Window</a></code> object at any instant are the numbers in the
- range 0 .. <span title=""><var title="">n</var>-1</span>, where <var title="">n</var> is the number returned by the <code title="dom-length"><a href="#dom-length">length</a></code> DOM attribute. If <var title="">n</var> is zero then there are no <span>supported indexed
+ range 0 .. <span title=""><var title="">n</var>-1</span>, where <var title="">n</var> is the number returned by the <code title="dom-length"><a href="#dom-length">length</a></code> IDL attribute. If <var title="">n</var> is zero then there are no <span>supported indexed
properties</span>.</p>
<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
@@ -1661,7 +1661,7 @@
<code><a href="semantics.html#the-style-element">style</a></code> element block).</li>
<li>Event handlers, whether registered through the DOM using <code title="">addEventListener()</code>, by explicit <a href="#event-handler-content-attributes">event handler
- content attributes</a>, by <a href="#event-handler-dom-attributes">event handler DOM
+ content attributes</a>, by <a href="#event-handler-idl-attributes">event handler IDL
attributes</a>, or otherwise.</li>
<li>Processing of technologies like XBL or SVG that have their own
@@ -2283,29 +2283,29 @@
attribute</a>, unless otherwise specified, can either have the
value null or be set to a <code><a href="#function">Function</a></code> object. <span class="impl">Initially, an event handler attribute must be set to
null.</span></p><p>Event handler attributes are exposed in one or two ways.</p><p>The first way, common to all event handler attributes, is as an
- <a href="#event-handler-dom-attributes" title="event handler DOM attributes">event handler DOM
+ <a href="#event-handler-idl-attributes" title="event handler IDL attributes">event handler IDL
attribute</a>.</p><p>The second way is as an <a href="#event-handler-content-attributes" title="event handler content
attributes">event handler content attribute</a>. Event handlers on
<a href="infrastructure.html#html-elements">HTML elements</a> and some of the event handlers on
<code><a href="#window">Window</a></code> objects are exposed in this way.</p><div class="impl">
- <hr><p><dfn id="event-handler-dom-attributes">Event handler DOM attributes</dfn>, on setting, must set the
+ <hr><p><dfn id="event-handler-idl-attributes">Event handler IDL attributes</dfn>, on setting, must set the
corresponding event handler attribute to their new value, and on
getting, must return whatever the current value of the corresponding
event handler attribute is (possibly null).</p>
- <p>If an <a href="#event-handler-dom-attributes" title="event handler DOM attributes">event handler
- DOM attribute</a> exposes an <a href="#event-handler-attributes-0" title="event handler
+ <p>If an <a href="#event-handler-idl-attributes" title="event handler IDL attributes">event handler
+ IDL attribute</a> exposes an <a href="#event-handler-attributes-0" title="event handler
attributes">event handler attribute</a> of an object that doesn't
exist, it must always return null on getting and must do nothing on
setting.</p>
- <p class="note">This can happen in particular for <a href="#event-handler-dom-attributes" title="event
- handler DOM attributes">event handler DOM attribute</a> on
+ <p class="note">This can happen in particular for <a href="#event-handler-idl-attributes" title="event
+ handler IDL attributes">event handler IDL attribute</a> on
<code><a href="semantics.html#the-body-element-0">body</a></code> elements that do not have corresponding
<code><a href="#window">Window</a></code> objects.</p>
- <p class="note">Certain event handler DOM attributes have additional
+ <p class="note">Certain event handler IDL attributes have additional
requirements, in particular the <code title="handler-MessagePort-onmessage"><a href="comms.html#handler-messageport-onmessage">onmessage</a></code> attribute of
<code><a href="comms.html#messageport">MessagePort</a></code> objects.</p>
@@ -2447,8 +2447,8 @@
<p>The following are the <a href="#event-handler-attributes-0">event handler attributes</a> (and
their corresponding <a href="#event-handler-event-type" title="event handler event type">event
handler event types</a>) that must be supported by all <a href="infrastructure.html#html-elements">HTML
- elements</a>, as both content attributes and DOM attributes, and
- on <code>Document</code> and <code><a href="#window">Window</a></code> objects, as DOM
+ elements</a>, as both content attributes and IDL attributes, and
+ on <code>Document</code> and <code><a href="#window">Window</a></code> objects, as IDL
attributes.</p>
<table><thead><tr><th><a href="#event-handler-attributes-0" title="event handler attributes">event handler attribute</a> </th><th><a href="#event-handler-event-type">Event handler event type</a>
@@ -2513,8 +2513,8 @@
their corresponding <a href="#event-handler-event-type" title="event handler event type">event
handler event types</a>) that must be supported by all <a href="infrastructure.html#html-elements">HTML
elements</a> other than <code><a href="semantics.html#the-body-element-0">body</a></code>, as both content
- attributes and DOM attributes, and on <code>Document</code> objects,
- as DOM attributes:</p>
+ attributes and IDL attributes, and on <code>Document</code> objects,
+ as IDL attributes:</p>
<table><thead><tr><th><a href="#event-handler-attributes-0" title="event handler attributes">event handler attribute</a> </th><th><a href="#event-handler-event-type">Event handler event type</a>
</th></tr></thead><tbody><tr><td><dfn id="handler-onblur" title="handler-onblur"><code>onblur</code></dfn> </td><td> <code title="event-blur">blur</code> <!-- widely used -->
@@ -2524,9 +2524,9 @@
</td></tr></tbody></table><hr><p>The following are the <a href="#event-handler-attributes-0">event handler attributes</a> (and
their corresponding <a href="#event-handler-event-type" title="event handler event type">event
handler event types</a>) that must be supported by
- <code><a href="#window">Window</a></code> objects, as DOM attributes on the
+ <code><a href="#window">Window</a></code> objects, as IDL attributes on the
<code><a href="#window">Window</a></code> object, and with corresponding content
- attributes and DOM attributes exposed on the <code><a href="semantics.html#the-body-element-0">body</a></code> and
+ attributes and IDL attributes exposed on the <code><a href="semantics.html#the-body-element-0">body</a></code> and
<code><a href="obsolete.html#frameset">frameset</a></code> elements:</p>
<table><thead><tr><th><a href="#event-handler-attributes-0" title="event handler attributes">event handler attribute</a> </th><th><a href="#event-handler-event-type">Event handler event type</a>
@@ -3272,7 +3272,7 @@
arguments provided to the method.</p>
<p>The <dfn id="dom-windowmodal-dialogarguments" title="dom-WindowModal-dialogArguments"><code>dialogArguments</code></dfn>
- DOM attribute, on getting, must check whether its browsing context's
+ IDL attribute, on getting, must check whether its browsing context's
<a href="#active-document">active document</a>'s <a href="#origin">origin</a> is the <a href="#same-origin" title="same origin">same</a> as the <a href="#dialog-arguments-origin">dialog arguments'
origin</a>. If it is, then the browsing context's <a href="#dialog-arguments">dialog
arguments</a> must be returned unchanged. Otherwise, if the
@@ -3287,7 +3287,7 @@
created.</p>
<p>The <dfn id="dom-windowmodal-returnvalue" title="dom-WindowModal-returnValue"><code>returnValue</code></dfn>
- DOM attribute, on getting, must return the <a href="#return-value">return value</a>
+ IDL attribute, on getting, must return the <a href="#return-value">return value</a>
of its browsing context, and on setting, must set the <a href="#return-value">return
value</a> to the given new value.</p>
Index: the-xhtml-syntax.html
===================================================================
RCS file: /sources/public/html5/spec/the-xhtml-syntax.html,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -d -r1.191 -r1.192
--- the-xhtml-syntax.html 30 Aug 2009 21:46:30 -0000 1.191
+++ the-xhtml-syntax.html 31 Aug 2009 02:36:28 -0000 1.192
@@ -182,7 +182,7 @@
<a href="named-character-references.html">← 9.6 Named character references</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="obsolete.html">12 Obsolete features →</a>
- </nav><p>This is revision 1.2891.</p>
+ </nav><p>This is revision 1.2893.</p>
<h2 id="the-xhtml-syntax"><span class="secno">10 </span><dfn id="xhtml">The XHTML syntax</dfn></h2><p class="note">This section only describes the rules for XML
Index: offline.html
===================================================================
RCS file: /sources/public/html5/spec/offline.html,v
retrieving revision 1.186
retrieving revision 1.187
diff -u -d -r1.186 -r1.187
--- offline.html 30 Aug 2009 21:46:30 -0000 1.186
+++ offline.html 31 Aug 2009 02:36:27 -0000 1.187
@@ -182,7 +182,7 @@
<a href="browsers.html">← 6 Web browsers</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="history.html">6.10 Session history and navigation →</a>
- </nav><p>This is revision 1.2891.</p>
+ </nav><p>This is revision 1.2893.</p>
<h3 id="offline"><span class="secno">6.9 </span>Offline Web applications</h3><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><!-- v2 ideas for appcache:
@@ -1812,7 +1812,7 @@
</ol><p>The following are the <a href="browsers.html#event-handler-attributes-0">event handler attributes</a> (and
their corresponding <a href="browsers.html#event-handler-event-type" title="event handler event type">event
- handler event types</a>) that must be supported, as DOM
+ handler event types</a>) that must be supported, as IDL
attributes, by all objects implementing the
<code><a href="#applicationcache">ApplicationCache</a></code> interface:</p>
Index: syntax.html
===================================================================
RCS file: /sources/public/html5/spec/syntax.html,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -d -r1.191 -r1.192
--- syntax.html 30 Aug 2009 21:46:30 -0000 1.191
+++ syntax.html 31 Aug 2009 02:36:28 -0000 1.192
@@ -182,7 +182,7 @@
<a href="comms.html">← 8 Communication</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="named-character-references.html">9.6 Named character references →</a>
- </nav><p>This is revision 1.2891.</p>
+ </nav><p>This is revision 1.2893.</p>
<h2 id="syntax"><span class="secno">9 </span><dfn>The HTML syntax</dfn></h2><p class="note">This section only describes the rules for
@@ -7331,7 +7331,7 @@
<code><a href="semantics.html#the-style-element">style</a></code>, <code><a href="semantics.html#script">script</a></code>, <code><a href="obsolete.html#xmp">xmp</a></code>,
<code><a href="text-level-semantics.html#the-iframe-element">iframe</a></code>, <code><a href="obsolete.html#noembed">noembed</a></code>,
<code><a href="obsolete.html#noframes">noframes</a></code>, <code><a href="semantics.html#the-noscript-element">noscript</a></code>, or
- <code><a href="obsolete.html#plaintext">plaintext</a></code> element, then append the value of <var title="">current node</var>'s <code title="">data</code> DOM
+ <code><a href="obsolete.html#plaintext">plaintext</a></code> element, then append the value of <var title="">current node</var>'s <code title="">data</code> IDL
attribute literally.</p> <!-- note about noscript: we're
assuming here that scripting is enabled. If this algorithm is
used with scripting disabled, this won't work
@@ -7339,7 +7339,7 @@
document that is being designMode'd) -->
<p>Otherwise, append the value of <var title="">current
- node</var>'s <code title="">data</code> DOM attribute, <a href="#escapingString" title="escaping a string">escaped as described
+ node</var>'s <code title="">data</code> IDL attribute, <a href="#escapingString" title="escaping a string">escaped as described
below</a>.</p>
</dd>
@@ -7351,7 +7351,7 @@
<p>Append the literal string <code><!--</code> (U+003C
LESS-THAN SIGN, U+0021 EXCLAMATION MARK, U+002D HYPHEN-MINUS,
- U+002D HYPHEN-MINUS), followed by the value of <var title="">current node</var>'s <code title="">data</code> DOM
+ U+002D HYPHEN-MINUS), followed by the value of <var title="">current node</var>'s <code title="">data</code> IDL
attribute, followed by the literal string <code>--></code>
(U+002D HYPHEN-MINUS, U+002D HYPHEN-MINUS, U+003E GREATER-THAN
SIGN).</p>
@@ -7365,8 +7365,8 @@
<p>Append the literal string <code><?</code> (U+003C
LESS-THAN SIGN, U+003F QUESTION MARK), followed by the value
- of <var title="">current node</var>'s <code title="">target</code> DOM attribute, followed by a single
- U+0020 SPACE character, followed by the value of <var title="">current node</var>'s <code title="">data</code> DOM
+ of <var title="">current node</var>'s <code title="">target</code> IDL attribute, followed by a single
+ U+0020 SPACE character, followed by the value of <var title="">current node</var>'s <code title="">data</code> IDL
attribute, followed by a single U+003E GREATER-THAN SIGN
character ('>').</p>
@@ -7383,7 +7383,7 @@
LETTER C, U+0054 LATIN CAPITAL LETTER T, U+0059 LATIN CAPITAL
LETTER Y, U+0050 LATIN CAPITAL LETTER P, U+0045 LATIN CAPITAL
LETTER E), followed by a space (U+0020 SPACE), followed by the
- value of <var title="">current node</var>'s <code title="">name</code> DOM attribute, followed by the literal
+ value of <var title="">current node</var>'s <code title="">name</code> IDL attribute, followed by the literal
string <code>></code> (U+003E GREATER-THAN SIGN).</p>
</dd>
Index: obsolete.html
===================================================================
RCS file: /sources/public/html5/spec/obsolete.html,v
retrieving revision 1.183
retrieving revision 1.184
diff -u -d -r1.183 -r1.184
--- obsolete.html 30 Aug 2009 21:46:30 -0000 1.183
+++ obsolete.html 31 Aug 2009 02:36:27 -0000 1.184
@@ -182,7 +182,7 @@
<a href="the-xhtml-syntax.html">← 10 The XHTML syntax</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="no.html">13 Things that you can't do with this specification because they are better handled using other technologies that are further described herein →</a>
- </nav><p>This is revision 1.2891.</p>
+ </nav><p>This is revision 1.2893.</p>
<h2 id="obsolete"><span class="secno">12 </span>Obsolete features</h2><h3 id="obsolete-but-conforming-features"><span class="secno">12.1 </span>Obsolete but conforming features</h3><p>Features listed in this section will trigger warnings in
@@ -487,12 +487,12 @@
attribute DOMString <a href="#dom-applet-width" title="dom-applet-width">width</a>;
};</pre>
- <p>The <dfn id="dom-applet-align" title="dom-applet-align"><code>align</code></dfn>, <dfn id="dom-applet-alt" title="dom-applet-alt"><code>alt</code></dfn>, <dfn id="dom-applet-archive" title="dom-applet-archive"><code>archive</code></dfn>, <dfn id="dom-applet-code" title="dom-applet-code"><code>code</code></dfn>, <dfn id="dom-applet-height" title="dom-applet-height"><code>height</code></dfn>, <dfn id="dom-applet-hspace" title="dom-applet-hspace"><code>hspace</code></dfn>, <dfn id="dom-applet-name" title="dom-applet-name"><code>name</code></dfn>, <dfn id="dom-applet-object" title="dom-applet-object"><code>object</code></dfn>, <dfn id="dom-applet-vspace" title="dom-applet-vspace"><code>vspace</code></dfn>, and <dfn id="dom-applet-width" title="dom-applet-width"><code>width</code></dfn> DOM attributes
+ <p>The <dfn id="dom-applet-align" title="dom-applet-align"><code>align</code></dfn>, <dfn id="dom-applet-alt" title="dom-applet-alt"><code>alt</code></dfn>, <dfn id="dom-applet-archive" title="dom-applet-archive"><code>archive</code></dfn>, <dfn id="dom-applet-code" title="dom-applet-code"><code>code</code></dfn>, <dfn id="dom-applet-height" title="dom-applet-height"><code>height</code></dfn>, <dfn id="dom-applet-hspace" title="dom-applet-hspace"><code>hspace</code></dfn>, <dfn id="dom-applet-name" title="dom-applet-name"><code>name</code></dfn>, <dfn id="dom-applet-object" title="dom-applet-object"><code>object</code></dfn>, <dfn id="dom-applet-vspace" title="dom-applet-vspace"><code>vspace</code></dfn>, and <dfn id="dom-applet-width" title="dom-applet-width"><code>width</code></dfn> IDL attributes
must <a href="infrastructure.html#reflect">reflect</a> the respective content attributes of the
same name.</p>
<p>The <dfn id="dom-applet-codebase" title="dom-applet-codeBase"><code>codeBase</code></dfn>
- DOM attribute must <a href="infrastructure.html#reflect">reflect</a> the <code title="attr-applet-codebase">codebase</code> content attribute.</p>
+ IDL attribute must <a href="infrastructure.html#reflect">reflect</a> the <code title="attr-applet-codebase">codebase</code> content attribute.</p>
<h4 id="the-marquee-element"><span class="secno">12.3.2 </span>The <dfn><code>marquee</code></dfn> element</h4>
@@ -611,7 +611,7 @@
return an error or a number less than 1, is the parsed value, and
otherwise is −1.</p>
- <p>The <dfn id="dom-marquee-loop" title="dom-marquee-loop"><code>loop</code></dfn> DOM
+ <p>The <dfn id="dom-marquee-loop" title="dom-marquee-loop"><code>loop</code></dfn> IDL
attribute, on getting, must return the element's <a href="#marquee-loop-count">marquee loop
count</a>; and on setting, if the new value is different than the
element's <a href="#marquee-loop-count">marquee loop count</a> and either greater than
@@ -656,28 +656,28 @@
</ol><hr><p>The following are the <a href="browsers.html#event-handler-attributes-0">event handler attributes</a> (and
their corresponding <a href="browsers.html#event-handler-event-type" title="event handler event type">event
handler event types</a>) that must be supported, as content and
- DOM attributes, by <code><a href="#the-marquee-element">marquee</a></code> elements:</p>
+ IDL attributes, by <code><a href="#the-marquee-element">marquee</a></code> elements:</p>
<table><thead><tr><th><a href="browsers.html#event-handler-attributes-0" title="event handler attributes">event handler attribute</a> </th><th><a href="browsers.html#event-handler-event-type">Event handler event type</a>
</th></tr></thead><tbody><tr><td><dfn id="handler-marquee-onbounce" title="handler-marquee-onbounce"><code>onbounce</code></dfn> </td><td> <code title="event-bounce">bounce</code>
</td></tr><tr><td><dfn id="handler-marquee-onfinish" title="handler-marquee-onfinish"><code>onfinish</code></dfn> </td><td> <code title="event-finish">finish</code>
</td></tr><tr><td><dfn id="handler-marquee-onstart" title="handler-marquee-onstart"><code>onstart</code></dfn> </td><td> <code title="event-start">start</code>
- </td></tr></tbody></table><hr><p>The <dfn id="dom-marquee-behavior" title="dom-marquee-behavior"><code>behavior</code></dfn>, <dfn id="dom-marquee-direction" title="dom-marquee-direction"><code>direction</code></dfn>, <dfn id="dom-marquee-height" title="dom-marquee-height"><code>height</code></dfn>, <dfn id="dom-marquee-hspace" title="dom-marquee-hspace"><code>hspace</code></dfn>, <dfn id="dom-marquee-vspace" title="dom-marquee-vspace"><code>vspace</code></dfn>, and <dfn id="dom-marquee-width" title="dom-marquee-width"><code>width</code></dfn> DOM attributes
+ </td></tr></tbody></table><hr><p>The <dfn id="dom-marquee-behavior" title="dom-marquee-behavior"><code>behavior</code></dfn>, <dfn id="dom-marquee-direction" title="dom-marquee-direction"><code>direction</code></dfn>, <dfn id="dom-marquee-height" title="dom-marquee-height"><code>height</code></dfn>, <dfn id="dom-marquee-hspace" title="dom-marquee-hspace"><code>hspace</code></dfn>, <dfn id="dom-marquee-vspace" title="dom-marquee-vspace"><code>vspace</code></dfn>, and <dfn id="dom-marquee-width" title="dom-marquee-width"><code>width</code></dfn> IDL attributes
must <a href="infrastructure.html#reflect">reflect</a> the respective content attributes of the
same name.</p>
<p>The <dfn id="dom-marquee-bgcolor" title="dom-marquee-bgColor"><code>bgColor</code></dfn>
- DOM attribute must <a href="infrastructure.html#reflect">reflect</a> the <code title="attr-marquee-bgcolor">bgcolor</code> content attribute.</p>
+ IDL attribute must <a href="infrastructure.html#reflect">reflect</a> the <code title="attr-marquee-bgcolor">bgcolor</code> content attribute.</p>
<p>The <dfn id="dom-marquee-scrollamount" title="dom-marquee-scrollAmount"><code>scrollAmount</code></dfn>
- DOM attribute must <a href="infrastructure.html#reflect">reflect</a> the <code title="attr-marquee-scrollamount">scrollamount</code> content
+ IDL attribute must <a href="infrastructure.html#reflect">reflect</a> the <code title="attr-marquee-scrollamount">scrollamount</code> content
attribute. The default value is 6.</p>
- <p>The <dfn id="dom-marquee-scrolldelay" title="dom-marquee-scrollDelay"><code>scrollDelay</code></dfn> DOM
+ <p>The <dfn id="dom-marquee-scrolldelay" title="dom-marquee-scrollDelay"><code>scrollDelay</code></dfn> IDL
attribute must <a href="infrastructure.html#reflect">reflect</a> the <code title="attr-marquee-scrolldelay">scrolldelay</code> content
attribute. The default value is 85.</p>
- <p>The <dfn id="dom-marquee-truespeed" title="dom-marquee-trueSpeed"><code>trueSpeed</code></dfn> DOM
+ <p>The <dfn id="dom-marquee-truespeed" title="dom-marquee-trueSpeed"><code>trueSpeed</code></dfn> IDL
attribute must <a href="infrastructure.html#reflect">reflect</a> the <code title="attr-marquee-truespeed"><a href="#attr-marquee-truespeed">truespeed</a></code> content
attribute.</p>
@@ -713,7 +713,7 @@
};</pre>
<p>The <dfn id="dom-frameset-cols" title="dom-frameset-cols"><code>cols</code></dfn> and
- <dfn id="dom-frameset-rows" title="dom-frameset-rows"><code>rows</code></dfn> DOM
+ <dfn id="dom-frameset-rows" title="dom-frameset-rows"><code>rows</code></dfn> IDL
attributes of the <code><a href="#frameset">frameset</a></code> element must
<a href="infrastructure.html#reflect">reflect</a> the respective content attributes of the same
name.</p>
@@ -740,7 +740,7 @@
<li><code title="handler-window-onstorage"><a href="browsers.html#handler-window-onstorage">onstorage</a></code></li>
<li><code title="handler-window-onundo"><a href="browsers.html#handler-window-onundo">onundo</a></code></li>
<li><code title="handler-window-onunload"><a href="browsers.html#handler-window-onunload">onunload</a></code></li>
- </ul><p>The DOM interface also exposes <a href="browsers.html#event-handler-dom-attributes">event handler DOM
+ </ul><p>The DOM interface also exposes <a href="browsers.html#event-handler-idl-attributes">event handler IDL
attributes</a> that mirror those on the <code><a href="browsers.html#window">Window</a></code>
element.</p>
@@ -811,35 +811,35 @@
readonly attribute Document <a href="#dom-frame-contentdocument" title="dom-frame-contentDocument">contentDocument</a>;
};</pre>
- <p>The <dfn id="dom-frame-name" title="dom-frame-name"><code>name</code></dfn>, <dfn id="dom-frame-scrolling" title="dom-frame-scrolling"><code>scrolling</code></dfn>, and <dfn id="dom-frame-src" title="dom-frame-src"><code>src</code></dfn> DOM attributes of the
+ <p>The <dfn id="dom-frame-name" title="dom-frame-name"><code>name</code></dfn>, <dfn id="dom-frame-scrolling" title="dom-frame-scrolling"><code>scrolling</code></dfn>, and <dfn id="dom-frame-src" title="dom-frame-src"><code>src</code></dfn> IDL attributes of the
<code><a href="#frame">frame</a></code> element must <a href="infrastructure.html#reflect">reflect</a> the respective
content attributes of the same name.</p>
- <p>The <dfn id="dom-frame-frameborder" title="dom-frame-frameBorder"><code>frameBorder</code></dfn> DOM
+ <p>The <dfn id="dom-frame-frameborder" title="dom-frame-frameBorder"><code>frameBorder</code></dfn> IDL
attribute of the <code><a href="#frame">frame</a></code> element must
<a href="infrastructure.html#reflect">reflect</a> the element's <code title="attr-frame-frameborder">frameborder</code> content
attribute.</p>
<p>The <dfn id="dom-frame-longdesc" title="dom-frame-longDesc"><code>longDesc</code></dfn>
- DOM attribute of the <code><a href="#frame">frame</a></code> element must
+ IDL attribute of the <code><a href="#frame">frame</a></code> element must
<a href="infrastructure.html#reflect">reflect</a> the element's <code title="attr-frame-longdesc">longdesc</code> content attribute.</p>
- <p>The <dfn id="dom-frame-marginheight" title="dom-frame-marginHeight"><code>marginHeight</code></dfn> DOM
+ <p>The <dfn id="dom-frame-marginheight" title="dom-frame-marginHeight"><code>marginHeight</code></dfn> IDL
attribute of the <code><a href="#frame">frame</a></code> element must
<a href="infrastructure.html#reflect">reflect</a> the element's <code title="attr-frame-marginheight">marginheight</code> content
attribute.</p>
- <p>The <dfn id="dom-frame-marginwidth" title="dom-frame-marginWidth"><code>marginWidth</code></dfn> DOM
+ <p>The <dfn id="dom-frame-marginwidth" title="dom-frame-marginWidth"><code>marginWidth</code></dfn> IDL
attribute of the <code><a href="#frame">frame</a></code> element must
<a href="infrastructure.html#reflect">reflect</a> the element's <code title="attr-frame-marginwidth">marginwidth</code> content
attribute.</p>
<p>The <dfn id="dom-frame-noresize" title="dom-frame-noResize"><code>noResize</code></dfn>
- DOM attribute of the <code><a href="#frame">frame</a></code> element must
+ IDL attribute of the <code><a href="#frame">frame</a></code> element must
<a href="infrastructure.html#reflect">reflect</a> the element's <code title="attr-frame-noresize">noresize</code> content attribute.</p>
<p>The <dfn id="dom-frame-contentdocument" title="dom-frame-contentDocument"><code>contentDocument</code></dfn>
- DOM attribute of the <code><a href="#frame">frame</a></code> element must return the
+ 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
the <code><a href="#frame">frame</a></code> element's <a href="browsers.html#nested-browsing-context">nested browsing
context</a>.</p>
@@ -859,7 +859,7 @@
attribute DOMString <a href="#dom-a-shape" title="dom-a-shape">shape</a>;
};</pre>
- <p>The <dfn id="dom-a-coords" title="dom-a-coords"><code>coords</code></dfn>, <dfn id="dom-a-charset" title="dom-a-charset"><code>charset</code></dfn>, <dfn id="dom-a-rev" title="dom-a-rev"><code>rev</code></dfn>, and <dfn id="dom-a-shape" title="dom-a-shape"><code>shape</code></dfn> DOM attributes of the
+ <p>The <dfn id="dom-a-coords" title="dom-a-coords"><code>coords</code></dfn>, <dfn id="dom-a-charset" title="dom-a-charset"><code>charset</code></dfn>, <dfn id="dom-a-rev" title="dom-a-rev"><code>rev</code></dfn>, and <dfn id="dom-a-shape" title="dom-a-shape"><code>shape</code></dfn> IDL attributes of the
<code><a href="text-level-semantics.html#the-a-element">a</a></code> element must <a href="infrastructure.html#reflect">reflect</a> the respective
content attributes of the same name.</p>
@@ -868,7 +868,7 @@
attribute boolean <a href="#dom-area-nohref" title="dom-area-noHref">noHref</a>;
};</pre>
- <p>The <dfn id="dom-area-nohref" title="dom-area-noHref"><code>noHref</code></dfn> DOM
+ <p>The <dfn id="dom-area-nohref" title="dom-area-noHref"><code>noHref</code></dfn> IDL
attribute of the <code><a href="the-canvas-element.html#the-area-element">area</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the element's <code title="attr-area-nohref"><a href="#attr-area-nohref">nohref</a></code> content
attribute.</p>
@@ -883,7 +883,7 @@
};</pre>
<p>The <dfn id="dom-basefont-color" title="dom-basefont-color"><code>color</code></dfn>,
- <dfn id="dom-basefont-face" title="dom-basefont-face"><code>face</code></dfn>, and <dfn id="dom-basefont-size" title="dom-basefont-size"><code>size</code></dfn> DOM attributes of
+ <dfn id="dom-basefont-face" title="dom-basefont-face"><code>face</code></dfn>, and <dfn id="dom-basefont-size" title="dom-basefont-size"><code>size</code></dfn> IDL attributes of
the <code><a href="#basefont">basefont</a></code> element must <a href="infrastructure.html#reflect">reflect</a> the
respective content attributes of the same name.</p>
@@ -897,34 +897,34 @@
attribute DOMString <a href="#dom-body-alink" title="dom-body-aLink">aLink</a>;
};</pre>
- <p>The <dfn id="dom-body-text" title="dom-body-text"><code>text</code></dfn> DOM
+ <p>The <dfn id="dom-body-text" title="dom-body-text"><code>text</code></dfn> IDL
attribute of the <code><a href="semantics.html#the-body-element-0">body</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the element's <code title="attr-body-text"><a href="#attr-body-text">text</a></code> content
attribute.</p>
- <p>The <dfn id="dom-body-bgcolor" title="dom-body-bgColor"><code>bgColor</code></dfn> DOM
+ <p>The <dfn id="dom-body-bgcolor" title="dom-body-bgColor"><code>bgColor</code></dfn> IDL
attribute of the <code><a href="semantics.html#the-body-element-0">body</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the element's <code title="attr-body-bgcolor"><a href="#attr-body-bgcolor">bgcolor</a></code> content
attribute.</p>
- <p>The <dfn id="dom-body-background" title="dom-body-background"><code>background</code></dfn> DOM
+ <p>The <dfn id="dom-body-background" title="dom-body-background"><code>background</code></dfn> IDL
attribute of the <code><a href="semantics.html#the-body-element-0">body</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the element's <code title="attr-body-background"><a href="#attr-body-background">background</a></code>
content attribute. (The <code title="attr-body-background"><a href="#attr-body-background">background</a></code> content is
<em>not</em> defined to contain a <a href="infrastructure.html#url">URL</a>, despite rules
regarding its handling in the rendering section above.)</p>
- <p>The <dfn id="dom-body-link" title="dom-body-link"><code>link</code></dfn> DOM
+ <p>The <dfn id="dom-body-link" title="dom-body-link"><code>link</code></dfn> IDL
attribute of the <code><a href="semantics.html#the-body-element-0">body</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the element's <code title="attr-body-link"><a href="#attr-body-link">link</a></code> content
attribute.</p>
- <p>The <dfn id="dom-body-alink" title="dom-body-aLink"><code>aLink</code></dfn> DOM
+ <p>The <dfn id="dom-body-alink" title="dom-body-aLink"><code>aLink</code></dfn> IDL
attribute of the <code><a href="semantics.html#the-body-element-0">body</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the element's <code title="attr-body-alink"><a href="#attr-body-alink">alink</a></code> content
attribute.</p>
- <p>The <dfn id="dom-body-vlink" title="dom-body-vLink"><code>vLink</code></dfn> DOM
+ <p>The <dfn id="dom-body-vlink" title="dom-body-vLink"><code>vLink</code></dfn> IDL
attribute of the <code><a href="semantics.html#the-body-element-0">body</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the element's <code title="attr-body-vlink"><a href="#attr-body-vlink">vlink</a></code> content
attribute.</p>
@@ -934,7 +934,7 @@
attribute DOMString <a href="#dom-br-clear" title="dom-br-clear">clear</a>;
};</pre>
- <p>The <dfn id="dom-br-clear" title="dom-br-clear"><code>clear</code></dfn> DOM
+ <p>The <dfn id="dom-br-clear" title="dom-br-clear"><code>clear</code></dfn> IDL
attribute of the <code><a href="semantics.html#the-br-element">br</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the content attribute of the same name.</p>
@@ -943,7 +943,7 @@
attribute DOMString <a href="#dom-caption-align" title="dom-caption-align">align</a>;
};</pre>
- <p>The <dfn id="dom-caption-align" title="dom-caption-align"><code>align</code></dfn> DOM
+ <p>The <dfn id="dom-caption-align" title="dom-caption-align"><code>align</code></dfn> IDL
attribute of the <code><a href="tabular-data.html#the-caption-element">caption</a></code> element must
<a href="infrastructure.html#reflect">reflect</a> the content attribute of the same name.</p>
@@ -956,21 +956,21 @@
attribute DOMString <a href="#dom-col-width" title="dom-col-width">width</a>;
};</pre>
- <p>The <dfn id="dom-col-align" title="dom-col-align"><code>align</code></dfn> and <dfn id="dom-col-width" title="dom-col-width"><code>width</code></dfn> DOM attributes of
+ <p>The <dfn id="dom-col-align" title="dom-col-align"><code>align</code></dfn> and <dfn id="dom-col-width" title="dom-col-width"><code>width</code></dfn> IDL attributes of
the <code><a href="tabular-data.html#the-col-element">col</a></code> element must <a href="infrastructure.html#reflect">reflect</a> the
respective content attributes of the same name.</p>
- <p>The <dfn id="dom-col-ch" title="dom-col-ch"><code>ch</code></dfn> DOM attribute
+ <p>The <dfn id="dom-col-ch" title="dom-col-ch"><code>ch</code></dfn> IDL attribute
of the <code><a href="tabular-data.html#the-col-element">col</a></code> element must <a href="infrastructure.html#reflect">reflect</a> the
element's <code title="attr-col-char"><a href="#attr-col-char">char</a></code> content
attribute.</p>
- <p>The <dfn id="dom-col-choff" title="dom-col-chOff"><code>chOff</code></dfn> DOM
+ <p>The <dfn id="dom-col-choff" title="dom-col-chOff"><code>chOff</code></dfn> IDL
attribute of the <code><a href="tabular-data.html#the-col-element">col</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the element's <code title="attr-col-charoff"><a href="#attr-col-charoff">charoff</a></code> content
attribute.</p>
- <p>The <dfn id="dom-col-valign" title="dom-col-vAlign"><code>vAlign</code></dfn> DOM
+ <p>The <dfn id="dom-col-valign" title="dom-col-vAlign"><code>vAlign</code></dfn> IDL
attribute of the <code><a href="tabular-data.html#the-col-element">col</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the element's <code title="attr-col-valign"><a href="#attr-col-valign">valign</a></code> content
attribute.</p>
@@ -985,7 +985,7 @@
attribute DOMString <a href="#dom-dir-compact" title="dom-dir-compact">compact</a>;
};</pre>
- <p>The <dfn id="dom-dir-compact" title="dom-dir-compact"><code>compact</code></dfn> DOM
+ <p>The <dfn id="dom-dir-compact" title="dom-dir-compact"><code>compact</code></dfn> IDL
attribute of the <code><a href="#dir">dir</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the content attribute of the same name.</p>
@@ -994,7 +994,7 @@
attribute DOMString <a href="#dom-div-align" title="dom-div-align">align</a>;
};</pre>
- <p>The <dfn id="dom-div-align" title="dom-div-align"><code>align</code></dfn> DOM
+ <p>The <dfn id="dom-div-align" title="dom-div-align"><code>align</code></dfn> IDL
attribute of the <code><a href="interactive-elements.html#the-div-element">div</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the content attribute of the same name.</p>
@@ -1003,7 +1003,7 @@
attribute DOMString <a href="#dom-dl-compact" title="dom-dl-compact">compact</a>;
};</pre>
- <p>The <dfn id="dom-dl-compact" title="dom-dl-compact"><code>compact</code></dfn> DOM
+ <p>The <dfn id="dom-dl-compact" title="dom-dl-compact"><code>compact</code></dfn> IDL
attribute of the <code><a href="semantics.html#the-dl-element">dl</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the content attribute of the same name.</p>
@@ -1017,7 +1017,7 @@
};</pre>
<p>The <dfn id="dom-font-color" title="dom-font-color"><code>color</code></dfn>,
- <dfn id="dom-font-face" title="dom-font-face"><code>face</code></dfn>, and <dfn id="dom-font-size" title="dom-font-size"><code>size</code></dfn> DOM attributes of
+ <dfn id="dom-font-face" title="dom-font-face"><code>face</code></dfn>, and <dfn id="dom-font-size" title="dom-font-size"><code>size</code></dfn> IDL attributes of
the <code><a href="#font">font</a></code> element must <a href="infrastructure.html#reflect">reflect</a> the
respective content attributes of the same name.</p>
@@ -1026,7 +1026,7 @@
attribute DOMString <a href="#dom-hx-align" title="dom-hx-align">align</a>;
};</pre>
- <p>The <dfn id="dom-hx-align" title="dom-hx-align"><code>align</code></dfn> DOM
+ <p>The <dfn id="dom-hx-align" title="dom-hx-align"><code>align</code></dfn> IDL
attribute of the <code><a href="semantics.html#the-h1-h2-h3-h4-h5-and-h6-elements">h1</a></code>–<code><a href="semantics.html#the-h1-h2-h3-h4-h5-and-h6-elements">h6</a></code> elements must
<a href="infrastructure.html#reflect">reflect</a> the content attribute of the same name.</p>
@@ -1049,7 +1049,7 @@
successful, may then <a href="infrastructure.html#fetch">fetch</a> the resulting <a href="infrastructure.html#absolute-url">absolute
URL</a> and apply the appropriate processing.</p>
- <p>The <dfn id="dom-head-profile" title="dom-head-profile"><code>profile</code></dfn> DOM
+ <p>The <dfn id="dom-head-profile" title="dom-head-profile"><code>profile</code></dfn> IDL
attribute of the <code><a href="semantics.html#the-head-element-0">head</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the content attribute of the same name.</p>
@@ -1061,11 +1061,11 @@
attribute DOMString <a href="#dom-hr-width" title="dom-hr-width">width</a>;
};</pre>
- <p>The <dfn id="dom-hr-align" title="dom-hr-align"><code>align</code></dfn>, <dfn id="dom-hr-size" title="dom-hr-size"><code>size</code></dfn>, and <dfn id="dom-hr-width" title="dom-hr-width"><code>width</code></dfn> DOM attributes of the
+ <p>The <dfn id="dom-hr-align" title="dom-hr-align"><code>align</code></dfn>, <dfn id="dom-hr-size" title="dom-hr-size"><code>size</code></dfn>, and <dfn id="dom-hr-width" title="dom-hr-width"><code>width</code></dfn> IDL attributes of the
<code><a href="semantics.html#the-hr-element">hr</a></code> element must <a href="infrastructure.html#reflect">reflect</a> the respective
content attributes of the same name.</p>
- <p>The <dfn id="dom-hr-noshade" title="dom-hr-noShade"><code>noShade</code></dfn> DOM
+ <p>The <dfn id="dom-hr-noshade" title="dom-hr-noShade"><code>noShade</code></dfn> IDL
attribute of the <code><a href="semantics.html#the-hr-element">hr</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the element's <code title="attr-input-noshade">noshade</code>
content attribute.</p>
@@ -1075,7 +1075,7 @@
attribute DOMString <a href="#dom-html-version" title="dom-html-version">version</a>;
};</pre>
- <p>The <dfn id="dom-html-version" title="dom-html-version"><code>version</code></dfn> DOM
+ <p>The <dfn id="dom-html-version" title="dom-html-version"><code>version</code></dfn> IDL
attribute of the <code><a href="semantics.html#the-html-element-0">html</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the content attribute of the same name.</p>
@@ -1090,26 +1090,26 @@
};</pre>
<p>The <dfn id="dom-iframe-align" title="dom-iframe-align"><code>name</code></dfn> and
- <dfn id="dom-iframe-scrolling" title="dom-iframe-scrolling"><code>scrolling</code></dfn> DOM
+ <dfn id="dom-iframe-scrolling" title="dom-iframe-scrolling"><code>scrolling</code></dfn> IDL
attributes of the <code><a href="text-level-semantics.html#the-iframe-element">iframe</a></code> element must
<a href="infrastructure.html#reflect">reflect</a> the respective content attributes of the same
name.</p>
- <p>The <dfn id="dom-iframe-frameborder" title="dom-iframe-frameBorder"><code>frameBorder</code></dfn> DOM
+ <p>The <dfn id="dom-iframe-frameborder" title="dom-iframe-frameBorder"><code>frameBorder</code></dfn> IDL
attribute of the <code><a href="text-level-semantics.html#the-iframe-element">iframe</a></code> element must
<a href="infrastructure.html#reflect">reflect</a> the element's <code title="attr-iframe-iframeborder">iframeborder</code> content
attribute.</p>
<p>The <dfn id="dom-iframe-longdesc" title="dom-iframe-longDesc"><code>longDesc</code></dfn>
- DOM attribute of the <code><a href="text-level-semantics.html#the-iframe-element">iframe</a></code> element must
+ IDL attribute of the <code><a href="text-level-semantics.html#the-iframe-element">iframe</a></code> element must
<a href="infrastructure.html#reflect">reflect</a> the element's <code title="attr-iframe-longdesc"><a href="#attr-iframe-longdesc">longdesc</a></code> content attribute.</p>
- <p>The <dfn id="dom-iframe-marginheight" title="dom-iframe-marginHeight"><code>marginHeight</code></dfn> DOM
+ <p>The <dfn id="dom-iframe-marginheight" title="dom-iframe-marginHeight"><code>marginHeight</code></dfn> IDL
attribute of the <code><a href="text-level-semantics.html#the-iframe-element">iframe</a></code> element must
<a href="infrastructure.html#reflect">reflect</a> the element's <code title="attr-iframe-marginheight"><a href="#attr-iframe-marginheight">marginheight</a></code> content
attribute.</p>
- <p>The <dfn id="dom-iframe-marginwidth" title="dom-iframe-marginWidth"><code>marginWidth</code></dfn> DOM
+ <p>The <dfn id="dom-iframe-marginwidth" title="dom-iframe-marginWidth"><code>marginWidth</code></dfn> IDL
attribute of the <code><a href="text-level-semantics.html#the-iframe-element">iframe</a></code> element must
<a href="infrastructure.html#reflect">reflect</a> the element's <code title="attr-iframe-marginwidth"><a href="#attr-iframe-marginwidth">marginwidth</a></code> content
attribute.</p>
@@ -1124,11 +1124,11 @@
attribute unsigned long <a href="#dom-img-vspace" title="dom-img-vspace">vspace</a>;
};</pre>
- <p>The <dfn id="dom-img-name" title="dom-img-name"><code>name</code></dfn>, <dfn id="dom-img-align" title="dom-img-align"><code>align</code></dfn>, <dfn id="dom-img-border" title="dom-img-border"><code>border</code></dfn>, <dfn id="dom-img-hspace" title="dom-img-hspace"><code>hspace</code></dfn>, and <dfn id="dom-img-vspace" title="dom-img-vspace"><code>vspace</code></dfn> DOM attributes of
+ <p>The <dfn id="dom-img-name" title="dom-img-name"><code>name</code></dfn>, <dfn id="dom-img-align" title="dom-img-align"><code>align</code></dfn>, <dfn id="dom-img-border" title="dom-img-border"><code>border</code></dfn>, <dfn id="dom-img-hspace" title="dom-img-hspace"><code>hspace</code></dfn>, and <dfn id="dom-img-vspace" title="dom-img-vspace"><code>vspace</code></dfn> IDL attributes of
the <code><a href="text-level-semantics.html#the-img-element">img</a></code> element must <a href="infrastructure.html#reflect">reflect</a> the
respective content attributes of the same name.</p>
- <p>The <dfn id="dom-img-longdesc" title="dom-img-longDesc"><code>longDesc</code></dfn> DOM
+ <p>The <dfn id="dom-img-longdesc" title="dom-img-longDesc"><code>longDesc</code></dfn> IDL
attribute of the <code><a href="text-level-semantics.html#the-img-element">img</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the element's <code title="attr-img-longdesc"><a href="#attr-img-longdesc">longdesc</a></code> content
attribute.</p>
@@ -1139,11 +1139,11 @@
attribute DOMString <a href="#dom-input-usemap" title="dom-input-useMap">useMap</a>;
};</pre>
- <p>The <dfn id="dom-input-align" title="dom-input-align"><code>align</code></dfn> DOM
+ <p>The <dfn id="dom-input-align" title="dom-input-align"><code>align</code></dfn> IDL
attribute of the <code><a href="forms.html#the-input-element">input</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the content attribute of the same name.</p>
- <p>The <dfn id="dom-input-usemap" title="dom-input-useMap"><code>useMap</code></dfn> DOM
+ <p>The <dfn id="dom-input-usemap" title="dom-input-useMap"><code>useMap</code></dfn> IDL
attribute of the <code><a href="forms.html#the-input-element">input</a></code> element must
<a href="infrastructure.html#reflect">reflect</a> the element's <code title="attr-input-usemap"><a href="#attr-input-usemap">usemap</a></code> content attribute.</p>
@@ -1152,7 +1152,7 @@
attribute DOMString <a href="#dom-legend-align" title="dom-legend-align">align</a>;
};</pre>
- <p>The <dfn id="dom-legend-align" title="dom-legend-align"><code>align</code></dfn> DOM
+ <p>The <dfn id="dom-legend-align" title="dom-legend-align"><code>align</code></dfn> IDL
attribute of the <code><a href="interactive-elements.html#the-legend-element">legend</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the content attribute of the same name.</p>
@@ -1161,7 +1161,7 @@
attribute DOMString <a href="#dom-li-type" title="dom-li-type">type</a>;
};</pre>
- <p>The <dfn id="dom-li-type" title="dom-li-type"><code>type</code></dfn> DOM
+ <p>The <dfn id="dom-li-type" title="dom-li-type"><code>type</code></dfn> IDL
attribute of the <code><a href="semantics.html#the-li-element">li</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the content attribute of the same name.</p>
@@ -1173,7 +1173,7 @@
};</pre>
<p>The <dfn id="dom-link-charset" title="dom-link-charset"><code>charset</code></dfn>,
- <dfn id="dom-link-rev" title="dom-link-rev"><code>rev</code></dfn>, and <dfn id="dom-link-target" title="dom-link-target"><code>target</code></dfn> DOM attributes of
+ <dfn id="dom-link-rev" title="dom-link-rev"><code>rev</code></dfn>, and <dfn id="dom-link-target" title="dom-link-target"><code>target</code></dfn> IDL attributes of
the <code><a href="semantics.html#the-link-element">link</a></code> element must <a href="infrastructure.html#reflect">reflect</a> the
respective content attributes of the same name.</p>
@@ -1185,7 +1185,7 @@
attribute DOMString <a href="#dom-menu-compact" title="dom-menu-compact">compact</a>;
};</pre>
- <p>The <dfn id="dom-menu-compact" title="dom-menu-compact"><code>compact</code></dfn> DOM
+ <p>The <dfn id="dom-menu-compact" title="dom-menu-compact"><code>compact</code></dfn> IDL
attribute of the <code><a href="interactive-elements.html#menus">menu</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the content attribute of the same name.</p>
@@ -1228,7 +1228,7 @@
</div>
- <p>The <dfn id="dom-meta-scheme" title="dom-meta-scheme"><code>scheme</code></dfn> DOM
+ <p>The <dfn id="dom-meta-scheme" title="dom-meta-scheme"><code>scheme</code></dfn> IDL
attribute of the <code><a href="semantics.html#meta">meta</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the content attribute of the same name.</p>
@@ -1246,16 +1246,16 @@
attribute unsigned long <a href="#dom-object-vspace" title="dom-object-vspace">vspace</a>;
};</pre>
- <p>The <dfn id="dom-object-align" title="dom-object-align"><code>align</code></dfn>, <dfn id="dom-object-archive" title="dom-object-archive"><code>archive</code></dfn>, <dfn id="dom-object-border" title="dom-object-border"><code>border</code></dfn>, <dfn id="dom-object-code" title="dom-object-code"><code>code</code></dfn>, <dfn id="dom-object-declare" title="dom-object-declare"><code>declare</code></dfn>, <dfn id="dom-object-hspace" title="dom-object-hspace"><code>hspace</code></dfn>, <dfn id="dom-object-standby" title="dom-object-standby"><code>standby</code></dfn>, and <dfn id="dom-object-vspace" title="dom-object-vspace"><code>vspace</code></dfn> DOM attributes
+ <p>The <dfn id="dom-object-align" title="dom-object-align"><code>align</code></dfn>, <dfn id="dom-object-archive" title="dom-object-archive"><code>archive</code></dfn>, <dfn id="dom-object-border" title="dom-object-border"><code>border</code></dfn>, <dfn id="dom-object-code" title="dom-object-code"><code>code</code></dfn>, <dfn id="dom-object-declare" title="dom-object-declare"><code>declare</code></dfn>, <dfn id="dom-object-hspace" title="dom-object-hspace"><code>hspace</code></dfn>, <dfn id="dom-object-standby" title="dom-object-standby"><code>standby</code></dfn>, and <dfn id="dom-object-vspace" title="dom-object-vspace"><code>vspace</code></dfn> IDL attributes
of the <code><a href="text-level-semantics.html#the-object-element">object</a></code> element must <a href="infrastructure.html#reflect">reflect</a> the
respective content attributes of the same name.</p>
- <p>The <dfn id="dom-object-codebase" title="dom-object-codeBase"><code>codeBase</code></dfn> DOM
+ <p>The <dfn id="dom-object-codebase" title="dom-object-codeBase"><code>codeBase</code></dfn> IDL
attribute of the <code><a href="text-level-semantics.html#the-object-element">object</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the element's <code title="attr-object-codebase"><a href="#attr-object-codebase">codebase</a></code> content
attribute.</p>
- <p>The <dfn id="dom-object-codetype" title="dom-object-codeType"><code>codeType</code></dfn> DOM
+ <p>The <dfn id="dom-object-codetype" title="dom-object-codeType"><code>codeType</code></dfn> IDL
attribute of the <code><a href="text-level-semantics.html#the-object-element">object</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the element's <code title="attr-object-codetype"><a href="#attr-object-codetype">codetype</a></code> content
attribute.</p>
@@ -1267,7 +1267,7 @@
};</pre>
<p>The <dfn id="dom-ol-compact" title="dom-ol-compact"><code>compact</code></dfn> and
- <dfn id="dom-ol-type" title="dom-ol-type"><code>type</code></dfn> DOM attributes of
+ <dfn id="dom-ol-type" title="dom-ol-type"><code>type</code></dfn> IDL attributes of
the <code><a href="semantics.html#the-ol-element">ol</a></code> element must <a href="infrastructure.html#reflect">reflect</a> the respective
content attributes of the same name.</p>
@@ -1276,7 +1276,7 @@
attribute DOMString <a href="#dom-p-align" title="dom-p-align">align</a>;
};</pre>
- <p>The <dfn id="dom-p-align" title="dom-p-align"><code>align</code></dfn> DOM
+ <p>The <dfn id="dom-p-align" title="dom-p-align"><code>align</code></dfn> IDL
attribute of the <code><a href="semantics.html#the-p-element">p</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the content attribute of the same name.</p>
@@ -1286,12 +1286,12 @@
attribute DOMString <a href="#dom-param-valuetype" title="dom-param-valueType">valueType</a>;
};</pre>
- <p>The <dfn id="dom-param-type" title="dom-param-type"><code>type</code></dfn> DOM
+ <p>The <dfn id="dom-param-type" title="dom-param-type"><code>type</code></dfn> IDL
attribute of the <code><a href="text-level-semantics.html#the-param-element">param</a></code> element must
<a href="infrastructure.html#reflect">reflect</a> the content attribute of the same name.</p>
<p>The <dfn id="dom-param-valuetype" title="dom-param-valueType"><code>valueType</code></dfn>
- DOM attribute of the <code><a href="text-level-semantics.html#the-param-element">param</a></code> element must
+ IDL attribute of the <code><a href="text-level-semantics.html#the-param-element">param</a></code> element must
<a href="infrastructure.html#reflect">reflect</a> the element's <code title="attr-param-valuetype"><a href="#attr-param-valuetype">valuetype</a></code> content attribute.</p>
<hr><p>User agents must treat <code><a href="#plaintext">plaintext</a></code> elements in a
@@ -1302,7 +1302,7 @@
attribute unsigned long <a href="#dom-pre-width" title="dom-pre-width">width</a>;
};</pre>
- <p>The <dfn id="dom-pre-width" title="dom-pre-width"><code>width</code></dfn> DOM
+ <p>The <dfn id="dom-pre-width" title="dom-pre-width"><code>width</code></dfn> IDL
attribute of the <code><a href="semantics.html#the-pre-element">pre</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the content attribute of the same name.</p>
@@ -1313,7 +1313,7 @@
};</pre>
<p>The <dfn id="dom-script-event" title="dom-script-event"><code>event</code></dfn> and
- <dfn id="dom-script-htmlfor" title="dom-script-htmlFor"><code>htmlFor</code></dfn> DOM
+ <dfn id="dom-script-htmlfor" title="dom-script-htmlFor"><code>htmlFor</code></dfn> IDL
attributes of the <code><a href="semantics.html#script">script</a></code> element must return the empty
string on getting, and do nothing on setting.</p>
@@ -1330,21 +1330,21 @@
attribute DOMString <a href="#dom-table-width" title="dom-table-width">width</a>;
};</pre>
- <p>The <dfn id="dom-table-align" title="dom-table-align"><code>align</code></dfn>, <dfn id="dom-table-border" title="dom-table-border"><code>border</code></dfn>, <dfn id="dom-table-frame" title="dom-table-frame"><code>frame</code></dfn>, <dfn id="dom-table-rules" title="dom-table-rules"><code>rules</code></dfn>, <dfn id="dom-table-summary" title="dom-table-summary"><code>summary</code></dfn>, and <dfn id="dom-table-width" title="dom-table-width"><code>width</code></dfn>, DOM attributes of
+ <p>The <dfn id="dom-table-align" title="dom-table-align"><code>align</code></dfn>, <dfn id="dom-table-border" title="dom-table-border"><code>border</code></dfn>, <dfn id="dom-table-frame" title="dom-table-frame"><code>frame</code></dfn>, <dfn id="dom-table-rules" title="dom-table-rules"><code>rules</code></dfn>, <dfn id="dom-table-summary" title="dom-table-summary"><code>summary</code></dfn>, and <dfn id="dom-table-width" title="dom-table-width"><code>width</code></dfn>, IDL attributes of
the <code><a href="tabular-data.html#the-table-element">table</a></code> element must <a href="infrastructure.html#reflect">reflect</a> the
respective content attributes of the same name.</p>
- <p>The <dfn id="dom-table-bgcolor" title="dom-table-bgColor"><code>bgColor</code></dfn> DOM
+ <p>The <dfn id="dom-table-bgcolor" title="dom-table-bgColor"><code>bgColor</code></dfn> IDL
attribute of the <code><a href="tabular-data.html#the-table-element">table</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the element's <code title="attr-table-bgcolor"><a href="#attr-table-bgcolor">bgcolor</a></code> content
attribute.</p>
- <p>The <dfn id="dom-table-cellpadding" title="dom-table-cellPadding"><code>cellPadding</code></dfn> DOM
+ <p>The <dfn id="dom-table-cellpadding" title="dom-table-cellPadding"><code>cellPadding</code></dfn> IDL
attribute of the <code><a href="tabular-data.html#the-table-element">table</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the element's <code title="attr-table-cellpadding"><a href="#attr-table-cellpadding">cellpadding</a></code> content
attribute.</p>
- <p>The <dfn id="dom-table-cellspacing" title="dom-table-cellSpacing"><code>cellSpacing</code></dfn> DOM
+ <p>The <dfn id="dom-table-cellspacing" title="dom-table-cellSpacing"><code>cellSpacing</code></dfn> IDL
attribute of the <code><a href="tabular-data.html#the-table-element">table</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the element's <code title="attr-table-cellspacing"><a href="#attr-table-cellspacing">cellspacing</a></code> content
attribute.</p>
@@ -1357,22 +1357,22 @@
attribute DOMString <a href="#dom-tbody-valign" title="dom-tbody-vAlign">vAlign</a>;
};</pre>
- <p>The <dfn id="dom-tbody-align" title="dom-tbody-align"><code>align</code></dfn> DOM
+ <p>The <dfn id="dom-tbody-align" title="dom-tbody-align"><code>align</code></dfn> IDL
attribute of the <code><a href="tabular-data.html#the-tbody-element">tbody</a></code>, <code><a href="tabular-data.html#the-thead-element">thead</a></code>, and
<code><a href="tabular-data.html#the-tfoot-element">tfoot</a></code> elements must <a href="infrastructure.html#reflect">reflect</a> the content
attribute of the same name.</p>
- <p>The <dfn id="dom-tbody-ch" title="dom-tbody-ch"><code>ch</code></dfn> DOM attribute
+ <p>The <dfn id="dom-tbody-ch" title="dom-tbody-ch"><code>ch</code></dfn> IDL attribute
of the <code><a href="tabular-data.html#the-tbody-element">tbody</a></code>, <code><a href="tabular-data.html#the-thead-element">thead</a></code>, and
<code><a href="tabular-data.html#the-tfoot-element">tfoot</a></code> elements must <a href="infrastructure.html#reflect">reflect</a> the elements'
<code title="attr-tbody-char"><a href="#attr-tbody-char">char</a></code> content attributes.</p>
- <p>The <dfn id="dom-tbody-choff" title="dom-tbody-chOff"><code>chOff</code></dfn> DOM
+ <p>The <dfn id="dom-tbody-choff" title="dom-tbody-chOff"><code>chOff</code></dfn> IDL
attribute of the <code><a href="tabular-data.html#the-tbody-element">tbody</a></code>, <code><a href="tabular-data.html#the-thead-element">thead</a></code>, and
<code><a href="tabular-data.html#the-tfoot-element">tfoot</a></code> elements must <a href="infrastructure.html#reflect">reflect</a> the elements'
<code title="attr-tbody-charoff"><a href="#attr-tbody-charoff">charoff</a></code> content attributes.</p>
- <p>The <dfn id="dom-tbody-valign" title="dom-tbody-vAlign"><code>vAlign</code></dfn> DOM
+ <p>The <dfn id="dom-tbody-valign" title="dom-tbody-vAlign"><code>vAlign</code></dfn> IDL
attribute of the <code><a href="tabular-data.html#the-tbody-element">tbody</a></code>, <code><a href="tabular-data.html#the-thead-element">thead</a></code>, and
<code><a href="tabular-data.html#the-tfoot-element">tfoot</a></code> element must <a href="infrastructure.html#reflect">reflect</a> the elements'
<code title="attr-tbody-valign"><a href="#attr-tbody-valign">valign</a></code> content
@@ -1392,28 +1392,28 @@
attribute DOMString <a href="#dom-td-th-width" title="dom-td/th-width">width</a>;
};</pre>
- <p>The <dfn id="dom-td-th-abbr" title="dom-td/th-abbr"><code>abbr</code></dfn>, <dfn id="dom-td-th-align" title="dom-td/th-align"><code>align</code></dfn>, <dfn id="dom-td-th-axis" title="dom-td/th-axis"><code>axis</code></dfn>, <dfn id="dom-td-th-height" title="dom-td/th-height"><code>height</code></dfn>, and <dfn id="dom-td-th-width" title="dom-td/th-width"><code>width</code></dfn> DOM attributes of
+ <p>The <dfn id="dom-td-th-abbr" title="dom-td/th-abbr"><code>abbr</code></dfn>, <dfn id="dom-td-th-align" title="dom-td/th-align"><code>align</code></dfn>, <dfn id="dom-td-th-axis" title="dom-td/th-axis"><code>axis</code></dfn>, <dfn id="dom-td-th-height" title="dom-td/th-height"><code>height</code></dfn>, and <dfn id="dom-td-th-width" title="dom-td/th-width"><code>width</code></dfn> IDL attributes of
the <code><a href="tabular-data.html#the-td-element">td</a></code> and <code><a href="tabular-data.html#the-th-element">th</a></code> elements must
<a href="infrastructure.html#reflect">reflect</a> the respective content attributes of the same
name.</p>
- <p>The <dfn id="dom-td-th-bgcolor" title="dom-td/th-bgColor"><code>bgColor</code></dfn> DOM
+ <p>The <dfn id="dom-td-th-bgcolor" title="dom-td/th-bgColor"><code>bgColor</code></dfn> IDL
attribute of the <code><a href="tabular-data.html#the-td-element">td</a></code> and <code><a href="tabular-data.html#the-th-element">th</a></code> elements must
<a href="infrastructure.html#reflect">reflect</a> the elements' <code title="attr-td/th-bgcolor"><a href="#attr-td-th-bgcolor">bgcolor</a></code> content attributes.</p>
- <p>The <dfn id="dom-td-th-ch" title="dom-td/th-ch"><code>ch</code></dfn> DOM
+ <p>The <dfn id="dom-td-th-ch" title="dom-td/th-ch"><code>ch</code></dfn> IDL
attribute of the <code><a href="tabular-data.html#the-td-element">td</a></code> and <code><a href="tabular-data.html#the-th-element">th</a></code> elements must
<a href="infrastructure.html#reflect">reflect</a> the elements' <code title="attr-td/th-char"><a href="#attr-td-th-char">char</a></code> content attributes.</p>
- <p>The <dfn id="dom-td-th-choff" title="dom-td/th-chOff"><code>chOff</code></dfn> DOM
+ <p>The <dfn id="dom-td-th-choff" title="dom-td/th-chOff"><code>chOff</code></dfn> IDL
attribute of the <code><a href="tabular-data.html#the-td-element">td</a></code> and <code><a href="tabular-data.html#the-th-element">th</a></code> elements must
<a href="infrastructure.html#reflect">reflect</a> the elements' <code title="attr-td/th-charoff"><a href="#attr-td-th-charoff">charoff</a></code> content attributes.</p>
- <p>The <dfn id="dom-td-th-nowrap" title="dom-td/th-noWrap"><code>noWrap</code></dfn> DOM
+ <p>The <dfn id="dom-td-th-nowrap" title="dom-td/th-noWrap"><code>noWrap</code></dfn> IDL
attribute of the <code><a href="tabular-data.html#the-td-element">td</a></code> and <code><a href="tabular-data.html#the-th-element">th</a></code> elements must
<a href="infrastructure.html#reflect">reflect</a> the elements' <code title="attr-td/th-nowrap"><a href="#attr-td-th-nowrap">nowrap</a></code> content attributes.</p>
- <p>The <dfn id="dom-td-th-valign" title="dom-td/th-vAlign"><code>vAlign</code></dfn> DOM
+ <p>The <dfn id="dom-td-th-valign" title="dom-td/th-vAlign"><code>vAlign</code></dfn> IDL
attribute of the <code><a href="tabular-data.html#the-td-element">td</a></code> and <code><a href="tabular-data.html#the-th-element">th</a></code> element must
<a href="infrastructure.html#reflect">reflect</a> the elements' <code title="attr-td/th-valign"><a href="#attr-td-th-valign">valign</a></code> content attributes.</p>
@@ -1426,25 +1426,25 @@
attribute DOMString <a href="#dom-tr-valign" title="dom-tr-vAlign">vAlign</a>;
};</pre>
- <p>The <dfn id="dom-tr-align" title="dom-tr-align"><code>align</code></dfn> DOM
+ <p>The <dfn id="dom-tr-align" title="dom-tr-align"><code>align</code></dfn> IDL
attribute of the <code><a href="tabular-data.html#the-tr-element">tr</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the content attribute of the same name.</p>
- <p>The <dfn id="dom-tr-bgcolor" title="dom-tr-bgColor"><code>bgColor</code></dfn> DOM
+ <p>The <dfn id="dom-tr-bgcolor" title="dom-tr-bgColor"><code>bgColor</code></dfn> IDL
attribute of the <code><a href="tabular-data.html#the-tr-element">tr</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the element's <code title="attr-tr-bgcolor"><a href="#attr-tr-bgcolor">bgcolor</a></code> content
attribute.</p>
- <p>The <dfn id="dom-tr-ch" title="dom-tr-ch"><code>ch</code></dfn> DOM attribute of
+ <p>The <dfn id="dom-tr-ch" title="dom-tr-ch"><code>ch</code></dfn> IDL attribute of
the <code><a href="tabular-data.html#the-tr-element">tr</a></code> element must <a href="infrastructure.html#reflect">reflect</a> the element's
<code title="attr-tr-char"><a href="#attr-tr-char">char</a></code> content attribute.</p>
- <p>The <dfn id="dom-tr-choff" title="dom-tr-chOff"><code>chOff</code></dfn> DOM
+ <p>The <dfn id="dom-tr-choff" title="dom-tr-chOff"><code>chOff</code></dfn> IDL
attribute of the <code><a href="tabular-data.html#the-tr-element">tr</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the element's <code title="attr-tr-charoff"><a href="#attr-tr-charoff">charoff</a></code> content
attribute.</p>
- <p>The <dfn id="dom-tr-valign" title="dom-tr-vAlign"><code>vAlign</code></dfn> DOM
+ <p>The <dfn id="dom-tr-valign" title="dom-tr-vAlign"><code>vAlign</code></dfn> IDL
attribute of the <code><a href="tabular-data.html#the-tr-element">tr</a></code> element must <a href="infrastructure.html#reflect">reflect</a>
the element's <code title="attr-tr-valign"><a href="#attr-tr-valign">valign</a></code> content
attribute.</p>
@@ -1456,7 +1456,7 @@
};</pre>
<p>The <dfn id="dom-ul-compact" title="dom-ul-compact"><code>compact</code></dfn> and
- <dfn id="dom-ul-type" title="dom-ul-type"><code>type</code></dfn> DOM attributes of
+ <dfn id="dom-ul-type" title="dom-ul-type"><code>type</code></dfn> IDL attributes of
the <code><a href="semantics.html#the-ul-element">ul</a></code> element must <a href="infrastructure.html#reflect">reflect</a> the respective
content attributes of the same name.</p>
@@ -1486,7 +1486,7 @@
<code><a href="#frameset">frameset</a></code> element, the attributes must instead return
the empty string on getting and do nothing on setting.</p>
- <table><thead><tr><th> DOM attribute
+ <table><thead><tr><th> IDL attribute
</th><th> Content attribute
</th></tr></thead><tbody><tr><td><dfn id="dom-document-fgcolor" title="dom-document-fgColor"><code>fgColor</code></dfn>
</td><td><code title="attr-body-text"><a href="#attr-body-text">text</a></code>
Index: toc-status.html
===================================================================
RCS file: /sources/public/html5/spec/toc-status.html,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -d -r1.68 -r1.69
--- toc-status.html 30 Aug 2009 00:36:31 -0000 1.68
+++ toc-status.html 31 Aug 2009 02:36:28 -0000 1.69
@@ -171,8 +171,8 @@
<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/edit-section.html?section=common-dom-interfaces" class="status WD">WD</a> <a href="../spec/#common-dom-interfaces">2.8
Common DOM interfaces</a> <span class="id">(common-dom-interfaces)</span>
<ol>
-<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/add-section.html?section=reflecting-content-attributes-in-dom-attributes" class="status ADD">ADD</a> <a href="../spec/#reflecting-content-attributes-in-dom-attributes">2.8.1 Reflecting content attributes in DOM
-attributes</a> <span class="id">(reflecting-content-attributes-in-dom-attributes)</span></li>
+<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/add-section.html?section=reflecting-content-attributes-in-idl-attributes" class="status ADD">ADD</a> <a href="../spec/#reflecting-content-attributes-in-idl-attributes">2.8.1 Reflecting content attributes in IDL
+attributes</a> <span class="id">(reflecting-content-attributes-in-idl-attributes)</span></li>
<li><a target="_blank" href="http://www.whatwg.org/specs/web-apps/current-work/add-section.html?section=collections-0" class="status ADD">ADD</a> <a href="../spec/#collections-0">2.8.2
Collections</a> <span class="id">(collections-0)</span>
<ol>
Index: named-character-references.html
===================================================================
RCS file: /sources/public/html5/spec/named-character-references.html,v
retrieving revision 1.184
retrieving revision 1.185
diff -u -d -r1.184 -r1.185
--- named-character-references.html 30 Aug 2009 21:46:30 -0000 1.184
+++ named-character-references.html 31 Aug 2009 02:36:27 -0000 1.185
@@ -182,7 +182,7 @@
<a href="syntax.html">← 9 The HTML syntax</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="the-xhtml-syntax.html">10 The XHTML syntax →</a>
- </nav><p>This is revision 1.2891.</p>
+ </nav><p>This is revision 1.2893.</p>
<h3 id="named-character-references"><span class="secno">9.6 </span><dfn>Named character references</dfn></h3><p>This table lists the character reference names that are supported
Index: references.html
===================================================================
RCS file: /sources/public/html5/spec/references.html,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -d -r1.191 -r1.192
--- references.html 30 Aug 2009 21:46:30 -0000 1.191
+++ references.html 31 Aug 2009 02:36:27 -0000 1.192
@@ -182,7 +182,7 @@
<a href="index.html">← Index</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="acknowledgements.html">Acknowledgements →</a>
- </nav><p>This is revision 1.2891.</p>
+ </nav><p>This is revision 1.2893.</p>
<h2 class="no-num" id="references">References</h2><p class="XXX annotation"><b>Status: </b><i>First draft</i></p><!--REFS--><p>All references are normative unless marked "Non-normative".</p><dl><dt id="refsABNF">[ABNF]</dt>
Index: fragment-links.js
===================================================================
RCS file: /sources/public/html5/spec/fragment-links.js,v
retrieving revision 1.46
retrieving revision 1.47
diff -u -d -r1.46 -r1.47
--- fragment-links.js 30 Aug 2009 20:26:25 -0000 1.46
+++ fragment-links.js 31 Aug 2009 02:36:27 -0000 1.47
@@ -1,4 +1,4 @@
-var fragment_links = { 'concept-appcache-pending-masters':'offline','attr-meter-high':'text-level-semantics','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','dom-context-2d-putimagedata':'the-canvas-element','attr-fs-method-delete-keyword':'forms','concept-appcache-cache':'offline','dom-source-media':'video','htmlfieldsetelement':'forms','handler-window-onblur':'browsers','dom-meter-optimum':'text-level-semantics','the-root-element':'semantics','scriptTag':'syntax','command-facet-type':'interactive-elements','md-vcard-type-adr-home':'microdata','a-browsing-context-is-discarded':'browsers','concept-http-equivalent':'infrastructure','definitions-2':'editing','ports-and-garbage-collection':'comms','dom-area-rel':'the-canvas-element','concept-slots':'tabular-data','dom-command-icon':'interactive-elements','valid-non-negaive-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','md-vcard-label':'microdata','refsRFC1922':'references','activation':'editing','header-and-data-cell-semantics':'tabular-data','create-a-script':'browsers','the-br-element':'semantics','case-sensitivity-and-string-comparison':'infrastructure','when-a-script-completes-loading':'semantics','namespaces':'syntax','command-redo':'editing','attr-meter-value':'text-level-semantics','dom-style-disabled':'semantics','attr-media-src':'video','special':'syntax','application-cache-update-process':'offline','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-cnvas-element','fire-loadedmetadata':'video','dom-htmlallcollection-length':'infrastructure','dom-messagechannel':'comms','attr-iframe-longdesc':'obsolete','attr-input-usemap':'obsolete','dom-tr-deletecell':'tabular-data','alternate-style-sheets':'semantics','dom-table-deletetfoot':'tabular-data','concept-appcache-fallback-ns':'offline','posting-messages':'comms','dom-table-thead':'tabular-data','attr-meta-http-equiv-content-language':'semantics','the-maxlength-attribute':'forms','concept-uda-input':'infrastructure','resetting-a-form':'forms','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':'browsers','attr-hr-align':'obsolete','custom-handlers':'browsers','non-conforming-features':'obsolete','attr-textarea-wrap-soft':'forms','md-vcard-tel-value':'microdata','parse-error':'syntax','dom-datatransfer-fles':'editing','dom-select-options':'forms','link-type-next':'history','concept-fe-disabled':'forms','dom-object-border':'obsolete','dom-feature-strings':'infrastructure','predefined-property-name':'microdata','quirks-mode':'dom','character-encodings-0':'infrastructure','root-element':'infrastructure','path':'the-canvas-element','dom-table-bgcolor':'obsolete','attr-link-href':'semantics','spelling-and-grammar-checking':'editing','bogus-comment-state':'syntax','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','canvaspattern':'the-canvas-element','original-insertion-mode':'syntax','obtain-a-physical-form':'the-xhtml-syntax','syntax-escape-end':'syntax','link-type-external':'history','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','dom-context-2d-textbaseline-top':'the-canvas-element','attr-object-align':'obsolete','u':'obsolete','dom-textarea-rows':'forms','dom-tbody-rows':'tabular-data','dom-video-videoheight':'video','relationship-to-xhtml1':'introduction','dom-form-reset':'forms','link-type-index':'history','dom-frame-scrolling':'obsolete','dom-img-width':'text-level-semantics','fire-a-simple-event':'browsers','browsing-the-web':'history','encoding-microdata':'microdata','assigned-access-key':'editing','attr-fae-form':'forms','refsDOMRANGE':'references','dom-properties':'microdata','dom-area-alt':'the-canvas-element','dom-progress-position':'text-level-semantics','html-fragment-serialization-algorithm':'syntax','the-after-after-body-insertion-mode':'syntax','selectors':'the-xhtml-syntax','vcard':'microdata','dom-media-volume':'video','contenteditable-wrapSemantic':'editing','dom-timeranges-end':'video','dom-htmlcolletion-item':'infrastructure','dom-iframe-src':'text-level-semantics','dom-barprop-visible':'browsers','dom-media-paused':'video','dom-context-2d-shadowcolor':'the-canvas-element','attr-tr-bgcolor':'obsolete','the-img-element':'text-level-semantics','dom-context-2d-ispointinpath':'the-canvas-element','url-property-elements':'microdata','exceptions':'infrastructure','the-document-s-domain':'browsers','dom-accesskey':'editing','event-pause':'video','references':'references','valid-browsing-context-name-or-keyword':'browsers','after-attribute-name-state':'syntax','attr-meta-http-equiv-refresh':'semantics','extracting-vevent-data':'microdata','the-dfn-element':'text-level-semantics','text-plain-encoding-algorithm':'forms','dom-input-min':'forms','attr-td-th-bgcolor':'obsolete','md-vcard-n-honorific-prefix':'microdata','comment-end-bang-state':'syntax','dom-image':'text-level-semantics','attr-hr-noshade':'obsolete','attr-form-autocomplete-off-state':'forms','syntax-attributes':'syntax','canvas-context-2d':'the-canas-element','command-facet-checkedstate':'interactive-elements','refsRFC3279':'references','attr-p-align':'obsolete','md-vevent-rrule':'microdata','dom-marquee-scrolldelay':'obsolete','dom-selection-removeallranges':'editing','concept-datetime-digit':'infrastructure','edits-and-paragraphs':'text-level-semantics','handler-onclick':'browsers','typographic-conventions':'introduction','syntax-comments':'syntax','event-appcache-progress':'offline','split-a-string-on-spaces':'infrastructure','unknown-images':'text-level-semantics','dom-body-vlink':'obsolete','list-of-scripts-that-will-execute-asynchronously':'semantics','the-details-element':'interactive-elements','parsing-main-intable':'syntax','dom-htmloptionscollection-remove':'infrastructure','htmldivelement':'interactive-elements','execCommand':'editing','dom-hx-align':'obsolete','dom-context-2d-translate':'the-canvas-element','dom-media-autobuffer':'video','timers':'browsers','meta-description':'semantics','event-handler-attributes':'browsers','valid-simplecolor':'infrastructure','quota_exceeded_err':'infrastructure','the-div-element':'interactive-elements','event-timeupdate':'video','parsing-cache-manifests':'offline','origin':'browsers','poster-frame':'video','handler-onload':'browsers','refsDOMVIEWS':'references','the-progress-element-0':'the-xhtml-syntax','media-element-event-task-source':'video','md-vcard':'microdata','dom-body-bgcolor':'obsolete','dom-selection-anchoroffset':'editing','htmlmenuelement':'interactive-elements','hasfeature':'infrastructure','dom-marquee-truespeed':'obsolete','scripting-1':'semantics','scripting-0':'infrastructure','attr-input-alt':'forms','handler-onmouseout':'browsers','concept-input-min':'forms','attr-marquee-direction-down':'obsolete','writing':'syntax','list-of-active-intervals':'browsers','edits':'text-level-semantics','relaxing-the-same-origin-restriction':'browsers','history-0':'history','history-1':'introduction','attr-marquee-behavior-scroll':'obsolete','weeks':'infrastructure','create-a-new-messageport-object':'cmms','dom-input-required':'forms','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','shadows':'the-canvas-element','represents':'the-xhtml-syntax','md-vevent-resources':'microdata','url-hostport':'infrastructure','dom-basefont-size':'obsolete','concept-input-min-zero':'forms','handler-window-onmessage':'browsers','dom-htmlpropertycollection-item':'infrastructure','url-host-specific':'infrastructure','attr-base-href':'semantics','dom-media-muted':'video','command-insertorderedlist':'editing','command-unlink':'editing','fire-a-click-event':'browsers','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','dom-messageport-start':'comms','attr-textarea-readonly':'forms','refsCARMOD':'references','dom-subject':'microdata','typed-items':'microdata','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':'browsers','sandboxLinks':'history','standard-metadata-names':'semantics','handler-appcache-onerror':'offline','attr-meta-http-equiv-default-style':'semantics','generic-task-sources':'browsers','dom-input-readonly':'forms','concept-input-step':'forms','default-media':'semantics','dom-li-type':'obsolete','dom-area-search':'the-canvas-element','refsRFC3548':'references','html-elements':'infrastructure','refsWEBLINK':'references','refsRFC2388':'references','set-the-document-s-address':'history','object-plugin':'text-level-semantics','valid-e-mail-address-list':'forms','r1':'tabula-data','limited-quirks-mode':'dom','attr-fe-maxlength':'forms','xpath-1.0-processors':'embedded-content-0','md-vcard-fn':'microdata','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','extracting-a-vcard':'microdata','concept-spellcheck-default-true':'editing','refsRFC1557':'references','rank':'semantics','dom-context-2d-linejoin':'the-canvas-element','the-input-element':'forms','valid-global-date-and-time-string':'infrastructure','the-initial-insertion-mode':'syntax','writing-xhtml-documents':'the-xhtml-syntax','parsing-main-inbody':'syntax','navigator':'browsers','dom-document-bgcolor':'obsolete','link-type-help':'history','dom-area-hash':'the-canvas-element','set-of-comma-separated-tokens':'infrastructure','parsing-main-afterframeset':'syntax','refsRFC4770':'references','security-2':'rowsers','dom-img-height':'text-level-semantics','link-type-author':'history','handler-ondurationchange':'browsers','attr-media-controls':'video','htmlmetaelement':'semantics','dom-undomanager-item':'editing','attr-script-charset':'semantics','range-state':'forms','pre-click-activation-steps':'embedded-content-0','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','dom-marquee-scrollamount':'obsolete','dom-select-length':'forms','in-a-document':'infrastructure','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','form-element-pointer':'syntax','dom-textarea-maxlength':'forms','error-codes':'video','dom-input-valueasdate':'forms','navigate':'history','syntax-ambiguous-mpersand':'syntax','ascii-serialization-of-an-origin':'browsers','submit-delete-action':'forms','top-level-browsing-context':'browsers','simple-color':'infrastructure','attr-button-value':'forms','parse-a-url':'infrastructure','navigatorabilities':'browsers','link-type-nofollow':'history','event-drag':'editing','dom-tbody-choff':'obsolete','handler-onfocus':'browsers','read-image':'history','inuse_attribute_err':'infrastructure','attr-object-declare':'obsolete','predefined-vocabularies-0':'microdata','refsWIN31J':'references','handler-appcache-oncached':'offline','links-forms-and-navigation':'the-xhtml-syntax','guidance-for-conformance-checkers':'text-level-semantics','the-title-element':'dom','dom-ol-reversed':'semantics','fetching-resources':'infrastructure','attr-dim-height':'the-canvas-element','dom-htmlpropertycollection-length':'infrastructure','dom-undomanager-position':'editing','radio-button-state':'forms','algorithm-for-assigning-header-cells':'tabular-data','the-time-element-0':'the-xhtml-syntax''dom-table-tbodies':'tabular-data','htmlmapelement':'the-canvas-element','concept-time-timezone':'text-level-semantics','dom-document-getselection':'editing','dom':'dom','consumed':'syntax','md-vcard-note':'microdata','the-mark-element':'text-level-semantics','dom-undomanager':'editing','same-origin':'browsers','dom-optgroup-label':'forms','dom-td-th-align':'obsolete','concept-fs-target':'forms','dom-undomanager-clearredo':'editing','not_found_err':'infrastructure','dom-htmloptionscollection-length':'infrastructure','concept-datetime-local':'infrastructure','syntax':'syntax','colors':'infrastructure','outerhtml':'embedded-content-0','md-vcard-categories':'microdata','dom-imagedata-data':'the-canvas-element','handler-onplaying':'browsers','refsPROGRESS':'references','dom-fieldset-elements':'forms','htmloptionscollection':'infrastructure','md-vcard-tel-type':'microdata','radionodelist':'infrastructure','refsXMLNS':'references','refsIEEE754':'references','url-path':'infrastructure','domtokenlist':'infrastructue','escaping-the-vcard-text-string':'microdata','dom-marquee-behavior':'obsolete','dom-img-usemap':'text-level-semantics','event-volumechange':'video','dom-validitystate-typemismatch':'forms','parse-a-date-or-time-string':'infrastructure','htmlstyleelement':'semantics','attr-th-scope-colgroup':'tabular-data','script-s-base-url':'browsers','colors-and-styles':'the-canvas-element','attr-fs-enctype':'forms','tool-bars':'interactive-elements','attr-textarea-wrap-hard':'forms','dom-title-text':'semantics','the-sub-and-sup-elements':'text-level-semantics','dom-selection-addrange':'editing','parsing-main-inselectintable':'syntax','xml-fragment-parsing-algorithm':'the-xhtml-syntax','handler-onkeydown':'browsers','md-vcard-impp-value':'microdata','event-error':'video','selector-invalid':'interactive-elements','refsFILEAPI':'references','dom-marquee-stop':'obsolete','implementation-notes':'editing','concept-item':'microdata','the-col-element':'tabular-data','the-placeholder-attribute':'forms','refsDOMCORE':'reference','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':'browsers','xml-fragment-serialization-algorithm':'the-xhtml-syntax','creating-scripts':'browsers','ensure-there-is-a-subpath':'the-canvas-element','marquee-scroll-interval':'obsolete','attr-tdth-headers':'tabular-data','attr-textarea-wrap-soft-state':'forms','active-document':'browsers','using-the-input-element-to-define-a-command':'interactive-elements','hidden-state':'forms','dom-htmloptionscollection-nameditem':'infrastructure','dom-pre-width':'obsolete','miscellaneous-elements':'interactive-elements','attr-li-value':'semantics','has-an-element-in-scope':'syntax','attr-command-type-keyword-checkbox':'interactive-elements','events':'browsers','newlines':'syntax','md-vcard-typeadr-parcel':'microdata','wrong_document_err':'infrastructure','concept-option-value':'forms','attr-head-profile':'obsolete','handler-appcache-onnoupdate':'offline','dom-keygen-keytype':'forms','md-vcard-rev':'microdata','handler-onloadeddata':'browsers','the-button-element-0':'the-xhtml-syntax','form-associated-element':'forms','dom-spellcheck':'editing','dom-dl-compact':'obsolete','table-model-error':'tabular-data','overview-of-the-parsing-model':'syntax','md-vcard-email-type':'microdata','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','dom-context-2d-arcto':'the-canvas-element','using-the-a-element-to-define-a-command':'interactive-elements','dom-tbody-insertrow':'tabular-data','attr-mete-optimum':'text-level-semantics','refsRFC3023':'references','concept-appcache-explicit':'offline','current-table':'syntax','attr-area-shape-rect':'the-canvas-element','attr-input-value':'forms','radio-button-group':'forms','attr-input-min':'forms','e-mail-state':'forms','gcop-lighter':'the-canvas-element','htmlheadelement':'semantics','matching-a-fallback-namespace':'offline','attr-input-type-url-keyword':'forms','dom-undomanager-clearundo':'editing','unicode-serialization-of-an-origin':'browsers','htmlembedelement':'text-level-semantics','md-vcard-type-tel-work':'microdata','handler-window-onredo':'browsers','dom-map-areas':'the-canvas-element','category-label':'forms','handler-onpause':'browsers','dom-history':'history','character-encoding-declaration':'semantics','concept-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','htmlproertycollection-0':'infrastructure','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','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','dom-canvasgradient-addcolorstop':'the-canvas-element','list-of-active-timeouts':'browsers','md-vcard-nickname':'microdata','attr-hyperlink-media':'history','link-type-prev':'history','dom-area-host':'the-canvas-element','dom-context-2d-measuretext':'the-canvas-element','dom-input-files':'forms','dynamic-changes-to-base-urls':'infrastructure','attr-fs-formmethod':'forms','xml-mime-type':'infratructure','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':'browsers','interactive-media':'the-xhtml-syntax','dom-opener':'browsers','using-the-option-element-to-define-a-command':'interactive-elements','pixel-manipulation':'the-canvas-element','dom-iframe-marginheight':'obsolete','a-link-or-button-containing-nothing-but-the-image':'text-level-semantics','events-fired-during-a-drag-and-drop-action':'editing','dialog-arguments-origin':'browsers','reflecting-content-attributes-in-dom-attributes':'infrastructure','security-with-canvas-elements':'the-canvas-element','rules-for-parsing-integers':'infrastructure','the-status-bar-barprop-object':'browsers','htmlkeygenelement':'forms','md-vevent-status':'microdata','the-body-element':'dom','heading-content':'dom','handler-onprogress':'browsers','syntax-starttag':'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','event-abort':'video','white_space':'infrastructure','using-the-accesskey-attribute-to-define-a-command-on-other-elements':'interactive-elements','handler-onchange':'browsers','dom-script-async':'semantics','event-dragover':'editing','attr-tr-charoff':'obsolete','attr-input-type-time-keyword':'forms','attr-ol-compact':'obsolete','md-vcard-type-tel-fax':'microdata','htmltimeelement':'text-level-semantics','garbage-collection':'infrastructure','the-address-element':'semantics','dom-radionodelist-value':'infrastructure','dom-uda-hash':'infrastructure','item-type':'microdata','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-stte':'forms','unordered-set-of-unique-space-separated-tokens':'infrastructure','scriptingLanguages':'semantics','foster-parent':'syntax','canceled-activation-steps':'embedded-content-0','dom-context-2d-shadowoffsety':'the-canvas-element','concept-script':'browsers','dom-area-media':'the-canvas-element','dom-textarea-input-setselectionrange':'editing','read-plugin':'history','character-reference-data-state':'syntax','background':'introduction','htmlobjectelement':'text-level-semantics','dom-table-frame':'obsolete','scrolling-elements-into-view':'editing','md-vevent-summary':'microdata','case-sensitive':'infrastructure','dom-validitystate-toolong':'forms','running-a-script':'semantics','network_err':'infrastructure','the-marquee-element-0':'the-xhtml-syntax','refsRFC4281':'references','collecting-the-first-vcard-subproperty':'microdata','requirements-for-implementations':'obsolete','security':'dom','dom-table-createcaption':'tabular-data','dom-messageevent-data':'comms','domstringmap-0':'infrastructure','find--number':'infrastructure','dom-beforeunloadevent-returnvalue':'history','concept-appcache-foreign':'offline','paragraphs':'embedded-content-0','dom-iframe-name':'text-level-semantics','refsBOCU1':'references','head-element-pointer':'syntax','category-submit':'forms','attr-embed-type':'text-level-semantics','manually-releasing-the-storage-mutex':'browsers','insert-an-html-element':'syntax','event-dispatch':'forms','dom-contenteditable':'editing','comments':'syntax','dom-contextmenu':'interactive-elements','fire-loadeddata':'video','attr-command-type-state-checkbox':'interactive-elements','list-of-active-formatting-elements':'syntax','nested-browsing-context':'browsers','attr-area-shape-keyword-rectangle':'the-canvas-element','dom-select-selectedindex':'forms','dom-context-2d-miterlimit':'the-canvas-element','phrasing-content':'dom','the-input-element-as-a-range-control':'the-xhtml-syntax','dnd':'editing','attr-marquee-behavior':'obsolete','event-handler-attributes-0':'browsers','attr-meter-min':'text-level-smantics','tag-clouds':'semantics','md-vcard-agent':'microdata','md-vcard-type-impp-personal':'microdata','attr-col-width':'obsolete','md-vevent':'microdata','dom-command-label':'interactive-elements','dom-windowtimers-clearinterval':'browsers','attr-command-disabled':'interactive-elements','strike':'obsolete','handler-ondblclick':'browsers','dom-itemprop':'microdata','event-dragenter':'editing','months':'infrastructure','dom-document-lastmodified':'dom','dom-context-2d-beginpath':'the-canvas-element','dom-source-src':'video','annotations-for-assistive-technology-products':'embedded-content-0','attr-script-type':'semantics','creator-document':'browsers','refsMIMESNIFF':'references','interactions-with-xpath-and-xslt':'embedded-content-0','htmltableelement':'tabular-data','dom-iframe-align':'obsolete','encoding-sniffing-algorithm':'syntax','dom-fs-formmethod':'forms','browsing-context-names':'browsers','dom-tr-cells':'tabular-data','parsing':'syntax','rendering':'the-xhtml-syntax','refsATOM':'references','hander-onwaiting':'browsers','attr-param-type':'obsolete','md-vcard-type-adr-postal':'microdata','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','distinguishing-site-wide-headings-from-page-headings':'semantics','refsBIG5':'references','isindex-0':'obsolete','refsRFC1468':'references','dom-messageevent-origin':'comms','dom-context-2d-quadraticcurveto':'the-canvas-element','attr-area-nohref':'obsolete','suffering-from-an-underflow':'forms','index_size_err':'infrastructure','messageport':'comms','serializing-html-fragments':'syntax','attr-fs-formenctype':'forms','attr-fs-action':'forms','concept-video-intrinsic-height':'video','dom-document-querycommandenabled':'editing','cdata-sections':'sytax','dom-col-ch':'obsolete','strip-line-breaks':'infrastructure','command-facet-hiddenstate':'interactive-elements','syntax-escape':'syntax','md-vcard-title':'microdata','dom-context-2d-globalalpha':'the-canvas-element','event-handler-attributes-on-elements-document-objects-and-window-objects':'browsers','handling-first-frame-available':'video','refsJSURL':'references','broadcast-formchange-events':'forms','concept-input-value-dirty':'forms','refsECMA357':'references','dom-context-2d-beziercurveto':'the-canvas-element','valid-date-or-time-string':'infrastructure','concept-bc-noscript':'browsers','frameset':'obsolete','e-mail-type-strings':'microdata','concept-spellcheck-default-false':'editing','md-vcard-adr-street-address':'microdata','adjust-mathml-attributes':'syntax','general-guidelines':'text-level-semantics','concept-input-value-number-string':'forms','tree-construction':'syntax','command-insertunorderedlist':'editing','dom-context-2d-clearrect':'the-canvas-element','application-x-www-form-urlencodedencoding-algorithm':'forms','parsing-xhtml-fragments':'the-xhtml-syntax','event-play':'video','no':'no','md-vcard-org':'microdata','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':'browsers','the-input-element-as-domain-specific-widgets':'the-xhtml-syntax','the-location-interface':'history','attr-q-cite':'text-level-semantics','dom-link-media':'semantics','willful-violation':'introduction','script-created-parser':'embedded-content-0','dom-context-2d-shadowblur':'the-canvas-element','meta-generator':'semantics','handler-onstalled':'browsers','attr-spellcheck':'editing','link-type-up':'history','local-date-and-time-state':'forms','the-canvas-state':'the-canvas-element','dom-applet-hspace':'obsolete','attr-a-charset':'obsolete','concept-output-mode':'forms','handler-appcache-onupdateready':'offline','dom-document-forms':dom','dom-br-clear':'obsolete','attr-link-charset':'obsolete','concept-datetime':'infrastructure','html-namespace':'infrastructure','dom-selection-collapsetostart':'editing','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','link-type-sidebar':'history','dom-cva-validationmessage':'forms','attr-meta-content':'semantics','the-accesskey-attribute':'editing','command-italic':'editing','handler-window-onafterprint':'browsers','dom-applet-height':'obsolete','hardwareLimitations':'infrastructure','converting-html-to-other-formats':'microdata','attr-caption-align':'obsolete','attr-textarea-placeholder':'forms','concept-appcache-onlinewhitelist':'offline','event-input-change':'forms','sequential-link-types':'history','submit-data-put':'forms','dom-dim-width':'the-canvas-element','md-vcard-adr-type':'microdata','local-dates-and-times':'infrastructure','dom-htmlpropertycollection-nameditem''infrastructure','editors':'infrastructure','dom-table-insertrow':'tabular-data','xml-parser':'the-xhtml-syntax','concept-n-noscript':'browsers','dom-selection-deletefromdocument':'editing','event-handler-dom-attributes':'browsers','dom-td-th-abbr':'obsolete','htmlselectelement':'forms','attr-mod-cite':'text-level-semantics','reset-the-insertion-mode-appropriately':'syntax','doctype-public-identifier-double-quoted-state':'syntax','float-nan':'infrastructure','date-or-time-string':'infrastructure','normalized-timeranges-object':'video','the-textarea-element-0':'the-xhtml-syntax','nestedParsing':'syntax','attr-article-pubdate':'semantics','dom-tr-align':'obsolete','concept-http-equivalent-get':'infrastructure','xml-namespace':'syntax','command-undo':'editing','event-undo':'editing','dom-dataset':'dom','dir':'obsolete','timeranges':'video','conformance-checkers':'infrastructure','attr-hyperlink-href':'history','pending-external-script':'semantics','input-type-attr-summary':'forms','list-of-code-entry-points':'rowsers','remove-a-token-from-a-string':'infrastructure','number-state':'forms','md-vcard-mailer':'microdata','dom-button-value':'forms','a-form-control-s-value':'forms','the-menu-bar-barprop-object':'browsers','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','global-dates-and-times':'infrastructure','home-subtree':'infrastructure','the-pre-element':'semantics','concept-submit-button':'forms','command-unselect':'editing','mq':'infrastructure','refsSHIFTJIS':'references','processing-model-2':'browsers','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','cut-to-clipboard':'editing','md-vcar-type-tel-video':'microdata','the-rt-element':'text-level-semantics','resource-metadata-management':'dom','system-state-and-capabilities':'browsers','link-type-license':'history','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','scripting':'browsers','margins-and-padding':'the-xhtml-syntax','attr-dfn-title':'text-level-semantics','dom-sharedworkerglobalscope-applicationcache':'offline','syntax-tag-name':'syntax','relationships-to-other-specifications':'introduction','changing-the-encoding-while-parsing':'syntax','md-vcard-tel':'microdata','set-of-space-separated-tokens':'infrastructure','browser-interface-elements':'browsers','canvaspixelarray':'the-canvas-element','the-id-attribute':'dom','style-default-media':'semantics','dom-tbody-align':'obsolete','dom-input-type':'forms','dom-li-value':'semantics','htmlparagraphelement':'semantics','dom-uda-hostname':infrastructure','htmldirectoryelement':'obsolete','concept-time-time':'text-level-semantics','charset512':'semantics','refsRFC2483':'references','messageevent':'comms','refsRFC4329':'references','security_err':'infrastructure','dom-fieldset-type':'forms','the-form-submission-target-browsing-context':'forms','completed-loading':'semantics','image-maps-0':'the-xhtml-syntax','attr-mod-datetime':'text-level-semantics','the-noscript-element':'semantics','attr-input-type-range-keyword':'forms','dom-prompt':'browsers','live':'infrastructure','parse-a-time-string':'infrastructure','dom-td-th-nowrap':'obsolete','scope':'introduction','scriptTagParserResumes':'syntax','dom-table-cellpadding':'obsolete','dom-print':'browsers','obtain-the-storage-mutex':'browsers','dom-applet-object':'obsolete','closing-elements-that-have-implied-end-tags':'syntax','the-pattern-attribute':'forms','dom-area-type':'the-canvas-element','character-reference-in-attribute-value-state':'syntax','report-the-error':'browsers','parsing-main-incation':'syntax','attr-td-th-nowrap':'obsolete','before-doctype-name-state':'syntax','attr-tabindex':'editing','refsPSL':'references','dom-area-target':'the-canvas-element','dom-a-rel':'text-level-semantics','dom-object-type':'text-level-semantics','printing':'browsers','values':'microdata','attr-link-media':'semantics','attributes-common-to-form-controls':'forms','handler-onselect':'browsers','htmlformcontrolscollection-0':'infrastructure','handler-ontimeupdate':'browsers','xml-compatible':'infrastructure','dom-window-locationbar':'browsers','htmlbuttonelement':'forms','attr-fs-novalidate':'forms','event-seeked':'video','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':'history','auxiliary-browsing-context':'browsers','table-model':'tablar-data','parsing-main-intr':'syntax','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':'browsers','garbage-collection-and-browsing-contexts':'browsers','attr-script-src':'semantics','htmlareaelement':'the-canvas-element','dom-tr-bgcolor':'obsolete','dom-document-linkcolor':'obsolete','parser-appcache':'syntax','url-query':'infrastructure','attr-hyperlink-type':'history','form-submission-algorithm':'forms','scripts-that-modify-the-page-as-it-is-being-parsed':'syntax','sandboxPluginObject':'text-level-semantics','outline':'semantics','attr-select-multiple':'forms','get-the-timed-task':'browsers','htmlmarqueeelement':'obsolete','attr-iframe-sandbox':'text-level-semantics','address-type-strings':'microdata','dom-location-pathname':'history','the-span-element':'text-level-semantics','comment-start-dash-state':'syntax','definitions':'form','dom-click':'editing','void-elements':'syntax','dom-quote-cite':'semantics','effective-script-origin':'browsers','dom-basefont-face':'obsolete','dom-tdth-rowspan':'tabular-data','paste-from-selection':'editing','the-keygen-element':'forms','parse-a-local-date-and-time-string':'infrastructure','a-quick-introduction-to-html':'introduction','acknowledge-self-closing-flag':'syntax','htmlquoteelement':'semantics','attr-input-autocomplete':'forms','command-facet-id':'interactive-elements','user-prompts':'browsers','dom-video-poster':'video','dom-a-rellist':'text-level-semantics','forms':'forms','closing-the-input-stream':'embedded-content-0','window':'browsers','when-shadows-are-drawn':'the-canvas-element','listing':'obsolete','attr-th-scope':'tabular-data','dom-object-codetype':'obsolete','event-seeking':'video','attr-object-data':'text-level-semantics','sandboxed-scripts-browsing-context-flag':'text-level-semantics','container-frame-element':'the-xhtml-syntax','print-media':'the-xhtml-syntax','attr-body-alink:'obsolete','attr-table-align':'obsolete','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':'browsers','dom-ol-compact':'obsolete','the-dialog-element':'semantics','other-metadata-names':'semantics','the-required-attribute':'forms','selector-read-only':'interactive-elements','authors-using-xhtml':'infrastructure','clear-the-list-of-active-formatting-elements-up-to-the-last-marker':'syntax','dom-select-selectedoptions':'forms','manifests':'offline','dom-context-2d-restore':'the-canvas-element','attr-marquee-direction-right':'obsolete','attr-command-radiogroup':'interactive-elements','canvas':'the-canvas-element','command-formatblock':'editing','md-vcard-type-tel-car':'microdata','dom-applet-vspace':'obsolete','atr-dl-compact':'obsolete','dom-navigator-appversion':'browsers','htmlhtmlelement':'semantics','dom-undomanager-add':'editing','md-vevent-sequence':'microdata','htmlunknownelement':'dom','contenteditable-breakBlock':'editing','md-vcard-logo':'microdata','target-element':'history','sectioning-root':'semantics','the-size-attribute':'forms','md-vcard-type-email-internet':'microdata','md-vcard-email-value':'microdata','create-a-script-from-a-node':'browsers','dependencies':'infrastructure','event-online':'offline','handler-onvolumechange':'browsers','htmllinkelement':'semantics','heading-content-0':'dom','concept-error-nothandled':'browsers','already-executed':'semantics','language':'dom','text-html':'iana-considerations','dom-progress-max':'text-level-semantics','copy-and-paste':'editing','mutation-during-parsing':'syntax','valid-list-of-integers':'infrastructure','concept-form-reset':'forms','attr-hr-width':'obsolete','md-vcard-type-tel-voice':'microdata','the-style-attribute':'dom','image-maps':'the-canvas-eleent','dom-meter-max':'text-level-semantics','cache-host':'offline','dom-table-border':'obsolete','the-document-s-current-address':'dom','dom-document-writeln':'embedded-content-0','handler-marquee-onbounce':'obsolete','dom-context-2d-createpattern':'the-canvas-element','update-the-session-history-with-the-new-page':'history','dom-fae-form':'forms','dom-script-defer':'semantics','dom-document-cookie':'dom','before-attribute-name-state':'syntax','scroll-to-fragid':'history','licensing-works':'microdata','elements-0':'syntax','concept-option-index':'forms','script-execution-environment':'browsers','attr-pre-width':'obsolete','dom-img-longdesc':'obsolete','dom-dragevent-initdrageventns':'editing','attr-marquee-direction':'obsolete','attr-br-clear':'obsolete','md-vcard-tz':'microdata','dom-a-href':'text-level-semantics','dom-window-statusbar':'browsers','concept-table-advance':'tabular-data','dom-imagedata-height':'the-canvas-element','doctype-legacy-string':'syntax','the-list-of-active-formatting-elements':'synax','limited-to-only-known-values':'infrastructure','the-q-element':'text-level-semantics','relationship-to-html4-and-dom2-html':'introduction','event-ended':'video','refsRFC1345':'references','dom-option-tvds':'forms','dom-command-ro-disabled':'interactive-elements','complex-shapes-paths':'the-canvas-element','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':'text-level-semantics','semantics':'semantics','dom-object-declare':'obsolete','dom-document-getitems':'microdata','attr-tbody-valign':'obsolete','refsUTF7':'references','md-vcard-type-tel-pager':'microdata','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':'browsers',dom-input-value-default-on':'forms','htmltablecaptionelement':'tabular-data','common-input-element-attributes':'forms','synchronous-section':'browsers','dom-option-index':'forms','dates-and-times':'infrastructure','refsRFC5280':'references','using-the-accesskey-attribute-on-a-label-element-to-define-a-command':'interactive-elements','gcop-copy':'the-canvas-element','optional-tags':'syntax','posting-messages-with-message-ports':'comms','attr-link-sizes':'history','refsGRAPHICS':'references','the-document-s-address':'dom','md-vcard-n-given-name':'microdata','dom-table-deleterow':'tabular-data','list-of-scripts-that-will-execute-as-soon-as-possible':'semantics','canvasgradient':'the-canvas-element','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','command-subscript':'editing','the-input-eement-as-a-file-upload-control':'the-xhtml-syntax','type_mismatch_err':'infrastructure','refsXHTMLMOD':'references','refsOPENSEARCH':'references','attr-form-autocomplete':'forms','md-vcard-type-email-x400':'microdata','converted-to-ascii-uppercase':'infrastructure','property-names':'microdata','dom-area-coords':'the-canvas-element','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','attr-fe-disabled':'forms','dom-area-hostname':'the-canvas-element','dom-context-2d-lineto':'the-canvas-element','dom-htmlpropertycollection-names':'infrastructure','dom-media-ended':'video','dom-channel-port1':'comms','dom-fs-formtarget':'forms','the-article-element':'semantics','algorithm-for-ending-a-row-group':'tabular-data','attr-td-th-abbr':'obsolete','apis-in-html-documents':'embedded-content-0','content-model-flag':'syntax','concept-option-selectedness':'orms','atom':'microdata','attr-input-checked':'forms','misinterpreted-for-compatibility':'infrastructure','dom-context-2d-textbaseline':'the-canvas-element','spacer':'obsolete','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':'dom','dom-area-hreflang':'the-canvas-element','syntax_err':'infrastructure','collecting-vcard-subproperties':'microdata','dom-messageevent-ports':'comms','dom-appcache-status':'offline','markup-declaration-open-state':'syntax','link-type-last':'history','refsWHATWGWIKI':'references','custom-validity-error-message':'forms','dom-length':'browsers','the-min-and-max-attributes':'forms','next-input-character':'syntax','attr-area-shape-default':'the-canvas-element','xmp':'obsolete','dom-classname':'dom','media-element-attributes':'video','attr-input-type':'forms,'htmllegendelement':'interactive-elements','md-vcard-bday':'microdata','element-level-focus-apis':'editing','algorithm-for-processing-rows':'tabular-data','dom-tdth-colspan':'tabular-data','refsRFC3987':'references','htmlspanelement':'text-level-semantics','refsRFC2445':'references','dom-table-createtfoot':'tabular-data','textmetrics':'the-canvas-element','concept-spellcheck-default':'editing','doctype-system-identifier-double-quoted-state':'syntax','sce-not-copy':'browsers','parsing-main-intd':'syntax','attr-iframe-sandbox-allow-scripts':'text-level-semantics','the-header-element':'semantics','dom-window-personalbar':'browsers','concept-input-min-default':'forms','dom-object-data':'text-level-semantics','after-doctype-public-identifier-state':'syntax','dom-validitystate-rangeunderflow':'forms','examples-1':'microdata','command-insertlinebreak':'editing','replaced-elements':'the-xhtml-syntax','svg-namespace':'syntax','script-nesting-level':'syntax','attr-map-name':'the-canvas-element','misnested-tags:-b-i--i':'syntax','event-emptied':'video','dom-mod-datetime':'text-level-semantics','md-work':'microdata','document.writeln':'embedded-content-0','updating-an-application-cache':'offline','gcop-source-atop':'the-canvas-element','attr-source-src':'video','the-var-element':'text-level-semantics','dom-datalist-options':'forms','md-vcard-adr-post-office-box':'microdata','attr-script-language':'obsolete','dom-label-htmlfor':'forms','the-undomanagerevent-interface-and-the-undo-and-redo-events':'editing','impp-type-strings':'microdata','row-header':'tabular-data','rules-for-parsing-non-negative-integers':'infrastructure','dom-iframe-longdesc':'obsolete','rules-for-parsing-a-list-of-dimensions':'infrastructure','refsGREGORIAN':'references','ended-playback':'video','event-summary':'offline','attr-option-selected':'forms','infrastructure':'infrastructure','foster-parent-element':'syntax','form-submission':'forms','parsing-main-afterbody':'syntax','attr-hyperlink-target':'history','svg-0':'the-canvas-element','dom-selectio-getrangeat':'editing','selector-valid':'interactive-elements','handler-window-onundo':'browsers','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','dom-frameset-cols':'obsolete','replacement-enabled':'history','joint-session-history':'history','concept-appcache-selection':'offline','dates':'infrastructure','simple-shapes-rectangles':'the-canvas-element','dom-marquee-loop':'obsolete','dom-context-2d-createlineargradient':'the-canvas-element','s':'obsolete','attr-menu-compact':'obsolete','insert-an-element-into-a-document':'infrastructure','authoring':'the-canvas-element','dom-output-type':'forms','overview':'microdata','url-scheme':'infrastructure','parse_err':'infrastructure','activating-state-object-entries':'history','syntax-elements':'syntax','dom-embed-type':'text-level-semantics','boolean-attribute':'infrastructure','content-type-sniffng:-image':'infrastructure','tool-bars-0':'the-xhtml-syntax','dom-ul-compact':'obsolete','dom-command-ro-icon':'interactive-elements','attr-iframe-name':'text-level-semantics','dom-iframe-contentwindow':'text-level-semantics','the-command':'interactive-elements','tabular-data':'tabular-data','real-numbers':'infrastructure','dom-changes':'editing','dom-fe-autofocus':'forms','md-vcard-impp-type':'microdata','making-entire-documents-editable':'editing','serialization-of-a-color':'the-canvas-element','dom-confirm':'browsers','htmlbaseelement':'semantics','dom-input-accept':'forms','dom-caption-align':'obsolete','attr-media-loop':'video','handler-onforminput':'browsers','dom-alert':'browsers','dom-fe-name':'forms','the-area-element':'the-canvas-element','doctype-state':'syntax','dom-navigator-canplaytype':'video','link-type-bookmark':'history','concept-input-required':'forms','dom-messageevent-lasteventid':'comms','url-decomposition-dom-attributes':'infrastructure','attr-keygen-keytype':'forms','prefix-match':'ifrastructure','refsTIS620':'references','image-button-state':'forms','source-node':'editing','time-ranges':'video','handler-window-onerror':'browsers','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','handler-onseeking':'browsers','dom-canvas-width':'the-canvas-element','dom-map-name':'the-canvas-element','the-applet-element':'obsolete','dom-option-disabled':'forms','concept-input-value-string-number':'forms','insertion-point':'syntax','dom-document-open':'embedded-content-0','md-vevent-location':'microdata','the-application-cache-selection-algorithm':'offline','htmlbodyelement':'semantics','concept-input-value-string-date':'forms','boolean-attributes':'infrastructure','refsARIAIMPL':'references','md-vevent-last-modified':'microdata','domstring_size_err':'infrastructure','refsCORS':'references','has-a-border':'the-xhtml-syntax','dom-undomanager-ength':'editing','resetBCName':'history','the-dt-element':'semantics','dom-validitystate-customerror':'forms','table-descriptions':'tabular-data','gcop-destination-in':'the-canvas-element','dom-iframe-marginwidth':'obsolete','dom-selection-tostring':'editing','the-map-element':'the-canvas-element','dom-canvas-getcontext':'the-canvas-element','the-progress-element':'text-level-semantics','copy-to-clipboard':'editing','the-window-object':'browsers','editing-apis':'editing','refsISO885911':'references','concept-time':'infrastructure','dom-validitystate-rangeoverflow':'forms','dom-link-hreflang':'semantics','dom-select-value':'forms','refsBCP47':'references','data-mining':'infrastructure','dom-fs-formenctype':'forms','the-object-element':'text-level-semantics','attr-td-th-char':'obsolete','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-seantics','handler-window-onhashchange':'browsers','refsRFC2045':'references','dom-th-scope':'tabular-data','md-vevent-categories':'microdata','valid-reversed-dns-identifier':'infrastructure','attr-command-checked':'interactive-elements','dom-context-2d-arc':'the-canvas-element','refsSRGB':'references','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':'history','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','attr-button-type-submit-state':'forms','the-thead-element':'tabular-data','md-vcard-org-organization-unit':'microdata','dom-location-href':'history','md-vcard-photo':'microdata','dom-area-ping':'the-canvas-element','publickeyandchallenge':'forms','md-vevent-exdae':'microdata','event-loadedmetadata':'video','the-p-element':'semantics','dom-window-blur':'editing','refsRFC3986':'references','the-del-element':'text-level-semantics','the-location-bar-barprop-object':'browsers','concept-appcache-onlinewhitelist-wildcard':'offline','noembed':'obsolete','htmltablecolelement':'tabular-data','dom-window-postmessage-2':'comms','dom-form-submit':'forms','groupings-of-browsing-contexts':'browsers','browsing-context':'browsers','dom-top':'browsers','concept-output-defaultvalue':'forms','dom-form-length':'forms','event-loop':'browsers','dom-document-nameditem-filter':'dom','attr-table-width':'obsolete','audience':'introduction','md-vcard-n-family-name':'microdata','dom-a-pathname':'text-level-semantics','dom-history-pushstate':'history','md-vcard-n-honorific-suffix':'microdata','color-state':'forms','dom-applet-alt':'obsolete','the-dl-element':'semantics','attributes-common-to-td-and-th-elements':'tabular-data','rel-sidebar-hyperlink':'history','interfaces-for-url-manipulation':infrastructure','x-that':'introduction','element-restrictions':'syntax','lists-of-integers':'infrastructure','run-canceled-activation-steps':'embedded-content-0','refsGBK':'references','attr-base-target':'semantics','values-associated-with-denominator-punctuation-characters':'infrastructure','images':'the-canvas-element','dom-media-played':'video','md-vcard-adr-postal-code':'microdata','attributes-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','dom-context-2d-stroke':'the-canvas-element','override-url':'history','generate-the-triples-for-an-item':'microdata','clipping-region':'the-canvas-element','domtokenlist-0':'infrastructure','dom-htmlcollection-nameditem':'infrastructure','refsHTML4':'references','ordered-set-of-unique-space-separated-tokens':'infrastructure','event-urationchange':'video','attr-td-th-charoff':'obsolete','ratios':'infrastructure','dom-media-network_empty':'video','dom-document-all':'obsolete','gcop-source-in':'the-canvas-element','sbu-not-copy':'browsers','the-meter-element-0':'the-xhtml-syntax','the-script-settings-determined-from-the-node':'browsers','dom-dragevent-initdragevent':'editing','dom-time-time':'text-level-semantics','concept-row':'tabular-data','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':'infrastructure','stack-of-open-elements':'syntax','timer-task-source':'browsers','refsRFC2119':'references','content-type':'infrastructure','attr-body-text':'obsolete','dom-td-th-height':'obsolete','drawing-state':'the-canvas-element','dom-mediaerror-media_err_decode':'video','dom-input-stepup':'forms','the-keygen-element-0':'the-xhtml-syntax','dom-table-caption':'tabular-data','dom-htmloptionscolection-item':'infrastructure','using-the-button-element-to-define-a-command':'interactive-elements','refsWEBIDL':'references','invalid_access_err':'infrastructure','attr-link-type':'semantics','attr-command-type-state-command':'interactive-elements','htmltablesectionelement':'tabular-data','dom-canvaspixelarray-set':'the-canvas-element','handler-ondrag':'browsers','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':'browsers','handler-window-onbeforeunload':'browsers','inline-documentation-for-external-scripts':'semantics','handler-oninput':'browsers','the-code-element':'text-level-semantics','concept-select-pick':'forms','increment-the-marquee-current-loop-index':'obsolete','htmlimageelement':'text-level-semantics','dom-video-videowidth':'video','the-personal-bar-barprop-object':'browsers','md-vevent-attach':'microdata','refused-to-allow-the-document-to-be-unloaded:'history','attr-img-align':'obsolete','attr-fs-formnovalidate':'forms','syntax-text':'syntax','using-the-rules-for':'syntax','list-of-scripts-that-will-execute-when-the-document-has-finished-parsing':'semantics','documentSelection':'editing','attr-command-title':'interactive-elements','domstringmap':'infrastructure','the-input-element-as-a-text-entry-widget':'the-xhtml-syntax','mathml':'the-canvas-element','dom-validitystate-patternmismatch':'forms','dom-context-2d-closepath':'the-canvas-element','dom-base-href':'semantics','undomanagerevent':'editing','current-input-character':'syntax','dom-appcache-swapcache':'offline','svg':'the-canvas-element','the-windowproxy-object':'browsers','popstateevent':'history','attr-iframe-scrolling':'obsolete','interactively-validate-the-constraints':'forms','link-type-noreferrer':'history','forming-a-table':'tabular-data','checkbox-state':'forms','general':'microdata','best-representation-of-the-floating-point-number':'infrastructure','attr-fs-method-put':'forms','rules-fo-parsing-simple-color-values':'infrastructure','presentational-hints':'the-xhtml-syntax','attr-a-coords':'obsolete','dom-meter-value':'text-level-semantics','the-time-element':'text-level-semantics','dom-form-nameditem':'forms','event-suspend':'video','refsX121':'references','dom-blur':'editing','client-identification':'browsers','concept-id':'dom','dom-object-usemap':'text-level-semantics','obsolete-but-conforming-features':'obsolete','link-type-alternate':'history','refsXMLBASE':'references','dialog-arguments':'browsers','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','dom-context-2d-textbaseline-alphabetic':'the-canvas-element','dom-table-rows':'tabular-data','attr-fs-method-post-keyword':'forms','command-facet-action':'interactive-elements','dom-draggable':'editing','dom-context-2d-fillrect':'the-canvas-element','htmlolistelement':'sematics','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','barred-from-constraint-validation':'forms','the-em-element':'text-level-semantics','attr-form-autocomplete-on-state':'forms','browsing-context-container':'browsers','definitions-0':'browsers','definitions-1':'browsers','concept-appcache-newer':'offline','browsers':'browsers','killing-scripts':'browsers','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_stat_err':'infrastructure','seamlessLinks':'history','tree-order':'infrastructure','concept-input-type-file-selected':'forms','refsRFC2109':'references','initial-code-entry-point':'browsers','the-ruby-element':'text-level-semantics','dom-document-embeds':'dom','command-inserthtml':'editing','application-cache-api':'offline','dom-context-2d-font':'the-canvas-element','handler-onsuspend':'browsers','initundomanagereventns':'editing','dom-form-elements':'forms','focus':'editing','command-insertparagraph':'editing','dom-navigator-yieldforstorageupdates':'browsers','dom-document-compatmode':'dom','the-session-history-of-browsing-contexts':'history','sandboxed-navigation-browsing-context-flag':'text-level-semantics','dom-table-rules':'obsolete','dom-fieldset-disabled':'forms','message-channels':'comms','handler-window-onoffline':'browsers','dom-td-th-valign':'obsolete','md-vevent-exrule':'microdata','imagedata':'the-canvas-element','message-ports':'comms','htmltextareaelement':'forms','dom-cva-validity':'forms','dom-imeranges-length':'video','processing-model':'the-canvas-element','navigate-non-Document':'history','concept-fs-method':'forms','the-link-is-an-alternative-stylesheet':'history','ascii-compatible-character-encoding':'infrastructure','dom-tr-valign':'obsolete','concept-get-attributes-when-sniffing':'syntax','security-3':'history','form-submission-0':'forms','security-1':'browsers','safe-passing-of-structured-data':'infrastructure','security-4':'comms','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','dom-tokenlist-toggle':'infrastructure','flow-content-0':'dom','dom-tokenlist-remove':'infrastructure','resXHR':'references','dom-window-item':'browsers','dom-validitystate-stepmismatch':'forms','sandboxPluginEmbed':'text-level-semantics','no_modification_allowed_err':'infrastructure','attr-meter-low':'text-level-semantics','attr-script-defer':'semantics','refsE163':'references','md-vevent-transp':'microdata','dom-window-scrollbars':'browsers','microdata':'microdata','handler-appcache-ondownloading':'offline','dom-textarea-defaultvalue':'forms','first-script':'browsers','comment-state':'syntax','md-vcard-org-organization-name':'microdata','states-of-the-type-attribute':'forms','url_mismatch_err':'infrastructure','md-vevent-contact':'microdata','url-encoded-form-data':'forms','attr-col-charoff':'obsolete','attr-tbody-align':'obsolete','convert-a-list-of-dimensions-to-a-list-of-pixel-values':'the-xhtml-syntax','declarative-3d-scenes':'no','concept-option-disabled':'forms','inter-element-whitespace':'dom','dom-selection-iscollapsed':'editing','no-quirks-mode':'dom','dom-document-characterset':'dom','md-vcard-type-el-isdn':'microdata','link-type-first':'history','suffering-from-a-custom-error':'forms','dom-option-tvd':'forms','dom-location-port':'history','the-h1-h2-h3-h4-h5-and-h6-elements':'semantics','the-insertion-mode':'syntax','attr-ul-type':'obsolete','introduction-9':'the-xhtml-syntax','introduction-8':'the-xhtml-syntax','namespace_err':'infrastructure','introduction-4':'editing','introduction-7':'comms','md-vevent-comment':'microdata','introduction-1':'microdata','introduction-0':'forms','introduction-3':'offline','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-context-2d-clip':'the-canvas-element','dom-button-type':'forms','the-ol-element':'semantics','meta-charset-during-parse':'syntax','event-appcache-cached':'offline','constructing-form-data-set':'forms','appcache-history-2':'history','attr-tdth-colspan':'tabular-data','refsABNF':'references','attr-col-span':'tabular-dat','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','ascii-case-insensitive':'infrastructure','dom-script-src':'semantics','numbers':'infrastructure','default-view':'browsers','vcard-0':'microdata','rules-for-parsing-a-legacy-color-value':'infrastructure','writing-cache-manifests':'offline','sandboxPluginNavigate':'history','dom-tr-ch':'obsolete','undomanager':'editing','frameset-ok-flag':'syntax','attr-tdth-rowspan':'tabular-data','script-s-url-character-encoding':'browsers','width-of-the-select-s-labels':'the-xhtl-syntax','htmlfontelement':'obsolete','menus':'interactive-elements','dom-img-ismap':'text-level-semantics','misnested-tags:-b-p-b-p':'syntax','refsDOM2HTML':'references','the-dd-element':'semantics','after-doctype-system-identifier-state':'syntax','concept-task':'browsers','md-vevent-description':'microdata','dom-area-protocol':'the-canvas-element','stop-parsing':'syntax','enabling-and-disabling-form-controls':'forms','reflect':'infrastructure','dom-linkstyle-disabled':'semantics','escape-flag':'syntax','md-vcard-adr-country-name':'microdata','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','refsHTMLDIFF':'references''dom-canvaspixelarray-get':'the-canvas-element','document-wide-default-language':'semantics','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':'browsers','meta-application-name':'semantics','predefined-vocabularies':'microdata','dom-body-text':'obsolete','dom-media-have_future_data':'video','dom-mediaerror-media_err_network':'video','examples-0':'microdata','dom-context-2d-strokerect':'the-canvas-element','dom-table-createtbody':'tabular-data','add-an-icalendar-line':'microdata','edits-and-lists':'text-level-semantics','attr-input-type-date-keyword':'forms','dom-context-2d-filltext':'the-canvas-element','dom-hr-size':'obsolete','windowproxy':'browsers','the-2d-context':'the-canvas-element','dom-head-profile':'obsolete','valid-date-or-time-string-in-content':'infrastructure','associatedSection':'semantics','refsCSU8':'references','semantics-0':'dom','interactive-content-0':'embedded-content-0','the-nav-element':'semantics','seeking':'video','concept-appcache-status':'offline','dom-table-createthead':'tabular-data','selector-optional':'interactive-elements','rules-for-parsing-a-hash-name-reference':'infrastructure','concept-input-step-scale':'forms','dom-marquee-direction':'obsolete','reflecting-dom-attributes':'index','conformance-requirements':'infrastructure','network-states':'video','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','md-vcard-type-adr-pref':'microdata','generate-implied-end-tags':'syntax','handler-onkeyup':'browsers','attr-progress-value':'text-level-semantics','attr-tbody-char':'obsolete','md-vcard-type-impp-mobile':'microdata','attr-area-shpe-keyword-poly':'the-canvas-element','attr-option-value':'forms','event-loops':'browsers','dom-showmodaldialog':'browsers','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','dom-selection-rangecount':'editing','tokenization':'syntax','attr-blockquote-cite':'semantics','dom-window-close':'browsers','attr-input-required':'forms','handler-onratechange':'browsers','invalid_modification_err':'infrastructure','task-queue':'browsers','offline':'offline','dom-document-body':'dom','the-microdata-model':'microdata','dom-media-buffered':'video','localization':'no','rules-for-parsing-dimension-values':'infrastructure','attr-img-src':'text-level-semantics','attr-lang':'dom','dom-iframe-frameborder':'obsolete','dom-fs-action':'forms','windowtimers':'browsers','gcop-source-out':'the-canvas-element','attr-option-label':'form','reversed-dns-identifiers':'infrastructure','dom-windowtimers-setinterval':'browsers','other-parsing-state-flags':'syntax','refsHTTP':'references','selection-0':'editing','expiring-application-caches':'offline','md-vcard-sound':'microdata','dom-focus':'editing','preceded-or-followed':'dom','the-after-after-frameset-insertion-mode':'syntax','md-vcard-type-tel-bbs':'microdata','multipart-form-data-encoding-algorithm':'forms','security-risks-in-the-drag-and-drop-model':'editing','month-state':'forms','handler-onmouseover':'browsers','dom-content':'microdata','allowed-to-navigate':'browsers','dom-hidden':'editing','insert-a-foreign-element':'syntax','md-vcard-role':'microdata','the-script-block-s-source':'semantics','using-the-accesskey-attribute-on-a-legend-element-to-define-a-command':'interactive-elements','dom-colgroup-span':'tabular-data','refsBEZIER':'references','limiting-user-input-length':'forms','scoping':'syntax','attr-a-name':'obsolete','parse-state':'syntax','events-and-the-window-object':'browses','script':'semantics','introduction':'introduction','menus-intro':'interactive-elements','dom-context-2d-drawimage':'the-canvas-element','pragma-directives':'semantics','button-state':'forms','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','concept-input-value-default-range':'forms','refsBECSS':'references','dom-applet-align':'obsolete','attr-object-standby':'obsolete','obsolete':'obsolete','sandboxWindowOpen':'browsers','attr-meta-name':'semantics','transparent-content-models':'embedded-content-0','simple-dialogs':'browsers','unload-a-document':'history','dom-tokenlist-tostring':'infrastructure','attr-li-type':'obsolete','text-content':'dom','hierarchical-link-types':'history','attr-input-step':'forms','dom-htmlformcontrolscollection-item':'infrastructure','dom-area-pathname':'the-canvas-element','dom-img-border':'obsolete','building-meus-and-tool-bars':'interactive-elements','handler-window-onpopstate':'browsers','concept-cell':'tabular-data','url-host':'infrastructure','handler-window-onbeforeprint':'browsers','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','executing-a-script-block':'semantics','interactive':'infrastructure','attr-tr-char':'obsolete','dom-window-focus':'editing','dom-table-width':'obsolete','dom-document-hasfocus':'editing','the-colgroup-element':'tabular-data','the-tr-element':'tabular-data','warnings-for-obsolete-but-conforming-features':'obsolete','skip-whitespace':'infrastructure','html-namespace-0':'syntax','cache-failure-steps':'offline','adjust-svg-attributes':'syntax','dom-uda-protocol':'infrastructure','htmlcollection-0':'infrastructure','attr-area-shape-keyword-rect':'the-canvas-element','interaction-with-css':'the-xhtml-syntax',attributes-for-embedded-content-and-images':'the-xhtml-syntax','session-history':'history','dom-context-2d-linewidth':'the-canvas-element','dom-window-toolbar':'browsers','dom-document-referrer':'dom','md-vcard-adr-region':'microdata','dom-media-controls':'video','dom-media-network_loaded':'video','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':'syntax','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','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','widows':'browsers','resetting-rules-for-inherited-properties':'the-xhtml-syntax','command-facet-label':'interactive-elements','dom-navigator-useragent':'browsers','attr-area-shape':'the-canvas-element','dom-iframe-scrolling':'obsolete','attr-style-title':'semantics','dom-tokenlist-length':'infrastructure','dom-td-th-ch':'obsolete','attributes-for-form-submission':'forms','determining-the-character-encoding':'syntax','concept-input-mutability':'forms','maps-to-the-pixel-length-property':'the-xhtml-syntax','content-type-sniffing':'infrastructure','attr-fs-method-put-keyword':'forms','attr-img-longdesc':'obsolete','concept-input-max':'forms','generic-raw-text-element-parsing-algorithm':'syntax','authors':'comms','html-vs-xhtml':'introduction','refsRFC2046':'references','dom-ol-type':'obsolete','handler-onscroll':'browsers','the-xhtml-syntax':'the-xhtml-syntax','dom-font-face':'obsolete','font':'obsolete','attr-option-disabled':'forms','concept-n-script':'browsers','dom-frames':'browsers','entry-update':'history''appropriate-form-encoding-algorithm':'forms','attr-a-shape':'obsolete','dom-document-dir':'dom','global-attributes':'dom','port-message-queue':'comms','attr-body-background':'obsolete','text-ping':'iana-considerations','dom-object-standby':'obsolete','interactive-elements':'interactive-elements','the-abbr-element':'text-level-semantics','dom-frame-noresize':'obsolete','attr-style-scoped':'semantics','domsettabletokenlist-0':'infrastructure','attribute-value-unquoted-state':'syntax','the-autocomplete-attribute':'forms','algorithm-for-extracting-an-encoding-from-a-content-type':'infrastructure','parse-a-month-component':'infrastructure','iana-considerations':'iana-considerations','attr-input-type-tel-keyword':'forms','dom-fs-enctype':'forms','dom-select-nameditem':'forms','user-interaction-task-source':'browsers','association-of-controls-and-forms':'forms','syntax-doctype':'syntax','generic-rcdata-element-parsing-algorithm':'syntax','structure-of-this-specification':'introduction','attr-table-rules':'obsolet','the-label-element':'forms','canvasrenderingcontext2d':'the-canvas-element','active-parser':'dom','handler-window-onfocus':'browsers','the-meter-element':'text-level-semantics','furthest-ancestor-browsing-context':'browsers','dom-input-max':'forms','concept-fe-checked':'forms','dom-context-2d-textbaseline-middle':'the-canvas-element','md-vcard-email':'microdata','dom-applet-codebase':'obsolete','concept-time-date':'text-level-semantics','attr-param-valuetype':'obsolete','dom-context-2d-textalign':'the-canvas-element','attr-fs-enctype-formdata':'forms','storage-mutex':'browsers','dom-htmlallcollection-item':'infrastructure','parse-a-date-component':'infrastructure','marquee-scroll-distance':'obsolete','dom-context-2d-fillstyle':'the-canvas-element','concept-input-checked-dirty-flag':'forms','lists-of-dimensions':'infrastructure','user-interface':'video','md-vcard-type-adr-work':'microdata','about-blank-origin':'browsers','attr-hyperlink-rel':'history','text-node':'infrastructure','command-insertimage':'ediing','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','predefined-global-property-name':'microdata','concept-item-corresponding':'microdata','dom-dim-height':'the-canvas-element','embedded-content':'embedded-content-0','limited-to-only-positive-non-zero-numbers':'infrastructure','fonts-and-colors':'the-xhtml-syntax','collections-0':'infrastructure','event-ratechange':'video','dom-embed-src':'text-level-semantics','md-about':'microdata','dom-media-error':'video','dom-input-value-default':'forms','handler-onmousedown':'browsers','dom-context-2d-fill':'the-canvas-element','dom-td-th-choff':'obsolete','dom-body-link':'obsolete','attr-menu-label':'interactive-elements','htmltablerowelement':'tabular-data','hyperlink':'history','dom-navigator':'browsers','attr-body-link':'obsolete','handler-ondragleave':'browsers','event-redo':'editing','refsCSSFONTS':'references','context':'the-canvas-element','value-sanitization-algorithm':'forms','command-selectall':'editing','document.write':'embedded-content-0','htmlsourceelement':'video','dom-link-sizes':'semantics','concept-form-association':'forms','the-head-element':'dom','refsNPAPI':'references','handler-ondragover':'browsers','collect-a-sequence-of-characters':'infrastructure','handler-onblur':'browsers','dom-id':'dom','dom-context-2d-strokestyle':'the-canvas-element','transformations':'the-canvas-element','md-vevent-url':'microdata','event-dragstart':'editing','tag-name-state':'syntax','using-the-microdata-dom-api':'microdata','json':'microdata','insertadjacenthtml':'embedded-content-0','tag-cloud':'semantics','attr-th-scope-rowgroup':'tabular-data','dom-image-wh':'text-level-semantics','dom-media-play':'video','xmlns-namespace':'syntax','data-state':'syntax','dom-appcache-downloading':'offline','fatal-decode-error':'video,'navigate-fragid-step':'history','refsSELECTORS':'references','md-vevent-dtstart':'microdata','md-vevent-geo':'microdata','htmlprogresselement':'text-level-semantics','concept-appcache-completeness':'offline','handler-ondragend':'browsers','dom-uda-port':'infrastructure','dom-form-item':'forms','dom-fs-formnovalidate':'forms','refsPINGBACK':'references','dom-script-charset':'semantics','attr-input-type-datetime-keyword':'forms','propertynodelist':'infrastructure','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','dom-context-2d-rect':'the-canvas-element','dom-tree-accessors':'dom','dimRendering':'the-xhtml-syntax','dom-textarea-input-selectionend':'editing','attr-table-frame':'obsolete','attr-input-type-datetime-local-keyword':'forms','domselection-focusnode':'editing','dom-a-hostname':'text-level-semantics','stopped-due-to-errors':'video','dom-col-choff':'obsolete','dom-windowmodal-returnvalue':'browsers','converting-a-character-width-to-pixels':'the-xhtml-syntax','handler-messageport-onmessage':'comms','md-vcard-type-adr-intl':'microdata','interpolation':'the-canvas-element','dom-select-remove':'forms','dom-context-2d-scale':'the-canvas-element','concept-fs-enctype':'forms','dom-time-timezone':'text-level-semantics','dom-option-label':'forms','ancestor-browsing-context':'browsers','dom-frame-longdesc':'obsolete','dom-a-ping':'text-level-semantics','refsXHTML1':'references','dom-ul-type':'obsolete','attr-fs-formtarget':'forms','dom-select-item':'forms','md-vevent-class':'microdata','concept-http-equivalent-headers':'infrastructure','concept-appcache-fallback':'offline','attr-td-th-align':'obsolete','dom-textarea-value':'forms','a-short-phrase-or-label-with-an-alternative-graphical-representation:-icons-logos':'text-level-semantics','attr-tale-cellspacing':'obsolete','dom-link-href':'semantics','attr-object-name':'text-level-semantics','attr-area-coords':'the-canvas-element','embedding-custom-non-visible-data':'dom','gcop-destination-over':'the-canvas-element','dom-location-protocol':'history','syntax-tags':'syntax','gcop-xor':'the-canvas-element','compatibility-caseless':'infrastructure','alignment':'the-xhtml-syntax','introduction-5':'editing','validitystate':'forms','attr-xml-lang':'dom','dom-location-assign':'history','associating-names-with-items':'microdata','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','attr-hr-size':'obsolete','dom-navigator-platform':'browsers','run-final-activation-steps':'embedded-content-0','attr-form-name':'forms','event-offline':'offline','the-legend-element':'interactive-elements','big':'obsolete','refsPORTERDUFF':'references','empty-cell':'tabular-data','valid-vevent-uration-string':'microdata','attr-command-icon':'interactive-elements','handler-onloadedmetadata':'browsers','dom-appcache-idle':'offline','create-an-element-for-the-token':'syntax','run-pre-click-activation-steps':'embedded-content-0','image-map':'the-canvas-element','dom-context-2d-shadowoffsetx':'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','designMode':'editing','ignore':'infrastructure','valid-local-date-and-time-string':'infrastructure','dom-media-network_idle':'video','introduction-6':'comms','dom-a-protocol':'text-level-semantics','terminology':'infrastructure','event-definitions':'comms','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','following-hyperlinks':'history','dom-cva-checkvalidatity':'forms','dom-option-text':'forms','link-type-feed':'history','examples':'microdata','naming-form-controls':'forms','dom-fs-formaction':'forms','refsWIN874':'references','bindings':'the-xhtml-syntax','attr-input-type-keywords':'forms','dom-input-valueasnumber':'forms','dom-legend-form':'interactive-elements','opening-the-input-stream':'embedded-content-0','beforeunloadevent':'history','networking-task-source':'browsers','noframes':'obsolete','refsCSSCOLOR':'references','selector-disabled':'interactive-elements','maps-to-the-dimension-property':'the-xhtml-syntax','dom-datatransfer-dropeffect':'editing','names:-the-itemprop-attribute':'microdata','dom-document-write':'embedded-content-0','the-directionality':'dom','the-list-attribute':'forms','dom-item':'microdata','dom-details-open':'interactive-elements','escapingString':'syntax','dom-media-have_metadata':'video','interactive-content':'embedded-content-0','attr-itemfor':'microdata','om-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','introduction-2':'browsers','refsRFC5322':'references','queue-a-task':'browsers','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':'browsers','attr-fs-method-get-keyword':'forms','parsing-main-inhead':'syntax','location-of-the-media-resource':'video','refsRFC2646':'references','attr-link-sizes-any':'history','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','event-load':'video','frames':'obsolete','alphanumeric-ascii-characters':'infrastructure','acknowledgements':'acknowledgemnts','suffering-from-a-pattern-mismatch':'forms','dom-document-querycommandvalue':'editing','quirks-mode-doctypes':'syntax','dom-object-vspace':'obsolete','concept-link-type-sniffing':'semantics','concept-input-mutable':'forms','dom-option':'forms','dom-col-span':'tabular-data','text-field-selection':'editing','dom-meta-scheme':'obsolete','sections':'semantics','dom-navigator-registerprotocolhandler':'browsers','document-metadata':'semantics','refsCOMPUTABLE':'references','reconstruct-the-active-formatting-elements':'syntax','common-event-behaviors':'forms','clone-a-port':'comms','htmlulistelement':'semantics','attr-input-align':'obsolete','the-iframe-element':'text-level-semantics','concept-property-value':'microdata','the-before-head-insertion-mode':'syntax','dom-hr-align':'obsolete','navigatoronline':'browsers','dom-table-summary':'obsolete','refsMAILTO':'references','external-resource-link':'semantics','dom-marquee-width':'obsolete','constraint-validation':'forms','md-work-author':'microdata','htmlparamlement':'text-level-semantics','create-a-document-object':'history','md-vcard-adr-locality':'microdata','the-th-element':'tabular-data','md-vevent-rdate':'microdata','attr-iframe-marginheight':'obsolete','event-loadeddata':'video','reset-button-state':'forms','return-value':'browsers','character-encodings':'infrastructure','attr-img-ismap':'text-level-semantics','gcop-destination-atop':'the-canvas-element','text-that-has-been-rendered-to-a-graphic-for-typographical-effect':'text-level-semantics','fragment-case':'syntax','refsCSSOM':'references','dom-document-fgcolor':'obsolete','md-vcard-type-tel-msg':'microdata','attribute-value-single-quoted-state':'syntax','dom-timeranges-start':'video','dom-object-contentwindow':'text-level-semantics','elements-in-the-html-namespace':'infrastructure','attr-col-char':'obsolete','md-vcard-class':'microdata','valid-e-mail-address':'forms','refsIANACHARSET':'references','attr-th-scope-auto':'tabular-data','undo:-moving-back-in-the-undo-transaction-history':'editing','attr-iput-list':'forms','dom-getselection':'editing','attr-colgroup-span':'tabular-data','attr-object-archive':'obsolete','event-appcache-noupdate':'offline','elements':'dom','mediaevents':'video','dom-command-ro-checked':'interactive-elements','md-vcard-n':'microdata','editable':'editing','line-styles':'the-canvas-element','plain-text-form-data':'forms','application-cache-group':'offline','dom-context-2d-createradialgradient':'the-canvas-element','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','attr-input-readonly':'forms','attr-input-max':'forms','align-descendants':'the-xhtml-syntax','an-introduction-to-error-handling-and-strange-cases-in-the-parser':'syntax','extensibility':'infrastructur','attr-area-shape-keyword-circle':'the-canvas-element','script-s-browsing-context':'browsers','undo-transaction-history':'editing','event-progress':'video','html-parser':'syntax','change-the-encoding':'syntax','md-vcard-type-impp-business':'microdata','submit-body':'forms','headings-and-sections':'semantics','dom-table-cellspacing':'obsolete','handler-ondragstart':'browsers','parse-a-month-string':'infrastructure','handler-onmousewheel':'browsers','dom-map-images':'the-canvas-element','dom-option-t':'forms','handler-onabort':'browsers','md-vcard-adr-extended-address':'microdata','concept-week':'infrastructure','md-vcard-url':'microdata','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','valid-week-string':'infrastructure','valid-url':'infrastructure','dom-selection-selectallchildren':'editing','attr-data':'dom','before-attribute-value-stae':'syntax','concept-fetch-loaded':'infrastructure','printing-steps':'browsers','gcop-source-over':'the-canvas-element','multipart-form-data':'forms','attr-output-for':'forms','dom-link-rellist':'semantics','contenteditable':'editing','event-appcache-updateready':'offline','htmltableheadercellelement':'tabular-data','vevent':'microdata','concept-column':'tabular-data','other-elements-attributes-and-apis':'obsolete','compositing':'the-canvas-element','dom-textarea-required':'forms','dom-htmlformcontrolscollection-nameditem':'infrastructure','unloading-documents':'history','dom-a-rev':'obsolete','dom-propertynodelist-contents':'infrastructure','dom-context-2d-rotate':'the-canvas-element','propertyvaluearray':'infrastructure','dimension-attributes':'the-canvas-element','browser-state':'offline','handler-onmouseup':'browsers','attr-embed-src':'text-level-semantics','video':'video','foster-parenting':'syntax','attr-img-name':'obsolete','icalendar':'microdata','dom-script-text':'semantics','affected-by-a-base-urlchange':'infrastructure','index':'index','attr-media-autobuffer':'video','the-hgroup-element':'semantics','md-vevent-created':'microdata','handler-window-onload':'browsers','code-point-length':'infrastructure','attr-ol-reversed':'semantics','valid-mime-type':'infrastructure','acronym':'obsolete','attr-meter-max':'text-level-semantics','valid-time-string':'infrastructure','attr-contextmenu':'interactive-elements','attr-textarea-cols-value':'forms','dom-object-code':'obsolete','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','attr-form-accept-charset':'forms','domsettabletokenlist':'infrastructure','a-key-part-of-the-content':'text-level-semantics','refsSCSU':'references','dom-input-value-value':'forms','atom-namespace':'microdata','media-element':'video','the-constraint-validation-api':'forms','dom-td-th-width':'obsolete','attr-fs-method-post':'forms','attr-tdth-axis':'obsolete','dom-marquee-start':'obsolete','link-type-pingback':'history','refsBIDI':'references','the-hr-element':'semantics','rdf':'microdata','dom-input-align':'obsolete','microdata-dom-api':'microdata','dom-self':'browsers','dom-history-clearstate':'history','dom-tr-insertcell':'tabular-data','validity-states':'forms','the-script-block-s-type':'semantics','event-canplaythrough':'video','child-browsing-context':'browsers','dom-history-back':'history','dom-media-src':'video','default-button':'forms','attr-fs-formaction':'forms','handler-onmousemove':'browsers','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','attr-td-th-valign':'obsolete','htmlmeterelement':'text-level-semantics','dom-media-currentsrc':'video','dom-marquee-bgcolor':'obsolete','attr-object-code':'obsolete','content-type-sniffing-0':'infrastructure','dom-link-type':'semantics','octype-name-state':'syntax','refsWIN949':'references','refsCSS':'references','the-step-attribute':'forms','concept-appcache-obsolete':'offline','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','dom-a-port':'text-level-semantics','attr-img-vspace':'obsolete','windowmodal':'browsers','dom-cva-setcustomvalidity':'forms','dom-img-align':'obsolete','application-microdata-json':'iana-considerations','the-tool-bar-barprop-object':'browsers','entangle':'comms','md-work-title':'microdata','focusable':'editing','number-of-days-in-month-month-of-year-year':'infrastructure','hyperlink-elements':'history','read-xml':'history','dom-function-call':'browsers','dom-windowtimers-settimeout':'browsers','handler-onshow':'browser','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':'history','dom-document-getelementsbyclassname':'dom','submit-get-action':'forms','refsDOMEVENTS':'references','list-of-dragged-nodes':'editing','display-types':'the-xhtml-syntax','dom-htmlformcontrolscollection-length':'infrastructure','refsARIA':'references','parsing-main-inframeset':'syntax','after-doctype-name-state':'syntax','attr-meta-http-equiv':'semantics','parsing-html-fragments':'syntax','htmldatalistelement':'forms','attr-textarea-rows':'forms','dom-input-stepdown':'forms','mathml-namespace':'syntax','specially-focusable':'editing','dom-applet-name':'obsolete','dom-title':'dom','algorithm-for-growing-dowward-growing-cells':'tabular-data','dom-appcache-obsolete':'offline','the-style-element':'semantics','refsISO8601':'references','dom-img-src':'text-level-semantics','dom-context-2d-textbaseline-ideographic':'the-canvas-element','refsRFC1494':'references','md-vcard-label-type':'microdata','concept-appcache-init':'offline','md-vcard-type-tel-modem':'microdata','origin-0':'browsers','event-appcache-obsolete':'offline','refsX690':'references','focus-management':'editing','common-grouping-idioms':'semantics','attr-img-alt':'text-level-semantics','context-menus':'interactive-elements','dom-appcache-checking':'offline','handler-oninvalid':'browsers','dom-canvaspixelarray-length':'the-canvas-element','refsXML':'references','attr-button-type-reset-state':'forms','the-mark-element-0':'the-xhtml-syntax','using-the-command-element-to-define-a-command':'interactive-elements','dom-media-seekable':'video','parsing-main-inheadnoscript':'syntax','dom-window-postmessage-3':'comms','event-appcache-checking':'offline','selecto-indeterminate':'interactive-elements','attr-iframe-marginwidth':'obsolete','concept-js-deref':'browsers','concept-fetch-total':'infrastructure','command-superscript':'editing','applicationcache':'offline','frames-and-framesets':'the-xhtml-syntax','attr-button-type-button':'forms','concept-fs-novalidate':'forms','dom-a-type':'text-level-semantics','parsing-main-intabletext':'syntax','attr-tbody-charoff':'obsolete','attr-iframe-align':'obsolete','attr-input-type-hidden-keyword':'forms','coercing-an-html-dom-into-an-infoset':'syntax','dom-messageevent-initmessageevent':'comms','documentEncoding':'syntax','images-0':'the-xhtml-syntax','htmlinputelement':'forms','attr-td-th-width':'obsolete','dom-output-htmlfor':'forms','htmloptionelement':'forms','attr-input-type-file-keyword':'forms','the-base-element':'semantics','the-basic-syntax':'microdata','submit-mutate-action':'forms','dom-option-form':'forms','dom-img-complete':'text-level-semantics','dom-selection-collapsetoend':'editing','dom-document-querycommandstte':'editing','dom-uda-pathname':'infrastructure','dom-command-radiogroup':'interactive-elements','entity-references':'infrastructure','concept-textarea-raw-value':'forms','handler-oncanplay':'browsers','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':'browsers','event-handler-content-attributes':'browsers','undo-position':'editing','linkTypes':'history','dom-undomanager-remove':'editing','items:-the-item-attribute':'microdata','dom-iscontenteditable':'editing','text-0':'syntax','the-html-element':'dom','attr-col-valign':'obsolete','processing-model-0':'tabular-data','processing-model-1':'browsers','dom-context-2d-stroketext':'the-canvas-element','refsMATHML':'references','concept-fs-action':'forms','attr-progress-ax':'text-level-semantics','link-type-archives':'history','offsets-into-the-media-resource':'video','a-type-that-the-user-agent-knows-it-cannot-render':'video','md-vcard-type-tel-pref':'microdata','runtime-script-errors':'browsers','dom-time-date':'text-level-semantics','constraints':'forms','history-notes':'history','refsJSON':'references','contenteditable-delete':'editing','attr-input-multiple':'forms','the-input-element-as-a-color-well':'the-xhtml-syntax','dom-context-2d-createimagedata':'the-canvas-element','dom-audio-s':'video','dom-document-charset':'dom','submit-mailto-body':'forms','meta':'semantics','dom-a-hreflang':'text-level-semantics','attr-optgroup-disabled':'forms','attr-td-th-height':'obsolete','sandboxed-forms-browsing-context-flag':'text-level-semantics','refsPNG':'references','dom-media-network_no_source':'video','dom-article-pubdate':'semantics','dom-basefont-color':'obsolete','the-before-html-insertion-mode':'syntax','the-hidden-attribute':'editing','dom-selection-focusoffset':'editing''handler-onerror':'browsers','navigating-across-documents':'history','dom-input-selectedoption':'forms','attr-input-accept':'forms','get-the-object':'microdata','dom-input-defaultvalue':'forms','dom-document-anchors':'obsolete','attr-input-type-month-keyword':'forms','secondary-browsing-context':'browsers','add-a-vcard-line':'microdata','undo':'editing','dom-textmetrics-width':'the-canvas-element','suffering-from-being-missing':'forms','dom-iframe-sandbox':'text-level-semantics','refsRFC2237':'references','command-facet-disabledstate':'interactive-elements','refsCOOKIES':'references','usage-summary':'text-level-semantics','top-level-microdata-items':'microdata','dom-media-pause':'video','dom-marquee-vspace':'obsolete','times':'infrastructure','attr-details-open':'interactive-elements','dom-input-size':'forms','dom-document-links':'dom','introduction-10':'the-xhtml-syntax','htmltabledatacellelement':'tabular-data','fire-a-progress-event':'browsers','footnotes':'text-level-semantics','concept-input-max-defaul':'forms','dom-window-menubar':'browsers','enabling-and-disabling-scripting':'browsers','htmlbasefontelement':'obsolete','read-ua-inline':'history','attr-abbr-title':'text-level-semantics','event-waiting':'video','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':'infrastructure','the-xml:base-attribute-xml-only':'dom','obsolete-permitted-doctype':'syntax','channel-messaging':'comms','sectioning-content-0':'dom','calling-scripts':'browsers','telephone-type-strings':'microdata','htmlelement':'dom','selector-required':'interactive-elements','event-stalled':'video',url-port':'infrastructure','handler-window-onstorage':'browsers','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','md-vcard-type-tel-pcs':'microdata','space-separated-tokens':'infrastructure','contenteditable-br':'editing','dom-channel-port2':'comms','direction-of-playback':'video','the-details-element-0':'the-xhtml-syntax','htmlallcollection-0':'infrastructure','dom-col-valign':'obsolete','dom-input-src':'forms','md-vcard-sort-string':'microdata','concept-textarea-dirty':'forms','await-a-stable-state':'browsers','dom-command-ro-label':'interactive-elements','xml-documents':'dom','the-indicated-part-of-the-document':'history','attr-menu-type':'interactive-elements','dom-select-multiple':'forms','dom-frame-frameborder':'obsolete','dom-canvas-height':'the-canvas-element','dom-document-querycommandindeterm':'editing','security-and-rivacy-considerations':'video','dom-htmlcollection-tags':'infrastructure','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','handler-oncontextmenu':'browsers','attr-object-vspace':'obsolete','documents':'dom','invalid_character_err':'infrastructure','md-vcard-impp':'microdata','unexpected-markup-in-tables':'syntax','attr-object-hspace':'obsolete','dom-context-2d-save':'the-canvas-element','refsXSLT10':'references','attr-meta-charset':'semantics','attr-marquee-behavior-slide':'obsolete','dom-context-2d-transform':'the-canvas-element','dom-image-w':'text-level-semantics','command-inserttext':'editing','attr-command-type-state-radio':'interactive-elements','crossDocumentMessages':'comms','tool-bar-state':'interactive-elements','the-selecton':'editing','dom-navigator-appname':'browsers','handler-onkeypress':'browsers','the-fieldset-element-0':'the-xhtml-syntax','dom-tdth-headers':'tabular-data','htmlcanvaselement':'the-canvas-element','dom-dir':'dom','img-available':'text-level-semantics','md-vcard-type-impp-pref':'microdata','dom-classlist':'dom','handler-window-onunload':'browsers','url':'infrastructure','dom-context-2d-getimagedata':'the-canvas-element','dom-td-th-bgcolor':'obsolete','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':'the-canvas-element','attr-col-align':'obsolete','javascript-protocol':'browsers','dom-frame-contentdocument':'obsolete','dom-tr-choff':'obsolete','attr-time-datetime':'text-level-semantics','the-body-element-0':'semantics','dom-media-seeking':'video','html-documents':'dom','attr-table-cellpadding':'obsolete','pause':'browsers','comms':'comms','sectioing-content':'dom','the-html-element-0':'semantics','not_supported_err':'infrastructure','attr-area-shape-keyword-polygon':'the-canvas-element','dom-document-vlinkcolor':'obsolete','attr-body-bgcolor':'obsolete','messagechannel':'comms','comma-separated-tokens':'infrastructure','ready-for-editing-host-commands':'editing','dom-getelementsbyclassname':'dom','dialogs-implemented-using-separate-documents':'browsers','md-vcard-type-email-pref':'microdata','attr-hx-align':'obsolete','labeled-control':'forms','dom-font-size':'obsolete','effectAllowed-initialization':'editing','dom-datatransfer-addelement':'editing','selector-link':'interactive-elements','paste-from-clipboard':'editing','event-playing':'video','gcop-destination-out':'the-canvas-element','document-s-character-encoding':'dom','dom-object-codebase':'obsolete','password-state':'forms','the-kbd-element':'text-level-semantics','htmlpropertycollection':'infrastructure','view':'browsers','dom-textarea-readonly':'forms','selecting-names-when-defining-vocabuaries':'microdata','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':'browsers','concept-month':'infrastructure','attr-video-poster':'video','handler-window-onresize':'browsers','dom-img-hspace':'obsolete','link-type-prefetch':'history','dom-a-host':'text-level-semantics','syntax-escape-start':'syntax','the-tfoot-element':'tabular-data','event-dragend':'editing','dom-object-name':'text-level-semantics','dom-script-type':'semantics','the-datalist-element':'forms','attr-table-bgcolor':'obsolete','md-vcard-geo':'microdata','dom-meter-high':'text-level-semantics','current-node':'syntax','dom-imagedata-width':'the-canvas-element','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-t-be-able-to-view-images':'text-level-semantics','dom-tbody-deleterow':'tabular-data','dom-a-hash':'text-level-semantics','attr-meta-scheme':'obsolete','attributes':'syntax','htmlarticleelement':'semantics','dom-object-align':'obsolete','close-the-cell':'syntax','comment':'syntax','dom-div-align':'obsolete','valid-date-string':'infrastructure','md-vevent-duration':'microdata','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':'browsers','dom-textarea-placeholder':'forms','seekUpdate':'video','dom-popstateevent-initpopstateeventns':'history','handler-marquee-onstart':'obsolete','form-owner':'forms','refsWIN1254':'references','attribute-value-double-quoted-state':'syntax','dom-param-type':'obsolete','dom-menu-type':'interactive-elements','htmlframeelement':'obsolete','dom-appcache-uncached':'offline','concept-input-value-dirty-lag':'forms','dom-media-playbackrate':'video','dom-style-media':'semantics','selector-visited':'interactive-elements','attr-input-src':'forms','dom-col-width':'obsolete','rules-for-parsing-a-list-of-integers':'infrastructure','attr-tr-valign':'obsolete','playing-the-media-resource':'video','dom-context-2d-moveto':'the-canvas-element','defining-term':'text-level-semantics','the-textarea-element':'forms','attr-dim-width':'the-canvas-element','dom-datatransfer-cleardata':'editing','dom-context-2d-canvas':'the-canvas-element','md-vcard-type-adr-dom':'microdata','concept-param-parameter':'text-level-semantics','dom-dragevent-datatransfer':'editing','md-vcard-type-tel-home':'microdata','earliest-possible-position':'video','dom-style-type':'semantics','scripting-flag':'syntax','valid-integer':'infrastructure','dom-messageport-close':'comms','event-firing':'browsers','dom-param-valuetype':'obsolete','the-hr-element-0':'the-xhtml-syntax','immediate-user-selection':'editing','dom-form-dispatchforminput':'forms','attrobject-codetype':'obsolete','noopener':'browsers','concept-appcache-master':'offline','dom-messageevent-initmessageeventns':'comms','dom-media-network_loading':'video','consume-a-character-reference':'syntax','submit-data-post':'forms','nested-browsing-contexts':'browsers','dom-optgroup-disabled':'forms','dom-context-2d-settransform':'the-canvas-element','event-canplay':'video','adjust-foreign-attributes':'syntax','close-tag-open-state':'syntax','dom-command-disabled':'interactive-elements','command-createlink':'editing','attr-media-autoplay':'video','htmldlistelement':'semantics','the-tbody-element':'tabular-data','event-loadend':'video','link-type-search':'history','named-access-on-the-window-object':'browsers','dom-output-defaultvalue':'forms','handler-window-ononline':'browsers','other-pragma-directives':'semantics','dom-fs-novalidate':'forms','htmlformcontrolscollection':'infrastructure','md-vcard-type-tel-cell':'microdata','md-work-license':'microdata','valid-denominator-punctuation-character':'infrasructure','center':'obsolete','refsWIN1252':'references','dom-legend-align':'obsolete','dom-meter-min':'text-level-semantics','dom-selection-anchornode':'editing','unit-of-related-browsing-contexts':'browsers','md-vcard-n-additional-name':'microdata','dom-area-nohref':'obsolete','handler-onloadstart':'browsers','textFieldSelection':'editing','audio':'video','dom-document-alinkcolor':'obsolete','md-vcard-type-impp-home':'microdata','htmlcollection':'infrastructure','dom-meter-low':'text-level-semantics','dom-link-target':'obsolete','the-section-element':'semantics','link-type-stylesheet':'history','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','syntax-end-tag':'syntax','dom-frameelement':'browsers','elements-in-the-dom':'dom','attr-input-pattern':'forms','attr-link-hreflang':'semantics','dom-history-forward':'history','attr-html-version':'obsolete','editing-host':'editig','outlines':'semantics','after-attribute-value-quoted-state':'syntax','feed-the-parser':'the-xhtml-syntax','dom-tokenlist-contains':'infrastructure','attr-marquee-truespeed-true':'obsolete','list-of-scripts-pending-after-the-parser-stopped':'syntax','dom-media-loop':'video','dom-htmlallcollection-tags':'infrastructure','attr-area-shape-poly':'the-canvas-element','hyperlink-auditing':'history','percentages-and-dimensions':'infrastructure','drawing-model':'the-canvas-element','dom-option-tv':'forms','dom-meta-name':'semantics','dom-document-querycommandsupported':'editing','the-fieldset-element':'forms','extracting-json':'microdata','dom-a-target':'text-level-semantics','dom-document-activeelement':'editing','innerhtml':'embedded-content-0','steps-for-finding-one-or-two-numbers-of-a-ratio-in-a-string':'infrastructure','concept-error-handled':'browsers','attr-link-target':'obsolete','dom-context-2d-textbaseline-hanging':'the-canvas-element','concept-input-value-date-string':'forms','dom-form-checkvalidity':'orms','dom-navigator-registercontenthandler':'browsers','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','dom-style-scoped':'semantics','how-to-read-this-specification':'introduction','dom-location-reload':'history','concept-input-list':'forms','text-cache-manifest':'iana-considerations','dom-p-align':'obsolete','attr-link-rel':'semantics','htmlformelement':'forms','attr-body-link':'obsolete','sample-handler-impl':'browsers','handler-onreadystatechange':'browsers','htmlanchorelement':'text-level-semantics','drag-and-drop-processing-model':'editing','rules-for-serializing-simple-color-values':'infrastructure','attr-textarea-wrap':'forms','event-loadstart':'video','md-vevent-dtend':'microdata','sandboxPluginApplet':'obsolete','the-dir-attribute':'dom','the-doctype':'syntax','dom-location-hostname':'history','dom-label-contrl':'forms','common-microsyntaxes':'infrastructure','dom-meta-httpequiv':'semantics','attr-img-border':'obsolete','concept-appcache-manifest':'offline','create-an-impotent-script':'browsers','md-vcard-label-value':'microdata','suffering-from-a-type-mismatch':'forms','other-link-types':'history','dom-undomanagerevent-data':'editing','event-appcache-error':'offline','application-cache':'offline','current-drag-operation':'editing','the-small-element':'text-level-semantics','event-message':'comms','custom-data-attribute':'dom','session-history-entry':'history','dom-frame-src':'obsolete','dom-option-value':'forms','common-input-element-apis':'forms','messageportarray':'comms','dom-lang':'dom','dom-style':'dom','focusing-steps':'editing','potentially-playing':'video','dom-context-2d-globalcompositeoperation':'the-canvas-element','attr-ul-compact':'obsolete','navigatorid':'browsers','dom-media-currenttime':'video','htmlframesetelement':'obsolete','when-the-drag-and-drop-operation-starts-or-ends-in-another-applicatin':'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':'microdata','command-facet-hint':'interactive-elements','predefined-type':'microdata','script-s-global-object':'browsers','event-input-input':'forms','selector-read-write':'interactive-elements','md-vcard-type-impp-work':'microdata','dom-lfe-labels':'forms','dom-datatransfer-setdata':'editing','column-header':'tabular-data','loading-the-media-resource':'video','time-state':'forms','application-xhtml-xml':'iana-considerations','md-vcard-adr':'microdata','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':'browsers','dom-insertadjacenthtml':'embedded-content-0','algorithm-for-processing-row-groups':'tabular-data','refsSVG':'references','attr-link-rev':'obsolete','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','barprop':'browsers','function':'browsers','dom-messageport-postmessage':'comms','serializability-of-script-execution':'introduction','attr-input-type-search-keyword':'forms','handler-ondragenter':'browsers','jump-to-a-code-entry-point':'browsers','handler-onseeked':'browsers','dom-td-th-axis':'obsolete','dom-outerhtml':'embedded-content-0','fully-active':'browsers','structured-clone':'infrastructure','rateUpdate':'video','internal-structured-cloning-algorithm':'infrastructure','current-playback-position':'video','attr-textarea-maxlength':'forms','current-entry-o-the-joint-session-history':'history','dom-location-host':'history','dom-messageevent-source':'comms','datatransfer':'editing','handler-oncanplaythrough':'browsers','dom-object-contentdocument':'text-level-semantics','caret-position':'editing','the-undomanager-interface':'editing','attr-legend-align':'obsolete','end-tags':'syntax','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','dom-context-2d-linecap':'the-canvas-element','paused-for-user-interaction':'video','dom-context-2d-textbaseline-bottom':'the-canvas-element','space-character':'infrastructure','getting-media-metadata':'video','cdata-rcdata-restrictions':'syntax','dom-table-align':'obslete','rel-icon':'history','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':'infrastructure','dom-progress-value':'text-level-semantics','dom-link-disabled':'semantics','event-appcache-downloading':'offline','comment-end-state':'syntax','user-agents':'comms','attr-canvas-height':'the-canvas-element','current-entry':'history','dom-htmlcollection-length':'infrastructure','link-type-tag':'history','contenteditable-insertText':'editing','refsRFC2426':'references','attr-object-codebase':'obsolete','dom-keygen-type':'forms','dom-location-replace':'history','htmllabelelement':'forms','attr-input-autocomplete-default-state':'forms','start-tags':'syntax','posted-message-task-source':'comms','comment-end-dah-state':'syntax','content-categories':'dom','comment-start-state':'syntax','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':'text-level-semantics','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','dom-context-2d-putimagedata':'the-canvas-element','attr-fs-method-delete-keyword':'forms','concept-appcache-cache':'offline','dom-source-media':'video','htmlfieldsetelement':'forms','handler-window-onblur':'browsers','dom-meter-optimum':'text-level-semantics','the-root-element':'semantics','scriptTag':'syntax','command-facet-type':'interactive-elements','md-vcard-type-adr-home':'microdata','a-browsing-context-is-discarded':'browsers','concept-http-equivalent':'infrastructure','definitions-2':'editing','ports-and-garbage-collection':'comms','dom-area-rel':'the-canvas-element','concept-slots':'tabular-data','dom-command-icon':'interactive-elements','valid-non-negaive-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','md-vcard-label':'microdata','refsRFC1922':'references','activation':'editing','header-and-data-cell-semantics':'tabular-data','create-a-script':'browsers','the-br-element':'semantics','case-sensitivity-and-string-comparison':'infrastructure','when-a-script-completes-loading':'semantics','namespaces':'syntax','command-redo':'editing','attr-meter-value':'text-level-semantics','dom-style-disabled':'semantics','attr-media-src':'video','special':'syntax','application-cache-update-process':'offline','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-cnvas-element','fire-loadedmetadata':'video','dom-htmlallcollection-length':'infrastructure','dom-messagechannel':'comms','attr-iframe-longdesc':'obsolete','attr-input-usemap':'obsolete','dom-tr-deletecell':'tabular-data','alternate-style-sheets':'semantics','dom-table-deletetfoot':'tabular-data','concept-appcache-fallback-ns':'offline','posting-messages':'comms','dom-table-thead':'tabular-data','attr-meta-http-equiv-content-language':'semantics','the-maxlength-attribute':'forms','concept-uda-input':'infrastructure','resetting-a-form':'forms','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':'browsers','attr-hr-align':'obsolete','custom-handlers':'browsers','non-conforming-features':'obsolete','attr-textarea-wrap-soft':'forms','md-vcard-tel-value':'microdata','parse-error':'syntax','dom-datatransfer-fles':'editing','dom-select-options':'forms','link-type-next':'history','concept-fe-disabled':'forms','dom-object-border':'obsolete','dom-feature-strings':'infrastructure','predefined-property-name':'microdata','quirks-mode':'dom','character-encodings-0':'infrastructure','root-element':'infrastructure','path':'the-canvas-element','dom-table-bgcolor':'obsolete','attr-link-href':'semantics','spelling-and-grammar-checking':'editing','bogus-comment-state':'syntax','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','canvaspattern':'the-canvas-element','original-insertion-mode':'syntax','obtain-a-physical-form':'the-xhtml-syntax','syntax-escape-end':'syntax','link-type-external':'history','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','dom-context-2d-textbaseline-top':'the-canvas-element','attr-object-align':'obsolete','u':'obsolete','dom-textarea-rows':'forms','dom-tbody-rows':'tabular-data','dom-video-videoheight':'video','relationship-to-xhtml1':'introduction','dom-form-reset':'forms','link-type-index':'history','dom-frame-scrolling':'obsolete','dom-img-width':'text-level-semantics','fire-a-simple-event':'browsers','browsing-the-web':'history','encoding-microdata':'microdata','assigned-access-key':'editing','attr-fae-form':'forms','refsDOMRANGE':'references','dom-properties':'microdata','dom-area-alt':'the-canvas-element','dom-progress-position':'text-level-semantics','html-fragment-serialization-algorithm':'syntax','the-after-after-body-insertion-mode':'syntax','selectors':'the-xhtml-syntax','vcard':'microdata','dom-media-volume':'video','contenteditable-wrapSemantic':'editing','dom-timeranges-end':'video','dom-htmlcolletion-item':'infrastructure','dom-iframe-src':'text-level-semantics','dom-barprop-visible':'browsers','dom-media-paused':'video','dom-context-2d-shadowcolor':'the-canvas-element','attr-tr-bgcolor':'obsolete','the-img-element':'text-level-semantics','dom-context-2d-ispointinpath':'the-canvas-element','url-property-elements':'microdata','exceptions':'infrastructure','the-document-s-domain':'browsers','dom-accesskey':'editing','event-pause':'video','references':'references','valid-browsing-context-name-or-keyword':'browsers','after-attribute-name-state':'syntax','attr-meta-http-equiv-refresh':'semantics','extracting-vevent-data':'microdata','the-dfn-element':'text-level-semantics','text-plain-encoding-algorithm':'forms','dom-input-min':'forms','attr-td-th-bgcolor':'obsolete','md-vcard-n-honorific-prefix':'microdata','comment-end-bang-state':'syntax','dom-image':'text-level-semantics','attr-hr-noshade':'obsolete','attr-form-autocomplete-off-state':'forms','syntax-attributes':'syntax','canvas-context-2d':'the-canas-element','command-facet-checkedstate':'interactive-elements','refsRFC3279':'references','attr-p-align':'obsolete','md-vevent-rrule':'microdata','dom-marquee-scrolldelay':'obsolete','dom-selection-removeallranges':'editing','concept-datetime-digit':'infrastructure','edits-and-paragraphs':'text-level-semantics','handler-onclick':'browsers','typographic-conventions':'introduction','syntax-comments':'syntax','event-appcache-progress':'offline','split-a-string-on-spaces':'infrastructure','unknown-images':'text-level-semantics','dom-body-vlink':'obsolete','list-of-scripts-that-will-execute-asynchronously':'semantics','the-details-element':'interactive-elements','parsing-main-intable':'syntax','dom-htmloptionscollection-remove':'infrastructure','htmldivelement':'interactive-elements','execCommand':'editing','dom-hx-align':'obsolete','dom-context-2d-translate':'the-canvas-element','dom-media-autobuffer':'video','timers':'browsers','meta-description':'semantics','event-handler-attributes':'browsers','valid-simplecolor':'infrastructure','quota_exceeded_err':'infrastructure','the-div-element':'interactive-elements','event-timeupdate':'video','parsing-cache-manifests':'offline','origin':'browsers','poster-frame':'video','handler-onload':'browsers','refsDOMVIEWS':'references','the-progress-element-0':'the-xhtml-syntax','media-element-event-task-source':'video','md-vcard':'microdata','dom-body-bgcolor':'obsolete','dom-selection-anchoroffset':'editing','htmlmenuelement':'interactive-elements','hasfeature':'infrastructure','dom-marquee-truespeed':'obsolete','scripting-1':'semantics','scripting-0':'infrastructure','attr-input-alt':'forms','handler-onmouseout':'browsers','concept-input-min':'forms','attr-marquee-direction-down':'obsolete','writing':'syntax','list-of-active-intervals':'browsers','edits':'text-level-semantics','relaxing-the-same-origin-restriction':'browsers','history-0':'history','history-1':'introduction','attr-marquee-behavior-scroll':'obsolete','weeks':'infrastructure','create-a-new-messageport-object':'cmms','dom-input-required':'forms','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','shadows':'the-canvas-element','represents':'the-xhtml-syntax','md-vevent-resources':'microdata','url-hostport':'infrastructure','dom-basefont-size':'obsolete','concept-input-min-zero':'forms','handler-window-onmessage':'browsers','dom-htmlpropertycollection-item':'infrastructure','url-host-specific':'infrastructure','attr-base-href':'semantics','dom-media-muted':'video','command-insertorderedlist':'editing','command-unlink':'editing','fire-a-click-event':'browsers','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','dom-messageport-start':'comms','attr-textarea-readonly':'forms','refsCARMOD':'references','dom-subject':'microdata','typed-items':'microdata','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':'browsers','sandboxLinks':'history','standard-metadata-names':'semantics','handler-appcache-onerror':'offline','attr-meta-http-equiv-default-style':'semantics','generic-task-sources':'browsers','dom-input-readonly':'forms','concept-input-step':'forms','default-media':'semantics','dom-li-type':'obsolete','dom-area-search':'the-canvas-element','refsRFC3548':'references','html-elements':'infrastructure','refsWEBLINK':'references','refsRFC2388':'references','set-the-document-s-address':'history','object-plugin':'text-level-semantics','valid-e-mail-address-list':'forms','r1':'tabula-data','limited-quirks-mode':'dom','has-a-border':'the-xhtml-syntax','xpath-1.0-processors':'embedded-content-0','md-vcard-fn':'microdata','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','extracting-a-vcard':'microdata','concept-spellcheck-default-true':'editing','refsRFC1557':'references','rank':'semantics','dom-context-2d-linejoin':'the-canvas-element','the-input-element':'forms','valid-global-date-and-time-string':'infrastructure','the-initial-insertion-mode':'syntax','writing-xhtml-documents':'the-xhtml-syntax','parsing-main-inbody':'syntax','navigator':'browsers','dom-document-bgcolor':'obsolete','link-type-help':'history','dom-area-hash':'the-canvas-element','set-of-comma-separated-tokens':'infrastructure','parsing-main-afterframeset':'syntax','refsRFC4770':'references','securit-2':'browsers','dom-img-height':'text-level-semantics','link-type-author':'history','handler-ondurationchange':'browsers','attr-media-controls':'video','htmlmetaelement':'semantics','dom-undomanager-item':'editing','attr-script-charset':'semantics','range-state':'forms','pre-click-activation-steps':'embedded-content-0','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','dom-marquee-scrollamount':'obsolete','dom-select-length':'forms','in-a-document':'infrastructure','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-valuasdate':'forms','navigate':'history','syntax-ambiguous-ampersand':'syntax','ascii-serialization-of-an-origin':'browsers','submit-delete-action':'forms','top-level-browsing-context':'browsers','simple-color':'infrastructure','attr-button-value':'forms','parse-a-url':'infrastructure','navigatorabilities':'browsers','link-type-nofollow':'history','event-drag':'editing','dom-tbody-choff':'obsolete','handler-onfocus':'browsers','read-image':'history','inuse_attribute_err':'infrastructure','attr-object-declare':'obsolete','predefined-vocabularies-0':'microdata','refsWIN31J':'references','handler-appcache-oncached':'offline','links-forms-and-navigation':'the-xhtml-syntax','guidance-for-conformance-checkers':'text-level-semantics','the-title-element':'dom','dom-ol-reversed':'semantics','fetching-resources':'infrastructure','attr-dim-height':'the-canvas-element','dom-htmlpropertycollection-length':'infrastructure','dom-undomanager-position':'editing','radio-button-state':'forms','algorithm-for-assigning-header-cells:'tabular-data','the-time-element-0':'the-xhtml-syntax','dom-table-tbodies':'tabular-data','htmlmapelement':'the-canvas-element','concept-time-timezone':'text-level-semantics','dom-document-getselection':'editing','dom':'dom','consumed':'syntax','md-vcard-note':'microdata','the-mark-element':'text-level-semantics','dom-undomanager':'editing','same-origin':'browsers','dom-optgroup-label':'forms','dom-td-th-align':'obsolete','concept-fs-target':'forms','dom-undomanager-clearredo':'editing','not_found_err':'infrastructure','dom-htmloptionscollection-length':'infrastructure','concept-datetime-local':'infrastructure','syntax':'syntax','colors':'infrastructure','outerhtml':'embedded-content-0','md-vcard-categories':'microdata','dom-imagedata-data':'the-canvas-element','handler-onplaying':'browsers','refsPROGRESS':'references','dom-fieldset-elements':'forms','htmloptionscollection':'infrastructure','md-vcard-tel-type':'microdata','radionodelist':'infrastructure','refsXMLNS':'references','refsIEEE754':'references',url-path':'infrastructure','domtokenlist':'infrastructure','escaping-the-vcard-text-string':'microdata','dom-marquee-behavior':'obsolete','dom-img-usemap':'text-level-semantics','event-volumechange':'video','dom-validitystate-typemismatch':'forms','parse-a-date-or-time-string':'infrastructure','htmlstyleelement':'semantics','attr-th-scope-colgroup':'tabular-data','script-s-base-url':'browsers','colors-and-styles':'the-canvas-element','attr-fs-enctype':'forms','tool-bars':'interactive-elements','attr-textarea-wrap-hard':'forms','dom-title-text':'semantics','the-sub-and-sup-elements':'text-level-semantics','dom-selection-addrange':'editing','parsing-main-inselectintable':'syntax','xml-fragment-parsing-algorithm':'the-xhtml-syntax','handler-onkeydown':'browsers','md-vcard-impp-value':'microdata','event-error':'video','selector-invalid':'interactive-elements','refsFILEAPI':'references','dom-marquee-stop':'obsolete','implementation-notes':'editing','concept-item':'microdata','the-col-element':'tabular-data','theplaceholder-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':'browsers','xml-fragment-serialization-algorithm':'the-xhtml-syntax','creating-scripts':'browsers','ensure-there-is-a-subpath':'the-canvas-element','marquee-scroll-interval':'obsolete','attr-tdth-headers':'tabular-data','attr-textarea-wrap-soft-state':'forms','active-document':'browsers','using-the-input-element-to-define-a-command':'interactive-elements','hidden-state':'forms','dom-htmloptionscollection-nameditem':'infrastructure','dom-pre-width':'obsolete','miscellaneous-elements':'interactive-elements','attr-li-value':'semantics','has-an-element-in-scope':'syntax','attr-command-type-keyword-checkbox':'interactive-elements,'events':'browsers','newlines':'syntax','md-vcard-type-adr-parcel':'microdata','wrong_document_err':'infrastructure','concept-option-value':'forms','attr-head-profile':'obsolete','handler-appcache-onnoupdate':'offline','dom-keygen-keytype':'forms','md-vcard-rev':'microdata','handler-onloadeddata':'browsers','the-button-element-0':'the-xhtml-syntax','form-associated-element':'forms','dom-spellcheck':'editing','dom-dl-compact':'obsolete','table-model-error':'tabular-data','overview-of-the-parsing-model':'syntax','md-vcard-email-type':'microdata','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','dom-context-2d-arcto':'the-canvas-element','using-the-a-element-to-define-a-command':'interactive-eements','dom-tbody-insertrow':'tabular-data','attr-meter-optimum':'text-level-semantics','refsRFC3023':'references','concept-appcache-explicit':'offline','current-table':'syntax','attr-area-shape-rect':'the-canvas-element','attr-input-value':'forms','radio-button-group':'forms','attr-input-min':'forms','e-mail-state':'forms','gcop-lighter':'the-canvas-element','htmlheadelement':'semantics','matching-a-fallback-namespace':'offline','attr-input-type-url-keyword':'forms','dom-undomanager-clearundo':'editing','unicode-serialization-of-an-origin':'browsers','htmlembedelement':'text-level-semantics','md-vcard-type-tel-work':'microdata','handler-window-onredo':'browsers','dom-map-areas':'the-canvas-element','category-label':'forms','handler-onpause':'browsers','dom-history':'history','character-encoding-declaration':'semantics','concept-uda-setter':'infrastructure','attr-keygen-challenge':'forms','non-scripted':'infrastructure','concept-input-step-default':'forms','date-state':'forms','dom-htmloptionscollection-ad':'infrastructure','attr-div-align':'obsolete','htmlpropertycollection-0':'infrastructure','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','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','dom-canvasgradient-addcolorstop':'the-canvas-element','list-of-active-timeouts':'browsers','md-vcard-nickname':'microdata','attr-hyperlink-media':'history','link-type-prev':'history','dom-area-host':'the-canvas-element','dom-context-2d-measuretext':'the-canvas-element','dom-input-files':'forms','dynamic-changes-to-base-urls':'infrastructre','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':'browsers','interactive-media':'the-xhtml-syntax','dom-opener':'browsers','using-the-option-element-to-define-a-command':'interactive-elements','pixel-manipulation':'the-canvas-element','dom-iframe-marginheight':'obsolete','a-link-or-button-containing-nothing-but-the-image':'text-level-semantics','events-fired-during-a-drag-and-drop-action':'editing','dialog-arguments-origin':'browsers','attr-fe-maxlength':'forms','security-with-canvas-elements':'the-canvas-element','rules-for-parsing-integers':'infrastructure','the-status-bar-barprop-object':'browsers','htmlkeygenelement':'forms','md-vevent-status':'microdata','the-body-element':'dom','heading-content':'dom','handler-onprogress':'browses','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','event-abort':'video','white_space':'infrastructure','using-the-accesskey-attribute-to-define-a-command-on-other-elements':'interactive-elements','handler-onchange':'browsers','dom-script-async':'semantics','event-dragover':'editing','attr-tr-charoff':'obsolete','attr-input-type-time-keyword':'forms','attr-ol-compact':'obsolete','md-vcard-type-tel-fax':'microdata','htmltimeelement':'text-level-semantics','garbage-collection':'infrastructure','the-address-element':'semantics','dom-radionodelist-value':'infrastructure','dom-uda-hash':'infrastructure','item-type':'microdata','attr-iframe-sandbox-allow-forms':'text-level-semantics','validation_err':'infrastructure','the-title-attribute-0':'the-xhtml-syntax','dom-form-dispatchformchange':'forms','collections':'infrastucture','week-state':'forms','unordered-set-of-unique-space-separated-tokens':'infrastructure','scriptingLanguages':'semantics','foster-parent':'syntax','canceled-activation-steps':'embedded-content-0','dom-context-2d-shadowoffsety':'the-canvas-element','concept-script':'browsers','dom-area-media':'the-canvas-element','dom-textarea-input-setselectionrange':'editing','read-plugin':'history','character-reference-data-state':'syntax','background':'introduction','htmlobjectelement':'text-level-semantics','dom-table-frame':'obsolete','scrolling-elements-into-view':'editing','md-vevent-summary':'microdata','case-sensitive':'infrastructure','dom-validitystate-toolong':'forms','running-a-script':'semantics','network_err':'infrastructure','the-marquee-element-0':'the-xhtml-syntax','refsRFC4281':'references','collecting-the-first-vcard-subproperty':'microdata','requirements-for-implementations':'obsolete','security':'dom','dom-table-createcaption':'tabular-data','dom-messageevent-data':'comms','domstringmap-0':'infratructure','find-a-number':'infrastructure','dom-beforeunloadevent-returnvalue':'history','concept-appcache-foreign':'offline','paragraphs':'embedded-content-0','dom-iframe-name':'text-level-semantics','refsBOCU1':'references','head-element-pointer':'syntax','category-submit':'forms','attr-embed-type':'text-level-semantics','manually-releasing-the-storage-mutex':'browsers','insert-an-html-element':'syntax','event-dispatch':'forms','dom-contenteditable':'editing','comments':'syntax','dom-contextmenu':'interactive-elements','fire-loadeddata':'video','attr-command-type-state-checkbox':'interactive-elements','list-of-active-formatting-elements':'syntax','nested-browsing-context':'browsers','attr-area-shape-keyword-rectangle':'the-canvas-element','dom-select-selectedindex':'forms','dom-context-2d-miterlimit':'the-canvas-element','phrasing-content':'dom','the-input-element-as-a-range-control':'the-xhtml-syntax','dnd':'editing','attr-marquee-behavior':'obsolete','event-handler-attributes-0':'browsers','attr-meter-mn':'text-level-semantics','tag-clouds':'semantics','md-vcard-agent':'microdata','md-vcard-type-impp-personal':'microdata','attr-col-width':'obsolete','md-vevent':'microdata','dom-command-label':'interactive-elements','dom-windowtimers-clearinterval':'browsers','attr-command-disabled':'interactive-elements','strike':'obsolete','handler-ondblclick':'browsers','dom-itemprop':'microdata','event-dragenter':'editing','months':'infrastructure','dom-document-lastmodified':'dom','dom-context-2d-beginpath':'the-canvas-element','dom-source-src':'video','annotations-for-assistive-technology-products':'embedded-content-0','attr-script-type':'semantics','creator-document':'browsers','refsMIMESNIFF':'references','interactions-with-xpath-and-xslt':'embedded-content-0','htmltableelement':'tabular-data','dom-iframe-align':'obsolete','encoding-sniffing-algorithm':'syntax','dom-fs-formmethod':'forms','browsing-context-names':'browsers','dom-tr-cells':'tabular-data','reflecting-content-attributes-in-idl-attributes':'infrastructre','parsing':'syntax','rendering':'the-xhtml-syntax','refsATOM':'references','handler-onwaiting':'browsers','attr-param-type':'obsolete','md-vcard-type-adr-postal':'microdata','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','distinguishing-site-wide-headings-from-page-headings':'semantics','refsBIG5':'references','isindex-0':'obsolete','refsRFC1468':'references','dom-messageevent-origin':'comms','dom-context-2d-quadraticcurveto':'the-canvas-element','attr-area-nohref':'obsolete','suffering-from-an-underflow':'forms','index_size_err':'infrastructure','messageport':'comms','serializing-html-fragments':'syntax','attr-fs-formenctype':'forms','attr-fs-action':'forms','concept-video-intrinsc-height':'video','dom-document-querycommandenabled':'editing','cdata-sections':'syntax','dom-col-ch':'obsolete','strip-line-breaks':'infrastructure','command-facet-hiddenstate':'interactive-elements','syntax-escape':'syntax','md-vcard-title':'microdata','dom-context-2d-globalalpha':'the-canvas-element','event-handler-attributes-on-elements-document-objects-and-window-objects':'browsers','handling-first-frame-available':'video','refsJSURL':'references','broadcast-formchange-events':'forms','concept-input-value-dirty':'forms','refsECMA357':'references','dom-context-2d-beziercurveto':'the-canvas-element','valid-date-or-time-string':'infrastructure','concept-bc-noscript':'browsers','frameset':'obsolete','e-mail-type-strings':'microdata','concept-spellcheck-default-false':'editing','md-vcard-adr-street-address':'microdata','adjust-mathml-attributes':'syntax','general-guidelines':'text-level-semantics','concept-input-value-number-string':'forms','tree-construction':'syntax','command-insertunorderedlist':'editing,'dom-context-2d-clearrect':'the-canvas-element','application-x-www-form-urlencoded-encoding-algorithm':'forms','parsing-xhtml-fragments':'the-xhtml-syntax','event-play':'video','no':'no','md-vcard-org':'microdata','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':'browsers','the-input-element-as-domain-specific-widgets':'the-xhtml-syntax','the-location-interface':'history','attr-q-cite':'text-level-semantics','dom-link-media':'semantics','willful-violation':'introduction','script-created-parser':'embedded-content-0','dom-context-2d-shadowblur':'the-canvas-element','meta-generator':'semantics','handler-onstalled':'browsers','attr-spellcheck':'editing','link-type-up':'history','local-date-and-time-state':'forms','the-canvas-state':'the-canvas-element','dom-applet-hspace':'obsolete','attr-a-charset':'obsolete','concept-otput-mode':'forms','handler-appcache-onupdateready':'offline','dom-document-forms':'dom','dom-br-clear':'obsolete','attr-link-charset':'obsolete','concept-datetime':'infrastructure','html-namespace':'infrastructure','dom-selection-collapsetostart':'editing','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','link-type-sidebar':'history','dom-cva-validationmessage':'forms','attr-meta-content':'semantics','the-accesskey-attribute':'editing','command-italic':'editing','handler-window-onafterprint':'browsers','dom-applet-height':'obsolete','hardwareLimitations':'infrastructure','converting-html-to-other-formats':'microdata','attr-caption-align':'obsolete','attr-textarea-placeholder':'forms','concept-appcache-onlinewhitelist':'offline','event-input-change':'forms','sequential-link-types':'history','submit-data-put':'forms','dom-dim-width':'the-canvas-element','md-vcard-adr-type':'microdta','local-dates-and-times':'infrastructure','dom-htmlpropertycollection-nameditem':'infrastructure','editors':'infrastructure','dom-table-insertrow':'tabular-data','xml-parser':'the-xhtml-syntax','concept-n-noscript':'browsers','dom-selection-deletefromdocument':'editing','dom-td-th-abbr':'obsolete','htmlselectelement':'forms','attr-mod-cite':'text-level-semantics','reset-the-insertion-mode-appropriately':'syntax','doctype-public-identifier-double-quoted-state':'syntax','float-nan':'infrastructure','date-or-time-string':'infrastructure','normalized-timeranges-object':'video','the-textarea-element-0':'the-xhtml-syntax','nestedParsing':'syntax','attr-article-pubdate':'semantics','dom-tr-align':'obsolete','concept-http-equivalent-get':'infrastructure','xml-namespace':'syntax','command-undo':'editing','event-undo':'editing','dom-dataset':'dom','dir':'obsolete','timeranges':'video','conformance-checkers':'infrastructure','attr-hyperlink-href':'history','pending-external-script':'semantics','input-type-attr-summry':'forms','list-of-code-entry-points':'browsers','remove-a-token-from-a-string':'infrastructure','number-state':'forms','md-vcard-mailer':'microdata','dom-button-value':'forms','a-form-control-s-value':'forms','the-menu-bar-barprop-object':'browsers','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','global-dates-and-times':'infrastructure','home-subtree':'infrastructure','the-pre-element':'semantics','concept-submit-button':'forms','command-unselect':'editing','mq':'infrastructure','refsSHIFTJIS':'references','processing-model-2':'browsers','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':'referenes','cut-to-clipboard':'editing','md-vcard-type-tel-video':'microdata','the-rt-element':'text-level-semantics','resource-metadata-management':'dom','system-state-and-capabilities':'browsers','link-type-license':'history','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','scripting':'browsers','margins-and-padding':'the-xhtml-syntax','attr-dfn-title':'text-level-semantics','dom-sharedworkerglobalscope-applicationcache':'offline','syntax-tag-name':'syntax','relationships-to-other-specifications':'introduction','changing-the-encoding-while-parsing':'syntax','md-vcard-tel':'microdata','set-of-space-separated-tokens':'infrastructure','browser-interface-elements':'browsers','canvaspixelarray':'the-canvas-element','the-id-attribute':'dom','style-default-media':'semantics','dom-tbody-align':'obsolete','dom-input-type':'forms','dom-li-value':'semantics','htmlparagrahelement':'semantics','dom-uda-hostname':'infrastructure','htmldirectoryelement':'obsolete','concept-time-time':'text-level-semantics','charset512':'semantics','refsRFC2483':'references','messageevent':'comms','refsRFC4329':'references','security_err':'infrastructure','dom-fieldset-type':'forms','the-form-submission-target-browsing-context':'forms','completed-loading':'semantics','image-maps-0':'the-xhtml-syntax','attr-mod-datetime':'text-level-semantics','the-noscript-element':'semantics','attr-input-type-range-keyword':'forms','dom-prompt':'browsers','live':'infrastructure','parse-a-time-string':'infrastructure','dom-td-th-nowrap':'obsolete','scope':'introduction','scriptTagParserResumes':'syntax','dom-table-cellpadding':'obsolete','dom-print':'browsers','obtain-the-storage-mutex':'browsers','dom-applet-object':'obsolete','closing-elements-that-have-implied-end-tags':'syntax','the-pattern-attribute':'forms','dom-area-type':'the-canvas-element','character-reference-in-attribute-value-state':'syntax','repor-the-error':'browsers','parsing-main-incaption':'syntax','attr-td-th-nowrap':'obsolete','before-doctype-name-state':'syntax','attr-tabindex':'editing','refsPSL':'references','dom-area-target':'the-canvas-element','dom-a-rel':'text-level-semantics','dom-object-type':'text-level-semantics','printing':'browsers','values':'microdata','attr-link-media':'semantics','attributes-common-to-form-controls':'forms','handler-onselect':'browsers','htmlformcontrolscollection-0':'infrastructure','handler-ontimeupdate':'browsers','xml-compatible':'infrastructure','dom-window-locationbar':'browsers','htmlbuttonelement':'forms','attr-fs-novalidate':'forms','event-seeked':'video','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':'history','auxiliary-browsng-context':'browsers','table-model':'tabular-data','parsing-main-intr':'syntax','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':'browsers','garbage-collection-and-browsing-contexts':'browsers','attr-script-src':'semantics','htmlareaelement':'the-canvas-element','dom-tr-bgcolor':'obsolete','dom-document-linkcolor':'obsolete','parser-appcache':'syntax','url-query':'infrastructure','attr-hyperlink-type':'history','form-submission-algorithm':'forms','scripts-that-modify-the-page-as-it-is-being-parsed':'syntax','sandboxPluginObject':'text-level-semantics','outline':'semantics','attr-select-multiple':'forms','get-the-timed-task':'browsers','htmlmarqueeelement':'obsolete','attr-iframe-sandbox':'text-level-semantics','address-type-strings':'microdata','dom-location-pathname':'history','the-span-element':'text-level-semantics','comment-star-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','paste-from-selection':'editing','the-keygen-element':'forms','parse-a-local-date-and-time-string':'infrastructure','a-quick-introduction-to-html':'introduction','acknowledge-self-closing-flag':'syntax','htmlquoteelement':'semantics','attr-input-autocomplete':'forms','command-facet-id':'interactive-elements','user-prompts':'browsers','dom-video-poster':'video','dom-a-rellist':'text-level-semantics','forms':'forms','closing-the-input-stream':'embedded-content-0','window':'browsers','when-shadows-are-drawn':'the-canvas-element','listing':'obsolete','attr-th-scope':'tabular-data','dom-object-codetype':'obsolete','event-seeking':'video','attr-object-data':'text-level-semantics','sandboxed-scripts-browsing-context-flag':'text-level-semantics','container-frame-element':'the-xhtml-syntax','print-edia':'the-xhtml-syntax','attr-body-alink':'obsolete','attr-table-align':'obsolete','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':'browsers','dom-ol-compact':'obsolete','the-dialog-element':'semantics','other-metadata-names':'semantics','the-required-attribute':'forms','selector-read-only':'interactive-elements','authors-using-xhtml':'infrastructure','clear-the-list-of-active-formatting-elements-up-to-the-last-marker':'syntax','dom-select-selectedoptions':'forms','manifests':'offline','dom-context-2d-restore':'the-canvas-element','attr-marquee-direction-right':'obsolete','attr-command-radiogroup':'interactive-elements','canvas':'the-canvas-element','command-formatblock':'editing','md-vcard-type-tel-car':'micodata','dom-applet-vspace':'obsolete','attr-dl-compact':'obsolete','dom-navigator-appversion':'browsers','htmlhtmlelement':'semantics','dom-undomanager-add':'editing','md-vevent-sequence':'microdata','htmlunknownelement':'dom','contenteditable-breakBlock':'editing','md-vcard-logo':'microdata','target-element':'history','sectioning-root':'semantics','the-size-attribute':'forms','md-vcard-type-email-internet':'microdata','md-vcard-email-value':'microdata','create-a-script-from-a-node':'browsers','dependencies':'infrastructure','event-online':'offline','handler-onvolumechange':'browsers','htmllinkelement':'semantics','heading-content-0':'dom','concept-error-nothandled':'browsers','already-executed':'semantics','language':'dom','text-html':'iana-considerations','dom-progress-max':'text-level-semantics','copy-and-paste':'editing','mutation-during-parsing':'syntax','valid-list-of-integers':'infrastructure','concept-form-reset':'forms','attr-hr-width':'obsolete','md-vcard-type-tel-voice':'microdata','the-style-attibute':'dom','image-maps':'the-canvas-element','dom-meter-max':'text-level-semantics','cache-host':'offline','dom-table-border':'obsolete','the-document-s-current-address':'dom','dom-document-writeln':'embedded-content-0','handler-marquee-onbounce':'obsolete','dom-context-2d-createpattern':'the-canvas-element','update-the-session-history-with-the-new-page':'history','dom-fae-form':'forms','dom-script-defer':'semantics','dom-document-cookie':'dom','before-attribute-name-state':'syntax','scroll-to-fragid':'history','licensing-works':'microdata','elements-0':'syntax','concept-option-index':'forms','script-execution-environment':'browsers','attr-pre-width':'obsolete','dom-img-longdesc':'obsolete','dom-dragevent-initdrageventns':'editing','attr-marquee-direction':'obsolete','attr-br-clear':'obsolete','md-vcard-tz':'microdata','dom-a-href':'text-level-semantics','dom-window-statusbar':'browsers','concept-table-advance':'tabular-data','dom-imagedata-height':'the-canvas-element','doctype-legacy-string':'syntax','evnt-handler-idl-attributes':'browsers','limited-to-only-known-values':'infrastructure','the-q-element':'text-level-semantics','relationship-to-html4-and-dom2-html':'introduction','event-ended':'video','refsRFC1345':'references','dom-option-tvds':'forms','dom-command-ro-disabled':'interactive-elements','complex-shapes-paths':'the-canvas-element','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':'text-level-semantics','semantics':'semantics','dom-object-declare':'obsolete','dom-document-getitems':'microdata','attr-tbody-valign':'obsolete','refsUTF7':'references','md-vcard-type-tel-pager':'microdata','dom-tokenlist-item':'infrastructure','document.title':'dom','the-scrollbar-barprop-object':'browsers','dom-input-pattern':'forms','syntax-cdata':'syntax','dom-object-hspace':'obsolet','handler-onemptied':'browsers','dom-input-value-default-on':'forms','htmltablecaptionelement':'tabular-data','common-input-element-attributes':'forms','synchronous-section':'browsers','dom-option-index':'forms','dates-and-times':'infrastructure','refsRFC5280':'references','using-the-accesskey-attribute-on-a-label-element-to-define-a-command':'interactive-elements','gcop-copy':'the-canvas-element','optional-tags':'syntax','posting-messages-with-message-ports':'comms','attr-link-sizes':'history','refsGRAPHICS':'references','the-document-s-address':'dom','md-vcard-n-given-name':'microdata','dom-table-deleterow':'tabular-data','list-of-scripts-that-will-execute-as-soon-as-possible':'semantics','canvasgradient':'the-canvas-element','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','commandsubscript':'editing','the-input-element-as-a-file-upload-control':'the-xhtml-syntax','type_mismatch_err':'infrastructure','refsXHTMLMOD':'references','refsOPENSEARCH':'references','attr-form-autocomplete':'forms','md-vcard-type-email-x400':'microdata','converted-to-ascii-uppercase':'infrastructure','property-names':'microdata','dom-area-coords':'the-canvas-element','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','attr-fe-disabled':'forms','dom-area-hostname':'the-canvas-element','dom-context-2d-lineto':'the-canvas-element','dom-htmlpropertycollection-names':'infrastructure','dom-media-ended':'video','dom-channel-port1':'comms','dom-fs-formtarget':'forms','the-article-element':'semantics','algorithm-for-ending-a-row-group':'tabular-data','attr-td-th-abbr':'obsolete','apis-in-html-documents':'embedded-content-0','content-model-flag':'synta','concept-option-selectedness':'forms','atom':'microdata','attr-input-checked':'forms','misinterpreted-for-compatibility':'infrastructure','dom-context-2d-textbaseline':'the-canvas-element','spacer':'obsolete','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':'dom','dom-area-hreflang':'the-canvas-element','syntax_err':'infrastructure','collecting-vcard-subproperties':'microdata','dom-messageevent-ports':'comms','dom-appcache-status':'offline','markup-declaration-open-state':'syntax','link-type-last':'history','refsWHATWGWIKI':'references','custom-validity-error-message':'forms','dom-length':'browsers','the-min-and-max-attributes':'forms','next-input-character':'syntax','attr-area-shape-default':'the-canvas-element','xmp':'obsolete','dom-classname':'dom','media-element-attributes:'video','attr-input-type':'forms','htmllegendelement':'interactive-elements','md-vcard-bday':'microdata','element-level-focus-apis':'editing','algorithm-for-processing-rows':'tabular-data','dom-tdth-colspan':'tabular-data','refsRFC3987':'references','htmlspanelement':'text-level-semantics','refsRFC2445':'references','dom-table-createtfoot':'tabular-data','textmetrics':'the-canvas-element','concept-spellcheck-default':'editing','doctype-system-identifier-double-quoted-state':'syntax','sce-not-copy':'browsers','parsing-main-intd':'syntax','attr-iframe-sandbox-allow-scripts':'text-level-semantics','the-header-element':'semantics','dom-window-personalbar':'browsers','concept-input-min-default':'forms','dom-object-data':'text-level-semantics','after-doctype-public-identifier-state':'syntax','dom-validitystate-rangeunderflow':'forms','examples-1':'microdata','command-insertlinebreak':'editing','replaced-elements':'the-xhtml-syntax','svg-namespace':'syntax','script-nesting-level':'syntax','attr-map-name':'the-canas-element','misnested-tags:-b-i-b-i':'syntax','event-emptied':'video','dom-mod-datetime':'text-level-semantics','md-work':'microdata','document.writeln':'embedded-content-0','updating-an-application-cache':'offline','gcop-source-atop':'the-canvas-element','attr-source-src':'video','the-var-element':'text-level-semantics','dom-datalist-options':'forms','md-vcard-adr-post-office-box':'microdata','attr-script-language':'obsolete','dom-label-htmlfor':'forms','the-undomanagerevent-interface-and-the-undo-and-redo-events':'editing','impp-type-strings':'microdata','row-header':'tabular-data','rules-for-parsing-non-negative-integers':'infrastructure','dom-iframe-longdesc':'obsolete','rules-for-parsing-a-list-of-dimensions':'infrastructure','refsGREGORIAN':'references','ended-playback':'video','event-summary':'offline','attr-option-selected':'forms','infrastructure':'infrastructure','foster-parent-element':'syntax','form-submission':'forms','parsing-main-afterbody':'syntax','attr-hyperlink-target':'history','svg-0':the-canvas-element','dom-selection-getrangeat':'editing','selector-valid':'interactive-elements','handler-window-onundo':'browsers','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','dom-frameset-cols':'obsolete','replacement-enabled':'history','joint-session-history':'history','concept-appcache-selection':'offline','dates':'infrastructure','simple-shapes-rectangles':'the-canvas-element','dom-marquee-loop':'obsolete','dom-context-2d-createlineargradient':'the-canvas-element','s':'obsolete','attr-menu-compact':'obsolete','insert-an-element-into-a-document':'infrastructure','authoring':'the-canvas-element','dom-output-type':'forms','overview':'microdata','url-scheme':'infrastructure','parse_err':'infrastructure','activating-state-object-entries':'history','syntax-elements':'syntax','dom-embed-type':'text-level-semantics','boolean-attribute':'ifrastructure','content-type-sniffing:-image':'infrastructure','tool-bars-0':'the-xhtml-syntax','dom-ul-compact':'obsolete','dom-command-ro-icon':'interactive-elements','attr-iframe-name':'text-level-semantics','dom-iframe-contentwindow':'text-level-semantics','the-command':'interactive-elements','tabular-data':'tabular-data','real-numbers':'infrastructure','dom-changes':'editing','dom-fe-autofocus':'forms','md-vcard-impp-type':'microdata','making-entire-documents-editable':'editing','serialization-of-a-color':'the-canvas-element','dom-confirm':'browsers','htmlbaseelement':'semantics','dom-input-accept':'forms','dom-caption-align':'obsolete','attr-media-loop':'video','handler-onforminput':'browsers','dom-alert':'browsers','dom-fe-name':'forms','the-area-element':'the-canvas-element','doctype-state':'syntax','dom-navigator-canplaytype':'video','link-type-bookmark':'history','concept-input-required':'forms','dom-messageevent-lasteventid':'comms','attr-keygen-keytype':'forms','prefix-match':'infrastructure','resTIS620':'references','image-button-state':'forms','source-node':'editing','time-ranges':'video','handler-window-onerror':'browsers','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','handler-onseeking':'browsers','dom-canvas-width':'the-canvas-element','dom-map-name':'the-canvas-element','the-applet-element':'obsolete','dom-option-disabled':'forms','concept-input-value-string-number':'forms','insertion-point':'syntax','dom-document-open':'embedded-content-0','md-vevent-location':'microdata','the-application-cache-selection-algorithm':'offline','htmlbodyelement':'semantics','concept-input-value-string-date':'forms','boolean-attributes':'infrastructure','refsARIAIMPL':'references','md-vevent-last-modified':'microdata','domstring_size_err':'infrastructure','refsCORS':'references','dom-undomanager-length':'editing','resetBCName':'history','the-dt-elment':'semantics','dom-validitystate-customerror':'forms','table-descriptions':'tabular-data','gcop-destination-in':'the-canvas-element','dom-iframe-marginwidth':'obsolete','dom-selection-tostring':'editing','the-map-element':'the-canvas-element','dom-canvas-getcontext':'the-canvas-element','the-progress-element':'text-level-semantics','copy-to-clipboard':'editing','the-window-object':'browsers','editing-apis':'editing','refsISO885911':'references','concept-time':'infrastructure','dom-validitystate-rangeoverflow':'forms','dom-link-hreflang':'semantics','dom-select-value':'forms','refsBCP47':'references','data-mining':'infrastructure','dom-fs-formenctype':'forms','the-object-element':'text-level-semantics','attr-td-th-char':'obsolete','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':'browsers','rfsRFC2045':'references','dom-th-scope':'tabular-data','md-vevent-categories':'microdata','valid-reversed-dns-identifier':'infrastructure','attr-command-checked':'interactive-elements','dom-context-2d-arc':'the-canvas-element','refsSRGB':'references','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':'history','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','attr-button-type-submit-state':'forms','the-thead-element':'tabular-data','md-vcard-org-organization-unit':'microdata','dom-location-href':'history','md-vcard-photo':'microdata','dom-area-ping':'the-canvas-element','publickeyandchallenge':'forms','md-vevent-exdate':'microdata','event-loadedmetadata':'video','the--element':'semantics','dom-window-blur':'editing','refsRFC3986':'references','the-del-element':'text-level-semantics','the-location-bar-barprop-object':'browsers','concept-appcache-onlinewhitelist-wildcard':'offline','noembed':'obsolete','htmltablecolelement':'tabular-data','dom-window-postmessage-2':'comms','dom-form-submit':'forms','groupings-of-browsing-contexts':'browsers','browsing-context':'browsers','dom-top':'browsers','concept-output-defaultvalue':'forms','dom-form-length':'forms','event-loop':'browsers','dom-document-nameditem-filter':'dom','attr-table-width':'obsolete','audience':'introduction','md-vcard-n-family-name':'microdata','dom-a-pathname':'text-level-semantics','dom-history-pushstate':'history','md-vcard-n-honorific-suffix':'microdata','color-state':'forms','dom-applet-alt':'obsolete','the-dl-element':'semantics','attributes-common-to-td-and-th-elements':'tabular-data','rel-sidebar-hyperlink':'history','interfaces-for-url-manipulation':'infrastructure','x-that':'introduction','element-retrictions':'syntax','lists-of-integers':'infrastructure','run-canceled-activation-steps':'embedded-content-0','refsGBK':'references','attr-base-target':'semantics','values-associated-with-denominator-punctuation-characters':'infrastructure','images':'the-canvas-element','dom-media-played':'video','md-vcard-adr-postal-code':'microdata','attributes-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','dom-context-2d-stroke':'the-canvas-element','override-url':'history','generate-the-triples-for-an-item':'microdata','clipping-region':'the-canvas-element','domtokenlist-0':'infrastructure','dom-htmlcollection-nameditem':'infrastructure','refsHTML4':'references','ordered-set-of-unique-space-separated-tokens':'infrastructure','event-durationchange':'video','attr-td-th-charoff':'obsolee','ratios':'infrastructure','dom-media-network_empty':'video','dom-document-all':'obsolete','gcop-source-in':'the-canvas-element','sbu-not-copy':'browsers','the-meter-element-0':'the-xhtml-syntax','the-script-settings-determined-from-the-node':'browsers','dom-dragevent-initdragevent':'editing','dom-time-time':'text-level-semantics','concept-row':'tabular-data','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':'infrastructure','stack-of-open-elements':'syntax','timer-task-source':'browsers','refsRFC2119':'references','content-type':'infrastructure','attr-body-text':'obsolete','dom-td-th-height':'obsolete','drawing-state':'the-canvas-element','dom-mediaerror-media_err_decode':'video','dom-input-stepup':'forms','the-keygen-element-0':'the-xhtml-syntax','dom-table-caption':'tabular-data','dom-htmloptionscollection-item':'infrastructure','using-the-button-eleent-to-define-a-command':'interactive-elements','refsWEBIDL':'references','invalid_access_err':'infrastructure','attr-link-type':'semantics','attr-command-type-state-command':'interactive-elements','htmltablesectionelement':'tabular-data','dom-canvaspixelarray-set':'the-canvas-element','handler-ondrag':'browsers','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':'browsers','handler-window-onbeforeunload':'browsers','inline-documentation-for-external-scripts':'semantics','handler-oninput':'browsers','the-code-element':'text-level-semantics','concept-select-pick':'forms','increment-the-marquee-current-loop-index':'obsolete','htmlimageelement':'text-level-semantics','dom-video-videowidth':'video','the-personal-bar-barprop-object':'browsers','md-vevent-attach':'microdata','refused-to-allow-the-document-to-be-unloaded':'history','attr-img-align':'obsolete','attr-fs-fornovalidate':'forms','syntax-text':'syntax','using-the-rules-for':'syntax','list-of-scripts-that-will-execute-when-the-document-has-finished-parsing':'semantics','documentSelection':'editing','attr-command-title':'interactive-elements','domstringmap':'infrastructure','the-input-element-as-a-text-entry-widget':'the-xhtml-syntax','mathml':'the-canvas-element','dom-validitystate-patternmismatch':'forms','dom-context-2d-closepath':'the-canvas-element','dom-base-href':'semantics','undomanagerevent':'editing','current-input-character':'syntax','dom-appcache-swapcache':'offline','svg':'the-canvas-element','the-windowproxy-object':'browsers','popstateevent':'history','attr-iframe-scrolling':'obsolete','interactively-validate-the-constraints':'forms','link-type-noreferrer':'history','forming-a-table':'tabular-data','checkbox-state':'forms','general':'microdata','best-representation-of-the-floating-point-number':'infrastructure','attr-fs-method-put':'forms','rules-for-parsing-simple-color-values':'infrastructure','preentational-hints':'the-xhtml-syntax','attr-a-coords':'obsolete','dom-meter-value':'text-level-semantics','the-time-element':'text-level-semantics','dom-form-nameditem':'forms','event-suspend':'video','refsX121':'references','dom-blur':'editing','client-identification':'browsers','concept-id':'dom','dom-object-usemap':'text-level-semantics','obsolete-but-conforming-features':'obsolete','link-type-alternate':'history','refsXMLBASE':'references','dialog-arguments':'browsers','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','dom-context-2d-textbaseline-alphabetic':'the-canvas-element','dom-table-rows':'tabular-data','attr-fs-method-post-keyword':'forms','command-facet-action':'interactive-elements','dom-draggable':'editing','dom-context-2d-fillrect':'the-canvas-element','htmlolistelement':'semantics','redo:-moving-forward-in-the-undo-transactionhistory':'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','barred-from-constraint-validation':'forms','the-em-element':'text-level-semantics','attr-form-autocomplete-on-state':'forms','browsing-context-container':'browsers','definitions-0':'browsers','definitions-1':'browsers','concept-appcache-newer':'offline','browsers':'browsers','killing-scripts':'browsers','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','tee-order':'infrastructure','concept-input-type-file-selected':'forms','refsRFC2109':'references','initial-code-entry-point':'browsers','the-ruby-element':'text-level-semantics','dom-document-embeds':'dom','command-inserthtml':'editing','application-cache-api':'offline','dom-context-2d-font':'the-canvas-element','handler-onsuspend':'browsers','initundomanagereventns':'editing','dom-form-elements':'forms','focus':'editing','command-insertparagraph':'editing','dom-navigator-yieldforstorageupdates':'browsers','dom-document-compatmode':'dom','the-session-history-of-browsing-contexts':'history','sandboxed-navigation-browsing-context-flag':'text-level-semantics','dom-table-rules':'obsolete','dom-fieldset-disabled':'forms','message-channels':'comms','handler-window-onoffline':'browsers','dom-td-th-valign':'obsolete','md-vevent-exrule':'microdata','imagedata':'the-canvas-element','message-ports':'comms','htmltextareaelement':'forms','dom-cva-validity':'forms','dom-timeranges-length':'video','processing-model':'the-cnvas-element','navigate-non-Document':'history','concept-fs-method':'forms','the-link-is-an-alternative-stylesheet':'history','ascii-compatible-character-encoding':'infrastructure','dom-tr-valign':'obsolete','concept-get-attributes-when-sniffing':'syntax','security-3':'history','form-submission-0':'forms','security-1':'browsers','safe-passing-of-structured-data':'infrastructure','security-4':'comms','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','dom-tokenlist-toggle':'infrastructure','flow-content-0':'dom','dom-tokenlist-remove':'infrastructure','refsXHR':'references','dom-window-item':'browsers','do-validitystate-stepmismatch':'forms','sandboxPluginEmbed':'text-level-semantics','no_modification_allowed_err':'infrastructure','attr-meter-low':'text-level-semantics','attr-script-defer':'semantics','refsE163':'references','md-vevent-transp':'microdata','dom-window-scrollbars':'browsers','microdata':'microdata','handler-appcache-ondownloading':'offline','dom-textarea-defaultvalue':'forms','first-script':'browsers','comment-state':'syntax','md-vcard-org-organization-name':'microdata','states-of-the-type-attribute':'forms','url_mismatch_err':'infrastructure','md-vevent-contact':'microdata','url-encoded-form-data':'forms','attr-col-charoff':'obsolete','attr-tbody-align':'obsolete','convert-a-list-of-dimensions-to-a-list-of-pixel-values':'the-xhtml-syntax','declarative-3d-scenes':'no','concept-option-disabled':'forms','inter-element-whitespace':'dom','dom-selection-iscollapsed':'editing','no-quirks-mode':'dom','dom-document-characterset':'dom','md-vcard-type-tel-isdn':'microdata','link-type-first':'history','sffering-from-a-custom-error':'forms','dom-option-tvd':'forms','dom-location-port':'history','the-h1-h2-h3-h4-h5-and-h6-elements':'semantics','the-insertion-mode':'syntax','attr-ul-type':'obsolete','introduction-9':'the-xhtml-syntax','introduction-8':'the-xhtml-syntax','namespace_err':'infrastructure','introduction-4':'editing','introduction-7':'comms','md-vevent-comment':'microdata','introduction-1':'microdata','introduction-0':'forms','introduction-3':'offline','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-context-2d-clip':'the-canvas-element','dom-button-type':'forms','the-ol-element':'semantics','meta-charset-during-parse':'syntax','event-appcache-cached':'offline','constructing-form-data-set':'forms','appcache-history-2':'history','attr-tdth-colspan':'tabular-data','refsABNF':'references','attr-col-span':'tabular-data','dom-textarea-input-selectionstart':'editing','pasing-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','ascii-case-insensitive':'infrastructure','dom-script-src':'semantics','numbers':'infrastructure','default-view':'browsers','vcard-0':'microdata','rules-for-parsing-a-legacy-color-value':'infrastructure','writing-cache-manifests':'offline','sandboxPluginNavigate':'history','dom-tr-ch':'obsolete','undomanager':'editing','frameset-ok-flag':'syntax','attr-tdth-rowspan':'tabular-data','script-s-url-character-encoding':'browsers','width-of-the-select-s-labels':'the-xhtml-syntax','htmlfontelement':'obsolete','menus':'intractive-elements','dom-img-ismap':'text-level-semantics','misnested-tags:-b-p-b-p':'syntax','refsDOM2HTML':'references','the-dd-element':'semantics','after-doctype-system-identifier-state':'syntax','concept-task':'browsers','md-vevent-description':'microdata','dom-area-protocol':'the-canvas-element','stop-parsing':'syntax','enabling-and-disabling-form-controls':'forms','reflect':'infrastructure','dom-linkstyle-disabled':'semantics','escape-flag':'syntax','md-vcard-adr-country-name':'microdata','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','refsHTMLDIFF':'references','dom-canvaspixelarray-get':'the-canvas-element','doument-wide-default-language':'semantics','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':'browsers','meta-application-name':'semantics','predefined-vocabularies':'microdata','dom-body-text':'obsolete','dom-media-have_future_data':'video','dom-mediaerror-media_err_network':'video','examples-0':'microdata','dom-context-2d-strokerect':'the-canvas-element','dom-table-createtbody':'tabular-data','add-an-icalendar-line':'microdata','edits-and-lists':'text-level-semantics','attr-input-type-date-keyword':'forms','dom-context-2d-filltext':'the-canvas-element','dom-hr-size':'obsolete','windowproxy':'browsers','the-2d-context':'the-canvas-element','dom-head-profile':'obsolete','valid-date-or-time-string-in-content':'infrastructure','associatedSection':'semantics','refsCESU8':'references','semantics-0':'dom','interactive-ontent-0':'embedded-content-0','the-nav-element':'semantics','seeking':'video','concept-appcache-status':'offline','dom-table-createthead':'tabular-data','selector-optional':'interactive-elements','rules-for-parsing-a-hash-name-reference':'infrastructure','concept-input-step-scale':'forms','dom-marquee-direction':'obsolete','conformance-requirements':'infrastructure','network-states':'video','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','md-vcard-type-adr-pref':'microdata','generate-implied-end-tags':'syntax','handler-onkeyup':'browsers','attr-progress-value':'text-level-semantics','attr-tbody-char':'obsolete','md-vcard-type-impp-mobile':'microdata','attr-area-shape-keyword-poly':'the-canvas-element','attr-option-value':'forms','event-loops':'browses','dom-showmodaldialog':'browsers','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','dom-selection-rangecount':'editing','tokenization':'syntax','attr-blockquote-cite':'semantics','dom-window-close':'browsers','attr-input-required':'forms','handler-onratechange':'browsers','invalid_modification_err':'infrastructure','task-queue':'browsers','offline':'offline','dom-document-body':'dom','the-microdata-model':'microdata','dom-media-buffered':'video','localization':'no','rules-for-parsing-dimension-values':'infrastructure','attr-img-src':'text-level-semantics','attr-lang':'dom','dom-iframe-frameborder':'obsolete','dom-fs-action':'forms','windowtimers':'browsers','gcop-source-out':'the-canvas-element','attr-option-label':'forms','reversed-dns-identifiers':'infrastructure','dom-windowtimers-setinterval':'browsers''other-parsing-state-flags':'syntax','refsHTTP':'references','selection-0':'editing','expiring-application-caches':'offline','md-vcard-sound':'microdata','dom-focus':'editing','preceded-or-followed':'dom','the-after-after-frameset-insertion-mode':'syntax','md-vcard-type-tel-bbs':'microdata','multipart-form-data-encoding-algorithm':'forms','security-risks-in-the-drag-and-drop-model':'editing','month-state':'forms','handler-onmouseover':'browsers','dom-content':'microdata','allowed-to-navigate':'browsers','dom-hidden':'editing','insert-a-foreign-element':'syntax','md-vcard-role':'microdata','the-script-block-s-source':'semantics','using-the-accesskey-attribute-on-a-legend-element-to-define-a-command':'interactive-elements','dom-colgroup-span':'tabular-data','refsBEZIER':'references','limiting-user-input-length':'forms','scoping':'syntax','attr-a-name':'obsolete','parse-state':'syntax','events-and-the-window-object':'browsers','script':'semantics','introduction':'introduction','menus-intro':'interactive-elemens','dom-context-2d-drawimage':'the-canvas-element','pragma-directives':'semantics','button-state':'forms','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','concept-input-value-default-range':'forms','refsBECSS':'references','dom-applet-align':'obsolete','attr-object-standby':'obsolete','obsolete':'obsolete','sandboxWindowOpen':'browsers','attr-meta-name':'semantics','transparent-content-models':'embedded-content-0','simple-dialogs':'browsers','unload-a-document':'history','dom-tokenlist-tostring':'infrastructure','attr-li-type':'obsolete','text-content':'dom','hierarchical-link-types':'history','attr-input-step':'forms','dom-htmlformcontrolscollection-item':'infrastructure','dom-area-pathname':'the-canvas-element','dom-img-border':'obsolete','building-menus-and-tool-bars':'interactive-elements','handler-window-onpopstate':'browsers','concep-cell':'tabular-data','url-host':'infrastructure','handler-window-onbeforeprint':'browsers','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','executing-a-script-block':'semantics','interactive':'infrastructure','attr-tr-char':'obsolete','dom-window-focus':'editing','dom-table-width':'obsolete','dom-document-hasfocus':'editing','the-colgroup-element':'tabular-data','the-tr-element':'tabular-data','warnings-for-obsolete-but-conforming-features':'obsolete','skip-whitespace':'infrastructure','html-namespace-0':'syntax','cache-failure-steps':'offline','adjust-svg-attributes':'syntax','dom-uda-protocol':'infrastructure','htmlcollection-0':'infrastructure','attr-area-shape-keyword-rect':'the-canvas-element','interaction-with-css':'the-xhtml-syntax','attributes-for-embedded-content-and-images':'the-xhtml-syntax','session-history':'histoy','dom-context-2d-linewidth':'the-canvas-element','dom-window-toolbar':'browsers','dom-document-referrer':'dom','md-vcard-adr-region':'microdata','dom-media-controls':'video','dom-media-network_loaded':'video','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':'syntax','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','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','resetting-rules-for-inherited-properties':'the-xhtml-syntax','commandfacet-label':'interactive-elements','dom-navigator-useragent':'browsers','attr-area-shape':'the-canvas-element','dom-iframe-scrolling':'obsolete','attr-style-title':'semantics','dom-tokenlist-length':'infrastructure','dom-td-th-ch':'obsolete','attributes-for-form-submission':'forms','determining-the-character-encoding':'syntax','concept-input-mutability':'forms','maps-to-the-pixel-length-property':'the-xhtml-syntax','content-type-sniffing':'infrastructure','attr-fs-method-put-keyword':'forms','attr-img-longdesc':'obsolete','concept-input-max':'forms','generic-raw-text-element-parsing-algorithm':'syntax','authors':'comms','html-vs-xhtml':'introduction','refsRFC2046':'references','dom-ol-type':'obsolete','handler-onscroll':'browsers','the-xhtml-syntax':'the-xhtml-syntax','dom-font-face':'obsolete','font':'obsolete','attr-option-disabled':'forms','concept-n-script':'browsers','dom-frames':'browsers','entry-update':'history','appropriate-form-encoding-algorithm':'forms','attr-a-shape':'obsolete','dom-document-dr':'dom','global-attributes':'dom','port-message-queue':'comms','attr-body-background':'obsolete','text-ping':'iana-considerations','dom-object-standby':'obsolete','interactive-elements':'interactive-elements','the-abbr-element':'text-level-semantics','dom-frame-noresize':'obsolete','attr-style-scoped':'semantics','domsettabletokenlist-0':'infrastructure','attribute-value-unquoted-state':'syntax','the-autocomplete-attribute':'forms','algorithm-for-extracting-an-encoding-from-a-content-type':'infrastructure','parse-a-month-component':'infrastructure','iana-considerations':'iana-considerations','attr-input-type-tel-keyword':'forms','dom-fs-enctype':'forms','dom-select-nameditem':'forms','user-interaction-task-source':'browsers','association-of-controls-and-forms':'forms','syntax-doctype':'syntax','generic-rcdata-element-parsing-algorithm':'syntax','structure-of-this-specification':'introduction','attr-table-rules':'obsolete','the-label-element':'forms','canvasrenderingcontext2d':'the-canvas-element','active-prser':'dom','handler-window-onfocus':'browsers','the-meter-element':'text-level-semantics','furthest-ancestor-browsing-context':'browsers','dom-input-max':'forms','concept-fe-checked':'forms','dom-context-2d-textbaseline-middle':'the-canvas-element','md-vcard-email':'microdata','dom-applet-codebase':'obsolete','concept-time-date':'text-level-semantics','attr-param-valuetype':'obsolete','dom-context-2d-textalign':'the-canvas-element','attr-fs-enctype-formdata':'forms','storage-mutex':'browsers','dom-htmlallcollection-item':'infrastructure','parse-a-date-component':'infrastructure','marquee-scroll-distance':'obsolete','dom-context-2d-fillstyle':'the-canvas-element','concept-input-checked-dirty-flag':'forms','lists-of-dimensions':'infrastructure','user-interface':'video','md-vcard-type-adr-work':'microdata','about-blank-origin':'browsers','attr-hyperlink-rel':'history','text-node':'infrastructure','command-insertimage':'editing','attr-ol-start':'semantics','locked-for-focus':'editing','formatblock-candidate':'diting','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','predefined-global-property-name':'microdata','concept-item-corresponding':'microdata','dom-dim-height':'the-canvas-element','embedded-content':'embedded-content-0','limited-to-only-positive-non-zero-numbers':'infrastructure','fonts-and-colors':'the-xhtml-syntax','collections-0':'infrastructure','event-ratechange':'video','dom-embed-src':'text-level-semantics','md-about':'microdata','dom-media-error':'video','dom-input-value-default':'forms','handler-onmousedown':'browsers','dom-context-2d-fill':'the-canvas-element','dom-td-th-choff':'obsolete','dom-body-link':'obsolete','attr-menu-label':'interactive-elements','htmltablerowelement':'tabular-data','hyperlink':'history','dom-navigator':'browsers','attr-body-vlink':'obsolete','handler-ondragleave':'browsers','event-redo':'editing','refsCSSFONTS''references','context':'the-canvas-element','value-sanitization-algorithm':'forms','command-selectall':'editing','document.write':'embedded-content-0','htmlsourceelement':'video','dom-link-sizes':'semantics','concept-form-association':'forms','the-head-element':'dom','refsNPAPI':'references','handler-ondragover':'browsers','collect-a-sequence-of-characters':'infrastructure','handler-onblur':'browsers','dom-id':'dom','dom-context-2d-strokestyle':'the-canvas-element','transformations':'the-canvas-element','md-vevent-url':'microdata','event-dragstart':'editing','tag-name-state':'syntax','using-the-microdata-dom-api':'microdata','json':'microdata','insertadjacenthtml':'embedded-content-0','tag-cloud':'semantics','attr-th-scope-rowgroup':'tabular-data','dom-image-wh':'text-level-semantics','dom-media-play':'video','xmlns-namespace':'syntax','data-state':'syntax','dom-appcache-downloading':'offline','fatal-decode-error':'video','navigate-fragid-step':'history','refsSELECTORS':'references','md-vevent-dtstart':'micodata','md-vevent-geo':'microdata','htmlprogresselement':'text-level-semantics','concept-appcache-completeness':'offline','handler-ondragend':'browsers','dom-uda-port':'infrastructure','dom-form-item':'forms','dom-fs-formnovalidate':'forms','refsPINGBACK':'references','dom-script-charset':'semantics','attr-input-type-datetime-keyword':'forms','propertynodelist':'infrastructure','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','dom-context-2d-rect':'the-canvas-element','dom-tree-accessors':'dom','dimRendering':'the-xhtml-syntax','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','stopped-due-to-rrors':'video','dom-col-choff':'obsolete','dom-windowmodal-returnvalue':'browsers','converting-a-character-width-to-pixels':'the-xhtml-syntax','handler-messageport-onmessage':'comms','md-vcard-type-adr-intl':'microdata','interpolation':'the-canvas-element','dom-select-remove':'forms','dom-context-2d-scale':'the-canvas-element','concept-fs-enctype':'forms','dom-time-timezone':'text-level-semantics','dom-option-label':'forms','ancestor-browsing-context':'browsers','dom-frame-longdesc':'obsolete','dom-a-ping':'text-level-semantics','refsXHTML1':'references','url-decomposition-idl-attributes':'infrastructure','dom-ul-type':'obsolete','attr-fs-formtarget':'forms','dom-select-item':'forms','md-vevent-class':'microdata','concept-http-equivalent-headers':'infrastructure','concept-appcache-fallback':'offline','attr-td-th-align':'obsolete','dom-textarea-value':'forms','a-short-phrase-or-label-with-an-alternative-graphical-representation:-icons-logos':'text-level-semantics','attr-table-cellspacing':'obsolete','dom-lin-href':'semantics','attr-object-name':'text-level-semantics','attr-area-coords':'the-canvas-element','embedding-custom-non-visible-data':'dom','gcop-destination-over':'the-canvas-element','dom-location-protocol':'history','syntax-tags':'syntax','gcop-xor':'the-canvas-element','compatibility-caseless':'infrastructure','alignment':'the-xhtml-syntax','introduction-5':'editing','validitystate':'forms','attr-xml-lang':'dom','dom-location-assign':'history','associating-names-with-items':'microdata','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','attr-hr-size':'obsolete','dom-navigator-platform':'browsers','run-final-activation-steps':'embedded-content-0','attr-form-name':'forms','event-offline':'offline','the-legend-element':'interactive-elements','big':'obsolete','refsPORTERDUFF':'references','empty-cell':'tabular-data','valid-vevent-duration-string':'microdata','attr-cmmand-icon':'interactive-elements','handler-onloadedmetadata':'browsers','dom-appcache-idle':'offline','create-an-element-for-the-token':'syntax','run-pre-click-activation-steps':'embedded-content-0','image-map':'the-canvas-element','dom-context-2d-shadowoffsetx':'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','designMode':'editing','ignore':'infrastructure','valid-local-date-and-time-string':'infrastructure','dom-media-network_idle':'video','introduction-6':'comms','dom-a-protocol':'text-level-semantics','terminology':'infrastructure','event-definitions':'comms','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','following-hyperliks':'history','dom-cva-checkvalidatity':'forms','dom-option-text':'forms','link-type-feed':'history','examples':'microdata','naming-form-controls':'forms','dom-fs-formaction':'forms','refsWIN874':'references','bindings':'the-xhtml-syntax','attr-input-type-keywords':'forms','dom-input-valueasnumber':'forms','dom-legend-form':'interactive-elements','opening-the-input-stream':'embedded-content-0','beforeunloadevent':'history','networking-task-source':'browsers','noframes':'obsolete','refsCSSCOLOR':'references','selector-disabled':'interactive-elements','maps-to-the-dimension-property':'the-xhtml-syntax','dom-datatransfer-dropeffect':'editing','names:-the-itemprop-attribute':'microdata','dom-document-write':'embedded-content-0','the-directionality':'dom','the-list-attribute':'forms','dom-item':'microdata','dom-details-open':'interactive-elements','escapingString':'syntax','dom-media-have_metadata':'video','interactive-content':'embedded-content-0','attr-itemfor':'microdata','dom-location-search':'history','dom-ol-align':'obsolete','dom-table-deletecaption':'tabular-data','dom-tr-rowindex':'tabular-data','event-dragleave':'editing','attr-iframe-src':'text-level-semantics','introduction-2':'browsers','refsRFC5322':'references','queue-a-task':'browsers','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':'browsers','attr-fs-method-get-keyword':'forms','parsing-main-inhead':'syntax','location-of-the-media-resource':'video','refsRFC2646':'references','attr-link-sizes-any':'history','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','reflecting-idl-attributes':'index','event-load':'video','frames':'obsolete','alphanumeric-ascii-characters':'infrastructure','acknowledgements':'acknowledgemnts','suffering-from-a-pattern-mismatch':'forms','dom-document-querycommandvalue':'editing','quirks-mode-doctypes':'syntax','dom-object-vspace':'obsolete','concept-link-type-sniffing':'semantics','concept-input-mutable':'forms','dom-option':'forms','dom-col-span':'tabular-data','text-field-selection':'editing','dom-meta-scheme':'obsolete','sections':'semantics','dom-navigator-registerprotocolhandler':'browsers','document-metadata':'semantics','refsCOMPUTABLE':'references','reconstruct-the-active-formatting-elements':'syntax','common-event-behaviors':'forms','clone-a-port':'comms','htmlulistelement':'semantics','attr-input-align':'obsolete','the-iframe-element':'text-level-semantics','concept-property-value':'microdata','the-before-head-insertion-mode':'syntax','dom-hr-align':'obsolete','navigatoronline':'browsers','dom-table-summary':'obsolete','refsMAILTO':'references','external-resource-link':'semantics','dom-marquee-width':'obsolete','constraint-validation':'forms','md-work-author':'microdata','htmlparamlement':'text-level-semantics','create-a-document-object':'history','md-vcard-adr-locality':'microdata','the-th-element':'tabular-data','md-vevent-rdate':'microdata','attr-iframe-marginheight':'obsolete','event-loadeddata':'video','reset-button-state':'forms','return-value':'browsers','character-encodings':'infrastructure','attr-img-ismap':'text-level-semantics','gcop-destination-atop':'the-canvas-element','text-that-has-been-rendered-to-a-graphic-for-typographical-effect':'text-level-semantics','fragment-case':'syntax','refsCSSOM':'references','dom-document-fgcolor':'obsolete','md-vcard-type-tel-msg':'microdata','attribute-value-single-quoted-state':'syntax','dom-timeranges-start':'video','dom-object-contentwindow':'text-level-semantics','elements-in-the-html-namespace':'infrastructure','attr-col-char':'obsolete','md-vcard-class':'microdata','valid-e-mail-address':'forms','refsIANACHARSET':'references','attr-th-scope-auto':'tabular-data','undo:-moving-back-in-the-undo-transaction-history':'editing','attr-iput-list':'forms','dom-getselection':'editing','attr-colgroup-span':'tabular-data','attr-object-archive':'obsolete','event-appcache-noupdate':'offline','elements':'dom','mediaevents':'video','dom-command-ro-checked':'interactive-elements','md-vcard-n':'microdata','editable':'editing','line-styles':'the-canvas-element','plain-text-form-data':'forms','application-cache-group':'offline','dom-context-2d-createradialgradient':'the-canvas-element','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','attr-input-readonly':'forms','attr-input-max':'forms','align-descendants':'the-xhtml-syntax','an-introduction-to-error-handling-and-strange-cases-in-the-parser':'syntax','extensibility':'infrastructur','attr-area-shape-keyword-circle':'the-canvas-element','script-s-browsing-context':'browsers','undo-transaction-history':'editing','event-progress':'video','html-parser':'syntax','change-the-encoding':'syntax','md-vcard-type-impp-business':'microdata','submit-body':'forms','headings-and-sections':'semantics','dom-table-cellspacing':'obsolete','handler-ondragstart':'browsers','parse-a-month-string':'infrastructure','handler-onmousewheel':'browsers','dom-map-images':'the-canvas-element','dom-option-t':'forms','handler-onabort':'browsers','md-vcard-adr-extended-address':'microdata','concept-week':'infrastructure','md-vcard-url':'microdata','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','valid-week-string':'infrastructure','valid-url':'infrastructure','dom-selection-selectallchildren':'editing','attr-data':'dom','before-attribute-value-stae':'syntax','concept-fetch-loaded':'infrastructure','printing-steps':'browsers','gcop-source-over':'the-canvas-element','multipart-form-data':'forms','attr-output-for':'forms','dom-link-rellist':'semantics','contenteditable':'editing','event-appcache-updateready':'offline','htmltableheadercellelement':'tabular-data','vevent':'microdata','concept-column':'tabular-data','other-elements-attributes-and-apis':'obsolete','compositing':'the-canvas-element','dom-textarea-required':'forms','dom-htmlformcontrolscollection-nameditem':'infrastructure','unloading-documents':'history','dom-a-rev':'obsolete','dom-propertynodelist-contents':'infrastructure','dom-context-2d-rotate':'the-canvas-element','propertyvaluearray':'infrastructure','dimension-attributes':'the-canvas-element','browser-state':'offline','handler-onmouseup':'browsers','attr-embed-src':'text-level-semantics','video':'video','foster-parenting':'syntax','attr-img-name':'obsolete','icalendar':'microdata','dom-script-text':'semantics','affected-by-a-base-urlchange':'infrastructure','index':'index','attr-media-autobuffer':'video','the-hgroup-element':'semantics','md-vevent-created':'microdata','handler-window-onload':'browsers','code-point-length':'infrastructure','attr-ol-reversed':'semantics','valid-mime-type':'infrastructure','acronym':'obsolete','attr-meter-max':'text-level-semantics','valid-time-string':'infrastructure','attr-contextmenu':'interactive-elements','attr-textarea-cols-value':'forms','dom-object-code':'obsolete','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','attr-form-accept-charset':'forms','domsettabletokenlist':'infrastructure','a-key-part-of-the-content':'text-level-semantics','refsSCSU':'references','dom-input-value-value':'forms','atom-namespace':'microdata','media-element':'video','the-constraint-validation-api':'forms','dom-td-th-width':'obsolete','attr-fs-method-post':'forms','attr-tdth-axis':'obsolete','dom-marquee-start':'obsolete','link-type-pingback':'history','refsBIDI':'references','the-hr-element':'semantics','rdf':'microdata','dom-input-align':'obsolete','microdata-dom-api':'microdata','dom-self':'browsers','dom-history-clearstate':'history','dom-tr-insertcell':'tabular-data','validity-states':'forms','the-script-block-s-type':'semantics','event-canplaythrough':'video','child-browsing-context':'browsers','dom-history-back':'history','dom-media-src':'video','default-button':'forms','attr-fs-formaction':'forms','handler-onmousemove':'browsers','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','attr-td-th-valign':'obsolete','htmlmeterelement':'text-level-semantics','dom-media-currentsrc':'video','dom-marquee-bgcolor':'obsolete','attr-object-code':'obsolete','content-type-sniffing-0':'infrastructure','dom-link-type':'semantics','octype-name-state':'syntax','refsWIN949':'references','refsCSS':'references','the-step-attribute':'forms','concept-appcache-obsolete':'offline','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','dom-a-port':'text-level-semantics','attr-img-vspace':'obsolete','windowmodal':'browsers','dom-cva-setcustomvalidity':'forms','dom-img-align':'obsolete','application-microdata-json':'iana-considerations','the-tool-bar-barprop-object':'browsers','entangle':'comms','md-work-title':'microdata','focusable':'editing','number-of-days-in-month-month-of-year-year':'infrastructure','hyperlink-elements':'history','read-xml':'history','dom-function-call':'browsers','dom-windowtimers-settimeout':'browsers','handler-onshow':'browser','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':'history','dom-document-getelementsbyclassname':'dom','submit-get-action':'forms','refsDOMEVENTS':'references','list-of-dragged-nodes':'editing','display-types':'the-xhtml-syntax','dom-htmlformcontrolscollection-length':'infrastructure','refsARIA':'references','parsing-main-inframeset':'syntax','after-doctype-name-state':'syntax','attr-meta-http-equiv':'semantics','parsing-html-fragments':'syntax','htmldatalistelement':'forms','attr-textarea-rows':'forms','dom-input-stepdown':'forms','mathml-namespace':'syntax','specially-focusable':'editing','dom-applet-name':'obsolete','dom-title':'dom','algorithm-for-growing-dowward-growing-cells':'tabular-data','dom-appcache-obsolete':'offline','the-style-element':'semantics','refsISO8601':'references','dom-img-src':'text-level-semantics','dom-context-2d-textbaseline-ideographic':'the-canvas-element','refsRFC1494':'references','md-vcard-label-type':'microdata','concept-appcache-init':'offline','md-vcard-type-tel-modem':'microdata','origin-0':'browsers','event-appcache-obsolete':'offline','refsX690':'references','focus-management':'editing','common-grouping-idioms':'semantics','attr-img-alt':'text-level-semantics','context-menus':'interactive-elements','dom-appcache-checking':'offline','handler-oninvalid':'browsers','dom-canvaspixelarray-length':'the-canvas-element','refsXML':'references','attr-button-type-reset-state':'forms','the-mark-element-0':'the-xhtml-syntax','using-the-command-element-to-define-a-command':'interactive-elements','dom-media-seekable':'video','parsing-main-inheadnoscript':'syntax','dom-window-postmessage-3':'comms','event-appcache-checking':'offline','selecto-indeterminate':'interactive-elements','attr-iframe-marginwidth':'obsolete','concept-js-deref':'browsers','concept-fetch-total':'infrastructure','command-superscript':'editing','applicationcache':'offline','frames-and-framesets':'the-xhtml-syntax','attr-button-type-button':'forms','concept-fs-novalidate':'forms','dom-a-type':'text-level-semantics','parsing-main-intabletext':'syntax','attr-tbody-charoff':'obsolete','attr-iframe-align':'obsolete','attr-input-type-hidden-keyword':'forms','coercing-an-html-dom-into-an-infoset':'syntax','dom-messageevent-initmessageevent':'comms','documentEncoding':'syntax','images-0':'the-xhtml-syntax','htmlinputelement':'forms','attr-td-th-width':'obsolete','dom-output-htmlfor':'forms','htmloptionelement':'forms','attr-input-type-file-keyword':'forms','the-base-element':'semantics','the-basic-syntax':'microdata','submit-mutate-action':'forms','dom-option-form':'forms','dom-img-complete':'text-level-semantics','dom-selection-collapsetoend':'editing','dom-document-querycommandstte':'editing','dom-uda-pathname':'infrastructure','dom-command-radiogroup':'interactive-elements','entity-references':'infrastructure','concept-textarea-raw-value':'forms','handler-oncanplay':'browsers','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':'browsers','event-handler-content-attributes':'browsers','undo-position':'editing','linkTypes':'history','dom-undomanager-remove':'editing','items:-the-item-attribute':'microdata','dom-iscontenteditable':'editing','text-0':'syntax','the-html-element':'dom','attr-col-valign':'obsolete','processing-model-0':'tabular-data','processing-model-1':'browsers','dom-context-2d-stroketext':'the-canvas-element','refsMATHML':'references','concept-fs-action':'forms','attr-progress-ax':'text-level-semantics','link-type-archives':'history','offsets-into-the-media-resource':'video','a-type-that-the-user-agent-knows-it-cannot-render':'video','md-vcard-type-tel-pref':'microdata','runtime-script-errors':'browsers','dom-time-date':'text-level-semantics','constraints':'forms','history-notes':'history','refsJSON':'references','contenteditable-delete':'editing','attr-input-multiple':'forms','the-input-element-as-a-color-well':'the-xhtml-syntax','dom-context-2d-createimagedata':'the-canvas-element','dom-audio-s':'video','dom-document-charset':'dom','submit-mailto-body':'forms','meta':'semantics','dom-a-hreflang':'text-level-semantics','attr-optgroup-disabled':'forms','attr-td-th-height':'obsolete','sandboxed-forms-browsing-context-flag':'text-level-semantics','refsPNG':'references','dom-media-network_no_source':'video','dom-article-pubdate':'semantics','dom-basefont-color':'obsolete','the-before-html-insertion-mode':'syntax','the-hidden-attribute':'editing','dom-selection-focusoffset':'editing''handler-onerror':'browsers','navigating-across-documents':'history','dom-input-selectedoption':'forms','attr-input-accept':'forms','get-the-object':'microdata','dom-input-defaultvalue':'forms','dom-document-anchors':'obsolete','attr-input-type-month-keyword':'forms','secondary-browsing-context':'browsers','add-a-vcard-line':'microdata','undo':'editing','dom-textmetrics-width':'the-canvas-element','suffering-from-being-missing':'forms','dom-iframe-sandbox':'text-level-semantics','refsRFC2237':'references','command-facet-disabledstate':'interactive-elements','refsCOOKIES':'references','usage-summary':'text-level-semantics','top-level-microdata-items':'microdata','dom-media-pause':'video','dom-marquee-vspace':'obsolete','times':'infrastructure','attr-details-open':'interactive-elements','dom-input-size':'forms','dom-document-links':'dom','introduction-10':'the-xhtml-syntax','htmltabledatacellelement':'tabular-data','fire-a-progress-event':'browsers','footnotes':'text-level-semantics','concept-input-max-defaul':'forms','dom-window-menubar':'browsers','enabling-and-disabling-scripting':'browsers','htmlbasefontelement':'obsolete','read-ua-inline':'history','attr-abbr-title':'text-level-semantics','event-waiting':'video','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':'infrastructure','the-xml:base-attribute-xml-only':'dom','obsolete-permitted-doctype':'syntax','channel-messaging':'comms','sectioning-content-0':'dom','calling-scripts':'browsers','telephone-type-strings':'microdata','htmlelement':'dom','selector-required':'interactive-elements','event-stalled':'video',url-port':'infrastructure','handler-window-onstorage':'browsers','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','md-vcard-type-tel-pcs':'microdata','space-separated-tokens':'infrastructure','contenteditable-br':'editing','dom-channel-port2':'comms','direction-of-playback':'video','the-details-element-0':'the-xhtml-syntax','htmlallcollection-0':'infrastructure','dom-col-valign':'obsolete','dom-input-src':'forms','md-vcard-sort-string':'microdata','concept-textarea-dirty':'forms','await-a-stable-state':'browsers','dom-command-ro-label':'interactive-elements','xml-documents':'dom','the-indicated-part-of-the-document':'history','attr-menu-type':'interactive-elements','dom-select-multiple':'forms','dom-frame-frameborder':'obsolete','dom-canvas-height':'the-canvas-element','dom-document-querycommandindeterm':'editing','security-and-rivacy-considerations':'video','dom-htmlcollection-tags':'infrastructure','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','handler-oncontextmenu':'browsers','attr-object-vspace':'obsolete','documents':'dom','invalid_character_err':'infrastructure','md-vcard-impp':'microdata','unexpected-markup-in-tables':'syntax','attr-object-hspace':'obsolete','dom-context-2d-save':'the-canvas-element','refsXSLT10':'references','attr-meta-charset':'semantics','attr-marquee-behavior-slide':'obsolete','dom-context-2d-transform':'the-canvas-element','dom-image-w':'text-level-semantics','command-inserttext':'editing','attr-command-type-state-radio':'interactive-elements','crossDocumentMessages':'comms','tool-bar-state':'interactive-elements','the-selecton':'editing','dom-navigator-appname':'browsers','handler-onkeypress':'browsers','the-fieldset-element-0':'the-xhtml-syntax','dom-tdth-headers':'tabular-data','htmlcanvaselement':'the-canvas-element','dom-dir':'dom','img-available':'text-level-semantics','md-vcard-type-impp-pref':'microdata','dom-classlist':'dom','handler-window-onunload':'browsers','url':'infrastructure','dom-context-2d-getimagedata':'the-canvas-element','dom-td-th-bgcolor':'obsolete','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':'the-canvas-element','attr-col-align':'obsolete','javascript-protocol':'browsers','dom-frame-contentdocument':'obsolete','dom-tr-choff':'obsolete','attr-time-datetime':'text-level-semantics','the-body-element-0':'semantics','dom-media-seeking':'video','html-documents':'dom','attr-table-cellpadding':'obsolete','pause':'browsers','comms':'comms','sectioing-content':'dom','the-html-element-0':'semantics','not_supported_err':'infrastructure','attr-area-shape-keyword-polygon':'the-canvas-element','dom-document-vlinkcolor':'obsolete','attr-body-bgcolor':'obsolete','messagechannel':'comms','comma-separated-tokens':'infrastructure','ready-for-editing-host-commands':'editing','dom-getelementsbyclassname':'dom','dialogs-implemented-using-separate-documents':'browsers','md-vcard-type-email-pref':'microdata','attr-hx-align':'obsolete','labeled-control':'forms','dom-font-size':'obsolete','effectAllowed-initialization':'editing','dom-datatransfer-addelement':'editing','selector-link':'interactive-elements','paste-from-clipboard':'editing','event-playing':'video','gcop-destination-out':'the-canvas-element','document-s-character-encoding':'dom','dom-object-codebase':'obsolete','password-state':'forms','the-kbd-element':'text-level-semantics','htmlpropertycollection':'infrastructure','view':'browsers','dom-textarea-readonly':'forms','selecting-names-when-defining-vocabuaries':'microdata','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':'browsers','concept-month':'infrastructure','attr-video-poster':'video','handler-window-onresize':'browsers','dom-img-hspace':'obsolete','link-type-prefetch':'history','dom-a-host':'text-level-semantics','syntax-escape-start':'syntax','the-tfoot-element':'tabular-data','event-dragend':'editing','dom-object-name':'text-level-semantics','dom-script-type':'semantics','the-datalist-element':'forms','attr-table-bgcolor':'obsolete','md-vcard-geo':'microdata','dom-meter-high':'text-level-semantics','current-node':'syntax','dom-imagedata-width':'the-canvas-element','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-t-be-able-to-view-images':'text-level-semantics','dom-tbody-deleterow':'tabular-data','dom-a-hash':'text-level-semantics','attr-meta-scheme':'obsolete','attributes':'syntax','htmlarticleelement':'semantics','dom-object-align':'obsolete','close-the-cell':'syntax','comment':'syntax','dom-div-align':'obsolete','valid-date-string':'infrastructure','md-vevent-duration':'microdata','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':'browsers','dom-textarea-placeholder':'forms','seekUpdate':'video','dom-popstateevent-initpopstateeventns':'history','handler-marquee-onstart':'obsolete','form-owner':'forms','refsWIN1254':'references','attribute-value-double-quoted-state':'syntax','dom-param-type':'obsolete','dom-menu-type':'interactive-elements','htmlframeelement':'obsolete','dom-appcache-uncached':'offline','concept-input-value-dirty-lag':'forms','dom-media-playbackrate':'video','dom-style-media':'semantics','selector-visited':'interactive-elements','attr-input-src':'forms','dom-col-width':'obsolete','rules-for-parsing-a-list-of-integers':'infrastructure','attr-tr-valign':'obsolete','playing-the-media-resource':'video','dom-context-2d-moveto':'the-canvas-element','defining-term':'text-level-semantics','the-textarea-element':'forms','attr-dim-width':'the-canvas-element','dom-datatransfer-cleardata':'editing','dom-context-2d-canvas':'the-canvas-element','md-vcard-type-adr-dom':'microdata','concept-param-parameter':'text-level-semantics','dom-dragevent-datatransfer':'editing','md-vcard-type-tel-home':'microdata','earliest-possible-position':'video','dom-style-type':'semantics','scripting-flag':'syntax','valid-integer':'infrastructure','dom-messageport-close':'comms','event-firing':'browsers','dom-param-valuetype':'obsolete','the-hr-element-0':'the-xhtml-syntax','immediate-user-selection':'editing','dom-form-dispatchforminput':'forms','attrobject-codetype':'obsolete','noopener':'browsers','concept-appcache-master':'offline','dom-messageevent-initmessageeventns':'comms','dom-media-network_loading':'video','consume-a-character-reference':'syntax','submit-data-post':'forms','nested-browsing-contexts':'browsers','dom-optgroup-disabled':'forms','dom-context-2d-settransform':'the-canvas-element','event-canplay':'video','adjust-foreign-attributes':'syntax','close-tag-open-state':'syntax','dom-command-disabled':'interactive-elements','command-createlink':'editing','attr-media-autoplay':'video','htmldlistelement':'semantics','the-tbody-element':'tabular-data','event-loadend':'video','link-type-search':'history','named-access-on-the-window-object':'browsers','dom-output-defaultvalue':'forms','handler-window-ononline':'browsers','other-pragma-directives':'semantics','dom-fs-novalidate':'forms','htmlformcontrolscollection':'infrastructure','md-vcard-type-tel-cell':'microdata','md-work-license':'microdata','valid-denominator-punctuation-character':'infrasructure','center':'obsolete','refsWIN1252':'references','dom-legend-align':'obsolete','dom-meter-min':'text-level-semantics','dom-selection-anchornode':'editing','unit-of-related-browsing-contexts':'browsers','md-vcard-n-additional-name':'microdata','dom-area-nohref':'obsolete','handler-onloadstart':'browsers','textFieldSelection':'editing','audio':'video','dom-document-alinkcolor':'obsolete','md-vcard-type-impp-home':'microdata','htmlcollection':'infrastructure','dom-meter-low':'text-level-semantics','dom-link-target':'obsolete','the-section-element':'semantics','link-type-stylesheet':'history','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','syntax-end-tag':'syntax','dom-frameelement':'browsers','elements-in-the-dom':'dom','attr-input-pattern':'forms','attr-link-hreflang':'semantics','dom-history-forward':'history','attr-html-version':'obsolete','editing-host':'editig','outlines':'semantics','after-attribute-value-quoted-state':'syntax','feed-the-parser':'the-xhtml-syntax','dom-tokenlist-contains':'infrastructure','attr-marquee-truespeed-true':'obsolete','list-of-scripts-pending-after-the-parser-stopped':'syntax','dom-media-loop':'video','dom-htmlallcollection-tags':'infrastructure','attr-area-shape-poly':'the-canvas-element','hyperlink-auditing':'history','percentages-and-dimensions':'infrastructure','drawing-model':'the-canvas-element','dom-option-tv':'forms','dom-meta-name':'semantics','dom-document-querycommandsupported':'editing','the-fieldset-element':'forms','extracting-json':'microdata','dom-a-target':'text-level-semantics','dom-document-activeelement':'editing','innerhtml':'embedded-content-0','steps-for-finding-one-or-two-numbers-of-a-ratio-in-a-string':'infrastructure','concept-error-handled':'browsers','attr-link-target':'obsolete','dom-context-2d-textbaseline-hanging':'the-canvas-element','concept-input-value-date-string':'forms','dom-form-checkvalidity':'orms','dom-navigator-registercontenthandler':'browsers','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','dom-style-scoped':'semantics','how-to-read-this-specification':'introduction','dom-location-reload':'history','concept-input-list':'forms','text-cache-manifest':'iana-considerations','dom-p-align':'obsolete','attr-link-rel':'semantics','htmlformelement':'forms','attr-body-link':'obsolete','sample-handler-impl':'browsers','handler-onreadystatechange':'browsers','htmlanchorelement':'text-level-semantics','drag-and-drop-processing-model':'editing','rules-for-serializing-simple-color-values':'infrastructure','attr-textarea-wrap':'forms','event-loadstart':'video','md-vevent-dtend':'microdata','sandboxPluginApplet':'obsolete','the-dir-attribute':'dom','the-doctype':'syntax','dom-location-hostname':'history','dom-label-contrl':'forms','common-microsyntaxes':'infrastructure','dom-meta-httpequiv':'semantics','attr-img-border':'obsolete','concept-appcache-manifest':'offline','create-an-impotent-script':'browsers','md-vcard-label-value':'microdata','suffering-from-a-type-mismatch':'forms','other-link-types':'history','dom-undomanagerevent-data':'editing','event-appcache-error':'offline','application-cache':'offline','current-drag-operation':'editing','the-small-element':'text-level-semantics','event-message':'comms','custom-data-attribute':'dom','session-history-entry':'history','dom-frame-src':'obsolete','dom-option-value':'forms','common-input-element-apis':'forms','messageportarray':'comms','dom-lang':'dom','dom-style':'dom','focusing-steps':'editing','potentially-playing':'video','dom-context-2d-globalcompositeoperation':'the-canvas-element','attr-ul-compact':'obsolete','navigatorid':'browsers','dom-media-currenttime':'video','htmlframesetelement':'obsolete','when-the-drag-and-drop-operation-starts-or-ends-in-another-applicatin':'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':'microdata','command-facet-hint':'interactive-elements','predefined-type':'microdata','script-s-global-object':'browsers','event-input-input':'forms','selector-read-write':'interactive-elements','md-vcard-type-impp-work':'microdata','dom-lfe-labels':'forms','dom-datatransfer-setdata':'editing','column-header':'tabular-data','loading-the-media-resource':'video','time-state':'forms','application-xhtml-xml':'iana-considerations','md-vcard-adr':'microdata','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':'browsers','dom-insertadjacenthtml':'embedded-content-0','algorithm-for-processing-row-groups':'tabular-data','refsSVG':'references','attr-link-rev':'obsolete','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','barprop':'browsers','function':'browsers','dom-messageport-postmessage':'comms','serializability-of-script-execution':'introduction','attr-input-type-search-keyword':'forms','handler-ondragenter':'browsers','jump-to-a-code-entry-point':'browsers','handler-onseeked':'browsers','dom-td-th-axis':'obsolete','dom-outerhtml':'embedded-content-0','fully-active':'browsers','structured-clone':'infrastructure','rateUpdate':'video','internal-structured-cloning-algorithm':'infrastructure','current-playback-position':'video','attr-textarea-maxlength':'forms','current-entry-o-the-joint-session-history':'history','dom-location-host':'history','dom-messageevent-source':'comms','datatransfer':'editing','handler-oncanplaythrough':'browsers','dom-object-contentdocument':'text-level-semantics','caret-position':'editing','the-undomanager-interface':'editing','attr-legend-align':'obsolete','end-tags':'syntax','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','dom-context-2d-linecap':'the-canvas-element','paused-for-user-interaction':'video','dom-context-2d-textbaseline-bottom':'the-canvas-element','space-character':'infrastructure','getting-media-metadata':'video','cdata-rcdata-restrictions':'syntax','dom-table-align':'obslete','rel-icon':'history','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':'infrastructure','dom-progress-value':'text-level-semantics','dom-link-disabled':'semantics','event-appcache-downloading':'offline','comment-end-state':'syntax','user-agents':'comms','attr-canvas-height':'the-canvas-element','current-entry':'history','dom-htmlcollection-length':'infrastructure','link-type-tag':'history','contenteditable-insertText':'editing','refsRFC2426':'references','attr-object-codebase':'obsolete','dom-keygen-type':'forms','dom-location-replace':'history','htmllabelelement':'forms','attr-input-autocomplete-default-state':'forms','start-tags':'syntax','posted-message-task-source':'comms','comment-end-dah-state':'syntax','content-categories':'dom','comment-start-state':'syntax','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: semantics.html
===================================================================
RCS file: /sources/public/html5/spec/semantics.html,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -d -r1.191 -r1.192
--- semantics.html 30 Aug 2009 21:46:30 -0000 1.191
+++ semantics.html 31 Aug 2009 02:36:28 -0000 1.192
@@ -182,7 +182,7 @@
<a href="embedded-content-0.html">← 3.2.5.1.6 Embedded content</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="text-level-semantics.html">4.6 Text-level semantics →</a>
- </nav><p>This is revision 1.2891.</p>
+ </nav><p>This is revision 1.2893.</p>
<h2 id="semantics"><span class="secno">4 </span>The elements of HTML</h2><h3 id="the-root-element"><span class="secno">4.1 </span>The root element</h3><h4 id="the-html-element-0"><span class="secno">4.1.1 </span>The <dfn><code>html</code></dfn> element</h4><dl class="element"><dt>Categories</dt>
@@ -245,9 +245,9 @@
first heading does not have to stand alone when taken out of
context.</p><p>There must be no more than one <code><a href="#the-title-element-0">title</a></code> element per
document.</p><p>The <code><a href="#the-title-element-0">title</a></code> element must not contain any
- elements.</p><p>The <dfn id="dom-title-text" title="dom-title-text"><code>text</code></dfn> DOM
+ elements.</p><p>The <dfn id="dom-title-text" title="dom-title-text"><code>text</code></dfn> IDL
attribute must return the same value as the <code>textContent</code>
- DOM attribute on the element.</p><div class="example">
+ IDL attribute on the element.</p><div class="example">
<p>Here are some examples of appropriate titles, contrasted with
the top-level headings that might be used on those same pages.</p>
@@ -268,7 +268,7 @@
...
<h1>The Dances</h1></pre>
- </div><p>The string to use as the document's title is given by the <code title="dom-document-title"><a href="dom.html#document.title">document.title</a></code> DOM
+ </div><p>The string to use as the document's title is given by the <code title="dom-document-title"><a href="dom.html#document.title">document.title</a></code> IDL
attribute. <span class="impl">User agents should use the document's
title when referring to the document in their user
interface.</span></p><h4 id="the-base-element"><span class="secno">4.2.3 </span>The <dfn><code>base</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><dl class="element"><dt>Categories</dt>
@@ -314,7 +314,7 @@
with <code title="attr-base-target"><a href="#attr-base-target">target</a></code> attributes, all but
the first are ignored.</p>
- <p>The <dfn id="dom-base-href" title="dom-base-href"><code>href</code></dfn> and <dfn id="dom-base-target" title="dom-base-target"><code>target</code></dfn> DOM attributes
+ <p>The <dfn id="dom-base-href" title="dom-base-href"><code>href</code></dfn> and <dfn id="dom-base-target" title="dom-base-target"><code>target</code></dfn> IDL attributes
must <a href="infrastructure.html#reflect">reflect</a> the respective content attributes of the
same name.</p>
@@ -574,13 +574,13 @@
rules given in HTTP; the rules of <em>this</em> specification don't
apply.) <a href="references.html#refsHTTP">[HTTP]</a> <a href="references.html#refsWEBLINK">[WEBLINK]</a></p> <!-- WEBLINK is ref for Link: header -->
- <p>The DOM attributes <dfn id="dom-link-href" title="dom-link-href"><code>href</code></dfn>, <dfn id="dom-link-rel" title="dom-link-rel"><code>rel</code></dfn>, <dfn id="dom-link-media" title="dom-link-media"><code>media</code></dfn>, <dfn id="dom-link-hreflang" title="dom-link-hreflang"><code>hreflang</code></dfn>, and <dfn id="dom-link-type" title="dom-link-type"><code>type</code></dfn>, and <dfn id="dom-link-sizes" title="dom-link-sizes"><code>sizes</code></dfn> each must
+ <p>The IDL attributes <dfn id="dom-link-href" title="dom-link-href"><code>href</code></dfn>, <dfn id="dom-link-rel" title="dom-link-rel"><code>rel</code></dfn>, <dfn id="dom-link-media" title="dom-link-media"><code>media</code></dfn>, <dfn id="dom-link-hreflang" title="dom-link-hreflang"><code>hreflang</code></dfn>, and <dfn id="dom-link-type" title="dom-link-type"><code>type</code></dfn>, and <dfn id="dom-link-sizes" title="dom-link-sizes"><code>sizes</code></dfn> each must
<a href="infrastructure.html#reflect">reflect</a> the respective content attributes of the same
name.</p>
- <p>The DOM attribute <dfn id="dom-link-rellist" title="dom-link-rellist"><code>relList</code></dfn> <span class="impl">must</span> <a href="infrastructure.html#reflect" title="reflect">reflect</a> the <code title="attr-link-rel"><a href="#attr-link-rel">rel</a></code> content attribute.</p>
+ <p>The IDL attribute <dfn id="dom-link-rellist" title="dom-link-rellist"><code>relList</code></dfn> <span class="impl">must</span> <a href="infrastructure.html#reflect" title="reflect">reflect</a> the <code title="attr-link-rel"><a href="#attr-link-rel">rel</a></code> content attribute.</p>
- </div><p>The DOM attribute <dfn id="dom-link-disabled" title="dom-link-disabled"><code>disabled</code></dfn> only applies
+ </div><p>The IDL attribute <dfn id="dom-link-disabled" title="dom-link-disabled"><code>disabled</code></dfn> only applies
to style sheet links. When the <code><a href="#the-link-element">link</a></code> element defines a
style sheet link, then the <code title="dom-link-disabled"><a href="#dom-link-disabled">disabled</a></code> attribute behaves as
defined <a href="#dom-linkstyle-disabled" title="dom-linkstyle-disabled">for the alternative
@@ -651,9 +651,9 @@
then the value part of the metadata name/value pair is the empty
string.</p><div class="impl">
- <p>The <dfn id="dom-meta-name" title="dom-meta-name"><code>name</code></dfn> DOM
+ <p>The <dfn id="dom-meta-name" title="dom-meta-name"><code>name</code></dfn> IDL
attribute must <a href="infrastructure.html#reflect">reflect</a> the content attribute of the
- same name. The DOM attribute <dfn id="dom-meta-httpequiv" title="dom-meta-httpEquiv"><code>httpEquiv</code></dfn> must
+ same name. The IDL attribute <dfn id="dom-meta-httpequiv" title="dom-meta-httpEquiv"><code>httpEquiv</code></dfn> must
<a href="infrastructure.html#reflect">reflect</a> the content attribute <code title="attr-meta-http-equiv"><a href="#attr-meta-http-equiv">http-equiv</a></code>.</p>
</div><h5 id="standard-metadata-names"><span class="secno">4.2.5.1 </span>Standard metadata names</h5><p>This specification defines a few names for the <code title="attr-meta-name"><a href="#attr-meta-name">name</a></code> attribute of the
@@ -1316,7 +1316,7 @@
</div><p class="note">This specification does not specify a style system,
but CSS is expected to be supported by most Web browsers. <a href="references.html#refsCSS">[CSS]</a></p><div class="impl">
- <p>The <dfn id="dom-style-media" title="dom-style-media"><code>media</code></dfn>, <dfn id="dom-style-type" title="dom-style-type"><code>type</code></dfn> and <dfn id="dom-style-scoped" title="dom-style-scoped"><code>scoped</code></dfn> DOM attributes
+ <p>The <dfn id="dom-style-media" title="dom-style-media"><code>media</code></dfn>, <dfn id="dom-style-type" title="dom-style-type"><code>type</code></dfn> and <dfn id="dom-style-scoped" title="dom-style-scoped"><code>scoped</code></dfn> IDL attributes
must <a href="infrastructure.html#reflect">reflect</a> the respective content attributes of the
same name.</p>
@@ -1389,7 +1389,7 @@
based on the other values)
-->
- </dl><p>The <dfn id="dom-linkstyle-disabled" title="dom-LinkStyle-disabled"><code>disabled</code></dfn> DOM
+ </dl><p>The <dfn id="dom-linkstyle-disabled" title="dom-LinkStyle-disabled"><code>disabled</code></dfn> IDL
attribute on <code><a href="#the-link-element">link</a></code> and <code><a href="#the-style-element">style</a></code> elements must
return false and do nothing on setting, if the <code title="dom-linkstyle-sheet">sheet</code> attribute of their
<code>LinkStyle</code> interface is null. Otherwise, it must return
@@ -1929,7 +1929,7 @@
</ol></dd>
- </dl><p>The DOM attributes <dfn id="dom-script-src" title="dom-script-src"><code>src</code></dfn>, <dfn id="dom-script-type" title="dom-script-type"><code>type</code></dfn>, <dfn id="dom-script-charset" title="dom-script-charset"><code>charset</code></dfn>, <dfn id="dom-script-async" title="dom-script-async"><code>async</code></dfn>, and <dfn id="dom-script-defer" title="dom-script-defer"><code>defer</code></dfn>, each must
+ </dl><p>The IDL attributes <dfn id="dom-script-src" title="dom-script-src"><code>src</code></dfn>, <dfn id="dom-script-type" title="dom-script-type"><code>type</code></dfn>, <dfn id="dom-script-charset" title="dom-script-charset"><code>charset</code></dfn>, <dfn id="dom-script-async" title="dom-script-async"><code>async</code></dfn>, and <dfn id="dom-script-defer" title="dom-script-defer"><code>defer</code></dfn>, each must
<a href="infrastructure.html#reflect">reflect</a> the respective content attributes of the same
name.</p>
@@ -1947,12 +1947,12 @@
</dl><div class="impl">
- <p>The DOM attribute <dfn id="dom-script-text" title="dom-script-text"><code>text</code></dfn> must return a
+ <p>The IDL attribute <dfn id="dom-script-text" title="dom-script-text"><code>text</code></dfn> must return a
concatenation of the contents of all the <a href="infrastructure.html#text-node" title="text
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> DOM attribute.</p>
+ same way as the <code>textContent</code> IDL attribute.</p>
</div><div class="example">
@@ -2218,7 +2218,7 @@
</dl><p>The <code><a href="#the-body-element-0">body</a></code> element <a href="the-xhtml-syntax.html#represents">represents</a> the main
content of the document.</p><p>In conforming documents, there is only one <code><a href="#the-body-element-0">body</a></code>
element. The <code title="dom-document-body"><a href="dom.html#dom-document-body">document.body</a></code>
- DOM attribute provides scripts with easy access to a document's
+ IDL attribute provides scripts with easy access to a document's
<code><a href="#the-body-element-0">body</a></code> element.</p><div class="impl">
<p class="note">Some DOM operations (for example, parts of the
@@ -2230,7 +2230,7 @@
</div><p>The <code><a href="#the-body-element-0">body</a></code> element exposes as <a href="browsers.html#event-handler-content-attributes">event handler
content attributes</a> a number of the <a href="browsers.html#event-handler-attributes-0">event handler
attributes</a> of the <code><a href="browsers.html#window">Window</a></code> object. It also mirrors
- their <a href="browsers.html#event-handler-dom-attributes">event handler DOM attributes</a>.</p><p>The <code title="handler-window-onblur"><a href="browsers.html#handler-window-onblur">onblur</a></code>, <code title="handler-window-onerror"><a href="browsers.html#handler-window-onerror">onerror</a></code>, <code title="handler-window-onfocus"><a href="browsers.html#handler-window-onfocus">onfocus</a></code>, and <code title="handler-window-onload"><a href="browsers.html#handler-window-onload">onload</a></code> <a href="browsers.html#event-handler-attributes-0">event handler
+ their <a href="browsers.html#event-handler-idl-attributes">event handler IDL attributes</a>.</p><p>The <code title="handler-window-onblur"><a href="browsers.html#handler-window-onblur">onblur</a></code>, <code title="handler-window-onerror"><a href="browsers.html#handler-window-onerror">onerror</a></code>, <code title="handler-window-onfocus"><a href="browsers.html#handler-window-onfocus">onfocus</a></code>, and <code title="handler-window-onload"><a href="browsers.html#handler-window-onload">onload</a></code> <a href="browsers.html#event-handler-attributes-0">event handler
attributes</a> of the <code><a href="browsers.html#window">Window</a></code> object, exposed on the
<code><a href="#the-body-element-0">body</a></code> element, shadow the generic <a href="browsers.html#event-handler-attributes-0">event handler
attributes</a> with the same names normally supported by
@@ -2441,7 +2441,7 @@
<a href="infrastructure.html#valid-global-date-and-time-string">valid global date and time string</a> value.</p><div class="impl">
<p>The <dfn id="dom-article-pubdate" title="dom-article-pubDate"><code>pubDate</code></dfn>
- DOM attribute must <a href="infrastructure.html#reflect">reflect</a> the element's <code title="attr-article-pubdate"><a href="#attr-article-pubdate">pubdate</a></code> content attribute.</p>
+ IDL attribute must <a href="infrastructure.html#reflect">reflect</a> the element's <code title="attr-article-pubdate"><a href="#attr-article-pubdate">pubdate</a></code> content attribute.</p>
</div><h4 id="the-aside-element"><span class="secno">4.4.5 </span>The <dfn><code>aside</code></dfn> element</h4><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><dl class="element"><dt>Categories</dt>
<dd><a href="dom.html#flow-content">Flow content</a>.</dd>
@@ -3499,7 +3499,7 @@
relative to the element. User agents should allow users to follow
such citation links.</span></p><div class="impl">
- <p>The <dfn id="dom-quote-cite" title="dom-quote-cite"><code>cite</code></dfn> DOM
+ <p>The <dfn id="dom-quote-cite" title="dom-quote-cite"><code>cite</code></dfn> IDL
attribute must <a href="infrastructure.html#reflect">reflect</a> the element's <code title="">cite</code> content attribute.</p>
</div><p class="note">The best way to represent a conversation is not with
@@ -3563,10 +3563,10 @@
one if the <code title="attr-ol-reversed"><a href="#attr-ol-reversed">reversed</a></code> is absent,
or minus one if it is present.</p>
- <p>The <dfn id="dom-ol-reversed" title="dom-ol-reversed"><code>reversed</code></dfn> DOM
+ <p>The <dfn id="dom-ol-reversed" title="dom-ol-reversed"><code>reversed</code></dfn> IDL
attribute must <a href="infrastructure.html#reflect">reflect</a> the value of the <code title="attr-ol-reversed"><a href="#attr-ol-reversed">reversed</a></code> content attribute.</p>
- <p>The <dfn id="dom-ol-start" title="dom-ol-start"><code>start</code></dfn> DOM
+ <p>The <dfn id="dom-ol-start" title="dom-ol-start"><code>start</code></dfn> IDL
attribute must <a href="infrastructure.html#reflect">reflect</a> the value of the <code title="attr-ol-start"><a href="#attr-ol-start">start</a></code> content attribute.</p>
</div><!-- v2: resuming numbering of lists from previous lists? --><div class="example">
@@ -3684,7 +3684,7 @@
(q.v.), if there is one. If there is not, the attribute has no
effect.</p>
- <p>The <dfn id="dom-li-value" title="dom-li-value"><code>value</code></dfn> DOM
+ <p>The <dfn id="dom-li-value" title="dom-li-value"><code>value</code></dfn> IDL
attribute must <a href="infrastructure.html#reflect">reflect</a> the value of the <code title="dom-li-value"><a href="#dom-li-value">value</a></code> content attribute.</p>
</div><div class="example">
Index: index.html
===================================================================
RCS file: /sources/public/html5/spec/index.html,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -d -r1.191 -r1.192
--- index.html 30 Aug 2009 21:46:29 -0000 1.191
+++ index.html 31 Aug 2009 02:36:27 -0000 1.192
@@ -182,7 +182,7 @@
<a href="iana-considerations.html">← IANA considerations</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="references.html">References →</a>
- </nav><p>This is revision 1.2891.</p>
+ </nav><p>This is revision 1.2893.</p>
<h2 class="no-num" id="index">Index</h2><p class="XXX annotation"><b>Status: </b><i>First draft</i></p><p><i>This section is non-normative.</i></p><table><caption>List of elements</caption>
@@ -221,10 +221,10 @@
<code><a href="forms.html#the-textarea-element">textarea</a></code>
</td><td> ID*
</td></tr><tr><td class="XXX" colspan="3"> ...
- </td></tr></tbody></table><p>An asterisk (*) in a cell indicates that the actual rules are more complicated than indicated in the table above.</p><hr><table><caption>List of <dfn id="reflecting-dom-attributes">reflecting DOM attributes</dfn></caption>
+ </td></tr></tbody></table><p>An asterisk (*) in a cell indicates that the actual rules are more complicated than indicated in the table above.</p><hr><table><caption>List of <dfn id="reflecting-idl-attributes">reflecting IDL attributes</dfn></caption>
<thead><tr><th> Interface
</th><th> Element(s)
- </th><th> DOM attribute
+ </th><th> IDL attribute
</th><th> Reflects...
</th></tr></thead><tbody><tr><td class="XXX" colspan="4"> ...
</td></tr><tr><td> <code><a href="dom.html#htmlelement">HTMLElement</a></code>
Index: comms.html
===================================================================
RCS file: /sources/public/html5/spec/comms.html,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -d -r1.191 -r1.192
--- comms.html 30 Aug 2009 21:46:29 -0000 1.191
+++ comms.html 31 Aug 2009 02:36:26 -0000 1.192
@@ -182,7 +182,7 @@
<a href="editing.html">← 7 User Interaction</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="syntax.html">9 The HTML syntax →</a>
- </nav><p>This is revision 1.2891.</p>
+ </nav><p>This is revision 1.2893.</p>
<h2 id="comms"><span class="secno">8 </span>Communication</h2><h3 id="event-definitions"><span class="secno">8.1 </span>Event definitions</h3><!-- XXX cross-references for SSE and WS need fixing now that this is cross-spec --><p>Messages in <span>server-sent events</span>, <span>Web
@@ -892,12 +892,12 @@
not entangled, then the method must do nothing.</p>
<hr><p>The following are the <a href="browsers.html#event-handler-attributes-0">event handler attributes</a> (and their corresponding <a href="browsers.html#event-handler-event-type" title="event handler event type">event handler event types</a>)
- that must be supported, as DOM attributes, by all objects
+ that must be supported, as IDL attributes, by all objects
implementing the <code><a href="#messageport">MessagePort</a></code> interface:</p>
<table><thead><tr><th><a href="browsers.html#event-handler-attributes-0" title="event handler attributes">event handler attribute</a> </th><th><a href="browsers.html#event-handler-event-type">Event handler event type</a>
</th></tr></thead><tbody><tr><td><dfn id="handler-messageport-onmessage" title="handler-MessagePort-onmessage"><code>onmessage</code></dfn> </td><td> <code title="event-message"><a href="#event-message">message</a></code>
- </td></tr></tbody></table><p>The first time a <code><a href="#messageport">MessagePort</a></code> object's <code title="handler-MessagePort-onmessage"><a href="#handler-messageport-onmessage">onmessage</a></code> DOM attribute
+ </td></tr></tbody></table><p>The first time a <code><a href="#messageport">MessagePort</a></code> object's <code title="handler-MessagePort-onmessage"><a href="#handler-messageport-onmessage">onmessage</a></code> IDL attribute
is set, the port's <a href="#port-message-queue">port message queue</a> must be enabled,
as if the <code title="dom-MessagePort-start"><a href="#dom-messageport-start">start()</a></code> method
had been called.</p>
Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec/spec.html,v
retrieving revision 1.193
retrieving revision 1.194
diff -u -d -r1.193 -r1.194
--- spec.html 30 Aug 2009 21:46:30 -0000 1.193
+++ spec.html 31 Aug 2009 02:36:28 -0000 1.194
@@ -177,7 +177,7 @@
<h2 class="no-num no-toc" id="a-vocabulary-and-associated-apis-for-html-and-xhtml">A vocabulary and associated APIs for HTML and XHTML</h2>
<!--ZZZ:-->
<h2 class="no-num no-toc" id="w3c-working-draft-25-august-2009">W3C Working Draft 25 August 2009</h2>
- <!--<h2 class="no-num no-toc">Editor's Draft 30 August 2009</h2>-->
+ <!--<h2 class="no-num no-toc">Editor's Draft 31 August 2009</h2>-->
<!--:ZZZ-->
<dl><!-- ZZZ: update the month/day (twice), (un)comment out--><dt>This Version:</dt>
<dd><a href="http://www.w3.org/TR/2009/WD-html5-20090825/">http://www.w3.org/TR/2009/WD-html5-20090825/</a></dd>
@@ -199,7 +199,7 @@
</dl><p>This specification is available in the following formats:
<a href="Overview.html">single page HTML</a>,
<a href="spec.html">multipage HTML</a>.
-This is revision 1.2891.
+This is revision 1.2893.
</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
@@ -275,7 +275,7 @@
track.
<!--ZZZ:-->
This specification is the 25 August 2009 Working Draft.
- <!--This specification is the 30 August 2009 Editor's Draft.-->
+ <!--This specification is the 31 August 2009 Editor's Draft.-->
<!--:ZZZ-->
</p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- relationship to other work (required) --><p>This specification is also being produced by the <a href="http://www.whatwg.org/">WHATWG</a>. The two specifications are
identical from the table of contents onwards.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- context and rationale (required) --><p>This specification is intended to replace (be a new version of)
@@ -353,7 +353,7 @@
<li><a href="infrastructure.html#content-type-sniffing"><span class="secno">2.6.3 </span>Determining the type of a resource</a></li></ol></li>
<li><a href="infrastructure.html#character-encodings-0"><span class="secno">2.7 </span>Character encodings</a></li>
<li><a href="infrastructure.html#common-dom-interfaces"><span class="secno">2.8 </span>Common DOM interfaces</a>
- <ol><li><a href="infrastructure.html#reflecting-content-attributes-in-dom-attributes"><span class="secno">2.8.1 </span>Reflecting content attributes in DOM attributes</a></li>
+ <ol><li><a href="infrastructure.html#reflecting-content-attributes-in-idl-attributes"><span class="secno">2.8.1 </span>Reflecting content attributes in IDL attributes</a></li>
<li><a href="infrastructure.html#collections-0"><span class="secno">2.8.2 </span>Collections</a>
<ol><li><a href="infrastructure.html#htmlcollection-0"><span class="secno">2.8.2.1 </span>HTMLCollection</a></li>
<li><a href="infrastructure.html#htmlallcollection-0"><span class="secno">2.8.2.2 </span>HTMLAllCollection</a></li>
Index: introduction.html
===================================================================
RCS file: /sources/public/html5/spec/introduction.html,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -d -r1.191 -r1.192
--- introduction.html 30 Aug 2009 21:46:29 -0000 1.191
+++ introduction.html 31 Aug 2009 02:36:27 -0000 1.192
@@ -180,7 +180,7 @@
</div><nav>
<a href="spec.html#contents">Table of contents</a> –
<a href="infrastructure.html">2 Common infrastructure →</a>
- </nav><p>This is revision 1.2891.</p>
+ </nav><p>This is revision 1.2893.</p>
<h2 id="introduction"><span class="secno">1 </span>Introduction</h2><p class="XXX annotation"><b>Status: </b><i>Working draft</i></p><h3 id="background"><span class="secno">1.1 </span>Background</h3><p><i>This section is non-normative.</i></p><p>The World Wide Web's markup language has always been HTML. HTML
Index: no.html
===================================================================
RCS file: /sources/public/html5/spec/no.html,v
retrieving revision 1.191
retrieving revision 1.192
diff -u -d -r1.191 -r1.192
--- no.html 30 Aug 2009 21:46:30 -0000 1.191
+++ no.html 31 Aug 2009 02:36:27 -0000 1.192
@@ -182,7 +182,7 @@
<a href="obsolete.html">← 12 Obsolete features</a> –
<a href="spec.html#contents">Table of contents</a> –
<a href="iana-considerations.html">IANA considerations →</a>
- </nav><p>This is revision 1.2891.</p>
+ </nav><p>This is revision 1.2893.</p>
<h2 id="no"><span class="secno">13 </span>Things that you can't do with this specification because
Received on Monday, 31 August 2009 02:37:01 UTC