html5/spec-author-view Overview.html,1.615,1.616 acknowledgements.html,1.562,1.563 elements.html,1.18,1.19 fragment-links.js,1.13,1.14 index.html,1.560,1.561 links.html,1.13,1.14 semantics.html,1.561,1.562 spec.html,1.620,1.621 tabular-data.html,1.555,1.556 the-button-element.html,1.11,1.12 the-iframe-element.html,1.16,1.17

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

Modified Files:
	Overview.html acknowledgements.html elements.html 
	fragment-links.js index.html links.html semantics.html 
	spec.html tabular-data.html the-button-element.html 
	the-iframe-element.html 
Log Message:
Make text/html-sandboxed sandbox plugins also, since plugins don't honour UA origin determinations. (whatwg r4618)

[updated by splitter]


Index: tabular-data.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/tabular-data.html,v
retrieving revision 1.555
retrieving revision 1.556
diff -u -d -r1.555 -r1.556
--- tabular-data.html	12 Jan 2010 08:59:19 -0000	1.555
+++ tabular-data.html	21 Jan 2010 00:11:17 -0000	1.556
@@ -1036,7 +1036,7 @@
   interface:</p><pre class="idl">interface <dfn id="htmltablecellelement">HTMLTableCellElement</dfn> : <a href="elements.html#htmlelement">HTMLElement</a> {
            attribute unsigned long <a href="#dom-tdth-colspan" title="dom-tdth-colSpan">colSpan</a>;
            attribute unsigned long <a href="#dom-tdth-rowspan" title="dom-tdth-rowSpan">rowSpan</a>;
-           attribute DOMString <a href="#dom-tdth-headers" title="dom-tdth-headers">headers</a>;
+  [PutForwards=<a href="#dom-domsettabletokenlist-value" title="dom-DOMSettableTokenList-value">value</a>] readonly attribute <a href="urls.html#domsettabletokenlist">DOMSettableTokenList</a> <a href="#dom-tdth-headers" title="dom-tdth-headers">headers</a>;
   readonly attribute long <a href="#dom-tdth-cellindex" title="dom-tdth-cellIndex">cellIndex</a>;
 };</pre><dl class="domintro"><dt><var title="">cell</var> . <code title="dom-tdth-cellIndex"><a href="#dom-tdth-cellindex">cellIndex</a></code></dt>
 

