html5/spec-author-view Overview.html,1.851,1.852 association-of-controls-and-forms.html,1.26,1.27 edits.html,1.21,1.22 embedded-content-1.html,1.35,1.36 fragment-links.js,1.59,1.60 grouping-content.html,1.31,1.32 index.html,1.589,1.590 interactive-elements.html,1.579,1.580 links.html,1.36,1.37 number-state.html,1.26,1.27 scripting-1.html,1.30,1.31 semantics.html,1.591,1.592 spec.html,1.859,1.860 states-of-the-type-attribute.html,1.28,1.29 text-level-semantics.html,1.584,1.585 the-iframe-element.html,1.45,1.46 urls.html,1.37,1.38 video.html,1.589,1.590

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

Modified Files:
	Overview.html association-of-controls-and-forms.html 
	edits.html embedded-content-1.html fragment-links.js 
	grouping-content.html index.html interactive-elements.html 
	links.html number-state.html scripting-1.html semantics.html 
	spec.html states-of-the-type-attribute.html 
	text-level-semantics.html the-iframe-element.html urls.html 
	video.html 
Log Message:
Allow spaces around URLs in most attributes (not itemtype or xmlns). Require that UAs strip spaces around <input type=url value> URLs. (whatwg r4992)

[updated by splitter]


Index: text-level-semantics.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/text-level-semantics.html,v
retrieving revision 1.584
retrieving revision 1.585
diff -u -d -r1.584 -r1.585
--- text-level-semantics.html	9 Apr 2010 04:07:21 -0000	1.584
+++ text-level-semantics.html	12 Apr 2010 05:57:32 -0000	1.585
@@ -693,7 +693,8 @@
   <dfn id="attr-q-cite" title="attr-q-cite"><code>cite</code></dfn> attribute. The
   source may be fictional, as when quoting characters in a novel or
   screenplay.</p><p>If the <code title="attr-q-cite"><a href="#attr-q-cite">cite</a></code> attribute is
-  present, it must be a <a href="urls.html#valid-url">valid URL</a>. </p><p>The <code><a href="#the-q-element">q</a></code> element must not be used in place of quotation
+  present, it must be a <a href="urls.html#valid-url-potentially-surrounded-by-spaces">valid URL potentially surrounded by
+  spaces</a>. </p><p>The <code><a href="#the-q-element">q</a></code> element must not be used in place of quotation
   marks that do not represent quotes; for example, it is inappropriate
   to use the <code><a href="#the-q-element">q</a></code> element for marking up sarcastic
   statements.</p><p>The use of <code><a href="#the-q-element">q</a></code> elements to mark up quotations is

Index: scripting-1.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/scripting-1.html,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -d -r1.30 -r1.31
--- scripting-1.html	4 Apr 2010 22:47:28 -0000	1.30
+++ scripting-1.html	12 Apr 2010 05:57:30 -0000	1.31
@@ -359,13 +359,13 @@
   specified. The default, which is used if the attribute is absent,
   is "<code title="">text/javascript</code>".</p><p>The <dfn id="attr-script-src" title="attr-script-src"><code>src</code></dfn>
   attribute, if specified, gives the address of the external script
-  resource to use. The value of the attribute must be a <a href="urls.html#valid-non-empty-url">valid
-  non-empty URL</a> identifying a script resource of the type given
-  by the <code title="attr-script-type"><a href="#attr-script-type">type</a></code> attribute, if the
-  attribute is present, or of the type "<code title="">text/javascript</code>", if the attribute is absent. A
-  resource is a script resource of a given type if that type
-  identifies a scripting language and the resource conforms with the
-  requirements of that language's specification.</p><p>The <dfn id="attr-script-charset" title="attr-script-charset"><code>charset</code></dfn>
+  resource to use. The value of the attribute must be a <a href="urls.html#valid-non-empty-url-potentially-surrounded-by-spaces">valid
+  non-empty URL potentially surrounded by spaces</a> identifying a
+  script resource of the type given by the <code title="attr-script-type"><a href="#attr-script-type">type</a></code> attribute, if the attribute is
+  present, or of the type "<code title="">text/javascript</code>", if
+  the attribute is absent. A resource is a script resource of a given
+  type if that type identifies a scripting language and the resource
+  conforms with the requirements of that language's specification.</p><p>The <dfn id="attr-script-charset" title="attr-script-charset"><code>charset</code></dfn>
   attribute gives the character encoding of the external script
   resource. The attribute must not be specified if the <code title="attr-script-src"><a href="#attr-script-src">src</a></code> attribute is not present. If the
   attribute is set, its value must be a valid character encoding name,

Index: the-iframe-element.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/the-iframe-element.html,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -d -r1.45 -r1.46
--- the-iframe-element.html	9 Apr 2010 04:07:22 -0000	1.45
+++ the-iframe-element.html	12 Apr 2010 05:57:32 -0000	1.46
@@ -330,7 +330,8 @@
   <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
   gives the address of a page that the <a href="browsers.html#nested-browsing-context">nested browsing
   context</a> is to contain. The attribute, if present, must be a
-  <a href="urls.html#valid-non-empty-url">valid non-empty URL</a>.</p><p>The <dfn id="attr-iframe-srcdoc" title="attr-iframe-srcdoc"><code>srcdoc</code></dfn>
+  <a href="urls.html#valid-non-empty-url-potentially-surrounded-by-spaces">valid non-empty URL potentially surrounded by
+  spaces</a>.</p><p>The <dfn id="attr-iframe-srcdoc" title="attr-iframe-srcdoc"><code>srcdoc</code></dfn>
   attribute gives the content of the page that the <a href="browsers.html#nested-browsing-context">nested
   browsing context</a> is to contain.  The value of the attribute
   in is <dfn id="an-iframe-srcdoc-document">an <code>iframe</code> <code title="attr-iframe-srcdoc">srcdoc</code> document</dfn>.</p><p>For <code><a href="#the-iframe-element">iframe</a></code> elements in <a href="dom.html#html-documents">HTML documents</a>,
@@ -624,7 +625,8 @@
   integration point for an external (typically non-HTML) application
   or interactive content.</p><p>The <dfn id="attr-embed-src" title="attr-embed-src"><code>src</code></dfn> attribute
   gives the address of the resource being embedded. The attribute, if
-  present, must contain a <a href="urls.html#valid-non-empty-url">valid non-empty URL</a>.</p><p>The <dfn id="attr-embed-type" title="attr-embed-type"><code>type</code></dfn>
+  present, must contain a <a href="urls.html#valid-non-empty-url-potentially-surrounded-by-spaces">valid non-empty URL potentially
+  surrounded by spaces</a>.</p><p>The <dfn id="attr-embed-type" title="attr-embed-type"><code>type</code></dfn>
   attribute, if present, gives the <a href="infrastructure.html#mime-type">MIME type</a> by which the
   plugin to instantiate is selected. The value must be a <a href="infrastructure.html#valid-mime-type">valid
   MIME type</a>. If both the <code title="attr-embed-type"><a href="#attr-embed-type">type</a></code> attribute and the <code title="attr-embed-src"><a href="#attr-embed-src">src</a></code> attribute are present, then the
@@ -709,8 +711,8 @@
   or as an external resource to be processed by a
   <a href="infrastructure.html#plugin">plugin</a>.</p><p>The <dfn id="attr-object-data" title="attr-object-data"><code>data</code></dfn>
   attribute, if present, specifies the address of the resource. If
-  present, the attribute must be a <a href="urls.html#valid-non-empty-url">valid non-empty
-  URL</a>.</p><p>The <dfn id="attr-object-type" title="attr-object-type"><code>type</code></dfn>
+  present, the attribute must be a <a href="urls.html#valid-non-empty-url-potentially-surrounded-by-spaces">valid non-empty
+  URL potentially surrounded by spaces</a>.</p><p>The <dfn id="attr-object-type" title="attr-object-type"><code>type</code></dfn>
   attribute, if present, specifies the type of the resource. If
   present, the attribute must be a <a href="infrastructure.html#valid-mime-type">valid MIME type</a>.</p><p>At least one of either the <code title="attr-object-data"><a href="#attr-object-data">data</a></code> attribute or the <code title="attr-object-type"><a href="#attr-object-type">type</a></code> attribute must be present.</p><p>The <dfn id="attr-object-name" title="attr-object-name"><code>name</code></dfn>
   attribute, if present, must be a <a href="browsers.html#valid-browsing-context-name">valid browsing context

Index: Overview.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/Overview.html,v
retrieving revision 1.851
retrieving revision 1.852
diff -u -d -r1.851 -r1.852
--- Overview.html	9 Apr 2010 04:17:16 -0000	1.851
+++ Overview.html	12 Apr 2010 05:57:29 -0000	1.852
@@ -287,7 +287,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-9-april-2010">Editor's Draft 9 April 2010</h2>
+   <h2 class="no-num no-toc" id="editor-s-draft-12-april-2010">Editor's Draft 12 April 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>
@@ -305,7 +305,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.4009.
+This is revision 1.4010.
    </p> 
    <p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a>
    &#169; 2010 <a href="http://www.w3.org/"><abbr title="World Wide
@@ -394,7 +394,7 @@
   specification's progress along the W3C Recommendation
   track.
 
-  This specification is the 9 April 2010 Editor's Draft.
+  This specification is the 12 April 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>The contents of this specification are also part of <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/">a
   specification</a> published by the <a href="http://www.whatwg.org/">WHATWG</a>, which is available under a
   license that permits reuse of the specification text.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- required patent boilerplate --><p>This document was produced by a group operating under the <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5

Index: embedded-content-1.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/embedded-content-1.html,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -d -r1.35 -r1.36
--- embedded-content-1.html	4 Apr 2010 22:47:27 -0000	1.35
+++ embedded-content-1.html	12 Apr 2010 05:57:29 -0000	1.36
@@ -349,9 +349,10 @@
   --><p>The image given by the <dfn id="attr-img-src" title="attr-img-src"><code>src</code></dfn> attribute is the
   embedded content, and the value of the <dfn id="attr-img-alt" title="attr-img-alt"><code>alt</code></dfn> attribute is the
   <code><a href="#the-img-element">img</a></code> element's <a href="content-models.html#fallback-content">fallback content</a>.</p><p>The <code title="attr-img-src"><a href="#attr-img-src">src</a></code> attribute must be