Index: the-iframe-element.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/the-iframe-element.html,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- the-iframe-element.html	14 Jan 2010 08:12:46 -0000	1.16
+++ the-iframe-element.html	21 Jan 2010 00:11:17 -0000	1.17
@@ -293,7 +293,7 @@
 <pre class="idl">interface <dfn id="htmliframeelement">HTMLIFrameElement</dfn> : <a href="elements.html#htmlelement">HTMLElement</a> {
            attribute DOMString <a href="#dom-iframe-src" title="dom-iframe-src">src</a>;
            attribute DOMString <a href="#dom-iframe-name" title="dom-iframe-name">name</a>;
-           attribute DOMString <a href="#dom-iframe-sandbox" title="dom-iframe-sandbox">sandbox</a>;
+  [PutForwards=<a href="#dom-domsettabletokenlist-value" title="dom-DOMSettableTokenList-value">value</a>] readonly attribute <a href="urls.html#domsettabletokenlist">DOMSettableTokenList</a> <a href="#dom-iframe-sandbox" title="dom-iframe-sandbox">sandbox</a>;
            attribute boolean <a href="#dom-iframe-seamless" title="dom-iframe-seamless">seamless</a>;
            attribute DOMString <a href="#dom-dim-width" title="dom-dim-width">width</a>;
            attribute DOMString <a href="#dom-dim-height" title="dom-dim-height">height</a>;
@@ -311,18 +311,14 @@
        src="" to be used for legacy UAs:
 
           <iframe seamless sandbox="allow-scripts allow-forms" doc="
-            <!DOCTYPE HTML>
-            <title></title>
             Welcome to my blog!
             </sandbox>
             <a href='#' onclick='alert(document.cookie)'>Click here</a>
           "></iframe>
 
-       (There are things we can do to make this better, e.g. make the
-       <!DOCTYPE HMTL> and <title></title> bits implicit, maybe
-       introducing type="" to say whether it's HTML or XML instead of
-       only supporting HTML, maybe saying that if src="" and doc=""
-       are both specified they must have identical data, etc.)
+       TODO:
+          <!DOCTYPE HTML> implication
+          <title></title> optional
 
   --><p>The <code><a href="#the-iframe-element">iframe</a></code> element <a href="#represents">represents</a> a
   <a href="browsers.html#nested-browsing-context">nested browsing context</a>.</p><p>The <dfn id="attr-iframe-src" title="attr-iframe-src"><code>src</code></dfn> attribute
@@ -350,7 +346,11 @@
   <code title="attr-iframe-sandbox-allow-same-origin"><a href="#attr-iframe-sandbox-allow-same-origin">allow-same-origin</a></code>
   keywords together when the embedded page has the <a href="#same-origin">same
   origin</a> as the page containing the <code><a href="#the-iframe-element">iframe</a></code> allows
-  the embedded page to simply remove the <code title="attr-iframe-sandbox"><a href="#attr-iframe-sandbox">sandbox</a></code> attribute.</p><div class="example">
+  the embedded page to simply remove the <code title="attr-iframe-sandbox"><a href="#attr-iframe-sandbox">sandbox</a></code> attribute.</p><p class="warning">Sandboxing hostile content is of minimal help if
+  an attacker can convince the user to just visit the hostile content
+  directly, rather than in the <code><a href="#the-iframe-element">iframe</a></code>. To limit the
+  damage that can be caused by hostile HTML content, it should be
+  served using the <code><a href="iana.html#text-html-sandboxed">text/html-sandboxed</a></code> MIME type.</p><div class="example">
 
    <p>In this example, some completely-unknown, potentially hostile,
    user-provided HTML content is embedded in a page. Because it is

Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/Overview.html,v
retrieving revision 1.615
retrieving revision 1.616
diff -u -d -r1.615 -r1.616
--- Overview.html	14 Jan 2010 08:12:45 -0000	1.615
+++ Overview.html	21 Jan 2010 00:11:15 -0000	1.616
@@ -264,7 +264,7 @@
    <h1>HTML5 (Author Edition)</h1>
    <h2 class="no-num no-toc" id="a-vocabulary-and-associated-apis-for-html-and-xhtml">A vocabulary and associated APIs for HTML and XHTML</h2>
 
-   <h2 class="no-num no-toc" id="editor-s-draft-13-january-2010">Editor's Draft 13 January 2010</h2>
+   <h2 class="no-num no-toc" id="editor-s-draft-20-january-2010">Editor's Draft 20 January 2010</h2>
    <dl><dt>Latest Published Version:</dt>
     <dd><a href="http://www.w3.org/TR/html5/">http://www.w3.org/TR/html5/</a></dd>
     <dt>Latest Editor's Draft:</dt>
@@ -283,7 +283,7 @@
    </dl><p>This specification is available in the following formats: 
     <a href="spec.html">single page HTML</a>,
     <a href="Overview.html">multipage HTML</a>.
-This is revision 1.3664.
+This is revision 1.3679.
    </p> 
    <p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
    &#169; 2009 <a href="http://www.w3.org/"><abbr title="World Wide
@@ -363,7 +363,7 @@
   specification's progress along the W3C Recommendation
   track.
 
-  This specification is the 13 January 2010 Editor's Draft.
+  This specification is the 20 January 2010 Editor's Draft.
   </p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- relationship to other work (required) --><p>This specification is part of <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/">a
   larger specification</a> being produced by the <a href="http://www.whatwg.org/">WHATWG</a>.
   <!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST -->

Index: elements.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/elements.html,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- elements.html	12 Jan 2010 08:59:16 -0000	1.18
+++ elements.html	21 Jan 2010 00:11:15 -0000	1.19
@@ -607,15 +607,15 @@
   </div><p>Some elements, such as <code><a href="semantics.html#the-link-element">link</a></code>, <code><a href="text-level-semantics.html#the-abbr-element">abbr</a></code>, and
   <code><a href="the-input-element.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><h5 id="the-lang-and-xml:lang-attributes"><span class="secno">3.2.3.3 </span>The <code title="attr-lang"><a href="#attr-lang">lang</a></code> and <code title="attr-xml-lang"><a href="#attr-xml-lang">xml:lang</a></code> attributes</h5><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>The <dfn id="attr-lang" title="attr-lang"><code>lang</code></dfn> attribute (in
-  no namespace) specifies the primary <dfn id="language">language</dfn> for the
-  element's contents and for any of the element's attributes that
-  contain text. Its value must be a valid BCP 47 language code, or
-  the empty string. <a href="references.html#refsBCP47">[BCP47]</a></p><p>The <dfn id="attr-xml-lang" title="attr-xml-lang"><code title="">lang</code></dfn>
+  no namespace) specifies the primary language for the element's
+  contents and for any of the element's attributes that contain
+  text. Its value must be a valid BCP 47 language code, or the empty
+  string. Setting the attribute to the empty string indicates that the
+  primary language is unknown<!-- UA conformance requirements for this
+  are below -->. <a href="references.html#refsBCP47">[BCP47]</a></p><p>The <dfn id="attr-xml-lang" title="attr-xml-lang"><code title="">lang</code></dfn>
   attribute in the <a href="urls.html#xml-namespace">XML namespace</a> is defined in XML. <a href="references.html#refsXML">[XML]</a></p><p>If these attributes are omitted from an element, then the
   language of this element is the same as the language of its parent
-  element, if any. Setting the attribute to the empty string indicates
-  that the primary language is unknown.</p><!-- UA conformance
-  requires for this are below --><p>The <code title="attr-lang"><a href="#attr-lang">lang</a></code> attribute in no namespace
+  element, if any.</p><p>The <code title="attr-lang"><a href="#attr-lang">lang</a></code> attribute in no namespace
   may be used on any <a href="infrastructure.html#html-elements" title="HTML elements">HTML
   element</a>.</p><p>The <a href="#attr-xml-lang" title="attr-xml-lang"><code title="">lang</code>
   attribute in the <span>XML namespace</span></a> may be used on

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

Index: semantics.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/semantics.html,v
retrieving revision 1.561
retrieving revision 1.562
diff -u -d -r1.561 -r1.562
--- semantics.html	12 Jan 2010 08:59:18 -0000	1.561
+++ semantics.html	21 Jan 2010 00:11:16 -0000	1.562
@@ -488,7 +488,7 @@
            attribute DOMString <a href="#dom-link-media" title="dom-link-media">media</a>;
            attribute DOMString <a href="#dom-link-hreflang" title="dom-link-hreflang">hreflang</a>;
            attribute DOMString <a href="#dom-link-type" title="dom-link-type">type</a>;
-           attribute DOMString <a href="#dom-link-sizes" title="dom-link-sizes">sizes</a>;
+  [PutForwards=<a href="#dom-domsettabletokenlist-value" title="dom-DOMSettableTokenList-value">value</a>] readonly attribute <a href="urls.html#domsettabletokenlist">DOMSettableTokenList</a> <a href="#dom-link-sizes" title="dom-link-sizes">sizes</a>;
 };
 <a href="#htmllinkelement">HTMLLinkElement</a> implements <span>LinkStyle</span>;</pre>
    </dd>

Index: index.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/index.html,v
retrieving revision 1.560
retrieving revision 1.561
diff -u -d -r1.560 -r1.561
--- index.html	12 Jan 2010 08:59:17 -0000	1.560
+++ index.html	21 Jan 2010 00:11:15 -0000	1.561
@@ -1623,7 +1623,7 @@
      </td><td> Text
     </td></tr><tr><th> <code title="">lang</code>
      </th><td> <a href="elements.html#attr-lang" title="attr-lang">HTML elements</a>
-     </td><td> <a href="elements.html#language">Language</a> of the element
+     </td><td> <a href="#language">Language</a> of the element
      </td><td> Valid BCP 47 language code or the empty string
     </td></tr><tr><th> <code title="">list</code>
      </th><td> <code title="attr-input-list"><a href="common-input-element-attributes.html#attr-input-list">input</a></code>