-  present, and must contain a <a href="urls.html#valid-non-empty-url">valid non-empty URL</a>
-  referencing a non-interactive, optionally animated, image resource
-  that is neither paged nor scripted.</p><p class="note">Images can thus be static bitmaps (e.g. PNGs, GIFs,
+  present, and must contain a <a href="urls.html#valid-non-empty-url-potentially-surrounded-by-spaces">valid non-empty URL potentially
+  surrounded by spaces</a> referencing a non-interactive,
+  optionally animated, image resource that is neither paged nor
+  scripted.</p><p class="note">Images can thus be static bitmaps (e.g. PNGs, GIFs,
   JPEGs), single-page vector documents (single-page PDFs, XML files
   with an SVG root element), animated bitmaps (APNGs, animated GIFs),
   animated vector graphics (XML files with an SVG root element that

Index: grouping-content.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/grouping-content.html,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -d -r1.31 -r1.32
--- grouping-content.html	9 Apr 2010 04:07:20 -0000	1.31
+++ grouping-content.html	12 Apr 2010 05:57:29 -0000	1.32
@@ -510,7 +510,8 @@
   another source, whose address, if it has one, should be cited in the
   <dfn id="attr-blockquote-cite" title="attr-blockquote-cite"><code>cite</code></dfn>
   attribute.</p><p>If the <code title="attr-blockquote-cite"><a href="#attr-blockquote-cite">cite</a></code> attribute
-  is present, it must be a <a href="urls.html#valid-url">valid URL</a>. </p><div class="example">
+  is present, it must be a <a href="urls.html#valid-url-potentially-surrounded-by-spaces">valid URL potentially surrounded by
+  spaces</a>. </p><div class="example">
 
    <p>This next example shows the use of <code><a href="text-level-semantics.html#the-cite-element">cite</a></code> alongside
    <code><a href="#the-blockquote-element">blockquote</a></code>:</p>

Index: urls.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/urls.html,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -d -r1.37 -r1.38
--- urls.html	6 Apr 2010 00:17:24 -0000	1.37
+++ urls.html	12 Apr 2010 05:57:32 -0000	1.38
@@ -309,8 +309,14 @@
    <li><p>The <a href="#url">URL</a> is a valid IRI reference and the <a href="#document-s-character-encoding" title="document's character encoding">character encoding</a> of
    the URL's <code><a href="#document">Document</a></code> is UTF-8 or UTF-16. <a href="references.html#refsRFC3987">[RFC3987]</a></p></li>
 
-  </ul><p>A <a href="#url">URL</a> is a <dfn id="valid-non-empty-url">valid non-empty URL</dfn> if it is a
-  <a href="#valid-url">valid URL</a> but it is not the empty string.</p><p>A <a href="#url">URL</a> is an <dfn id="absolute-url">absolute URL</dfn> if <a href="#resolve-a-url" title="resolve a url">resolving</a> it results in the same output
+  </ul><p>A string is a <dfn id="valid-non-empty-url">valid non-empty URL</dfn> if it is a
+  <a href="#valid-url">valid URL</a> but it is not the empty string.</p><p>A string is a <dfn id="valid-url-potentially-surrounded-by-spaces">valid URL potentially surrounded by
+  spaces</dfn> if, after <a href="#strip-leading-and-trailing-whitespace" title="strip leading and trailing
+  whitespace">stripping leading and trailing whitespace</a> from
+  it, it is a <a href="#valid-url">valid URL</a>.</p><p>A string is a <dfn id="valid-non-empty-url-potentially-surrounded-by-spaces">valid non-empty URL potentially surrounded by
+  spaces</dfn> if, after <a href="#strip-leading-and-trailing-whitespace" title="strip leading and trailing
+  whitespace">stripping leading and trailing whitespace</a> from
+  it, it is a <a href="#valid-non-empty-url">valid non-empty URL</a>.</p><p>A <a href="#url">URL</a> is an <dfn id="absolute-url">absolute URL</dfn> if <a href="#resolve-a-url" title="resolve a url">resolving</a> it results in the same output
   regardless of what it is resolved relative to, and that output is
   not a failure.</p><p>An <a href="#absolute-url">absolute URL</a> is a <dfn id="hierarchical-url">hierarchical URL</dfn> if,
   when <a href="#resolve-a-url" title="resolve a url">resolved</a> and then <a href="#parse-a-url" title="parse a url">parsed</a>, there is a character immediately

Index: association-of-controls-and-forms.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/association-of-controls-and-forms.html,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- association-of-controls-and-forms.html	4 Apr 2010 22:47:26 -0000	1.26
+++ association-of-controls-and-forms.html	12 Apr 2010 05:57:29 -0000	1.27
@@ -359,7 +359,7 @@
   <code><a href="forms.html#the-form-element">form</a></code> element.</p><hr><p>The <dfn id="attr-fs-action" title="attr-fs-action"><code>action</code></dfn> and
   <dfn id="attr-fs-formaction" title="attr-fs-formaction"><code>formaction</code></dfn>
   content attributes, if specified, must have a value that is a
-  <a href="urls.html#valid-url">valid URL</a>.</p><p>The <dfn id="concept-fs-action" title="concept-fs-action">action</dfn> of an element is
+  <a href="urls.html#valid-url-potentially-surrounded-by-spaces">valid URL potentially surrounded by spaces</a>.</p><p>The <dfn id="concept-fs-action" title="concept-fs-action">action</dfn> of an element is
   the value of the element's <code title="attr-fs-formaction"><a href="#attr-fs-formaction">formaction</a></code> attribute, if the
   element is a <a href="forms.html#concept-submit-button" title="concept-submit-button">submit
   button</a> and has such an attribute, or the value of its

Index: fragment-links.js
===================================================================
RCS file: /sources/public/html5/spec-author-view/fragment-links.js,v
retrieving revision 1.59
retrieving revision 1.60
diff -u -d -r1.59 -r1.60
--- fragment-links.js	6 Apr 2010 00:17:23 -0000	1.59
+++ fragment-links.js	12 Apr 2010 05:57:29 -0000	1.60
@@ -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','conformance-requirements-for-authors':'introduction','attr-input-vspace':'obsolete','the-root-element':'semantics','command-facet-type':'commands','hierarchical-url':'urls','valid-non-negative-integer':'common-microsyntaxes','attr-fs-enctype-urlencoded':'association-of-controls-and-forms','activation':'editing','the-br-element':'text-level-semantics','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','critical-subresources':'infrastructure','attr-sript-async':'scripting-1','a-graphical-representation-of-some-of-the-surrounding-text':'embedded-content-1','math':'the-map-element','refsIANAPERMHEADERS':'references','attr-br-clear':'obsolete','attr-iframe-longdesc':'obsolete','attr-input-usemap':'obsolete','attr-meta-http-equiv-content-language':'semantics','the-maxlength-attribute':'common-input-element-attributes','attr-iframe-vspace':'obsolete','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','the-wbr-element':'text-level-semantics','htmltitleelement':'semantics','character-references':'syntax','command-bold':'dnd','atr-hyperlink-media':'links','attr-object-align':'obsolete','syntax-start-tag':'syntax','html-mime-type':'infrastructure','link-type-index':'links','command-facet-disabledstate':'commands','strike':'obsolete','browsing-the-web':'history','refsDOMRANGE':'references','attr-tr-bgcolor':'obsolete','the-img-element':'embedded-content-1','mq':'common-microsyntaxes','exceptions':'urls','scripting':'webappapis','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','absolute-url':'urls','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':'obslete','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','refsWHATWGWIKI':'references','media-element-attributes':'video','element-level-focus-apis':'editing','htmlmenuelement':'interactive-elements','attributes-0':'index','scripting-1':'scripting-1','scripting-0':'infrastructure','attr-input-alt':'number-state','writing':'syntax','edits':'edits','relaxing-the-same-origin-restriction':'origin-0','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-blockqute-element':'grouping-content','attr-object-type':'the-iframe-element','dom-media-have_enough_data':'video','attr-input-type-email-keyword':'the-input-element','attr-textarea-readonly':'the-button-element','serialize_err':'urls','client-identification':'timers','attr-input-type-color-keyword':'the-input-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','attr-link-urn':'obsolete','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-andforms','attr-media-preload-none-state':'video','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','attr-embed-vspace':'obsolete','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':'he-button-element','navigatorabilities':'timers','event-media-ratechange':'video','link-type-nofollow':'links','event-drag':'dnd','refsRFC1345':'references','inuse_attribute_err':'urls','attr-object-declare':'obsolete','refsWIN31J':'references','the-title-element':'dom','pragma-set-default-language':'semantics','radio-button-state':'number-state','acknowledgements':'acknowledgements','htmlmapelement':'the-map-element','dom':'dom','the-mark-element':'text-level-semantics','concept-fs-target':'association-of-controls-and-forms','not_found_err':'urls','concept-datetime-local':'common-microsyntaxes','syntax':'syntax','colors':'common-microsyntaxes','outerhtml':'apis-in-html-documents','refsPROGRESS':'references','htmloptionscollection':'urls','radionodelist':'urls','domtokenlist':'urls','preferred-mime-name':'infrastructure','htmlstyleelement':'semantics','attr-th-scope-colgroup':'tabular-data','attr-fs-enctype':'association-of-controls-and-forms','attr-textarea-wrap-hard':'the-button-element','custom-handlers''timers','mathml-namespace':'urls','event-media-canplay':'video','refsFILEAPI':'references','attr-iframe-srcdoc':'the-iframe-element','the-col-element':'tabular-data','the-placeholder-attribute':'common-input-element-attributes','refsDOMCORE':'references','kinds-of-content':'content-models','the-td-element':'tabular-data','accessing-other-browsing-contexts':'browsers','creator-browsing-context':'browsers','event-dragstart':'dnd','event-media-waiting':'video','attr-tdth-headers':'tabular-data','attr-textarea-wrap-soft-state':'the-button-element','active-document':'browsers','article-example':'sections','hidden-state':'states-of-the-type-attribute','refsRFC5724':'references','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','medi-elements':'video','attr-tr-align':'obsolete','urls':'urls','mediaerror':'video','concept-section':'sections','attr-input-maxlength':'common-input-element-attributes','refsRFC3023':'references','attr-area-shape-rect':'the-map-element','radio-button-group':'number-state','attr-input-min':'common-input-element-attributes','e-mail-state':'states-of-the-type-attribute','htmlheadelement':'semantics','attr-input-type-url-keyword':'the-input-element','htmlembedelement':'the-iframe-element','syntax-errors':'introduction','htmlmediaelement':'video','about:legacy-compat':'urls','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-ircle':'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','hashchangeevent':'history','htmlbrelement':'text-level-semantics','attr-img-hspace':'obsolete','a-link-or-button-containing-nothing-but-the-image':'embedded-content-1','attr-img-border':'obsolete','htmlkeygenelement':'the-button-element','the-body-element':'dom','heading-content':'content-models','attr-html-manifest':'semantics','htmliframeelement':'the-iframe-element','the-output-element':'the-button-element','attr-input-type-image-keyword':'the-input-element','about:srcdoc':'urls','attr-tr-charoff':'obsolete','attr-input-type-time-keyword':'the-input-element','attr-col-charoff':'obsolete','hmltimeelement':'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','security-document':'dom','scrolling-elements-into-view':'editing','attr-background':'obsolete','refsRFC4281':'references','security':'dom','refsRFC4329':'references','domstringmap-0':'urls','paragraphs':'content-models','the-ins-element':'edits','attr-embed-type':'the-iframe-element','manually-releasing-the-storage-mutex':'timers','network_err':'urls','comments':'syntax','attr-command-type-state-checkbox':'interactive-elements','refsATAG':'references','presentational-markup':'introduction','nested-browsing-conext':'browsers','phrasing-content':'content-models','text-html-sandboxed':'iana','attr-meter-min':'the-button-element','tag-clouds':'links','event-media-seeking':'video','attr-command-disabled':'interactive-elements','event-dragenter':'dnd','months':'common-microsyntaxes','attr-script-type':'scripting-1','creator-document':'browsers','refsMIMESNIFF':'references','htmltableelement':'tabular-data','reflecting-content-attributes-in-idl-attributes':'urls','refsATOM':'references','attr-param-type':'obsolete','attr-button-type-submit':'the-button-element','remove-an-element-from-a-document':'infrastructure','the-readonly-attribute':'common-input-element-attributes','htmlscriptelement':'scripting-1','unquoted':'syntax','isindex-0':'obsolete','refsRFC1468':'references','attr-area-nohref':'obsolete','index_size_err':'urls','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':'comands','refsSVG':'references','introduction-2':'offline','valid-date-or-time-string':'common-microsyntaxes','attr-media-preload-auto':'video','attr-media-preload-metadata':'video','command-insertunorderedlist':'dnd','the-directionality':'elements','attr-script-event':'obsolete','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','webappapis':'webappapis','attr-a-charset':'obsolete','meta-keywords':'semantics','concept-datetime':'common-microsyntaxes','html-namespace':'infrastructure','a-group-of-images-that-form-a-single-larger-picture-with-links':'embedded-content-1','navigating-nested-browsing-contexts-in-the-dom':'browsers','link-type-sidebar':'links','attr-meta-content':'semantics','command-italic':'dnd','focus':'editing','attr-caption-align':'obsolete','ttr-textarea-placeholder':'the-button-element','sequential-link-types':'links','refsRFC1034':'references','attr-time-pubdate':'text-level-semantics','attr-body-margintop':'obsolete','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','attr-dataformatas':'obsolete','input-type-attr-summary':'the-input-element','obsolete':'obsolete','number-state':'number-state','event-media-playing':'video','secondary-browsing-contexts':'browsers','dom-media-have_current_data':'video','global-dates-and-times':'common-microsyntaxes','the-pre-element':'grouping-content','concept-submit-button':'forms','command-unselect':'dnd','refsSHIFTJIS':'references','htmldocument':'dom','concept-button':'forms','attr-param-value':'the-iframe-element','refsECMA262':'references','command-selectall':'dnd','the-rt-element':'tet-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','refsRFC2483':'references','security_err':'urls','event-dragleave':'dnd','attr-object-standby':'obsolete','attr-mod-datetime':'edits','dom-media-have_metadata':'video','attr-input-type-range-keyword':'the-input-element','live':'infrastructure','scope':'introduction','attr-input-readonly':'common-input-element-attributes','attr-area-shape-keyword-circle':'the-map-element','attr-tabindex':'editing','printing':'timers','attr-link-media':'semantics','syntax-attribute-value':'yntax','xml-compatible':'infrastructure','htmlbuttonelement':'the-button-element','attr-fs-novalidate':'association-of-controls-and-forms','attr-input-type-reset-keyword':'the-input-element','attr-optgroup-label':'the-button-element','context-menus':'interactive-elements','the-param-element':'the-iframe-element','charset':'semantics','auxiliary-browsing-context':'browsers','xhtml':'the-xhtml-syntax','history-traversal':'history','the-option-element':'the-button-element','common-idioms-without-dedicated-elements':'links','attr-script-src':'scripting-1','htmlareaelement':'the-map-element','refsCOOKIES':'references','attr-hyperlink-type':'links','appcacheevents':'offline','outline':'sections','attr-select-multiple':'the-button-element','attr-iframe-sandbox':'the-iframe-element','dom-location-pathname':'history','the-span-element':'text-level-semantics','definitions':'association-of-controls-and-forms','the-form-element':'forms','effective-script-origin':'origin-0','the-keygen-element':'the-button-element','att-media-preload-auto-state':'video','refsRFC2313':'references','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','refsRFC1842':'references','attr-object-data':'the-iframe-element','recommended-reading':'introduction','conversations':'links','attr-tdth-height':'obsolete','attr-table-align':'obsolete','refsWCAG':'references','category-listed':'forms','refsUTF8DET':'references','attr-hyperlink-usemap':'the-map-element','embedded-content-1':'embedded-content-1','embedded-content-0':'content-models','other-metadata-names':'semantics','the-required-attribute':'common-input-element-attributes','authors-using-xhtml':'iana','manifests':'offline','attr-body-marginwidth':'obsolete','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','text-html':'iana','valid-list-of-integers':'common-microsyntaxes','attr-hr-width':'obsolete','the-style-attribute':'elements','image-maps':'the-map-element','origin':'origin-0','the-document-s-current-address':'dom','blink':'obsolete','elements-0':'syntax','elements-1':'index','doctype-legacy-string':'syntax','error-codes':'video','the-q-element':'text-level-semantics','event-media-emptied':'video','syntax-charref':'syntax','attr-input-type-radio-keyword':'the-input-element','the-figure-element':'grouping-content','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','event-pagehide':'history','type_mismatch_err':'urls','refsOPENSEARCH':'references','attr-form-autocomplete':'forms','event-pageshow':'history','element-content-categories':'index','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','the-min-and-max-attributes':'commn-input-element-attributes','category-submit':'forms','attr-area-shape-default':'the-map-element','xmp':'obsolete','attributes-common-to-form-controls':'association-of-controls-and-forms','image-map':'the-map-element','attr-output-for':'the-button-element','htmllegendelement':'forms','refsRFC3986':'references','refsRFC3987':'references','htmlspanelement':'text-level-semantics','nobr':'obsolete','attr-iframe-align':'obsolete','attr-body-marginleft':'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','attr-link-methods':'obsolete','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','the-summary-element':'interactive-elements','refsGREGORIAN':'references','the-header-element':'sections','attr-option-selected':'the-button-elment','infrastructure':'infrastructure','form-submission':'association-of-controls-and-forms','the-th-element':'tabular-data','svg-0':'the-map-element','dom-appcache-updateready':'offline','security-0':'association-of-controls-and-forms','joint-session-history':'history','attr-media-preload':'video','dates':'common-microsyntaxes','refsWEBSQL':'references','s':'obsolete','attr-menu-compact':'obsolete','insert-an-element-into-a-document':'infrastructure','valid-non-empty-url':'urls','parse_err':'urls','concept-appcache-manifest-fallback':'offline','boolean-attribute':'common-microsyntaxes','interfaces-for-url-manipulation':'urls','attr-iframe-name':'the-iframe-element','the-command':'interactive-elements','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-elemet-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':'webappapis','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-lement':'grouping-content','design-notes':'introduction','attr-hyperlink-hreflang':'links','element-restrictions':'syntax','refsNPAPI':'references','compliance-with-other-specifications':'introduction','the-thead-element':'tabular-data','event-hashchange':'history','the-p-element':'grouping-content','the-del-element':'edits','event-media-loadstart':'video','noembed':'obsolete','htmltablecolelement':'tabular-data','browsing-context':'browsers','restrictions-on-content-models-and-on-attribute-values':'introduction','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-nework':'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','annotations-for-assistive-technology-products-aria':'content-models','dom-mediaerror-media_err_decode':'video','parent-browsing-context':'browsers','references':'references','refsWEBIDL':'references','invalid_access_err':'urls','attr-optgroup-disabled':'the-button-element','event-media-suspend':'video','attr-command-type-state-command':'interactive-elements','event-media-stalled':'video','attr-input-type-month-keyword':'the-input-element','the-title-attribute':'elements','attr-source-type':'video','styling':'semantics','attr-input-autocomplete-on-state':'common-input-element-attributes','inline-documentation-for-external-scripts':'scripting-1','the-code-element':'text-leel-semantics','toolbar-state':'interactive-elements','htmlimageelement':'embedded-content-1','attr-table-rules':'obsolete','refsWEBSTORAGE':'references','attr-img-align':'obsolete','attr-fs-formnovalidate':'association-of-controls-and-forms','syntax-text':'syntax','the-legend-element':'forms','attr-command-title':'interactive-elements','mathml':'the-map-element','undomanagerevent':'dnd','popstateevent':'history','attr-iframe-scrolling':'obsolete','link-type-noreferrer':'links','checkbox-state':'number-state','attr-fs-method-put':'association-of-controls-and-forms','the-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','refsHTMLDIFF':'references','command-facet-action':'commands','refs2DCONTEXT':'references','dom-outerhtml':'apis-in-html-documents','htmlolistelement':'grouping-content','anonymous-command':'commands','fallback-content':'conent-models','u':'obsolete','keywords-and-enumerated-attributes':'common-microsyntaxes','attr-body-marginheight':'obsolete','the-em-element':'text-level-semantics','attr-form-autocomplete-on-state':'forms','browsing-context-container':'browsers','refsRFC1922':'references','browsers':'browsers','alt':'embedded-content-1','tt':'obsolete','invalid_state_err':'urls','tree-order':'infrastructure','concept-input-type-file-selected':'number-state','foreign-elements':'syntax','the-ruby-element':'text-level-semantics','command-inserthtml':'dnd','application-cache-api':'offline','the-session-history-of-browsing-contexts':'history','concept-fs-method':'association-of-controls-and-forms','attr-iframe-hspace':'obsolete','the-link-is-an-alternative-stylesheet':'links','ascii-compatible-character-encoding':'infrastructure','form-submission-0':'association-of-controls-and-forms','the-meter-element':'the-button-element','plugins':'infrastructure','refsMQ':'references','htmloptionscollection-0':'urls','terminology-0':'urls','ttr-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','event-dragend':'dnd','attr-ol-compact':'obsolete','attr-tbody-align':'obsolete','attr-tdth-valign':'obsolete','concept-option-disabled':'the-button-element','inter-element-whitespace':'content-models','link-type-first':'links','attr-a-urn':'obsolete','event-media-timeupdate':'video','the-h1-h2-h3-h4-h5-and-h6-elements':'sections','attr-ul-type':'obsolete','namespace_err':'urls','introduction-4':'dnd','introduction-0':'forms','introduction-3':'webappapis','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-leel-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','refsRFC3490':'references','ascii-case-insensitive':'infrastructure','numbers':'common-microsyntaxes','writing-cache-manifests':'offline','undomanager':'dnd','attr-tdth-rowspan':'tabular-data','menus':'interactive-elements','creating-documents':'dom','attr-tdth-bgcolor':'obsolete','attr-media-preload-metadata-state':'video','attr-mod-cite':'edits','enabling-and-disabling-form-controls':'association-of-controls-and-forms','reflect':'urls','htmlaudioelement':'video','refsXPATH10':'references','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-n-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-table-datapagesize':'obsolete','attr-textarea-required':'the-button-element','refsRFC2119':'references','the-tbody-element':'tabular-data','attr-tbody-char':'obsolete','attr-area-shape-keyword-poly':'the-map-element','named-character-references-table':'named-character-references','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-option-name':'obsolete','attr-blockquote-cite':'grouping-content','attr-input-required':'common-input-element-attriutes','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','implementing-the-server-side-processing-for-a-form':'forms','limiting-user-input-length':'association-of-controls-and-forms','attr-a-name':'obsolete','script':'scripting-1','introduction':'introduction','menus-intro':'interactive-elements','concept-input-value-default-range':'number-state','button-state':'number-state','list-state':'interactive-elements','attr-object-border':'obsolete','hyperlink-link':'semantics','dragevent':'dnd','pragma-directives':'semantics','conforming-documents':'infrastructure','attr-body-text':'obsolete','a-purely-decorative-image-that-doesn-t-add-any-information':'embedded-content-1','transparentcontent-models':'content-models','simple-dialogs':'timers','attr-li-type':'obsolete','text-content':'content-models','hierarchical-link-types':'links','attr-input-step':'common-input-element-attributes','dndevents':'dnd','the-a-element':'text-level-semantics','refsUNIVCHARDET':'references','phrasing-content-0':'content-models','htmloutputelement':'the-button-element','command-api':'commands','htmlallcollection':'urls','attr-tr-char':'obsolete','the-colgroup-element':'tabular-data','the-tr-element':'tabular-data','syntax-doctype':'syntax','html-namespace-0':'urls','attr-body-alink':'obsolete','range-state':'number-state','attr-area-shape-keyword-rect':'the-map-element','session-history':'history','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','refsCHARMOD':'references','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','interactive-elements':'interactive-elements','the-abbr-element':'text-level-semantics','attr-style-scoped':'semantics','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-fs-enctype-formdata':'association-of-controls-and-forms','user-interface':'video','attr-hyperlink-rel':'links','text-node':'infrastructure','command-insertimage':'dnd','attr-ol-start':'grouping-content','formatblock-candidate':'dnd','state-object':'history','attr-input-type-submit-keyword':'the-input-element','embedded-content':'content-models','interfaces':'index','collections-0':'urls','event-media-ended':'video','attr-link-title':'semantics','attr-menu-label':'interactive-elements','htmltablerowelement':'tabular-data','hyperlink':'links','refsRFC2781':'references','context':'the-canvas-element','attr-input-hspace':'obsolete','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':'links','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-popstate':'history','event-appcache-progress':'offline','dom-tree-accessors':'dom','needs-a-date':'text-level-semantics','attr-table-frame':'obsolete','attr-input-type-datetime-local-keyword':'the-input-element','attr-media-preload-none':'video','multicol':'obsolete','attr-table-width':'obsolete','writing-a-form-s-user-interface':'forms','concept-fs-enctype':'association-of-controls-and-forms','attr-tdth-align':'obsolete','ancestor-browsing-context':'browsers','url-decomposition-idl-attributes':'urls','attr-fs-formtarget':'association-of-controls-and-forms','domhtmlimplementation':'dom','a-short-phrase-or-label-with-an-alternative-graphical-representation:-icons-logos':'embedded-contet-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','attr-meter-optimum':'the-button-element','the-ul-element':'grouping-content','metadata-content-0':'content-models','location':'history','event-media-abort':'video','concept-rel-extensions':'links','attr-form-name':'forms','big':'obsolete','attr-command-icon':'interactive-elements','dom-appcache-idle':'offline','the-caption-element':'tabular-data','case-sensitive':'infrastructure','facets':'commands','ignore':'infrastructure','valid-local-date-and-time-string':'common-microsyntaxes','dom-media-network_idle':'video','terminology':'infrastructure','the-title-element-0':'semantics','attr-source-media':'video','valid-floating-point-number':'common-microsyntaxes','refsECMA357':'rferences','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-iframe-allowtransparency':'obsolete','attr-textarea-rows':'the-button-element','the-list-attribute':'common-input-element-attributes','the-noscript-element':'scripting-1','interactive-content':'content-models','dom-location-search':'history','attr-iframe-src':'the-iframe-element','refsRFC5322':'references','valid-browsing-context-name':'browsers','command-facet-accesskey':'commands','attr-input-type-number-keyword':'the-input-element','attr-fs-method-get-keyword':'association-of-controls-and-forms','location-of-the-media-resource':'video','refsRFC2646':'references','attr-link-sizes-any':'links','refsRFC2318':'references','telephone-state':'states-of-the-type-attribute','a-phrase-or-paragraph-with-an-alternative-graphical-representation:-charts-diagrams-graps-maps-illustrations':'embedded-content-1','attr-fs-method':'association-of-controls-and-forms','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','reset-button-state':'number-state','character-encodings':'infrastructure','attr-img-ismap':'embedded-content-1','text-that-has-been-rendered-to-a-graphic-for-typographical-effect':'embedded-content-1','refsCSSOM':'references','intro-early-example':'introduction','refsISO885911':'references','attr-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','ttr-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','extensibility':'infrastructure','attr-embed-hspace':'obsolete','event-media-volumechange':'video','headings-and-sections':'sections','attr-hr-color':'obsolete','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-tring':'common-microsyntaxes','the-dd-element':'grouping-content','attr-data':'elements','categories':'forms','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','attr-body-marginbottom':'obsolete','index':'index','the-hgroup-element':'sections','events-0':'index','attr-ol-reversed':'grouping-content','valid-mime-type':'infrastructure','acronym':'obsolete','attr-meter-max':'the-button-element','valid-time-string':'common-microsyntaxes','attr-contextmenu':'interactive-elements','context-menu-state':'interactive-elements','the-strong-element':'text-level-semantics','attr-fs-target':'association-of-controls-and-forms','event-media-durationchange':'video','the-head-element':'dom','a-key-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','an-iframe-srcdoc-document':'the-iframe-element','refsCSS':'references','the-step-attribute':'common-input-element-attributes','concept-meta-extensions':'semantics','text-field-selection':'editing','signed-integers':'common-microsyntaxes','htmllielement':'grouping-content','attr-img-vspace':'obsolete','windowmodal':'timers','number-of-days-in-month-month-of-year-year':'common-microsyntaxes','hyperlink-elements':'links','browser-state':'offline','the-canvas-element':'the-canvas-element','attr-meta-http-equiv-content-type':'semantics','attr-style-media':'semntics','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','origin-0':'origin-0','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','transparent':'content-modls','event-handler-content-attributes':'webappapis','linkTypes':'links','text-0':'syntax','the-html-element':'dom','structure-of-this-specification':'introduction','refsMATHML':'references','concept-fs-action':'association-of-controls-and-forms','attr-progress-max':'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','refsWEBWORKERS':'references','refsPNG':'references','dom-link-disabled':'semantics','the-hidden-attribute':'editing','attr-a-rev':'obsolete','attr-input-accept':'number-state','htmltablesectionelement':'tabular-data','secondary-browsing-context':'browsers','undo':'dnd','link-type-external':'links','refsHTTP':'references','attr-a-methods':'obsolete','usage-summary':'text-level-semantics','security-forms':'association-of-controls-and-forms','system-stat-and-capabilities':'timers','attr-details-open':'interactive-elements','content-models':'content-models','htmltabledatacellelement':'tabular-data','footnotes':'links','other-link-types':'links','attr-abbr-title':'text-level-semantics','attr-script-for':'obsolete','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','obsolete-permitted-doctype':'syntax','event-media-loadedmetadata':'video','sectioning-content-0':'content-models','htmlelement':'elements','attr-img-longdesc':'obsolete','enumerated-attribute':'common-microsyntaxes','attr-input-size':'common-input-element-attributes','attr-dim-height':'the-map-element','space-separated-tokens':'common-microsyntaxes','htmlallcollection-0':'urls','refsPINGBACK':'references','xml-documents''dom','attr-menu-type':'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-datasrc':'obsolete','attr-meta-charset':'semantics','command-inserttext':'dnd','attr-command-type-state-radio':'interactive-elements','the-selection':'editing','configuring-a-form-to-communicate-with-a-server':'forms','attr-tdth-width':'obsolete','authority-based-url':'urls','htmlcanvaselement':'the-canvas-element','refsJSURL':'references','url':'urls','obsolete-permitted-doctype-string':'syntax','the-ready-states':'video','selection':'editing','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-leel-semantics','the-html-element-0':'semantics','dom-location-port':'history','attr-body-bgcolor':'obsolete','refsPSL':'references','comma-separated-tokens':'common-microsyntaxes','ready-for-editing-host-commands':'dnd','dialogs-implemented-using-separate-documents':'timers','the-figcaption-element':'grouping-content','client-side-form-validation':'forms','refsEUCKR':'references','password-state':'states-of-the-type-attribute','the-kbd-element':'text-level-semantics','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','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-toview-images':'embedded-content-1','attr-body-marginright':'obsolete','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','refsWEBSOCKET':'references','dom-appcache-uncached':'offline','attr-input-src':'number-state','attr-col-width':'obsolete','attr-tr-valign':'obsolete','attr-input-type':'the-input-element','playing-the-media-resource':'video','defining-term':'text-level-semantics','the-textarea-element':'the-button-element','attr-dim-width':'the-map-element','valid-integer':'common-microsyntaxes','event-handlers':'webappapis','attr-object-codetype':'obsolete','dom-media-network_loading':'video','nested-browsing-contexts':'browsers','command-createlink':'dnd','attr-media-autoplay':'video','htmldlistelement':'grouping-content','attr-progress-value':'the-button-element,'link-type-search':'links','attr-body-vlink':'obsolete','other-pragma-directives':'semantics','htmlformcontrolscollection':'urls','concept-events-trusted':'infrastructure','center':'obsolete','refsWIN1252':'references','textFieldSelection':'editing','audio':'video','event-media-canplaythrough':'video','htmlcollection':'urls','attr-tdth-nowrap':'obsolete','global-attributes':'elements','the-section-element':'sections','link-type-stylesheet':'links','week-number-of-the-last-day':'common-microsyntaxes','attr-input-autocomplete-off-state':'common-input-element-attributes','attr-fs-enctype-text':'association-of-controls-and-forms','autofocusing-a-form-control':'association-of-controls-and-forms','nextid':'obsolete','syntax-end-tag':'syntax','elements-in-the-dom':'elements','attr-link-hreflang':'semantics','raw-text-elements':'syntax','outlines':'sections','attr-area-shape-poly':'the-map-element','dom-function-call':'webappapis','the-fieldset-element':'forms','innerhtml':'apis-in-html-documents','attr-a-coords':obsolete','attr-link-target':'obsolete','dom-navigator-registercontenthandler':'timers','attr-command-label':'interactive-elements','how-to-read-this-specification':'introduction','attr-link-rel':'semantics','htmlformelement':'forms','refsUAAG':'references','attr-body-link':'obsolete','attr-link-rev':'obsolete','attr-iframe-marginheight':'obsolete','htmlanchorelement':'text-level-semantics','attr-textarea-wrap':'the-button-element','attr-datafld':'obsolete','the-dir-attribute':'elements','the-doctype':'syntax','dom-location-hostname':'history','common-microsyntaxes':'common-microsyntaxes','refsUTF7':'references','event-appcache-error':'offline','meta-author':'semantics','the-small-element':'text-level-semantics','custom-data-attribute':'elements','session-history-entry':'history','refsWIN949':'references','common-input-element-apis':'common-input-element-attributes','offsets-into-the-media-resource':'video','command-facet-icon':'commands','attr-ul-compact':'obsolete','attr-tdth-axis':'obsolete','navigatorid:'timers','url-state':'states-of-the-type-attribute','mime-type':'infrastructure','valid-hash-name-reference':'common-microsyntaxes','attr-command-type-keyword-command':'interactive-elements','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','pagetransitionevent':'history','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':'webappapis','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','en-tags':'syntax','mime-types':'video','valid-lowercase-simple-color':'common-microsyntaxes','named-character-references':'named-character-references','cdata-rcdata-restrictions':'syntax','rel-icon':'links','text-cache-manifest':'iana','htmltablecellelement':'tabular-data','the-samp-element':'text-level-semantics','grouping-content':'grouping-content','authors-using-html':'iana','syntax-tag-omission':'syntax','event-appcache-downloading':'offline','the-optgroup-element':'the-button-element','attr-canvas-height':'the-canvas-element','current-entry':'history','refsUNICODE':'references','refsRFC2426':'references','refsRFC2425':'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','conformance-requirements-for-authors':'introduction','attr-input-vspace':'obsolete','the-root-element':'semantics','command-facet-type':'commands','hierarchical-url':'urls','valid-non-negative-integer':'common-microsyntaxes','attr-fs-enctype-urlencoded':'association-of-controls-and-forms','activation':'editing','the-br-element':'text-level-semantics','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','critical-subresources':'infrastructure','attr-sript-async':'scripting-1','a-graphical-representation-of-some-of-the-surrounding-text':'embedded-content-1','math':'the-map-element','refsIANAPERMHEADERS':'references','attr-br-clear':'obsolete','attr-iframe-longdesc':'obsolete','attr-input-usemap':'obsolete','attr-meta-http-equiv-content-language':'semantics','the-maxlength-attribute':'common-input-element-attributes','attr-iframe-vspace':'obsolete','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','the-wbr-element':'text-level-semantics','htmltitleelement':'semantics','character-references':'syntax','command-bold':'dnd','atr-hyperlink-media':'links','attr-object-align':'obsolete','syntax-start-tag':'syntax','html-mime-type':'infrastructure','link-type-index':'links','command-facet-disabledstate':'commands','strike':'obsolete','browsing-the-web':'history','refsDOMRANGE':'references','attr-tr-bgcolor':'obsolete','the-img-element':'embedded-content-1','mq':'common-microsyntaxes','exceptions':'urls','scripting':'webappapis','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','absolute-url':'urls','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':'obslete','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','refsWHATWGWIKI':'references','media-element-attributes':'video','element-level-focus-apis':'editing','htmlmenuelement':'interactive-elements','attributes-0':'index','scripting-1':'scripting-1','scripting-0':'infrastructure','attr-input-alt':'number-state','writing':'syntax','edits':'edits','relaxing-the-same-origin-restriction':'origin-0','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-blockqute-element':'grouping-content','attr-object-type':'the-iframe-element','dom-media-have_enough_data':'video','attr-input-type-email-keyword':'the-input-element','attr-textarea-readonly':'the-button-element','serialize_err':'urls','client-identification':'timers','attr-input-type-color-keyword':'the-input-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','attr-link-urn':'obsolete','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-andforms','attr-media-preload-none-state':'video','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','attr-embed-vspace':'obsolete','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':'he-button-element','navigatorabilities':'timers','event-media-ratechange':'video','link-type-nofollow':'links','event-drag':'dnd','refsRFC1345':'references','inuse_attribute_err':'urls','attr-object-declare':'obsolete','refsWIN31J':'references','the-title-element':'dom','pragma-set-default-language':'semantics','radio-button-state':'number-state','acknowledgements':'acknowledgements','htmlmapelement':'the-map-element','dom':'dom','the-mark-element':'text-level-semantics','concept-fs-target':'association-of-controls-and-forms','not_found_err':'urls','concept-datetime-local':'common-microsyntaxes','syntax':'syntax','colors':'common-microsyntaxes','outerhtml':'apis-in-html-documents','refsPROGRESS':'references','htmloptionscollection':'urls','radionodelist':'urls','domtokenlist':'urls','preferred-mime-name':'infrastructure','htmlstyleelement':'semantics','attr-th-scope-colgroup':'tabular-data','attr-fs-enctype':'association-of-controls-and-forms','attr-textarea-wrap-hard':'the-button-element','custom-handlers''timers','mathml-namespace':'urls','event-media-canplay':'video','refsFILEAPI':'references','attr-iframe-srcdoc':'the-iframe-element','the-col-element':'tabular-data','the-placeholder-attribute':'common-input-element-attributes','refsDOMCORE':'references','kinds-of-content':'content-models','the-td-element':'tabular-data','accessing-other-browsing-contexts':'browsers','creator-browsing-context':'browsers','event-dragstart':'dnd','event-media-waiting':'video','attr-tdth-headers':'tabular-data','attr-textarea-wrap-soft-state':'the-button-element','active-document':'browsers','article-example':'sections','hidden-state':'states-of-the-type-attribute','refsRFC5724':'references','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','medi-elements':'video','attr-tr-align':'obsolete','urls':'urls','mediaerror':'video','concept-section':'sections','attr-input-maxlength':'common-input-element-attributes','refsRFC3023':'references','attr-area-shape-rect':'the-map-element','radio-button-group':'number-state','attr-input-min':'common-input-element-attributes','e-mail-state':'states-of-the-type-attribute','htmlheadelement':'semantics','attr-input-type-url-keyword':'the-input-element','htmlembedelement':'the-iframe-element','syntax-errors':'introduction','htmlmediaelement':'video','about:legacy-compat':'urls','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-ircle':'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','hashchangeevent':'history','htmlbrelement':'text-level-semantics','attr-img-hspace':'obsolete','a-link-or-button-containing-nothing-but-the-image':'embedded-content-1','attr-img-border':'obsolete','htmlkeygenelement':'the-button-element','the-body-element':'dom','heading-content':'content-models','attr-html-manifest':'semantics','htmliframeelement':'the-iframe-element','the-output-element':'the-button-element','attr-input-type-image-keyword':'the-input-element','about:srcdoc':'urls','attr-tr-charoff':'obsolete','attr-input-type-time-keyword':'the-input-element','attr-col-charoff':'obsolete','hmltimeelement':'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','security-document':'dom','scrolling-elements-into-view':'editing','attr-background':'obsolete','refsRFC4281':'references','security':'dom','refsRFC4329':'references','domstringmap-0':'urls','paragraphs':'content-models','the-ins-element':'edits','attr-embed-type':'the-iframe-element','manually-releasing-the-storage-mutex':'timers','network_err':'urls','comments':'syntax','attr-command-type-state-checkbox':'interactive-elements','refsATAG':'references','presentational-markup':'introduction','nested-browsing-conext':'browsers','phrasing-content':'content-models','text-html-sandboxed':'iana','attr-meter-min':'the-button-element','tag-clouds':'links','event-media-seeking':'video','attr-command-disabled':'interactive-elements','event-dragenter':'dnd','months':'common-microsyntaxes','attr-script-type':'scripting-1','creator-document':'browsers','refsMIMESNIFF':'references','htmltableelement':'tabular-data','reflecting-content-attributes-in-idl-attributes':'urls','refsATOM':'references','attr-param-type':'obsolete','attr-button-type-submit':'the-button-element','remove-an-element-from-a-document':'infrastructure','the-readonly-attribute':'common-input-element-attributes','htmlscriptelement':'scripting-1','unquoted':'syntax','isindex-0':'obsolete','refsRFC1468':'references','attr-area-nohref':'obsolete','index_size_err':'urls','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':'comands','refsSVG':'references','introduction-2':'offline','valid-date-or-time-string':'common-microsyntaxes','attr-media-preload-auto':'video','attr-media-preload-metadata':'video','command-insertunorderedlist':'dnd','the-directionality':'elements','attr-script-event':'obsolete','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','webappapis':'webappapis','attr-a-charset':'obsolete','meta-keywords':'semantics','concept-datetime':'common-microsyntaxes','html-namespace':'infrastructure','a-group-of-images-that-form-a-single-larger-picture-with-links':'embedded-content-1','navigating-nested-browsing-contexts-in-the-dom':'browsers','link-type-sidebar':'links','attr-meta-content':'semantics','command-italic':'dnd','focus':'editing','attr-caption-align':'obsolete','ttr-textarea-placeholder':'the-button-element','sequential-link-types':'links','refsRFC1034':'references','attr-time-pubdate':'text-level-semantics','attr-body-margintop':'obsolete','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','attr-dataformatas':'obsolete','input-type-attr-summary':'the-input-element','obsolete':'obsolete','number-state':'number-state','event-media-playing':'video','secondary-browsing-contexts':'browsers','dom-media-have_current_data':'video','global-dates-and-times':'common-microsyntaxes','the-pre-element':'grouping-content','concept-submit-button':'forms','command-unselect':'dnd','refsSHIFTJIS':'references','htmldocument':'dom','concept-button':'forms','attr-param-value':'the-iframe-element','refsECMA262':'references','command-selectall':'dnd','the-rt-element':'tet-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','refsRFC2483':'references','security_err':'urls','event-dragleave':'dnd','attr-object-standby':'obsolete','attr-mod-datetime':'edits','dom-media-have_metadata':'video','attr-input-type-range-keyword':'the-input-element','live':'infrastructure','scope':'introduction','attr-input-readonly':'common-input-element-attributes','attr-area-shape-keyword-circle':'the-map-element','attr-tabindex':'editing','printing':'timers','attr-link-media':'semantics','syntax-attribute-value':'yntax','xml-compatible':'infrastructure','htmlbuttonelement':'the-button-element','attr-fs-novalidate':'association-of-controls-and-forms','attr-input-type-reset-keyword':'the-input-element','attr-optgroup-label':'the-button-element','context-menus':'interactive-elements','the-param-element':'the-iframe-element','charset':'semantics','auxiliary-browsing-context':'browsers','xhtml':'the-xhtml-syntax','history-traversal':'history','the-option-element':'the-button-element','common-idioms-without-dedicated-elements':'links','attr-script-src':'scripting-1','htmlareaelement':'the-map-element','refsCOOKIES':'references','attr-hyperlink-type':'links','appcacheevents':'offline','outline':'sections','attr-select-multiple':'the-button-element','attr-iframe-sandbox':'the-iframe-element','dom-location-pathname':'history','the-span-element':'text-level-semantics','definitions':'association-of-controls-and-forms','the-form-element':'forms','effective-script-origin':'origin-0','the-keygen-element':'the-button-element','att-media-preload-auto-state':'video','refsRFC2313':'references','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','refsRFC1842':'references','attr-object-data':'the-iframe-element','recommended-reading':'introduction','conversations':'links','attr-tdth-height':'obsolete','attr-table-align':'obsolete','refsWCAG':'references','category-listed':'forms','refsUTF8DET':'references','attr-hyperlink-usemap':'the-map-element','embedded-content-1':'embedded-content-1','embedded-content-0':'content-models','other-metadata-names':'semantics','the-required-attribute':'common-input-element-attributes','authors-using-xhtml':'iana','manifests':'offline','attr-body-marginwidth':'obsolete','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','text-html':'iana','valid-list-of-integers':'common-microsyntaxes','attr-hr-width':'obsolete','the-style-attribute':'elements','image-maps':'the-map-element','origin':'origin-0','the-document-s-current-address':'dom','blink':'obsolete','elements-0':'syntax','elements-1':'index','doctype-legacy-string':'syntax','error-codes':'video','the-q-element':'text-level-semantics','event-media-emptied':'video','syntax-charref':'syntax','attr-input-type-radio-keyword':'the-input-element','the-figure-element':'grouping-content','semantics':'semantics','attr-tbody-valign':'obsolete','concept-time':'common-microsyntaxes','valid-non-empty-url-potentially-surrounded-by-spaces':'urls','syntax-cdata':'syntax','htmltablecaptionelement':'taular-data','common-input-element-attributes':'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','event-pagehide':'history','type_mismatch_err':'urls','refsOPENSEARCH':'references','attr-form-autocomplete':'forms','event-pageshow':'history','element-content-categories':'index','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':'url','link-type-last':'links','the-min-and-max-attributes':'common-input-element-attributes','category-submit':'forms','attr-area-shape-default':'the-map-element','xmp':'obsolete','attributes-common-to-form-controls':'association-of-controls-and-forms','image-map':'the-map-element','attr-output-for':'the-button-element','htmllegendelement':'forms','refsRFC3986':'references','refsRFC3987':'references','htmlspanelement':'text-level-semantics','nobr':'obsolete','attr-iframe-align':'obsolete','attr-body-marginleft':'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','attr-link-methods':'obsolete','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','the-summary-element':'interactive-elements','refsGREGORIAN':'references','the-heder-element':'sections','attr-option-selected':'the-button-element','infrastructure':'infrastructure','form-submission':'association-of-controls-and-forms','the-th-element':'tabular-data','svg-0':'the-map-element','dom-appcache-updateready':'offline','security-0':'association-of-controls-and-forms','joint-session-history':'history','attr-media-preload':'video','dates':'common-microsyntaxes','refsWEBSQL':'references','s':'obsolete','attr-menu-compact':'obsolete','insert-an-element-into-a-document':'infrastructure','valid-non-empty-url':'urls','parse_err':'urls','concept-appcache-manifest-fallback':'offline','boolean-attribute':'common-microsyntaxes','interfaces-for-url-manipulation':'urls','attr-iframe-name':'the-iframe-element','the-command':'interactive-elements','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-ookmark':'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':'webappapis','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-chcked':'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','event-hashchange':'history','the-p-element':'grouping-content','the-del-element':'edits','event-media-loadstart':'video','noembed':'obsolete','htmltablecolelement':'tabular-data','browsing-context':'browsers','restrictions-on-content-models-and-on-attribute-values':'introduction','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','annotations-for-assistive-technology-products-aria':'content-models','dom-mediaerror-media_err_decode':'video','parent-browsing-context':'browsers','references':'references','refsWEBIDL':'references','invalid_access_err':'urls','attr-optgroup-disabled':'the-button-element','event-media-suspend':'video','attr-command-type-state-command':'interactive-elements','event-media-stalled':'video','attr-input-type-month-keyword':'the-input-element','the-title-attribute':'elements','attr-source-type':'video','styling':'semantics','attr-input-autocomplete-on-state':'common-input-element-attributes','inline-documentation-fr-external-scripts':'scripting-1','the-code-element':'text-level-semantics','toolbar-state':'interactive-elements','htmlimageelement':'embedded-content-1','attr-table-rules':'obsolete','refsWEBSTORAGE':'references','attr-img-align':'obsolete','attr-fs-formnovalidate':'association-of-controls-and-forms','syntax-text':'syntax','the-legend-element':'forms','attr-command-title':'interactive-elements','mathml':'the-map-element','undomanagerevent':'dnd','popstateevent':'history','attr-iframe-scrolling':'obsolete','link-type-noreferrer':'links','checkbox-state':'number-state','attr-fs-method-put':'association-of-controls-and-forms','the-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','refsHTMLDIFF':'references','command-facet-action':'commands','refs2DCONTEXT':'references','dom-outerhtml':'apis-in-html-documents','htmlolistelement':'grouping-cntent','anonymous-command':'commands','fallback-content':'content-models','u':'obsolete','keywords-and-enumerated-attributes':'common-microsyntaxes','attr-body-marginheight':'obsolete','the-em-element':'text-level-semantics','attr-form-autocomplete-on-state':'forms','browsing-context-container':'browsers','refsRFC1922':'references','browsers':'browsers','alt':'embedded-content-1','tt':'obsolete','invalid_state_err':'urls','tree-order':'infrastructure','concept-input-type-file-selected':'number-state','foreign-elements':'syntax','the-ruby-element':'text-level-semantics','command-inserthtml':'dnd','application-cache-api':'offline','the-session-history-of-browsing-contexts':'history','concept-fs-method':'association-of-controls-and-forms','attr-iframe-hspace':'obsolete','the-link-is-an-alternative-stylesheet':'links','ascii-compatible-character-encoding':'infrastructure','form-submission-0':'association-of-controls-and-forms','the-meter-element':'the-button-element','plugins':'infrastructure','refsMQ':'referenes','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','event-dragend':'dnd','attr-ol-compact':'obsolete','attr-tbody-align':'obsolete','attr-tdth-valign':'obsolete','concept-option-disabled':'the-button-element','inter-element-whitespace':'content-models','link-type-first':'links','attr-a-urn':'obsolete','event-media-timeupdate':'video','the-h1-h2-h3-h4-h5-and-h6-elements':'sections','attr-ul-type':'obsolete','namespace_err':'urls','introduction-4':'dnd','introduction-0':'forms','introduction-3':'webappapis','the-button-element':'the-button-element','the-ol-element':'grouping-content','void-elements':'syntax','attr-tdth-colspan':'tabular-data','refsABNF':'refernces','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','refsRFC3490':'references','ascii-case-insensitive':'infrastructure','numbers':'common-microsyntaxes','writing-cache-manifests':'offline','undomanager':'dnd','attr-tdth-rowspan':'tabular-data','menus':'interactive-elements','creating-documents':'dom','attr-tdth-bgcolor':'obsolete','attr-media-preload-metadata-state':'video','attr-mod-cite':'edits','enabling-and-disabling-form-controls':'association-of-controls-and-forms','reflect':'urls','htmlaudioelement':'video','refsXPATH10':'references','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-typedate-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-table-datapagesize':'obsolete','attr-textarea-required':'the-button-element','refsRFC2119':'references','the-tbody-element':'tabular-data','attr-tbody-char':'obsolete','attr-area-shape-keyword-poly':'the-map-element','named-character-references-table':'named-character-references','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-option-name':'obsolete','attr-blockquote-cite':'groupng-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','implementing-the-server-side-processing-for-a-form':'forms','limiting-user-input-length':'association-of-controls-and-forms','attr-a-name':'obsolete','script':'scripting-1','introduction':'introduction','menus-intro':'interactive-elements','concept-input-value-default-range':'number-state','button-state':'number-state','list-state':'interactive-elements','attr-object-border':'obsolete','hyperlink-link':'semantics','dragevent':'dnd','pragma-directives':'semantics','conforming-documents':'infrastructure','attr-body-text':'obsolete','a-purely-decorative-image-that-oesn-t-add-any-information':'embedded-content-1','transparent-content-models':'content-models','simple-dialogs':'timers','attr-li-type':'obsolete','text-content':'content-models','hierarchical-link-types':'links','attr-input-step':'common-input-element-attributes','dndevents':'dnd','the-a-element':'text-level-semantics','refsUNIVCHARDET':'references','phrasing-content-0':'content-models','htmloutputelement':'the-button-element','command-api':'commands','htmlallcollection':'urls','attr-tr-char':'obsolete','the-colgroup-element':'tabular-data','the-tr-element':'tabular-data','syntax-doctype':'syntax','html-namespace-0':'urls','attr-body-alink':'obsolete','range-state':'number-state','attr-area-shape-keyword-rect':'the-map-element','session-history':'history','valid-url-potentially-surrounded-by-spaces':'urls','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-cotent','the-draggable-attribute':'dnd','refsCHARMOD':'references','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','interactive-elements':'interactive-elements','the-abbr-element':'text-level-semantics','attr-style-scoped':'semantics','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-valin':'obsolete','the-label-element':'forms','furthest-ancestor-browsing-context':'browsers','refsHATOM':'references','attr-param-valuetype':'obsolete','attr-fs-enctype-formdata':'association-of-controls-and-forms','user-interface':'video','attr-hyperlink-rel':'links','text-node':'infrastructure','command-insertimage':'dnd','attr-ol-start':'grouping-content','formatblock-candidate':'dnd','state-object':'history','attr-input-type-submit-keyword':'the-input-element','embedded-content':'content-models','interfaces':'index','collections-0':'urls','event-media-ended':'video','attr-link-title':'semantics','attr-menu-label':'interactive-elements','htmltablerowelement':'tabular-data','hyperlink':'links','refsRFC2781':'references','context':'the-canvas-element','attr-input-hspace':'obsolete','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','insertadacenthtml':'apis-in-html-documents','tag-cloud':'links','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-popstate':'history','event-appcache-progress':'offline','dom-tree-accessors':'dom','needs-a-date':'text-level-semantics','attr-table-frame':'obsolete','attr-input-type-datetime-local-keyword':'the-input-element','attr-media-preload-none':'video','multicol':'obsolete','attr-table-width':'obsolete','writing-a-form-s-user-interface':'forms','concept-fs-enctype':'association-of-controls-and-forms','attr-tdth-align':'obsolete','ancestor-browsing-context':'browsers','url-decomposition-idl-attributes':'urls','attr-fs-formtarget':'association-of-controls-and-forms','domhtmlimplemetation':'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','attr-meter-optimum':'the-button-element','the-ul-element':'grouping-content','metadata-content-0':'content-models','location':'history','event-media-abort':'video','concept-rel-extensions':'links','attr-form-name':'forms','big':'obsolete','attr-command-icon':'interactive-elements','dom-appcache-idle':'offline','the-caption-element':'tabular-data','case-sensitive':'infrastructure','facets':'commands','ignore':'infrastructure','valid-local-date-and-time-string':'common-microsyntaxes','dom-media-network_idle':'video','terminology':'infrastructure','the-title-elemen-0':'semantics','attr-source-media':'video','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-iframe-allowtransparency':'obsolete','attr-textarea-rows':'the-button-element','the-list-attribute':'common-input-element-attributes','the-noscript-element':'scripting-1','interactive-content':'content-models','dom-location-search':'history','attr-iframe-src':'the-iframe-element','refsRFC5322':'references','valid-browsing-context-name':'browsers','command-facet-accesskey':'commands','attr-input-type-number-keyword':'the-input-element','attr-fs-method-get-keyword':'association-of-controls-and-forms','location-of-the-media-resource':'video','refsRFC2646':'references','attr-link-sizes-any':'links','refsRFC2318':'references','telephone-state':'state-of-the-type-attribute','a-phrase-or-paragraph-with-an-alternative-graphical-representation:-charts-diagrams-graphs-maps-illustrations':'embedded-content-1','attr-fs-method':'association-of-controls-and-forms','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','reset-button-state':'number-state','character-encodings':'infrastructure','attr-img-ismap':'embedded-content-1','text-that-has-been-rendered-to-a-graphic-for-typographical-effect':'embedded-content-1','refsCSSOM':'references','intro-early-example':'introduction','refsISO885911':'references','attr-command-type':'interactive-elements','attr-col-char':'obsolete','valid-e-mail-address':'state-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','extensibility':'infrastructure','attr-embed-hspace':'obsolete','event-media-volumechange':'video','headings-and-sections':'sections','attr-hr-color':'obsolete','concept-week':'common-microsyntaxes','resources':'infrastructure','syntax-newlines':'syntax','media-resource':'video','syntax-refernces':'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','categories':'forms','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','attr-body-marginbottom':'obsolete','index':'index','the-hgroup-element':'sections','events-0':'index','attr-ol-reversed':'grouping-content','valid-mime-type':'infrastructure','acronym':'obsolete','attr-meter-max':'the-button-element','valid-time-string':'common-microsyntaxes','attr-contextmenu':'interactive-elements','context-menu-state':'interactive-elements','the-strong-element':'text-level-semantics','attr-fs-target':'association-of-controls-and-forms','event-media-durationchange':'video','the-head-element':'dom','a-key-par-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','an-iframe-srcdoc-document':'the-iframe-element','refsCSS':'references','the-step-attribute':'common-input-element-attributes','concept-meta-extensions':'semantics','text-field-selection':'editing','signed-integers':'common-microsyntaxes','htmllielement':'grouping-content','attr-img-vspace':'obsolete','windowmodal':'timers','number-of-days-in-month-month-of-year-year':'common-microsyntaxes','hyperlink-elements':'links','browser-state':'offline''the-canvas-element':'the-canvas-element','attr-meta-http-equiv-content-type':'semantics','attr-style-media':'semantics','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','origin-0':'origin-0','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','transparent':'content-models','event-handler-content-attributes':'webappapis','linkTypes':'links','text-0':'syntax','the-html-element':'dom','structure-of-this-specification':'introduction','refsMATHML':'references','concept-fs-action':'association-of-controls-and-forms','attr-progress-max':'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','refsWEBWORKERS':'references','refsPNG':'references','dom-link-disabled':'semantics','the-hidden-attribute':'editing','attr-a-rev':'obsolete','attr-input-accept':'number-state','htmltablesectionelement':'tabular-data','secondary-browsing-context':'browsers','undo':'dnd','link-type-external':'links','refsHTTP':'references','attr-a-methods':'bsolete','usage-summary':'text-level-semantics','security-forms':'association-of-controls-and-forms','system-state-and-capabilities':'timers','attr-details-open':'interactive-elements','content-models':'content-models','htmltabledatacellelement':'tabular-data','footnotes':'links','other-link-types':'links','attr-abbr-title':'text-level-semantics','attr-script-for':'obsolete','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','obsolete-permitted-doctype':'syntax','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','spaceseparated-tokens':'common-microsyntaxes','htmlallcollection-0':'urls','refsPINGBACK':'references','xml-documents':'dom','attr-menu-type':'interactive-elements','attr-input-value':'the-input-element','semantics-0':'elements','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-datasrc':'obsolete','attr-meta-charset':'semantics','command-inserttext':'dnd','attr-command-type-state-radio':'interactive-elements','the-selection':'editing','configuring-a-form-to-communicate-with-a-server':'forms','attr-tdth-width':'obsolete','authority-based-url':'urls','htmlcanvaselement':'the-canvas-element','refsJSURL':'references','url':'urls','obsolete-permitted-doctype-string':'syntax','the-ready-states':'video','selection':'editing','attr-col-align':'obsolete','attr-time-datetime':'text-level-semantics','the-body-element-0:'sections','rcdata-elements':'syntax','html-documents':'dom','fully-active':'browsers','attr-dfn-title':'text-level-semantics','the-html-element-0':'semantics','dom-location-port':'history','attr-body-bgcolor':'obsolete','refsPSL':'references','comma-separated-tokens':'common-microsyntaxes','ready-for-editing-host-commands':'dnd','dialogs-implemented-using-separate-documents':'timers','the-figcaption-element':'grouping-content','client-side-form-validation':'forms','refsEUCKR':'references','password-state':'states-of-the-type-attribute','the-kbd-element':'text-level-semantics','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','link-type-up':'links','commands':'commands','flow-content':'content-models','command-forwarddelete':'dnd','common-dom-interaces':'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-body-marginright':'obsolete','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','refsWEBSOCKET':'references','dom-appcache-uncached':'offline','attr-input-src':'number-state','attr-col-width':'obsolete','attr-tr-valign':'obsolete','attr-input-type':'the-input-element','playing-the-media-resource':'video','defining-term':'text-level-semantics','the-textarea-element':'the-button-element','attr-dim-width':'the-map-element','valid-integer':'common-microsyntaxes','event-handlers':'webappapis','attr-object-codetype':'obsolete','dom-media-network_loading':'video','nested-browsing-contexts':'browsers','command-createlink':'nd','attr-media-autoplay':'video','htmldlistelement':'grouping-content','attr-progress-value':'the-button-element','link-type-search':'links','attr-body-vlink':'obsolete','other-pragma-directives':'semantics','htmlformcontrolscollection':'urls','concept-events-trusted':'infrastructure','center':'obsolete','refsWIN1252':'references','textFieldSelection':'editing','audio':'video','event-media-canplaythrough':'video','htmlcollection':'urls','attr-tdth-nowrap':'obsolete','global-attributes':'elements','the-section-element':'sections','link-type-stylesheet':'links','week-number-of-the-last-day':'common-microsyntaxes','attr-input-autocomplete-off-state':'common-input-element-attributes','attr-fs-enctype-text':'association-of-controls-and-forms','autofocusing-a-form-control':'association-of-controls-and-forms','nextid':'obsolete','syntax-end-tag':'syntax','elements-in-the-dom':'elements','attr-link-hreflang':'semantics','raw-text-elements':'syntax','outlines':'sections','attr-area-shape-poly':'the-map-element','do-function-call':'webappapis','the-fieldset-element':'forms','innerhtml':'apis-in-html-documents','attr-a-coords':'obsolete','attr-link-target':'obsolete','dom-navigator-registercontenthandler':'timers','attr-command-label':'interactive-elements','how-to-read-this-specification':'introduction','attr-link-rel':'semantics','htmlformelement':'forms','refsUAAG':'references','attr-body-link':'obsolete','attr-link-rev':'obsolete','attr-iframe-marginheight':'obsolete','htmlanchorelement':'text-level-semantics','attr-textarea-wrap':'the-button-element','attr-datafld':'obsolete','the-dir-attribute':'elements','the-doctype':'syntax','dom-location-hostname':'history','common-microsyntaxes':'common-microsyntaxes','refsUTF7':'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-resouce':'video','command-facet-icon':'commands','attr-ul-compact':'obsolete','attr-tdth-axis':'obsolete','navigatorid':'timers','url-state':'states-of-the-type-attribute','mime-type':'infrastructure','valid-hash-name-reference':'common-microsyntaxes','attr-command-type-keyword-command':'interactive-elements','command-facet-hint':'commands','loading-the-media-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','pagetransitionevent':'history','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':'webappapis','serializability-of-script-execution':'introduction','attr-input-type-search-keyword':'the-input-element','editing':'editing','concept-http-equiv-extensions':'semantics','attr-textarea-maxlength':'the-utton-element','dom-location-host':'history','the-undomanager-interface':'dnd','attr-legend-align':'obsolete','end-tags':'syntax','mime-types':'video','valid-lowercase-simple-color':'common-microsyntaxes','named-character-references':'named-character-references','cdata-rcdata-restrictions':'syntax','rel-icon':'links','text-cache-manifest':'iana','htmltablecellelement':'tabular-data','the-samp-element':'text-level-semantics','grouping-content':'grouping-content','authors-using-html':'iana','syntax-tag-omission':'syntax','event-appcache-downloading':'offline','the-optgroup-element':'the-button-element','attr-canvas-height':'the-canvas-element','current-entry':'history','refsUNICODE':'references','refsRFC2426':'references','refsRFC2425':'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':'te-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: interactive-elements.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/interactive-elements.html,v
retrieving revision 1.579
retrieving revision 1.580
diff -u -d -r1.579 -r1.580
--- interactive-elements.html	4 Apr 2010 22:47:28 -0000	1.579
+++ interactive-elements.html	12 Apr 2010 05:57:30 -0000	1.580
@@ -3031,9 +3031,10 @@
   to the user to help him.</p><p>The <dfn id="attr-command-icon" title="attr-command-icon"><code>icon</code></dfn>
   attribute gives a picture that represents the command. If the
   attribute is specified, the attribute's value must contain a
-  <a href="urls.html#valid-non-empty-url">valid non-empty URL</a>. </p><!-- this is affected by the base URL being
-  changed, so users of this should cache the image once they've
-  fetched it once, at least until the relative url changes again --><p>The <dfn id="attr-command-disabled" title="attr-command-disabled"><code>disabled</code></dfn> attribute
+  <a href="urls.html#valid-non-empty-url-potentially-surrounded-by-spaces">valid non-empty URL potentially surrounded by
+  spaces</a>. </p><!-- this is affected by the base URL being changed, so users of
+  this should cache the image once they've fetched it once, at least
+  until the relative url changes again --><p>The <dfn id="attr-command-disabled" title="attr-command-disabled"><code>disabled</code></dfn> attribute
   is a <a href="common-microsyntaxes.html#boolean-attribute">boolean attribute</a> that, if present, indicates that
   the command is not available in the current state.</p><p class="note">The distinction between <code title="attr-command-disabled"><a href="#attr-command-disabled">disabled</a></code> and <code title="attr-hidden"><a href="editing.html#the-hidden-attribute">hidden</a></code> is subtle. A command would be
   disabled if, in the same context, it could be enabled if only

Index: video.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/video.html,v
retrieving revision 1.589
retrieving revision 1.590
diff -u -d -r1.589 -r1.590
--- video.html	9 Apr 2010 04:07:22 -0000	1.589
+++ video.html	12 Apr 2010 05:57:32 -0000	1.590
@@ -342,7 +342,8 @@
   elements</a>.</p><p>The <dfn id="attr-video-poster" title="attr-video-poster"><code>poster</code></dfn>
   attribute gives the address of an image file that the user agent can
   show while no video data is available. The attribute, if present,
-  must contain a <a href="urls.html#valid-non-empty-url">valid non-empty URL</a>. </p><!-- thus it is unaffected by changes to the base
+  must contain a <a href="urls.html#valid-non-empty-url-potentially-surrounded-by-spaces">valid non-empty URL potentially surrounded by
+  spaces</a>. </p><!-- thus it is unaffected by changes to the base
   URL. --><p class="note">The image given by the <code title="attr-video-poster"><a href="#attr-video-poster">poster</a></code> attribute, the <i><a href="#poster-frame">poster
   frame</a></i>, is intended to be a representative frame of the video
   (typically one of the first non-blank frames) that gives the user an
@@ -517,8 +518,8 @@
   resources</a> for <a href="#media-element" title="media element">media
   elements</a>. It does not <a href="#represents" title="represents">represent</a> anything on its own.</p><p>The <dfn id="attr-source-src" title="attr-source-src"><code>src</code></dfn> attribute
   gives the address of the <a href="#media-resource">media resource</a>. The value must
-  be a <a href="urls.html#valid-non-empty-url">valid non-empty URL</a>. This attribute must be
-  present.</p><p>The <dfn id="attr-source-type" title="attr-source-type"><code>type</code></dfn>
+  be a <a href="urls.html#valid-non-empty-url-potentially-surrounded-by-spaces">valid non-empty URL potentially surrounded by
+  spaces</a>. This attribute must be present.</p><p>The <dfn id="attr-source-type" title="attr-source-type"><code>type</code></dfn>
   attribute gives the type of the <a href="#media-resource">media resource</a>, to help
   the user agent determine if it can play this <a href="#media-resource">media
   resource</a> before fetching it. If specified, its value must be
@@ -797,8 +798,8 @@
   </dl><h5 id="location-of-the-media-resource"><span class="secno">4.8.9.2 </span>Location of the media resource</h5><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>The <dfn id="attr-media-src" title="attr-media-src"><code>src</code></dfn> content
   attribute on <a href="#media-element" title="media element">media elements</a> gives
   the address of the media resource (video, audio) to show. The
-  attribute, if present, must contain a <a href="urls.html#valid-non-empty-url">valid non-empty
-  URL</a>.</p><dl class="domintro"><dt><var title="">media</var> . <code title="dom-media-currentSrc"><a href="#dom-media-currentsrc">currentSrc</a></code></dt>
+  attribute, if present, must contain a <a href="urls.html#valid-non-empty-url-potentially-surrounded-by-spaces">valid non-empty
+  URL potentially surrounded by spaces</a>.</p><dl class="domintro"><dt><var title="">media</var> . <code title="dom-media-currentSrc"><a href="#dom-media-currentsrc">currentSrc</a></code></dt>
 
    <dd>
 

Index: edits.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/edits.html,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -d -r1.21 -r1.22
--- edits.html	4 Apr 2010 22:47:27 -0000	1.21
+++ edits.html	12 Apr 2010 05:57:29 -0000	1.22
@@ -403,8 +403,8 @@
   meeting, authors are encouraged to include a fragment identifier
   pointing to the specific part of that document that discusses the
   change.</p><p>If the <code title="attr-mod-cite"><a href="#attr-mod-cite">cite</a></code> attribute is
-  present, it must be a <a href="urls.html#valid-url">valid URL</a> that explains the
-  change. </p><p>The <dfn id="attr-mod-datetime" title="attr-mod-datetime"><code>datetime</code></dfn>
+  present, it must be a <a href="urls.html#valid-url-potentially-surrounded-by-spaces">valid URL potentially surrounded by
+  spaces</a> that explains the change. </p><p>The <dfn id="attr-mod-datetime" title="attr-mod-datetime"><code>datetime</code></dfn>
   attribute may be used to specify the time and date of the change.</p><p>If present, the <code title="attr-mod-datetime"><a href="#attr-mod-datetime">datetime</a></code>
   attribute must be a <a href="common-microsyntaxes.html#valid-global-date-and-time-string">valid global date and time string</a>
   value.</p><p>The <code><a href="#the-ins-element">ins</a></code> and <code><a href="#the-del-element">del</a></code> elements  implement the <code><a href="#htmlmodelement">HTMLModElement</a></code>

Index: states-of-the-type-attribute.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/states-of-the-type-attribute.html,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- states-of-the-type-attribute.html	5 Apr 2010 22:27:27 -0000	1.28
+++ states-of-the-type-attribute.html	12 Apr 2010 05:57:32 -0000	1.29
@@ -474,8 +474,9 @@
   </div><h6 id="url-state"><span class="secno">4.10.7.1.4 </span><dfn title="attr-input-type-url">URL</dfn> state</h6><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>The <code><a href="the-input-element.html#the-input-element">input</a></code> element <a href="#represents">represents</a> a control
   for editing a single <a href="urls.html#absolute-url">absolute URL</a> given in the
   element's <a href="#concept-fe-value" title="concept-fe-value">value</a>.</p><p>The <code title="attr-input-value"><a href="the-input-element.html#attr-input-value">value</a></code> attribute, if
-  specified, must have a value that is a <a href="urls.html#valid-url" title="valid
-  URL">valid</a> <a href="urls.html#absolute-url">absolute URL</a>.</p><div class="bookkeeping">
+  specified, must have a value that is a <a href="urls.html#valid-url-potentially-surrounded-by-spaces">valid URL potentially
+  surrounded by spaces</a> that is also an <a href="urls.html#absolute-url">absolute
+  URL</a>.</p><div class="bookkeeping">
 
    <p>The following common <code><a href="the-input-element.html#the-input-element">input</a></code> element content
    attributes, IDL attributes, and methods apply to the element:

Index: semantics.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/semantics.html,v
retrieving revision 1.591
retrieving revision 1.592
diff -u -d -r1.591 -r1.592
--- semantics.html	8 Apr 2010 23:57:36 -0000	1.591
+++ semantics.html	12 Apr 2010 05:57:30 -0000	1.592
@@ -317,7 +317,8 @@
   attribute gives the address of the document's <a href="#application-cache">application
   cache</a> <a href="#concept-appcache-manifest" title="concept-appcache-manifest">manifest</a>, if there is
   one. If the attribute is present, the attribute's value must be a
-  <a href="urls.html#valid-non-empty-url">valid non-empty URL</a>.</p><p>The <code title="attr-html-manifest"><a href="#attr-html-manifest">manifest</a></code> attribute
+  <a href="urls.html#valid-non-empty-url-potentially-surrounded-by-spaces">valid non-empty URL potentially surrounded by
+  spaces</a>.</p><p>The <code title="attr-html-manifest"><a href="#attr-html-manifest">manifest</a></code> attribute
   only <a href="#concept-appcache-init" title="concept-appcache-init">has an effect</a> during
   the early stages of document load. Changing the attribute
   dynamically thus has no effect (and thus, no DOM API is provided for
@@ -466,7 +467,8 @@
   <a href="#following-hyperlinks">following hyperlinks</a>. The element does not <a href="#represents" title="represents">represent</a> any content beyond this
   information.</p><p>There must be no more than one <code><a href="#the-base-element">base</a></code> element per
   document.</p><p>A <code><a href="#the-base-element">base</a></code> element must have either an <code title="attr-base-href"><a href="#attr-base-href">href</a></code> attribute, a <code title="attr-base-target"><a href="#attr-base-target">target</a></code> attribute, or both.</p><p>The <dfn id="attr-base-href" title="attr-base-href"><code>href</code></dfn> content
-  attribute, if specified, must contain a <a href="urls.html#valid-url">valid URL</a>.</p><p>A <code><a href="#the-base-element">base</a></code> element, if it has an <code title="attr-base-href"><a href="#attr-base-href">href</a></code> attribute, must come before any
+  attribute, if specified, must contain a <a href="urls.html#valid-url-potentially-surrounded-by-spaces">valid URL potentially
+  surrounded by spaces</a>.</p><p>A <code><a href="#the-base-element">base</a></code> element, if it has an <code title="attr-base-href"><a href="#attr-base-href">href</a></code> attribute, must come before any
   other elements in the tree that have attributes defined as taking
   <a href="urls.html#url" title="URL">URLs</a>, except the <code><a href="#the-html-element-0">html</a></code> element
   (its <code title="attr-html-manifest"><a href="#attr-html-manifest">manifest</a></code> attribute
@@ -524,8 +526,8 @@
    </dd>
   </dl><p>The <code><a href="#the-link-element">link</a></code> element allows authors to link their
   document to other resources.</p><p>The destination of the link(s) is given by the <dfn id="attr-link-href" title="attr-link-href"><code>href</code></dfn> attribute, which must
-  be present and must contain a <a href="urls.html#valid-non-empty-url">valid non-empty
-  URL</a>. </p><p>A <code><a href="#the-link-element">link</a></code> element must have <code title="attr-link-rel"><a href="#attr-link-rel">rel</a></code> attribute.</p><p>The types of link indicated (the relationships) are given by the
+  be present and must contain a <a href="urls.html#valid-non-empty-url-potentially-surrounded-by-spaces">valid non-empty URL potentially
+  surrounded by spaces</a>. </p><p>A <code><a href="#the-link-element">link</a></code> element must have <code title="attr-link-rel"><a href="#attr-link-rel">rel</a></code> attribute.</p><p>The types of link indicated (the relationships) are given by the
   value of the <dfn id="attr-link-rel" title="attr-link-rel"><code>rel</code></dfn>
   attribute, which, if present, must have a value that is a <a href="common-microsyntaxes.html#set-of-space-separated-tokens">set
   of space-separated tokens</a>. The <a href="links.html#linkTypes">allowed

Index: index.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/index.html,v
retrieving revision 1.589
retrieving revision 1.590
diff -u -d -r1.589 -r1.590
--- index.html	9 Apr 2010 04:07:20 -0000	1.589
+++ index.html	12 Apr 2010 05:57:29 -0000	1.590
@@ -1724,7 +1724,7 @@
     </td></tr><tr><th> <code title="">action</code>
      </th><td> <code title="attr-fs-action"><a href="association-of-controls-and-forms.html#attr-fs-action">form</a></code>
      </td><td> <a href="urls.html#url">URL</a> to use for <a href="association-of-controls-and-forms.html#form-submission">form submission</a>
-     </td><td> <a href="urls.html#valid-url">Valid URL</a>
+     </td><td> <a href="urls.html#valid-url-potentially-surrounded-by-spaces">Valid URL potentially surrounded by spaces</a>
     </td></tr><tr><th> <code title="">alt</code>
      </th><td> <code title="attr-area-alt"><a href="the-map-element.html#attr-area-alt">area</a></code>;
           <code title="attr-img-alt"><a href="embedded-content-1.html#attr-img-alt">img</a></code>;
@@ -1776,7 +1776,7 @@
           <code title="attr-mod-cite"><a href="edits.html#attr-mod-cite">ins</a></code>;
           <code title="attr-q-cite"><a href="text-level-semantics.html#attr-q-cite">q</a></code>
      </td><td> Link to the source of the quotation or more information about the edit
-     </td><td> <a href="urls.html#valid-url">Valid URL</a>
+     </td><td> <a href="urls.html#valid-url-potentially-surrounded-by-spaces">Valid URL potentially surrounded by spaces</a>
     </td></tr><tr><th> <code title="">class</code>
      </th><td> <a href="elements.html#classes" title="attr-class">HTML elements</a>
      </td><td> Classes to which the element belongs
@@ -1814,7 +1814,7 @@
     </td></tr><tr><th> <code title="">data</code>
      </th><td> <code title="attr-object-data"><a href="the-iframe-element.html#attr-object-data">object</a></code>
      </td><td> Address of the resource
-     </td><td> <a href="urls.html#valid-non-empty-url">Valid non-empty URL</a>
+     </td><td> <a href="urls.html#valid-non-empty-url-potentially-surrounded-by-spaces">Valid non-empty URL potentially surrounded by spaces</a>
     </td></tr><tr><th> <code title="">datetime</code>
      </th><td> <code title="attr-mod-datetime"><a href="edits.html#attr-mod-datetime">del</a></code>;
           <code title="attr-mod-datetime"><a href="edits.html#attr-mod-datetime">ins</a></code>
@@ -1878,7 +1878,7 @@
      </th><td> <code title="attr-fs-formaction"><a href="association-of-controls-and-forms.html#attr-fs-formaction">button</a></code>;
           <code title="attr-fs-formaction"><a href="association-of-controls-and-forms.html#attr-fs-formaction">input</a></code>
      </td><td> <a href="urls.html#url">URL</a> to use for <a href="association-of-controls-and-forms.html#form-submission">form submission</a>
-     </td><td> <a href="urls.html#valid-url">Valid URL</a>
+     </td><td> <a href="urls.html#valid-url-potentially-surrounded-by-spaces">Valid URL potentially surrounded by spaces</a>
     </td></tr><tr><th> <code title="">formenctype</code>
      </th><td> <code title="attr-fs-formenctype"><a href="association-of-controls-and-forms.html#attr-fs-formenctype">button</a></code>;
           <code title="attr-fs-formenctype"><a href="association-of-controls-and-forms.html#attr-fs-formenctype">input</a></code>
@@ -1926,15 +1926,15 @@
      </th><td> <code title="attr-hyperlink-href"><a href="links.html#attr-hyperlink-href">a</a></code>;
           <code title="attr-hyperlink-href"><a href="links.html#attr-hyperlink-href">area</a></code>
      </td><td> Address of the <a href="links.html#hyperlink">hyperlink</a>
-     </td><td> <a href="urls.html#valid-url">Valid URL</a>
+     </td><td> <a href="urls.html#valid-url-potentially-surrounded-by-spaces">Valid URL potentially surrounded by spaces</a>
     </td></tr><tr><th> <code title="">href</code>
      </th><td> <code title="attr-link-href"><a href="semantics.html#attr-link-href">link</a></code>
      </td><td> Address of the <a href="links.html#hyperlink">hyperlink</a>
-     </td><td> <a href="urls.html#valid-non-empty-url">Valid non-empty URL</a>
+     </td><td> <a href="urls.html#valid-non-empty-url-potentially-surrounded-by-spaces">Valid non-empty URL potentially surrounded by spaces</a>
     </td></tr><tr><th> <code title="">href</code>
      </th><td> <code title="attr-base-href"><a href="semantics.html#attr-base-href">base</a></code>
      </td><td> <a href="#document-base-url">Document base URL</a>
-     </td><td> <a href="urls.html#valid-url">Valid URL</a>
+     </td><td> <a href="urls.html#valid-url-potentially-surrounded-by-spaces">Valid URL potentially surrounded by spaces</a>
     </td></tr><tr><th> <code title="">hreflang</code>
      </th><td> <code title="attr-hyperlink-hreflang"><a href="links.html#attr-hyperlink-hreflang">a</a></code>;
           <code title="attr-hyperlink-hreflang"><a href="links.html#attr-hyperlink-hreflang">area</a></code>;
@@ -1948,7 +1948,7 @@
     </td></tr><tr><th> <code title="">icon</code>
      </th><td> <code title="attr-command-icon"><a href="interactive-elements.html#attr-command-icon">command</a></code>
      </td><td> Icon for the command
-     </td><td> <a href="urls.html#valid-non-empty-url">Valid non-empty URL</a>
+     </td><td> <a href="urls.html#valid-non-empty-url-potentially-surrounded-by-spaces">Valid non-empty URL potentially surrounded by spaces</a>
     </td></tr><tr><th> <code title="">id</code>
      </th><td> <a href="elements.html#the-id-attribute" title="attr-id">HTML elements</a>
      </td><td> The element's <a href="elements.html#concept-id" title="concept-id">ID</a>
@@ -1988,7 +1988,7 @@
     </td></tr><tr><th> <code title="">manifest</code>
      </th><td> <code title="attr-html-manifest"><a href="semantics.html#attr-html-manifest">html</a></code>
      </td><td> <a href="#concept-appcache-manifest" title="concept-appcache-manifest">Application cache manifest</a>
-     </td><td> <a href="urls.html#valid-non-empty-url">Valid non-empty URL</a>
+     </td><td> <a href="urls.html#valid-non-empty-url-potentially-surrounded-by-spaces">Valid non-empty URL potentially surrounded by spaces</a>
     </td></tr><tr><th> <code title="">max</code>
      </th><td> <code title="attr-input-max"><a href="common-input-element-attributes.html#attr-input-max">input</a></code>
      </td><td> Maximum value
@@ -2083,7 +2083,7 @@
     </td></tr><tr><th> <code title="">poster</code>
      </th><td> <code title="attr-video-poster"><a href="video.html#attr-video-poster">video</a></code>
      </td><td> Poster frame to show prior to video playback
-     </td><td> <a href="urls.html#valid-non-empty-url">Valid non-empty URL</a>
+     </td><td> <a href="urls.html#valid-non-empty-url-potentially-surrounded-by-spaces">Valid non-empty URL potentially surrounded by spaces</a>
     </td></tr><tr><th> <code title="">preload</code>
      </th><td> <code title="attr-media-preload"><a href="video.html#attr-media-preload">audio</a></code>;
           <code title="attr-media-preload"><a href="video.html#attr-media-preload">video</a></code>
@@ -2189,7 +2189,7 @@
           <code title="attr-source-src"><a href="video.html#attr-source-src">source</a></code>;
           <code title="attr-media-src"><a href="video.html#attr-media-src">video</a></code>
      </td><td> Address of the resource
-     </td><td> <a href="urls.html#valid-non-empty-url">Valid non-empty URL</a>
+     </td><td> <a href="urls.html#valid-non-empty-url-potentially-surrounded-by-spaces">Valid non-empty URL potentially surrounded by spaces</a>
     </td></tr><tr><th> <code title="">srcdoc</code>
      </th><td> <code title="attr-iframe-srcdoc"><a href="the-iframe-element.html#attr-iframe-srcdoc">iframe</a></code>
      </td><td> A document to render in the <code><a href="the-iframe-element.html#the-iframe-element">iframe</a></code>

Index: links.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/links.html,v
retrieving revision 1.36
retrieving revision 1.37
diff -u -d -r1.36 -r1.37
--- links.html	4 Apr 2010 22:47:28 -0000	1.36
+++ links.html	12 Apr 2010 05:57:30 -0000	1.37
@@ -303,8 +303,9 @@
   elements can, in certain situations described in the definitions of
   those elements, represent <dfn id="hyperlink" title="hyperlink">hyperlinks</dfn>.</p><p>The <dfn id="attr-hyperlink-href" title="attr-hyperlink-href"><code>href</code></dfn>
   attribute on <code><a href="text-level-semantics.html#the-a-element">a</a></code> and <code><a href="the-map-element.html#the-area-element">area</a></code> elements must have
-  a value that is a <a href="urls.html#valid-url">valid URL</a>. This <a href="urls.html#url">URL</a> is
-  the <i>destination resource</i> of the hyperlink.</p><p class="note">The <code title="attr-hyperlink-href"><a href="#attr-hyperlink-href">href</a></code>
+  a value that is a <a href="urls.html#valid-url-potentially-surrounded-by-spaces">valid URL potentially surrounded by
+  spaces</a>. This <a href="urls.html#url">URL</a> is the <i>destination
+  resource</i> of the hyperlink.</p><p class="note">The <code title="attr-hyperlink-href"><a href="#attr-hyperlink-href">href</a></code>
   attribute on <code><a href="text-level-semantics.html#the-a-element">a</a></code> and <code><a href="the-map-element.html#the-area-element">area</a></code> elements is not
   required; when those elements do not have <code title="attr-hyperlink-href"><a href="#attr-hyperlink-href">href</a></code> attributes they do not
   represent hyperlinks.</p><p class="note">The <code title="attr-link-href"><a href="semantics.html#attr-link-href">href</a></code>

Index: spec.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/spec.html,v
retrieving revision 1.859
retrieving revision 1.860
diff -u -d -r1.859 -r1.860
--- spec.html	9 Apr 2010 04:17:16 -0000	1.859
+++ spec.html	12 Apr 2010 05:57:30 -0000	1.860
@@ -285,7 +285,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-9-april-2010>Editor's Draft 9 April 2010</h2>
+   <h2 class="no-num no-toc" id=editor-s-draft-12-april-2010>Editor's Draft 12 April 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>
@@ -303,7 +303,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.4009.
+This is revision 1.4010.
    </p> 
    <p class=copyright><a href=http://www.w3.org/Consortium/Legal/ipr-notice#Copyright>Copyright</a>
    © 2010 <a href=http://www.w3.org/><abbr title="World Wide
@@ -392,7 +392,7 @@
   specification's progress along the W3C Recommendation
   track.
 
-  This specification is the 9 April 2010 Editor's Draft.
+  This specification is the 12 April 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>The contents of this specification are also part of <a href=http://www.whatwg.org/specs/web-apps/current-work/multipage/>a
   specification</a> published by the <a href=http://www.whatwg.org/>WHATWG</a>, which is available under a
   license that permits reuse of the specification text.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- required patent boilerplate --><p>This document was produced by a group operating under the <a href=http://www.w3.org/Consortium/Patent-Policy-20040205/>5
@@ -2448,8 +2448,14 @@
    <li><p>The <a href=#url>URL</a> is a valid IRI reference and the <a href=#document-s-character-encoding title="document's character encoding">character encoding</a> of
    the URL's <code><a href=#document>Document</a></code> is UTF-8 or UTF-16. <a href=#refsRFC3987>[RFC3987]</a></p></li>
 
-  </ul><p>A <a href=#url>URL</a> is a <dfn id=valid-non-empty-url>valid non-empty URL</dfn> if it is a
-  <a href=#valid-url>valid URL</a> but it is not the empty string.</p><p>A <a href=#url>URL</a> is an <dfn id=absolute-url>absolute URL</dfn> if <a href=#resolve-a-url title="resolve a url">resolving</a> it results in the same output
+  </ul><p>A string is a <dfn id=valid-non-empty-url>valid non-empty URL</dfn> if it is a
+  <a href=#valid-url>valid URL</a> but it is not the empty string.</p><p>A string is a <dfn id=valid-url-potentially-surrounded-by-spaces>valid URL potentially surrounded by
+  spaces</dfn> if, after <a href=#strip-leading-and-trailing-whitespace title="strip leading and trailing
+  whitespace">stripping leading and trailing whitespace</a> from
+  it, it is a <a href=#valid-url>valid URL</a>.</p><p>A string is a <dfn id=valid-non-empty-url-potentially-surrounded-by-spaces>valid non-empty URL potentially surrounded by
+  spaces</dfn> if, after <a href=#strip-leading-and-trailing-whitespace title="strip leading and trailing
+  whitespace">stripping leading and trailing whitespace</a> from
+  it, it is a <a href=#valid-non-empty-url>valid non-empty URL</a>.</p><p>A <a href=#url>URL</a> is an <dfn id=absolute-url>absolute URL</dfn> if <a href=#resolve-a-url title="resolve a url">resolving</a> it results in the same output
   regardless of what it is resolved relative to, and that output is
   not a failure.</p><p>An <a href=#absolute-url>absolute URL</a> is a <dfn id=hierarchical-url>hierarchical URL</dfn> if,
   when <a href=#resolve-a-url title="resolve a url">resolved</a> and then <a href=#parse-a-url title="parse a url">parsed</a>, there is a character immediately
@@ -4734,7 +4740,8 @@
   attribute gives the address of the document's <a href=#application-cache>application
   cache</a> <a href=#concept-appcache-manifest title=concept-appcache-manifest>manifest</a>, if there is
   one. If the attribute is present, the attribute's value must be a
-  <a href=#valid-non-empty-url>valid non-empty URL</a>.</p><p>The <code title=attr-html-manifest><a href=#attr-html-manifest>manifest</a></code> attribute
+  <a href=#valid-non-empty-url-potentially-surrounded-by-spaces>valid non-empty URL potentially surrounded by
+  spaces</a>.</p><p>The <code title=attr-html-manifest><a href=#attr-html-manifest>manifest</a></code> attribute
   only <a href=#concept-appcache-init title=concept-appcache-init>has an effect</a> during
   the early stages of document load. Changing the attribute
   dynamically thus has no effect (and thus, no DOM API is provided for
@@ -4883,7 +4890,8 @@
   <a href=#following-hyperlinks>following hyperlinks</a>. The element does not <a href=#represents title=represents>represent</a> any content beyond this
   information.</p><p>There must be no more than one <code><a href=#the-base-element>base</a></code> element per
   document.</p><p>A <code><a href=#the-base-element>base</a></code> element must have either an <code title=attr-base-href><a href=#attr-base-href>href</a></code> attribute, a <code title=attr-base-target><a href=#attr-base-target>target</a></code> attribute, or both.</p><p>The <dfn id=attr-base-href title=attr-base-href><code>href</code></dfn> content
-  attribute, if specified, must contain a <a href=#valid-url>valid URL</a>.</p><p>A <code><a href=#the-base-element>base</a></code> element, if it has an <code title=attr-base-href><a href=#attr-base-href>href</a></code> attribute, must come before any
+  attribute, if specified, must contain a <a href=#valid-url-potentially-surrounded-by-spaces>valid URL potentially
+  surrounded by spaces</a>.</p><p>A <code><a href=#the-base-element>base</a></code> element, if it has an <code title=attr-base-href><a href=#attr-base-href>href</a></code> attribute, must come before any
   other elements in the tree that have attributes defined as taking
   <a href=#url title=URL>URLs</a>, except the <code><a href=#the-html-element-0>html</a></code> element
   (its <code title=attr-html-manifest><a href=#attr-html-manifest>manifest</a></code> attribute
@@ -4941,8 +4949,8 @@
    </dd>
   </dl><p>The <code><a href=#the-link-element>link</a></code> element allows authors to link their
   document to other resources.</p><p>The destination of the link(s) is given by the <dfn id=attr-link-href title=attr-link-href><code>href</code></dfn> attribute, which must
-  be present and must contain a <a href=#valid-non-empty-url>valid non-empty
-  URL</a>. </p><p>A <code><a href=#the-link-element>link</a></code> element must have <code title=attr-link-rel><a href=#attr-link-rel>rel</a></code> attribute.</p><p>The types of link indicated (the relationships) are given by the
+  be present and must contain a <a href=#valid-non-empty-url-potentially-surrounded-by-spaces>valid non-empty URL potentially
+  surrounded by spaces</a>. </p><p>A <code><a href=#the-link-element>link</a></code> element must have <code title=attr-link-rel><a href=#attr-link-rel>rel</a></code> attribute.</p><p>The types of link indicated (the relationships) are given by the
   value of the <dfn id=attr-link-rel title=attr-link-rel><code>rel</code></dfn>
   attribute, which, if present, must have a value that is a <a href=#set-of-space-separated-tokens>set
   of space-separated tokens</a>. The <a href=#linkTypes>allowed
@@ -5731,13 +5739,13 @@
   specified. The default, which is used if the attribute is absent,
   is "<code title="">text/javascript</code>".</p><p>The <dfn id=attr-script-src title=attr-script-src><code>src</code></dfn>
   attribute, if specified, gives the address of the external script
-  resource to use. The value of the attribute must be a <a href=#valid-non-empty-url>valid
-  non-empty URL</a> identifying a script resource of the type given
-  by the <code title=attr-script-type><a href=#attr-script-type>type</a></code> attribute, if the
-  attribute is present, or of the type "<code title="">text/javascript</code>", if the attribute is absent. A
-  resource is a script resource of a given type if that type
-  identifies a scripting language and the resource conforms with the
-  requirements of that language's specification.</p><p>The <dfn id=attr-script-charset title=attr-script-charset><code>charset</code></dfn>
+  resource to use. The value of the attribute must be a <a href=#valid-non-empty-url-potentially-surrounded-by-spaces>valid
+  non-empty URL potentially surrounded by spaces</a> identifying a
+  script resource of the type given by the <code title=attr-script-type><a href=#attr-script-type>type</a></code> attribute, if the attribute is
+  present, or of the type "<code title="">text/javascript</code>", if
+  the attribute is absent. A resource is a script resource of a given
+  type if that type identifies a scripting language and the resource
+  conforms with the requirements of that language's specification.</p><p>The <dfn id=attr-script-charset title=attr-script-charset><code>charset</code></dfn>
   attribute gives the character encoding of the external script
   resource. The attribute must not be specified if the <code title=attr-script-src><a href=#attr-script-src>src</a></code> attribute is not present. If the
   attribute is set, its value must be a valid character encoding name,
@@ -7333,7 +7341,8 @@
   another source, whose address, if it has one, should be cited in the
   <dfn id=attr-blockquote-cite title=attr-blockquote-cite><code>cite</code></dfn>
   attribute.</p><p>If the <code title=attr-blockquote-cite><a href=#attr-blockquote-cite>cite</a></code> attribute
-  is present, it must be a <a href=#valid-url>valid URL</a>. </p><div class=example>
+  is present, it must be a <a href=#valid-url-potentially-surrounded-by-spaces>valid URL potentially surrounded by
+  spaces</a>. </p><div class=example>
 
    <p>This next example shows the use of <code><a href=#the-cite-element>cite</a></code> alongside
    <code><a href=#the-blockquote-element>blockquote</a></code>:</p>
@@ -8291,7 +8300,8 @@
   <dfn id=attr-q-cite title=attr-q-cite><code>cite</code></dfn> attribute. The
   source may be fictional, as when quoting characters in a novel or
   screenplay.</p><p>If the <code title=attr-q-cite><a href=#attr-q-cite>cite</a></code> attribute is
-  present, it must be a <a href=#valid-url>valid URL</a>. </p><p>The <code><a href=#the-q-element>q</a></code> element must not be used in place of quotation
+  present, it must be a <a href=#valid-url-potentially-surrounded-by-spaces>valid URL potentially surrounded by
+  spaces</a>. </p><p>The <code><a href=#the-q-element>q</a></code> element must not be used in place of quotation
   marks that do not represent quotes; for example, it is inappropriate
   to use the <code><a href=#the-q-element>q</a></code> element for marking up sarcastic
   statements.</p><p>The use of <code><a href=#the-q-element>q</a></code> elements to mark up quotations is
@@ -9517,8 +9527,8 @@
   meeting, authors are encouraged to include a fragment identifier
   pointing to the specific part of that document that discusses the
   change.</p><p>If the <code title=attr-mod-cite><a href=#attr-mod-cite>cite</a></code> attribute is
-  present, it must be a <a href=#valid-url>valid URL</a> that explains the
-  change. </p><p>The <dfn id=attr-mod-datetime title=attr-mod-datetime><code>datetime</code></dfn>
+  present, it must be a <a href=#valid-url-potentially-surrounded-by-spaces>valid URL potentially surrounded by
+  spaces</a> that explains the change. </p><p>The <dfn id=attr-mod-datetime title=attr-mod-datetime><code>datetime</code></dfn>
   attribute may be used to specify the time and date of the change.</p><p>If present, the <code title=attr-mod-datetime><a href=#attr-mod-datetime>datetime</a></code>
   attribute must be a <a href=#valid-global-date-and-time-string>valid global date and time string</a>
   value.</p><p>The <code><a href=#the-ins-element>ins</a></code> and <code><a href=#the-del-element>del</a></code> elements  implement the <code><a href=#htmlmodelement>HTMLModElement</a></code>
@@ -9662,9 +9672,10 @@
   --><p>The image given by the <dfn id=attr-img-src title=attr-img-src><code>src</code></dfn> attribute is the
   embedded content, and the value of the <dfn id=attr-img-alt title=attr-img-alt><code>alt</code></dfn> attribute is the
   <code><a href=#the-img-element>img</a></code> element's <a href=#fallback-content>fallback content</a>.</p><p>The <code title=attr-img-src><a href=#attr-img-src>src</a></code> attribute must be
-  present, and must contain a <a href=#valid-non-empty-url>valid non-empty URL</a>
-  referencing a non-interactive, optionally animated, image resource
-  that is neither paged nor scripted.</p><p class=note>Images can thus be static bitmaps (e.g. PNGs, GIFs,
+  present, and must contain a <a href=#valid-non-empty-url-potentially-surrounded-by-spaces>valid non-empty URL potentially
+  surrounded by spaces</a> referencing a non-interactive,
+  optionally animated, image resource that is neither paged nor
+  scripted.</p><p class=note>Images can thus be static bitmaps (e.g. PNGs, GIFs,
   JPEGs), single-page vector documents (single-page PDFs, XML files
   with an SVG root element), animated bitmaps (APNGs, animated GIFs),
   animated vector graphics (XML files with an SVG root element that
@@ -10542,7 +10553,8 @@
   <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
   gives the address of a page that the <a href=#nested-browsing-context>nested browsing
   context</a> is to contain. The attribute, if present, must be a
-  <a href=#valid-non-empty-url>valid non-empty URL</a>.</p><p>The <dfn id=attr-iframe-srcdoc title=attr-iframe-srcdoc><code>srcdoc</code></dfn>
+  <a href=#valid-non-empty-url-potentially-surrounded-by-spaces>valid non-empty URL potentially surrounded by
+  spaces</a>.</p><p>The <dfn id=attr-iframe-srcdoc title=attr-iframe-srcdoc><code>srcdoc</code></dfn>
   attribute gives the content of the page that the <a href=#nested-browsing-context>nested
   browsing context</a> is to contain.  The value of the attribute
   in is <dfn id=an-iframe-srcdoc-document>an <code>iframe</code> <code title=attr-iframe-srcdoc>srcdoc</code> document</dfn>.</p><p>For <code><a href=#the-iframe-element>iframe</a></code> elements in <a href=#html-documents>HTML documents</a>,
@@ -10836,7 +10848,8 @@
   integration point for an external (typically non-HTML) application
   or interactive content.</p><p>The <dfn id=attr-embed-src title=attr-embed-src><code>src</code></dfn> attribute
   gives the address of the resource being embedded. The attribute, if
-  present, must contain a <a href=#valid-non-empty-url>valid non-empty URL</a>.</p><p>The <dfn id=attr-embed-type title=attr-embed-type><code>type</code></dfn>
+  present, must contain a <a href=#valid-non-empty-url-potentially-surrounded-by-spaces>valid non-empty URL potentially
+  surrounded by spaces</a>.</p><p>The <dfn id=attr-embed-type title=attr-embed-type><code>type</code></dfn>
   attribute, if present, gives the <a href=#mime-type>MIME type</a> by which the
   plugin to instantiate is selected. The value must be a <a href=#valid-mime-type>valid
   MIME type</a>. If both the <code title=attr-embed-type><a href=#attr-embed-type>type</a></code> attribute and the <code title=attr-embed-src><a href=#attr-embed-src>src</a></code> attribute are present, then the
@@ -10921,8 +10934,8 @@
   or as an external resource to be processed by a
   <a href=#plugin>plugin</a>.</p><p>The <dfn id=attr-object-data title=attr-object-data><code>data</code></dfn>
   attribute, if present, specifies the address of the resource. If
-  present, the attribute must be a <a href=#valid-non-empty-url>valid non-empty
-  URL</a>.</p><p>The <dfn id=attr-object-type title=attr-object-type><code>type</code></dfn>
+  present, the attribute must be a <a href=#valid-non-empty-url-potentially-surrounded-by-spaces>valid non-empty
+  URL potentially surrounded by spaces</a>.</p><p>The <dfn id=attr-object-type title=attr-object-type><code>type</code></dfn>
   attribute, if present, specifies the type of the resource. If
   present, the attribute must be a <a href=#valid-mime-type>valid MIME type</a>.</p><p>At least one of either the <code title=attr-object-data><a href=#attr-object-data>data</a></code> attribute or the <code title=attr-object-type><a href=#attr-object-type>type</a></code> attribute must be present.</p><p>The <dfn id=attr-object-name title=attr-object-name><code>name</code></dfn>
   attribute, if present, must be a <a href=#valid-browsing-context-name>valid browsing context
@@ -11074,7 +11087,8 @@
   elements</a>.</p><p>The <dfn id=attr-video-poster title=attr-video-poster><code>poster</code></dfn>
   attribute gives the address of an image file that the user agent can
   show while no video data is available. The attribute, if present,
-  must contain a <a href=#valid-non-empty-url>valid non-empty URL</a>. </p><!-- thus it is unaffected by changes to the base
+  must contain a <a href=#valid-non-empty-url-potentially-surrounded-by-spaces>valid non-empty URL potentially surrounded by
+  spaces</a>. </p><!-- thus it is unaffected by changes to the base
   URL. --><p class=note>The image given by the <code title=attr-video-poster><a href=#attr-video-poster>poster</a></code> attribute, the <i><a href=#poster-frame>poster
   frame</a></i>, is intended to be a representative frame of the video
   (typically one of the first non-blank frames) that gives the user an
@@ -11249,8 +11263,8 @@
   resources</a> for <a href=#media-element title="media element">media
   elements</a>. It does not <a href=#represents title=represents>represent</a> anything on its own.</p><p>The <dfn id=attr-source-src title=attr-source-src><code>src</code></dfn> attribute
   gives the address of the <a href=#media-resource>media resource</a>. The value must
-  be a <a href=#valid-non-empty-url>valid non-empty URL</a>. This attribute must be
-  present.</p><p>The <dfn id=attr-source-type title=attr-source-type><code>type</code></dfn>
+  be a <a href=#valid-non-empty-url-potentially-surrounded-by-spaces>valid non-empty URL potentially surrounded by
+  spaces</a>. This attribute must be present.</p><p>The <dfn id=attr-source-type title=attr-source-type><code>type</code></dfn>
   attribute gives the type of the <a href=#media-resource>media resource</a>, to help
   the user agent determine if it can play this <a href=#media-resource>media
   resource</a> before fetching it. If specified, its value must be
@@ -11529,8 +11543,8 @@
   </dl><h5 id=location-of-the-media-resource><span class=secno>4.8.9.2 </span>Location of the media resource</h5><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>The <dfn id=attr-media-src title=attr-media-src><code>src</code></dfn> content
   attribute on <a href=#media-element title="media element">media elements</a> gives
   the address of the media resource (video, audio) to show. The
-  attribute, if present, must contain a <a href=#valid-non-empty-url>valid non-empty
-  URL</a>.</p><dl class=domintro><dt><var title="">media</var> . <code title=dom-media-currentSrc><a href=#dom-media-currentsrc>currentSrc</a></code></dt>
+  attribute, if present, must contain a <a href=#valid-non-empty-url-potentially-surrounded-by-spaces>valid non-empty
+  URL potentially surrounded by spaces</a>.</p><dl class=domintro><dt><var title="">media</var> . <code title=dom-media-currentSrc><a href=#dom-media-currentsrc>currentSrc</a></code></dt>
 
    <dd>
 
@@ -15455,8 +15469,9 @@
   </div><h6 id=url-state><span class=secno>4.10.7.1.4 </span><dfn title=attr-input-type-url>URL</dfn> state</h6><p class="XXX annotation"><b>Status: </b><i>Last call for comments</i></p><p>The <code><a href=#the-input-element>input</a></code> element <a href=#represents>represents</a> a control
   for editing a single <a href=#absolute-url>absolute URL</a> given in the
   element's <a href=#concept-fe-value title=concept-fe-value>value</a>.</p><p>The <code title=attr-input-value><a href=#attr-input-value>value</a></code> attribute, if
-  specified, must have a value that is a <a href=#valid-url title="valid
-  URL">valid</a> <a href=#absolute-url>absolute URL</a>.</p><div class=bookkeeping>
+  specified, must have a value that is a <a href=#valid-url-potentially-surrounded-by-spaces>valid URL potentially
+  surrounded by spaces</a> that is also an <a href=#absolute-url>absolute
+  URL</a>.</p><div class=bookkeeping>
 
    <p>The following common <code><a href=#the-input-element>input</a></code> element content
    attributes, IDL attributes, and methods apply to the element:
@@ -16676,9 +16691,9 @@
   form. The element is a <a href=#concept-button title=concept-button>button</a>,
   specifically a <a href=#concept-submit-button title=concept-submit-button>submit
   button</a>.</p><hr><p>The image is given by the <dfn id=attr-input-src title=attr-input-src><code>src</code></dfn> attribute. The <code title=attr-input-src><a href=#attr-input-src>src</a></code> attribute must be present, and
-  must contain a <a href=#valid-non-empty-url>valid non-empty URL</a> referencing a
-  non-interactive, optionally animated, image resource that is neither
-  paged nor scripted.</p><p>The <dfn id=attr-input-alt title=attr-input-alt><code>alt</code></dfn> attribute
+  must contain a <a href=#valid-non-empty-url-potentially-surrounded-by-spaces>valid non-empty URL potentially surrounded by
+  spaces</a> referencing a non-interactive, optionally animated,
+  image resource that is neither paged nor scripted.</p><p>The <dfn id=attr-input-alt title=attr-input-alt><code>alt</code></dfn> attribute
   provides the textual label for the alternative button for users and
   user agents who cannot use the image. The <code title=attr-input-alt><a href=#attr-input-alt>alt</a></code> attribute must also be present,
   and must contain a non-empty string.</p><p>The <code><a href=#the-input-element>input</a></code> element supports <a href=#dimension-attributes>dimension
@@ -18344,7 +18359,7 @@
   <code><a href=#the-form-element>form</a></code> element.</p><hr><p>The <dfn id=attr-fs-action title=attr-fs-action><code>action</code></dfn> and
   <dfn id=attr-fs-formaction title=attr-fs-formaction><code>formaction</code></dfn>
   content attributes, if specified, must have a value that is a
-  <a href=#valid-url>valid URL</a>.</p><p>The <dfn id=concept-fs-action title=concept-fs-action>action</dfn> of an element is
+  <a href=#valid-url-potentially-surrounded-by-spaces>valid URL potentially surrounded by spaces</a>.</p><p>The <dfn id=concept-fs-action title=concept-fs-action>action</dfn> of an element is
   the value of the element's <code title=attr-fs-formaction><a href=#attr-fs-formaction>formaction</a></code> attribute, if the
   element is a <a href=#concept-submit-button title=concept-submit-button>submit
   button</a> and has such an attribute, or the value of its
@@ -21321,9 +21336,10 @@
   to the user to help him.</p><p>The <dfn id=attr-command-icon title=attr-command-icon><code>icon</code></dfn>
   attribute gives a picture that represents the command. If the
   attribute is specified, the attribute's value must contain a
-  <a href=#valid-non-empty-url>valid non-empty URL</a>. </p><!-- this is affected by the base URL being
-  changed, so users of this should cache the image once they've
-  fetched it once, at least until the relative url changes again --><p>The <dfn id=attr-command-disabled title=attr-command-disabled><code>disabled</code></dfn> attribute
+  <a href=#valid-non-empty-url-potentially-surrounded-by-spaces>valid non-empty URL potentially surrounded by
+  spaces</a>. </p><!-- this is affected by the base URL being changed, so users of
+  this should cache the image once they've fetched it once, at least
+  until the relative url changes again --><p>The <dfn id=attr-command-disabled title=attr-command-disabled><code>disabled</code></dfn> attribute
   is a <a href=#boolean-attribute>boolean attribute</a> that, if present, indicates that
   the command is not available in the current state.</p><p class=note>The distinction between <code title=attr-command-disabled><a href=#attr-command-disabled>disabled</a></code> and <code title=attr-hidden><a href=#the-hidden-attribute>hidden</a></code> is subtle. A command would be
   disabled if, in the same context, it could be enabled if only
@@ -21668,8 +21684,9 @@
   elements can, in certain situations described in the definitions of
   those elements, represent <dfn id=hyperlink title=hyperlink>hyperlinks</dfn>.</p><p>The <dfn id=attr-hyperlink-href title=attr-hyperlink-href><code>href</code></dfn>
   attribute on <code><a href=#the-a-element>a</a></code> and <code><a href=#the-area-element>area</a></code> elements must have
-  a value that is a <a href=#valid-url>valid URL</a>. This <a href=#url>URL</a> is
-  the <i>destination resource</i> of the hyperlink.</p><p class=note>The <code title=attr-hyperlink-href><a href=#attr-hyperlink-href>href</a></code>
+  a value that is a <a href=#valid-url-potentially-surrounded-by-spaces>valid URL potentially surrounded by
+  spaces</a>. This <a href=#url>URL</a> is the <i>destination
+  resource</i> of the hyperlink.</p><p class=note>The <code title=attr-hyperlink-href><a href=#attr-hyperlink-href>href</a></code>
   attribute on <code><a href=#the-a-element>a</a></code> and <code><a href=#the-area-element>area</a></code> elements is not
   required; when those elements do not have <code title=attr-hyperlink-href><a href=#attr-hyperlink-href>href</a></code> attributes they do not
   represent hyperlinks.</p><p class=note>The <code title=attr-link-href><a href=#attr-link-href>href</a></code>
@@ -28085,7 +28102,7 @@
     </td></tr><tr><th> <code title="">action</code>
      </th><td> <code title=attr-fs-action><a href=#attr-fs-action>form</a></code>
      </td><td> <a href=#url>URL</a> to use for <a href=#form-submission>form submission</a>
-     </td><td> <a href=#valid-url>Valid URL</a>
+     </td><td> <a href=#valid-url-potentially-surrounded-by-spaces>Valid URL potentially surrounded by spaces</a>
     </td></tr><tr><th> <code title="">alt</code>
      </th><td> <code title=attr-area-alt><a href=#attr-area-alt>area</a></code>;
           <code title=attr-img-alt><a href=#attr-img-alt>img</a></code>;
@@ -28137,7 +28154,7 @@
           <code title=attr-mod-cite><a href=#attr-mod-cite>ins</a></code>;
           <code title=attr-q-cite><a href=#attr-q-cite>q</a></code>
      </td><td> Link to the source of the quotation or more information about the edit
-     </td><td> <a href=#valid-url>Valid URL</a>
+     </td><td> <a href=#valid-url-potentially-surrounded-by-spaces>Valid URL potentially surrounded by spaces</a>
     </td></tr><tr><th> <code title="">class</code>
      </th><td> <a href=#classes title=attr-class>HTML elements</a>
      </td><td> Classes to which the element belongs
@@ -28175,7 +28192,7 @@
     </td></tr><tr><th> <code title="">data</code>
      </th><td> <code title=attr-object-data><a href=#attr-object-data>object</a></code>
      </td><td> Address of the resource
-     </td><td> <a href=#valid-non-empty-url>Valid non-empty URL</a>
+     </td><td> <a href=#valid-non-empty-url-potentially-surrounded-by-spaces>Valid non-empty URL potentially surrounded by spaces</a>
     </td></tr><tr><th> <code title="">datetime</code>
      </th><td> <code title=attr-mod-datetime><a href=#attr-mod-datetime>del</a></code>;
           <code title=attr-mod-datetime><a href=#attr-mod-datetime>ins</a></code>
@@ -28239,7 +28256,7 @@
      </th><td> <code title=attr-fs-formaction><a href=#attr-fs-formaction>button</a></code>;
           <code title=attr-fs-formaction><a href=#attr-fs-formaction>input</a></code>
      </td><td> <a href=#url>URL</a> to use for <a href=#form-submission>form submission</a>
-     </td><td> <a href=#valid-url>Valid URL</a>
+     </td><td> <a href=#valid-url-potentially-surrounded-by-spaces>Valid URL potentially surrounded by spaces</a>
     </td></tr><tr><th> <code title="">formenctype</code>
      </th><td> <code title=attr-fs-formenctype><a href=#attr-fs-formenctype>button</a></code>;
           <code title=attr-fs-formenctype><a href=#attr-fs-formenctype>input</a></code>
@@ -28287,15 +28304,15 @@
      </th><td> <code title=attr-hyperlink-href><a href=#attr-hyperlink-href>a</a></code>;
           <code title=attr-hyperlink-href><a href=#attr-hyperlink-href>area</a></code>
      </td><td> Address of the <a href=#hyperlink>hyperlink</a>
-     </td><td> <a href=#valid-url>Valid URL</a>
+     </td><td> <a href=#valid-url-potentially-surrounded-by-spaces>Valid URL potentially surrounded by spaces</a>
     </td></tr><tr><th> <code title="">href</code>
      </th><td> <code title=attr-link-href><a href=#attr-link-href>link</a></code>
      </td><td> Address of the <a href=#hyperlink>hyperlink</a>
-     </td><td> <a href=#valid-non-empty-url>Valid non-empty URL</a>
+     </td><td> <a href=#valid-non-empty-url-potentially-surrounded-by-spaces>Valid non-empty URL potentially surrounded by spaces</a>
     </td></tr><tr><th> <code title="">href</code>
      </th><td> <code title=attr-base-href><a href=#attr-base-href>base</a></code>
      </td><td> <a href=#document-base-url>Document base URL</a>
-     </td><td> <a href=#valid-url>Valid URL</a>
+     </td><td> <a href=#valid-url-potentially-surrounded-by-spaces>Valid URL potentially surrounded by spaces</a>
     </td></tr><tr><th> <code title="">hreflang</code>
      </th><td> <code title=attr-hyperlink-hreflang><a href=#attr-hyperlink-hreflang>a</a></code>;
           <code title=attr-hyperlink-hreflang><a href=#attr-hyperlink-hreflang>area</a></code>;
@@ -28309,7 +28326,7 @@
     </td></tr><tr><th> <code title="">icon</code>
      </th><td> <code title=attr-command-icon><a href=#attr-command-icon>command</a></code>
      </td><td> Icon for the command
-     </td><td> <a href=#valid-non-empty-url>Valid non-empty URL</a>
+     </td><td> <a href=#valid-non-empty-url-potentially-surrounded-by-spaces>Valid non-empty URL potentially surrounded by spaces</a>
     </td></tr><tr><th> <code title="">id</code>
      </th><td> <a href=#the-id-attribute title=attr-id>HTML elements</a>
      </td><td> The element's <a href=#concept-id title=concept-id>ID</a>
@@ -28349,7 +28366,7 @@
     </td></tr><tr><th> <code title="">manifest</code>
      </th><td> <code title=attr-html-manifest><a href=#attr-html-manifest>html</a></code>
      </td><td> <a href=#concept-appcache-manifest title=concept-appcache-manifest>Application cache manifest</a>
-     </td><td> <a href=#valid-non-empty-url>Valid non-empty URL</a>
+     </td><td> <a href=#valid-non-empty-url-potentially-surrounded-by-spaces>Valid non-empty URL potentially surrounded by spaces</a>
     </td></tr><tr><th> <code title="">max</code>
      </th><td> <code title=attr-input-max><a href=#attr-input-max>input</a></code>
      </td><td> Maximum value
@@ -28444,7 +28461,7 @@
     </td></tr><tr><th> <code title="">poster</code>
      </th><td> <code title=attr-video-poster><a href=#attr-video-poster>video</a></code>
      </td><td> Poster frame to show prior to video playback
-     </td><td> <a href=#valid-non-empty-url>Valid non-empty URL</a>
+     </td><td> <a href=#valid-non-empty-url-potentially-surrounded-by-spaces>Valid non-empty URL potentially surrounded by spaces</a>
     </td></tr><tr><th> <code title="">preload</code>
      </th><td> <code title=attr-media-preload><a href=#attr-media-preload>audio</a></code>;
           <code title=attr-media-preload><a href=#attr-media-preload>video</a></code>
@@ -28550,7 +28567,7 @@
           <code title=attr-source-src><a href=#attr-source-src>source</a></code>;
           <code title=attr-media-src><a href=#attr-media-src>video</a></code>
      </td><td> Address of the resource
-     </td><td> <a href=#valid-non-empty-url>Valid non-empty URL</a>
+     </td><td> <a href=#valid-non-empty-url-potentially-surrounded-by-spaces>Valid non-empty URL potentially surrounded by spaces</a>
     </td></tr><tr><th> <code title="">srcdoc</code>
      </th><td> <code title=attr-iframe-srcdoc><a href=#attr-iframe-srcdoc>iframe</a></code>
      </td><td> A document to render in the <code><a href=#the-iframe-element>iframe</a></code>

Index: number-state.html
===================================================================
RCS file: /sources/public/html5/spec-author-view/number-state.html,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -d -r1.26 -r1.27
--- number-state.html	4 Apr 2010 22:47:28 -0000	1.26
+++ number-state.html	12 Apr 2010 05:57:30 -0000	1.27
@@ -875,9 +875,9 @@
   form. The element is a <a href="forms.html#concept-button" title="concept-button">button</a>,
   specifically a <a href="forms.html#concept-submit-button" title="concept-submit-button">submit
   button</a>.</p><hr><p>The image is given by the <dfn id="attr-input-src" title="attr-input-src"><code>src</code></dfn> attribute. The <code title="attr-input-src"><a href="#attr-input-src">src</a></code> attribute must be present, and
-  must contain a <a href="urls.html#valid-non-empty-url">valid non-empty URL</a> referencing a
-  non-interactive, optionally animated, image resource that is neither
-  paged nor scripted.</p><p>The <dfn id="attr-input-alt" title="attr-input-alt"><code>alt</code></dfn> attribute
+  must contain a <a href="urls.html#valid-non-empty-url-potentially-surrounded-by-spaces">valid non-empty URL potentially surrounded by
+  spaces</a> referencing a non-interactive, optionally animated,
+  image resource that is neither paged nor scripted.</p><p>The <dfn id="attr-input-alt" title="attr-input-alt"><code>alt</code></dfn> attribute
   provides the textual label for the alternative button for users and
   user agents who cannot use the image. The <code title="attr-input-alt"><a href="#attr-input-alt">alt</a></code> attribute must also be present,
   and must contain a non-empty string.</p><p>The <code><a href="the-input-element.html#the-input-element">input</a></code> element supports <a href="the-map-element.html#dimension-attributes">dimension

Received on Monday, 12 April 2010 05:57:44 UTC