@@ -1824,7 +1824,7 @@
     </td></tr><tr><th> <code title="">sizes</code>
      </th><td> <code title="attr-link-sizes"><a href="links.html#attr-link-sizes">link</a></code>
      </td><td> Sizes of the icons (for <code title="attr-link-rel"><a href="semantics.html#attr-link-rel">rel</a></code>="<code title="rel-icon"><a href="links.html#rel-icon">icon</a></code>")
-     </td><td> List of sizes*
+     </td><td> <a href="common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens">Unordered set of unique space-separated tokens</a> consisting of sizes*
     </td></tr><tr><th> <code title="">span</code>
      </th><td> <code title="attr-col-span"><a href="tabular-data.html#attr-col-span">col</a></code>;
           <code title="attr-colgroup-span"><a href="tabular-data.html#attr-colgroup-span">colgroup</a></code>

Index: the-button-element.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/the-button-element.html,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -d -r1.11 -r1.12
--- the-button-element.html	12 Jan 2010 08:59:19 -0000	1.11
+++ the-button-element.html	21 Jan 2010 00:11:17 -0000	1.12
@@ -997,7 +997,7 @@
    <dt>DOM interface:</dt>
    <dd>
 <pre class="idl">interface <dfn id="htmloutputelement">HTMLOutputElement</dfn> : <a href="elements.html#htmlelement">HTMLElement</a> {
-           attribute DOMString <span title="dom-output-wrap">htmlFor</span>;
+  [PutForwards=<a href="#dom-domsettabletokenlist-value" title="dom-DOMSettableTokenList-value">value</a>] readonly attribute <a href="urls.html#domsettabletokenlist">DOMSettableTokenList</a> <span title="dom-output-wrap">htmlFor</span>;
   readonly attribute <a href="forms.html#htmlformelement">HTMLFormElement</a> <a href="#dom-fae-form" title="dom-fae-form">form</a>;
            attribute DOMString <a href="#dom-fe-name" title="dom-fe-name">name</a>;
 

Index: links.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/links.html,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -d -r1.13 -r1.14
--- links.html	12 Jan 2010 08:59:17 -0000	1.13
+++ links.html	21 Jan 2010 00:11:16 -0000	1.14
@@ -478,7 +478,7 @@
   use with the media specified.</p><p>If the <code title="rel-alternate"><a href="#link-type-alternate">alternate</a></code> keyword is
   used with the <code title="attr-hyperlink-hreflang"><a href="#attr-hyperlink-hreflang">hreflang</a></code>
   attribute, and that attribute's value differs from the <a href="infrastructure.html#root-element">root
-  element</a>'s <a href="elements.html#language">language</a>, it indicates that the
+  element</a>'s <a href="#language">language</a>, it indicates that the
   referenced document is a translation.</p><p>If the <code title="rel-alternate"><a href="#link-type-alternate">alternate</a></code> keyword is
   used with the <code title="attr-hyperlink-type"><a href="#attr-hyperlink-type">type</a></code>
   attribute, it indicates that the referenced document is a

Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/spec.html,v
retrieving revision 1.620
retrieving revision 1.621
diff -u -d -r1.620 -r1.621
--- spec.html	14 Jan 2010 08:12:45 -0000	1.620
+++ spec.html	21 Jan 2010 00:11:16 -0000	1.621
@@ -262,7 +262,7 @@
    <h1>HTML5 (Author Edition)</h1>
    <h2 class="no-num no-toc" id=a-vocabulary-and-associated-apis-for-html-and-xhtml>A vocabulary and associated APIs for HTML and XHTML</h2>
 
-   <h2 class="no-num no-toc" id=editor-s-draft-13-january-2010>Editor's Draft 13 January 2010</h2>
+   <h2 class="no-num no-toc" id=editor-s-draft-20-january-2010>Editor's Draft 20 January 2010</h2>
    <dl><dt>Latest Published Version:</dt>
     <dd><a href=http://www.w3.org/TR/html5/>http://www.w3.org/TR/html5/</a></dd>
     <dt>Latest Editor's Draft:</dt>
@@ -281,7 +281,7 @@
    </dl><p>This specification is available in the following formats: 
     <a href=spec.html>single page HTML</a>,
     <a href=Overview.html>multipage HTML</a>.
-This is revision 1.3664.
+This is revision 1.3679.
    </p> 
    <p class=copyright><a href=http://www.w3.org/Consortium/Legal/ipr-notice#Copyright>Copyright</a>
    © 2009 <a href=http://www.w3.org/><abbr title="World Wide
@@ -361,7 +361,7 @@
   specification's progress along the W3C Recommendation
   track.
 
-  This specification is the 13 January 2010 Editor's Draft.
+  This specification is the 20 January 2010 Editor's Draft.
   </p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- relationship to other work (required) --><p>This specification is part of <a href=http://www.whatwg.org/specs/web-apps/current-work/multipage/>a
   larger specification</a> being produced by the <a href=http://www.whatwg.org/>WHATWG</a>.
   <!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST -->
@@ -2868,15 +2868,15 @@
   </div><p>Some elements, such as <code><a href=#the-link-element>link</a></code>, <code><a href=#the-abbr-element>abbr</a></code>, and
   <code><a href=#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><h5 id=the-lang-and-xml:lang-attributes><span class=secno>3.2.3.3 </span>The <code title=attr-lang><a href=#attr-lang>lang</a></code> and <code title=attr-xml-lang><a href=#attr-xml-lang>xml:lang</a></code> attributes</h5><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>The <dfn id=attr-lang title=attr-lang><code>lang</code></dfn> attribute (in
-  no namespace) specifies the primary <dfn id=language>language</dfn> for the
-  element's contents and for any of the element's attributes that
-  contain text. Its value must be a valid BCP 47 language code, or
-  the empty string. <a href=#refsBCP47>[BCP47]</a></p><p>The <dfn id=attr-xml-lang title=attr-xml-lang><code title="">lang</code></dfn>
+  no namespace) specifies the primary language for the element's
+  contents and for any of the element's attributes that contain
+  text. Its value must be a valid BCP 47 language code, or the empty
+  string. Setting the attribute to the empty string indicates that the
+  primary language is unknown<!-- UA conformance requirements for this
+  are below -->. <a href=#refsBCP47>[BCP47]</a></p><p>The <dfn id=attr-xml-lang title=attr-xml-lang><code title="">lang</code></dfn>
   attribute in the <a href=#xml-namespace>XML namespace</a> is defined in XML. <a href=#refsXML>[XML]</a></p><p>If these attributes are omitted from an element, then the
   language of this element is the same as the language of its parent
-  element, if any. Setting the attribute to the empty string indicates
-  that the primary language is unknown.</p><!-- UA conformance
-  requires for this are below --><p>The <code title=attr-lang><a href=#attr-lang>lang</a></code> attribute in no namespace
+  element, if any.</p><p>The <code title=attr-lang><a href=#attr-lang>lang</a></code> attribute in no namespace
   may be used on any <a href=#html-elements title="HTML elements">HTML
   element</a>.</p><p>The <a href=#attr-xml-lang title=attr-xml-lang><code title="">lang</code>
   attribute in the <span>XML namespace</span></a> may be used on
@@ -4236,7 +4236,7 @@
            attribute DOMString <a href=#dom-link-media title=dom-link-media>media</a>;
            attribute DOMString <a href=#dom-link-hreflang title=dom-link-hreflang>hreflang</a>;
            attribute DOMString <a href=#dom-link-type title=dom-link-type>type</a>;
-           attribute DOMString <a href=#dom-link-sizes title=dom-link-sizes>sizes</a>;
+  [PutForwards=<a href=#dom-domsettabletokenlist-value title=dom-DOMSettableTokenList-value>value</a>] readonly attribute <a href=#domsettabletokenlist>DOMSettableTokenList</a> <a href=#dom-link-sizes title=dom-link-sizes>sizes</a>;
 };
 <a href=#htmllinkelement>HTMLLinkElement</a> implements <span>LinkStyle</span>;</pre>
    </dd>
@@ -9711,7 +9711,7 @@
 <pre class=idl>interface <dfn id=htmliframeelement>HTMLIFrameElement</dfn> : <a href=#htmlelement>HTMLElement</a> {
            attribute DOMString <a href=#dom-iframe-src title=dom-iframe-src>src</a>;
            attribute DOMString <a href=#dom-iframe-name title=dom-iframe-name>name</a>;
-           attribute DOMString <a href=#dom-iframe-sandbox title=dom-iframe-sandbox>sandbox</a>;
+  [PutForwards=<a href=#dom-domsettabletokenlist-value title=dom-DOMSettableTokenList-value>value</a>] readonly attribute <a href=#domsettabletokenlist>DOMSettableTokenList</a> <a href=#dom-iframe-sandbox title=dom-iframe-sandbox>sandbox</a>;
            attribute boolean <a href=#dom-iframe-seamless title=dom-iframe-seamless>seamless</a>;
            attribute DOMString <a href=#dom-dim-width title=dom-dim-width>width</a>;
            attribute DOMString <a href=#dom-dim-height title=dom-dim-height>height</a>;
@@ -9729,18 +9729,14 @@
        src="" to be used for legacy UAs:
 
           <iframe seamless sandbox="allow-scripts allow-forms" doc="
-            <!DOCTYPE HTML>
-            <title></title>
             Welcome to my blog!
             </sandbox>
             <a href='#' onclick='alert(document.cookie)'>Click here</a>
           "></iframe>
 
-       (There are things we can do to make this better, e.g. make the
-       <!DOCTYPE HMTL> and <title></title> bits implicit, maybe
-       introducing type="" to say whether it's HTML or XML instead of
-       only supporting HTML, maybe saying that if src="" and doc=""
-       are both specified they must have identical data, etc.)
+       TODO:
+          <!DOCTYPE HTML> implication
+          <title></title> optional
 
   --><p>The <code><a href=#the-iframe-element>iframe</a></code> element <a href=#represents>represents</a> a
   <a href=#nested-browsing-context>nested browsing context</a>.</p><p>The <dfn id=attr-iframe-src title=attr-iframe-src><code>src</code></dfn> attribute
@@ -9768,7 +9764,11 @@
   <code title=attr-iframe-sandbox-allow-same-origin><a href=#attr-iframe-sandbox-allow-same-origin>allow-same-origin</a></code>
   keywords together when the embedded page has the <a href=#same-origin>same
   origin</a> as the page containing the <code><a href=#the-iframe-element>iframe</a></code> allows
-  the embedded page to simply remove the <code title=attr-iframe-sandbox><a href=#attr-iframe-sandbox>sandbox</a></code> attribute.</p><div class=example>
+  the embedded page to simply remove the <code title=attr-iframe-sandbox><a href=#attr-iframe-sandbox>sandbox</a></code> attribute.</p><p class=warning>Sandboxing hostile content is of minimal help if
+  an attacker can convince the user to just visit the hostile content
+  directly, rather than in the <code><a href=#the-iframe-element>iframe</a></code>. To limit the
+  damage that can be caused by hostile HTML content, it should be
+  served using the <code><a href=#text-html-sandboxed>text/html-sandboxed</a></code> MIME type.</p><div class=example>
 
    <p>In this example, some completely-unknown, potentially hostile,
    user-provided HTML content is embedded in a page. Because it is
@@ -12324,7 +12324,7 @@
   interface:</p><pre class=idl>interface <dfn id=htmltablecellelement>HTMLTableCellElement</dfn> : <a href=#htmlelement>HTMLElement</a> {
            attribute unsigned long <a href=#dom-tdth-colspan title=dom-tdth-colSpan>colSpan</a>;
            attribute unsigned long <a href=#dom-tdth-rowspan title=dom-tdth-rowSpan>rowSpan</a>;
-           attribute DOMString <a href=#dom-tdth-headers title=dom-tdth-headers>headers</a>;
+  [PutForwards=<a href=#dom-domsettabletokenlist-value title=dom-DOMSettableTokenList-value>value</a>] readonly attribute <a href=#domsettabletokenlist>DOMSettableTokenList</a> <a href=#dom-tdth-headers title=dom-tdth-headers>headers</a>;
   readonly attribute long <a href=#dom-tdth-cellindex title=dom-tdth-cellIndex>cellIndex</a>;
 };</pre><dl class=domintro><dt><var title="">cell</var> . <code title=dom-tdth-cellIndex><a href=#dom-tdth-cellindex>cellIndex</a></code></dt>
 
@@ -16731,7 +16731,7 @@
    <dt>DOM interface:</dt>
    <dd>
 <pre class=idl>interface <dfn id=htmloutputelement>HTMLOutputElement</dfn> : <a href=#htmlelement>HTMLElement</a> {
-           attribute DOMString <span title=dom-output-wrap>htmlFor</span>;
+  [PutForwards=<a href=#dom-domsettabletokenlist-value title=dom-DOMSettableTokenList-value>value</a>] readonly attribute <a href=#domsettabletokenlist>DOMSettableTokenList</a> <span title=dom-output-wrap>htmlFor</span>;
   readonly attribute <a href=#htmlformelement>HTMLFormElement</a> <a href=#dom-fae-form title=dom-fae-form>form</a>;
            attribute DOMString <a href=#dom-fe-name title=dom-fe-name>name</a>;
 
@@ -26685,7 +26685,7 @@
     </td></tr><tr><th> <code title="">sizes</code>
      </th><td> <code title=attr-link-sizes><a href=#attr-link-sizes>link</a></code>
      </td><td> Sizes of the icons (for <code title=attr-link-rel><a href=#attr-link-rel>rel</a></code>="<code title=rel-icon><a href=#rel-icon>icon</a></code>")
-     </td><td> List of sizes*
+     </td><td> <a href=#unordered-set-of-unique-space-separated-tokens>Unordered set of unique space-separated tokens</a> consisting of sizes*
     </td></tr><tr><th> <code title="">span</code>
      </th><td> <code title=attr-col-span><a href=#attr-col-span>col</a></code>;
           <code title=attr-colgroup-span><a href=#attr-colgroup-span>colgroup</a></code>
@@ -28296,6 +28296,7 @@
   Bill Mason,
   Bill McCoy,
   Billy Wong,
+  Bjartur Thorlacius,
   Björn Höhrmann,
   Blake Frantz,
   Boris Zbarsky,
@@ -28326,6 +28327,7 @@
   Charles Iliya Krempeaux,
   Charles McCathieNevile,
   Chris Cressman,
+  Chris Evans,
   Chris Morris,
   Chris Pearce,
   Christian Biesinger,
@@ -28490,6 +28492,7 @@
   Jon Gibbins,
   Jon Perlow,
   Jonas Sicking,
+  Jonathan Cook,
   Jonathan Rees,
   Jonathan Worent,
   Jonny Axelsson,
@@ -28503,6 +28506,7 @@
   Jukka K. Korpela,
   Jules Clément-Ripoche,
   Julian Reschke,
+  Justin Lebar,
   Justin Sinclair,
   Kai Hendry,
   Kartikaya Gupta,
@@ -28701,6 +28705,7 @@
   Wladimir Palant,
   Wojciech Mach,
   Wolfram Kriesing,
+  Yang Chen,
   Yi-An Huang,
   Yngve Nysaeter Pettersen,
   Yuzo Fujishima,

Index: acknowledgements.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/acknowledgements.html,v
retrieving revision 1.562
retrieving revision 1.563
diff -u -d -r1.562 -r1.563
--- acknowledgements.html	14 Jan 2010 08:12:45 -0000	1.562
+++ acknowledgements.html	21 Jan 2010 00:11:15 -0000	1.563
@@ -332,6 +332,7 @@
   Bill Mason,
   Bill McCoy,
   Billy Wong,
+  Bjartur Thorlacius,
   Bj&#246;rn H&#246;hrmann,
   Blake Frantz,
   Boris Zbarsky,
@@ -362,6 +363,7 @@
   Charles Iliya Krempeaux,
   Charles McCathieNevile,
   Chris Cressman,
+  Chris Evans,
   Chris Morris,
   Chris Pearce,
   Christian Biesinger,
@@ -526,6 +528,7 @@
   Jon Gibbins,
   Jon Perlow,
   Jonas Sicking,
+  Jonathan Cook,
   Jonathan Rees,
   Jonathan Worent,
   Jonny Axelsson,
@@ -539,6 +542,7 @@
   Jukka K. Korpela,
   Jules Cl&#233;ment-Ripoche,
   Julian Reschke,
+  Justin Lebar,
   Justin Sinclair,
   Kai Hendry,
   Kartikaya Gupta,
@@ -737,6 +741,7 @@
   Wladimir Palant,
   Wojciech Mach,
   Wolfram Kriesing,
+  Yang Chen,
   Yi-An Huang,
   Yngve Nysaeter Pettersen,
   Yuzo Fujishima,

Received on Thursday, 21 January 2010 00:11:25 UTC