- From: Michael Smith via cvs-syncmail <cvsmail@w3.org>
- Date: Tue, 13 Mar 2012 19:59:06 +0000
- To: public-html-commits@w3.org
Update of /sources/public/html5/spec-author-view In directory hutz:/tmp/cvs-serv20397 Modified Files: Overview.html acknowledgements.html association-of-controls-and-forms.html attributes-common-to-form-controls.html attributes-common-to-ins-and-del-elements.html attributes-common-to-td-and-th-elements.html browsers.html commands.html common-dom-interfaces.html common-input-element-apis.html common-input-element-attributes.html common-microsyntaxes.html constraints.html content-models.html dimension-attributes.html dnd.html dom.html dynamic-markup-insertion.html editing-apis.html editing.html edits-and-lists.html edits-and-paragraphs.html edits.html element-definitions.html elements.html embedded-content-1.html examples.html form-submission.html forms.html fragment-links-full.js fragment-links.xhtml global-attributes.html grouping-content.html headings-and-sections.html history.html iana.html image-maps.html index-of-terms.html index.html infrastructure.html interactive-elements.html introduction.html links.html mathml.html media-elements.html named-character-references.html namespaces.html obsolete.html offline.html origin-0.html references.html requirements-relating-to-bidirectional-algorithm-formatting-characters.html scripting-1.html sections.html semantics.html spec.html spec.preprocessed.html states-of-the-type-attribute.html styling.html svg-0.html syntax.html system-state-and-capabilities.html tabular-data.html text-level-semantics.html textFieldSelection.html the-a-element.html the-abbr-element.html the-address-element.html the-area-element.html the-article-element.html the-aside-element.html the-audio-element.html the-b-element.html the-base-element.html the-bdi-element.html the-bdo-element.html the-blockquote-element.html the-body-element.html the-br-element.html the-button-element.html the-canvas-element.html the-caption-element.html the-cite-element.html the-code-element.html the-col-element.html the-colgroup-element.html the-command-element.html the-datalist-element.html the-dd-element.html the-del-element.html the-details-element.html the-dfn-element.html the-div-element.html the-dl-element.html the-dt-element.html the-em-element.html the-embed-element.html the-fieldset-element.html the-figcaption-element.html the-figure-element.html the-footer-element.html the-form-element.html the-h1-element.html the-h1-h2-h3-h4-h5-and-h6-elements.html the-h2-element.html the-h3-element.html the-h4-element.html the-h5-element.html the-h6-element.html the-head-element.html the-header-element.html the-hgroup-element.html the-hr-element.html the-html-element.html the-i-element.html the-iframe-element.html the-img-element.html the-input-element.html the-ins-element.html the-kbd-element.html the-keygen-element.html the-label-element.html the-legend-element.html the-li-element.html the-link-element.html the-map-element.html the-mark-element.html the-menu-element.html the-meta-element.html the-meter-element.html the-nav-element.html the-noscript-element.html the-object-element.html the-ol-element.html the-optgroup-element.html the-option-element.html the-output-element.html the-p-element.html the-param-element.html the-pre-element.html the-progress-element.html the-q-element.html the-rp-element.html the-rt-element.html the-ruby-element.html the-s-element.html the-samp-element.html the-script-element.html the-section-element.html the-select-element.html the-small-element.html the-source-element.html the-span-element.html the-strong-element.html the-style-element.html the-sub-and-sup-elements.html the-sub-element.html the-summary-element.html the-sup-element.html the-table-element.html the-tbody-element.html the-td-element.html the-textarea-element.html the-tfoot-element.html the-th-element.html the-thead-element.html the-time-element.html the-title-element.html the-tr-element.html the-track-element.html the-u-element.html the-ul-element.html the-var-element.html the-video-element.html the-wbr-element.html the-xhtml-syntax.html timers.html urls.html usage-summary.html user-prompts.html wai-aria.html webappapis.html Log Message: Add ellipse support to canvas. (whatwg r7025) [updated by splitter] Index: the-a-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-a-element.html,v retrieving revision 1.138 retrieving revision 1.139 diff -u -d -r1.138 -r1.139 --- the-a-element.html 21 Feb 2012 21:59:01 -0000 1.138 +++ the-a-element.html 13 Mar 2012 19:58:55 -0000 1.139 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="text-level-semantics.html">← 4.6 Text-level semantics</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-em-element.html">4.6.2 The em element →</a> </div> - <h4 id="the-a-element"><span class="secno">4.6.1 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>a</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_32" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-a-element"><span class="secno">4.6.1 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>a</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_32" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_70">Flow content</a>.</dd> <dd>When the element only contains <a href="content-models.html#phrasing-content" id="phrasing-content_27">phrasing content</a>: <a href="content-models.html#phrasing-content" id="phrasing-content_28">phrasing content</a>.</dd> <dd><a href="content-models.html#interactive-content" id="interactive-content_2">Interactive content</a>.</dd> @@ -393,12 +433,21 @@ </dd> </dl><p>If the <code><a href="#the-a-element" id="a_15">a</a></code> element has an <code title="attr-hyperlink-href"><a href="links.html#attr-hyperlink-href" id="href_11">href</a></code> attribute, then it <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a <a href="links.html#hyperlink" id="hyperlink_8">hyperlink</a> (a hypertext - anchor).<p>If the <code><a href="#the-a-element" id="a_16">a</a></code> element has no <code title="attr-hyperlink-href"><a href="links.html#attr-hyperlink-href" id="href_12">href</a></code> attribute, then the element + anchor).</p> + + + + <p>If the <code><a href="#the-a-element" id="a_16">a</a></code> element has no <code title="attr-hyperlink-href"><a href="links.html#attr-hyperlink-href" id="href_12">href</a></code> attribute, then the element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a placeholder for where a link might - otherwise have been placed, if it had been relevant.<p>The <code title="attr-hyperlink-target"><a href="links.html#attr-hyperlink-target" id="target_13">target</a></code>, + otherwise have been placed, if it had been relevant.</p> + + <p>The <code title="attr-hyperlink-target"><a href="links.html#attr-hyperlink-target" id="target_13">target</a></code>, <code title="attr-hyperlink-rel"><a href="links.html#attr-hyperlink-rel" id="rel_13">rel</a></code>, <code title="attr-hyperlink-media"><a href="links.html#attr-hyperlink-media" id="media_9">media</a></code>, <code title="attr-hyperlink-hreflang"><a href="links.html#attr-hyperlink-hreflang" id="hreflang_2">hreflang</a></code>, and <code title="attr-hyperlink-type"><a href="links.html#attr-hyperlink-type" id="type_112">type</a></code> attributes must be omitted if the <code title="attr-hyperlink-href"><a href="links.html#attr-hyperlink-href" id="href_13">href</a></code> attribute is - not present.<div class="example"> + not present.</p> + + + <div class="example"> <p>If a site uses a consistent navigation toolbar on every page, then the link that would normally link to the page itself could be marked up using an <code><a href="#the-a-element" id="a_17">a</a></code> element:</p> @@ -410,7 +459,12 @@ <li> <a href="/legal">Legal</a> </li> </ul> </nav></pre> - </div><dl class="domintro"><dt><var title="">a</var> . <code id="dom-a-text" title="dom-a-text"><a href="#dom-a-text">text</a></code></dt> + </div> + + + + + <dl class="domintro"><dt><var title="">a</var> . <code id="dom-a-text" title="dom-a-text"><a href="#dom-a-text">text</a></code></dt> <dd> @@ -437,7 +491,10 @@ successful, or the empty string otherwise; and the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/urls.html#concept-uda-setter" title='Read about this "common setter action" reference in the full HTML5 spec.'>common setter action</a> being the same as setting the element's <code title="attr-hyperlink-href"><a href="links.html#attr-hyperlink-href" id="href_15">href</a></code> attribute to the new output value.</p> -<div class="example"> + + + + <div class="example"> <p>The <code><a href="#the-a-element" id="a_19">a</a></code> element may be wrapped around entire paragraphs, lists, tables, and so forth, even entire sections, so @@ -463,4 +520,7 @@ </a> </aside></pre> - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: the-img-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-img-element.html,v retrieving revision 1.142 retrieving revision 1.143 diff -u -d -r1.142 -r1.143 --- the-img-element.html 21 Feb 2012 21:59:05 -0000 1.142 +++ the-img-element.html 13 Mar 2012 19:58:58 -0000 1.143 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,7 +380,9 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="embedded-content-1.html">← 4.8 Embedded content</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-iframe-element.html">4.8.2 The iframe element →</a> @@ -352,7 +390,9 @@ <ol><li><a href="the-img-element.html#alt"><span class="secno">4.8.1.1 </span>Requirements for providing text to act as an alternative for images</a> <ol><li><a href="the-img-element.html#general-guidelines"><span class="secno">4.8.1.1.1 </span>General guidelines</a><li><a href="the-img-element.html#a-link-or-button-containing-nothing-but-the-image"><span class="secno">4.8.1.1.2 </span>A link or button containing nothing but the image</a><li><a href="the-img-element.html#a-phrase-or-paragraph-with-an-alternative-graphical-representation:-charts-diagrams-graphs-maps-illustrations"><span class="secno">4.8.1.1.3 </span>A phrase or paragraph with an alternative graphical representation: charts, diagrams, graphs, maps, illustrations</a><li><a href="the-img-element.html#a-short-phrase-or-label-with-an-alternative-graphical-representation:-icons-logos"><span class="secno">4.8.1.1.4 </span>A short phrase or label with an alternative graphical representation: icons, logos</a><li><a href="the-img-element.html#text-that-has-been-rendered-to-a-graphic-for-typographical-effect"><span class="secno">4.8.1.1.5 </span>Text that has been rendered to a graphic fortypographical effect</a><li><a href="the-img-element.html#a-graphical-representation-of-some-of-the-surrounding-text"><span class="secno">4.8.1.1.6 </span>A graphical representation of some of the surrounding text</a><li><a href="the-img-element.html#a-purely-decorative-image-that-doesn-t-add-any-information"><span class="secno">4.8.1.1.7 </span>A purely decorative image that doesn't add any information</a><li><a href="the-img-element.html#a-group-of-images-that-form-a-single-larger-picture-with-no-links"><span class="secno">4.8.1.1.8 </span>A group of images that form a single larger picture with no links</a><li><a href="the-img-element.html#a-group-of-images-that-form-a-single-larger-picture-with-links"><span class="secno">4.8.1.1.9 </span>A group of images that form a single larger picture with links</a><li><a href="the-img-element.html#a-key-part-of-the-content"><span class="secno">4.8.1.1.10 </span>A key part of the content</a><li><a href="the-img-element.html#an-image-not-intended-for-the-user"><span lass="secno">4.8.1.1.11 </span>An image not intended for the user</a></ol></ol></ol></ol></ol></div> - <h4 id="the-img-element"><span class="secno">4.8.1 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>img</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_61" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-img-element"><span class="secno">4.8.1 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>img</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_61" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_100">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_114">Phrasing content</a>.</dd> <dd><a href="content-models.html#embedded-content" id="embedded-content_3">Embedded content</a>.</dd> @@ -389,39 +429,65 @@ readonly attribute boolean <a href="#dom-img-complete" title="dom-img-complete">complete</a>; };</pre> </dd> - </dl><p>An <code><a href="#the-img-element" id="img_17">img</a></code> element represents an image.<p>The image given by the <dfn aria-haspopup="true" id="attr-img-src" role="button" tabindex="0"><code>src</code></dfn> attribute is the + </dl><p>An <code><a href="#the-img-element" id="img_17">img</a></code> element represents an image.</p> + + + + <p>The image given by the <dfn aria-haspopup="true" id="attr-img-src" role="button" tabindex="0"><code>src</code></dfn> attribute is the embedded content; the value of the <dfn aria-haspopup="true" id="attr-img-alt" role="button" tabindex="0"><code>alt</code></dfn> attribute provides equivalent content for those who cannot process images or who have - image loading disabled.<p>The <code title="attr-img-src"><a href="#attr-img-src" id="src_13">src</a></code> attribute must be + image loading disabled.</p> + + <p>The <code title="attr-img-src"><a href="#attr-img-src" id="src_13">src</a></code> attribute must be present, and must contain a <a href="urls.html#valid-non-empty-url-potentially-surrounded-by-spaces" id="valid-non-empty-url-potentially-surrounded-by-spaces_3">valid non-empty URL potentially surrounded by spaces</a> referencing a non-interactive, optionally animated, image resource that is neither paged nor - scripted.<p class="note">Images can thus be static bitmaps (e.g. PNGs, GIFs, + 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 use declarative SMIL animation), and so forth. However, this also precludes SVG files with script, multipage PDF files, interactive - MNG files, HTML documents, plain text documents, and so forth.<p>The requirements on the <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_4">alt</a></code> + MNG files, HTML documents, plain text documents, and so forth.</p> + + <p>The requirements on the <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_4">alt</a></code> attribute's value are described <a href="#alt">in the next - section</a>.<p>The <code><a href="#the-img-element" id="img_18">img</a></code> element must not be used as a layout tool. + section</a>.</p> + + <p>The <code><a href="#the-img-element" id="img_18">img</a></code> element must not be used as a layout tool. In particular, <code><a href="#the-img-element" id="img_19">img</a></code> elements should not be used to display transparent images, as they rarely convey meaning and rarely - add anything useful to the document.<p>The <dfn aria-haspopup="true" id="attr-img-crossorigin" role="button" tabindex="0"><code>crossorigin</code></dfn> + add anything useful to the document.</p> + + <p>The <dfn aria-haspopup="true" id="attr-img-crossorigin" role="button" tabindex="0"><code>crossorigin</code></dfn> attribute is a <a href="urls.html#cors-settings-attribute" id="cors-settings-attribute_0">CORS settings attribute</a>. Its purpose is to allow images from third-party sites that allow cross-origin - access to be used with <code><a href="the-canvas-element.html#the-canvas-element" id="canvas_4">canvas</a></code>.<hr><p>The <code title="attr-hyperlink-usemap"><a href="image-maps.html#attr-hyperlink-usemap" id="usemap_3">usemap</a></code> attribute, + access to be used with <code><a href="the-canvas-element.html#the-canvas-element" id="canvas_4">canvas</a></code>.</p> + + + + <hr><p>The <code title="attr-hyperlink-usemap"><a href="image-maps.html#attr-hyperlink-usemap" id="usemap_3">usemap</a></code> attribute, if present, can indicate that the image has an associated - <a href="image-maps.html#image-map" id="image-map_0">image map</a>.<p>The <dfn aria-haspopup="true" id="attr-img-ismap" role="button" tabindex="0"><code>ismap</code></dfn> + <a href="image-maps.html#image-map" id="image-map_0">image map</a>.</p> + + <p>The <dfn aria-haspopup="true" id="attr-img-ismap" role="button" tabindex="0"><code>ismap</code></dfn> attribute, when used on an element that is a descendant of an <code><a href="the-a-element.html#the-a-element" id="a_23">a</a></code> element with an <code title="attr-hyperlink-href"><a href="links.html#attr-hyperlink-href" id="href_16">href</a></code> attribute, indicates by its presence that the element provides access to a server-side image map. This affects how events are handled on the corresponding - <code><a href="the-a-element.html#the-a-element" id="a_24">a</a></code> element.<p>The <code title="attr-img-ismap"><a href="#attr-img-ismap" id="ismap_0">ismap</a></code> attribute is a + <code><a href="the-a-element.html#the-a-element" id="a_24">a</a></code> element.</p> + + <p>The <code title="attr-img-ismap"><a href="#attr-img-ismap" id="ismap_0">ismap</a></code> attribute is a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_3">boolean attribute</a>. The attribute must not be specified on an element that does not have an ancestor <code><a href="the-a-element.html#the-a-element" id="a_25">a</a></code> element - with an <code title="attr-hyperlink-href"><a href="links.html#attr-hyperlink-href" id="href_17">href</a></code> attribute.<p>The <code><a href="#the-img-element" id="img_20">img</a></code> element supports <a href="dimension-attributes.html#dimension-attributes" id="dimension-attributes_0">dimension + with an <code title="attr-hyperlink-href"><a href="links.html#attr-hyperlink-href" id="href_17">href</a></code> attribute.</p> + + <p>The <code><a href="#the-img-element" id="img_20">img</a></code> element supports <a href="dimension-attributes.html#dimension-attributes" id="dimension-attributes_0">dimension attributes</a>.</p> + + <p>The <dfn aria-haspopup="true" id="dom-img-alt" role="button" tabindex="0"><code>alt</code></dfn> and <dfn aria-haspopup="true" id="dom-img-src" role="button" tabindex="0"><code>src</code></dfn> IDL attributes must <a href="common-dom-interfaces.html#reflect" id="reflect_22">reflect</a> the respective content attributes of the same name.</p> @@ -435,7 +501,10 @@ <p>The <dfn aria-haspopup="true" id="dom-img-ismap" role="button" tabindex="0"><code>isMap</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_25">reflect</a> the <code title="attr-img-ismap"><a href="#attr-img-ismap" id="ismap_1">ismap</a></code> content attribute.</p> -<dl class="domintro"><dt><var title="">image</var> . <code id="dom-img-width" title="dom-img-width"><a href="#dom-img-width">width</a></code> [ = <var title="">value</var> ]</dt> + + + + <dl class="domintro"><dt><var title="">image</var> . <code id="dom-img-width" title="dom-img-width"><a href="#dom-img-width">width</a></code> [ = <var title="">value</var> ]</dt> <dt><var title="">image</var> . <code id="dom-img-height" title="dom-img-height"><a href="#dom-img-height">height</a></code> [ = <var title="">value</var> ]</dt> <dd> @@ -491,7 +560,10 @@ <a href="browsers.html#active-document" id="active-document_1">active document</a> of the <a href="browsers.html#browsing-context" id="browsing-context_6">browsing context</a> of the <code><a href="browsers.html#window" id="window_6">Window</a></code> object on which the interface object of the invoked constructor is found.</p> -<div class="example"> + + + + <div class="example"> <p>A single image can have different appropriate alternative text depending on the context.</p> @@ -548,7 +620,9 @@ users or very low-bandwidth connections or who pay by the byte, or users who are forced to use a text-only Web browser.</p> - </div><div class="example"> + </div> + + <div class="example"> <p>Here are some more examples showing the same picture used in different contexts, with different appropriate alternate texts each @@ -593,30 +667,56 @@ <p>He would play in the morning, he would play in the evening.</p> </article></pre> - </div><h5 id="alt"><span class="secno">4.8.1.1 </span>Requirements for providing text to act as an alternative for images</h5><h6 id="general-guidelines"><span class="secno">4.8.1.1.1 </span>General guidelines</h6><p>Except where otherwise specified, the <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_6">alt</a></code> attribute must be specified and its + </div> + + + + <h5 id="alt"><span class="secno">4.8.1.1 </span>Requirements for providing text to act as an alternative for images</h5> + + + <h6 id="general-guidelines"><span class="secno">4.8.1.1.1 </span>General guidelines</h6> + + <p>Except where otherwise specified, the <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_6">alt</a></code> attribute must be specified and its value must not be empty; the value must be an appropriate replacement for the image. The specific requirements for the <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_7">alt</a></code> attribute depend on what the image is intended to represent, as described in the following - sections.<p>The most general rule to consider when writing alternative text + sections.</p> + + <p>The most general rule to consider when writing alternative text is the following: <strong>the intent is that replacing every image with the text of its <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_8">alt</a></code> attribute - not change the meaning of the page</strong>.<p>So, in general, alternative text can be written by considering + not change the meaning of the page</strong>.</p> + + <p>So, in general, alternative text can be written by considering what one would have written had one not been able to include the - image.<p>A corollary to this is that the <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_9">alt</a></code> attribute's value should never + image.</p> + + <p>A corollary to this is that the <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_9">alt</a></code> attribute's value should never contain text that could be considered the image's <em>caption</em>, <em>title</em>, or <em>legend</em>. It is supposed to contain replacement text that could be used by users <em>instead</em> of the image; it is not meant to supplement the image. The <code title="attr-title"><a href="global-attributes.html#the-title-attribute" id="title_18">title</a></code> attribute can be used for - supplemental information.<p>Another corollary is that the <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_10">alt</a></code> attribute's value should not repeat + supplemental information.</p> + + <p>Another corollary is that the <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_10">alt</a></code> attribute's value should not repeat information that is already provided in the prose next to the - image.<p class="note">One way to think of alternative text is to think + image.</p> + + <p class="note">One way to think of alternative text is to think about how you would read the page containing the image to someone over the phone, without mentioning that there is an image present. Whatever you say instead of the image is typically a good - start for writing the alternative text.<h6 id="a-link-or-button-containing-nothing-but-the-image"><span class="secno">4.8.1.1.2 </span>A link or button containing nothing but the image</h6><p>When an <a href="the-a-element.html#the-a-element" id="a_26">a</a> element that creates a + start for writing the alternative text.</p> + + + <h6 id="a-link-or-button-containing-nothing-but-the-image"><span class="secno">4.8.1.1.2 </span>A link or button containing nothing but the image</h6> + + <p>When an <a href="the-a-element.html#the-a-element" id="a_26">a</a> element that creates a <a href="links.html#hyperlink" id="hyperlink_9">hyperlink</a>, or a <code><a href="the-button-element.html#the-button-element" id="button_8">button</a></code> element, has no textual content but contains one or more images, the <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_11">alt</a></code> attributes must contain text that - together convey the purpose of the link or button.<div class="example"> + together convey the purpose of the link or button.</p> + + <div class="example"> <p>In this example, a user is asked to pick his preferred color from a list of three. Each color is given by an image, but for @@ -630,7 +730,9 @@ <li><a href="red.html"><strong><img src="red.jpeg" alt="Red"></strong></a></li> </ul></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>In this example, each button has a set of images to indicate the kind of color output desired by the user. The first image is used @@ -652,7 +754,13 @@ <pre><button name="rgb"><strong><img src="red" alt="sRGB profile"><img src="green" alt=""><img src="blue" alt=""></strong></button> <button name="cmyk"><strong><img src="cyan" alt="CMYK profile"><img src="magenta" alt=""><img src="yellow" alt=""><img src="black" alt=""></strong></button></pre> - </div><h6 id="a-phrase-or-paragraph-with-an-alternative-graphical-representation:-charts-diagrams-graphs-maps-illustrations"><span class="secno">4.8.1.1.3 </span>A phrase or paragraph with an alternative graphical representation: charts, diagrams, graphs, maps, illustrations</h6><p>Sometimes something can be more clearly stated in graphical + </div> + + + + <h6 id="a-phrase-or-paragraph-with-an-alternative-graphical-representation:-charts-diagrams-graphs-maps-illustrations"><span class="secno">4.8.1.1.3 </span>A phrase or paragraph with an alternative graphical representation: charts, diagrams, graphs, maps, illustrations</h6> + + <p>Sometimes something can be more clearly stated in graphical form, for example as a flowchart, a diagram, a graph, or a simple map showing directions. In such cases, an image can be given using the <code><a href="#the-img-element" id="img_23">img</a></code> element, but the lesser textual version must @@ -661,10 +769,16 @@ are using a text-only browser, or because they are listening to the page being read out by a hands-free automobile voice Web browser, or simply because they are blind) are still able to - understand the message being conveyed.<p>The text must be given in the <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_12">alt</a></code> attribute, and must convey the - same message as the image specified in the <code title="attr-img-src"><a href="#attr-img-src" id="src_14">src</a></code> attribute.<p>It is important to realize that the alternative text is a + understand the message being conveyed.</p> + + <p>The text must be given in the <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_12">alt</a></code> attribute, and must convey the + same message as the image specified in the <code title="attr-img-src"><a href="#attr-img-src" id="src_14">src</a></code> attribute.</p> + + <p>It is important to realize that the alternative text is a <em>replacement</em> for the image, not a description of the - image.<div class="example"> + image.</p> + + <div class="example"> <p>In the following example we have <a href="images/parsing-model-overview.png">a flowchart</a> in image form, with text in the <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_13">alt</a></code> @@ -679,7 +793,9 @@ linked to the DOM, and, using document.write(), passes data to the Tokenizer."></strong></p></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>Here's another example, showing a good solution and a bad solution to the problem of including an image in a @@ -715,11 +831,20 @@ <code><a href="the-figcaption-element.html#the-figcaption-element" id="figcaption_8">figcaption</a></code> element of a <code><a href="the-figure-element.html#the-figure-element" id="figure_12">figure</a></code> with this image).</p> - </div><h6 id="a-short-phrase-or-label-with-an-alternative-graphical-representation:-icons-logos"><span class="secno">4.8.1.1.4 </span>A short phrase or label with an alternative graphical representation: icons, logos</h6><p>A document can contain information in iconic form. The icon is + </div> + + + <h6 id="a-short-phrase-or-label-with-an-alternative-graphical-representation:-icons-logos"><span class="secno">4.8.1.1.4 </span>A short phrase or label with an alternative graphical representation: icons, logos</h6> + + <p>A document can contain information in iconic form. The icon is intended to help users of visual browsers to recognize features at - a glance.<p>In some cases, the icon is supplemental to a text label + a glance.</p> + + <p>In some cases, the icon is supplemental to a text label conveying the same meaning. In those cases, the <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_14">alt</a></code> attribute must be present but must - be empty.<div class="example"> + be empty.</p> + + <div class="example"> <p>Here the icons are next to text that conveys the same meaning, so they have an empty <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_15">alt</a></code> @@ -731,9 +856,13 @@ Configuration Tools</a></p> </nav></pre> - </div><p>In other cases, the icon has no text next to it describing what + </div> + + <p>In other cases, the icon has no text next to it describing what it means; the icon is supposed to be self-explanatory. In those - cases, an equivalent textual label must be given in the <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_16">alt</a></code> attribute.<div class="example"> + cases, an equivalent textual label must be given in the <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_16">alt</a></code> attribute.</p> + + <div class="example"> <p>Here, posts on a news site are labeled with an icon indicating their topic.</p> @@ -759,23 +888,33 @@ </article> </body></pre> - </div><p>Many pages include logos, insignia, flags, or emblems, which + </div> + + <p>Many pages include logos, insignia, flags, or emblems, which stand for a particular entity such as a company, organization, - project, band, software package, country, or some such.<p>If the logo is being used to represent the entity, e.g. as a page + project, band, software package, country, or some such.</p> + + <p>If the logo is being used to represent the entity, e.g. as a page heading, the <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_17">alt</a></code> attribute must contain the name of the entity being represented by the logo. The <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_18">alt</a></code> attribute must <em>not</em> contain text like the word "logo", as it is not the fact that it is - a logo that is being conveyed, it's the entity itself.<p>If the logo is being used next to the name of the entity that + a logo that is being conveyed, it's the entity itself.</p> + + <p>If the logo is being used next to the name of the entity that it represents, then the logo is supplemental, and its <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_19">alt</a></code> attribute must instead be - empty.<p>If the logo is merely used as decorative material (as branding, + empty.</p> + + <p>If the logo is merely used as decorative material (as branding, or, for example, as a side image in an article that mentions the entity to which the logo belongs), then the entry below on purely decorative images applies. If the logo is actually being discussed, then it is being used as a phrase or paragraph (the description of the logo) with an alternative graphical representation (the logo itself), and the first entry above - applies.<div class="example"> + applies.</p> + + <div class="example"> <p>In the following snippets, all four of the above cases are present. First, we see a logo used to represent a company:</p> @@ -821,11 +960,20 @@ the text flows seamlessly into the surrounding text, as if the image had never been there in the first place.</p> - </div><h6 id="text-that-has-been-rendered-to-a-graphic-for-typographical-effect"><span class="secno">4.8.1.1.5 </span>Text that has been rendered to a graphic for typographical effect</h6><p>Sometimes, an image just consists of text, and the purpose of the + </div> + + + <h6 id="text-that-has-been-rendered-to-a-graphic-for-typographical-effect"><span class="secno">4.8.1.1.5 </span>Text that has been rendered to a graphic for typographical effect</h6> + + <p>Sometimes, an image just consists of text, and the purpose of the image is not to highlight the actual typographic effects used to - render the text, but just to convey the text itself.<p>In such cases, the <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_20">alt</a></code> + render the text, but just to convey the text itself.</p> + + <p>In such cases, the <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_20">alt</a></code> attribute must be present but must consist of the same text as - written in the image itself.<div class="example"> + written in the image itself.</p> + + <div class="example"> <p>Consider a graphic containing the text "Earth Day", but with the letters all decorated with flowers and plants. If the text is @@ -835,13 +983,23 @@ <pre><h1><strong><img src="earthdayheading.png" alt="Earth Day"></strong></h1></pre> - </div><h6 id="a-graphical-representation-of-some-of-the-surrounding-text"><span class="secno">4.8.1.1.6 </span>A graphical representation of some of the surrounding text</h6><p>In many cases, the image is actually just supplementary, and + </div> + + + + <h6 id="a-graphical-representation-of-some-of-the-surrounding-text"><span class="secno">4.8.1.1.6 </span>A graphical representation of some of the surrounding text</h6> + + <p>In many cases, the image is actually just supplementary, and its presence merely reinforces the surrounding text. In these cases, the <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_21">alt</a></code> attribute must be - present but its value must be the empty string.<p>In general, an image falls into this category if removing the + present but its value must be the empty string.</p> + + <p>In general, an image falls into this category if removing the image doesn't make the page any less useful, but including the image makes it a lot easier for users of visual browsers to - understand the concept.<div class="example"> + understand the concept.</p> + + <div class="example"> <p>A flowchart that repeats the previous paragraph in graphical form:</p> @@ -896,7 +1054,9 @@ alt="Flowchart representation of the parsing model."></p> <!-- Never put the image's caption in the alt="" attribute! --></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>A graph that repeats the previous paragraph in graphical form:</p> @@ -906,21 +1066,41 @@ Standards mode, and about 9% triggered the Standards mode.</p> <strong><p><img src="rendering-mode-pie-chart.png" alt=""></p></strong></pre> - </div><h6 id="a-purely-decorative-image-that-doesn-t-add-any-information"><span class="secno">4.8.1.1.7 </span>A purely decorative image that doesn't add any information</h6><p>If an image is decorative but isn't especially page-specific + </div> + + + + <h6 id="a-purely-decorative-image-that-doesn-t-add-any-information"><span class="secno">4.8.1.1.7 </span>A purely decorative image that doesn't add any information</h6> + + <p>If an image is decorative but isn't especially page-specific — for example an image that forms part of a site-wide design scheme — the image should be specified in the site's CSS, not - in the markup of the document.<p>Exceptions to this rule, in cases where CSS cannot be used to + in the markup of the document.</p> + + + <p>Exceptions to this rule, in cases where CSS cannot be used to display an entirely decorative image, are covered by the HTML5: Techniques for providing useful text alternatives. <a href="references.html#refsHTMLALTTECHS">[HTMLALTTECHS]</a> Authors are also encouraged to consult the Web Content Accessibility Guidelines 2.0 for more detailed information and acceptable - techniques. <a href="references.html#refsWCAG">[WCAG]</a><h6 id="a-group-of-images-that-form-a-single-larger-picture-with-no-links"><span class="secno">4.8.1.1.8 </span>A group of images that form a single larger picture with no links</h6><p>When a picture has been sliced into smaller image files that are + techniques. <a href="references.html#refsWCAG">[WCAG]</a></p> + + + + + + + <h6 id="a-group-of-images-that-form-a-single-larger-picture-with-no-links"><span class="secno">4.8.1.1.8 </span>A group of images that form a single larger picture with no links</h6> + + <p>When a picture has been sliced into smaller image files that are then displayed together to form the complete picture again, one of the images must have its <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_22">alt</a></code> attribute set as per the relevant rules that would be appropriate for the picture as a whole, and then all the remaining images must have their <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_23">alt</a></code> attribute set to - the empty string.<div class="example"> + the empty string.</p> + + <div class="example"> <p>In the following example, a picture representing a company logo for <span title="">XYZ Corp</span> has been split into two pieces, @@ -930,7 +1110,9 @@ <pre><h1><strong><img src="logo1.png" alt="XYZ Corp"><img src="logo2.png" alt=""></strong></h1></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>In the following example, a rating is shown as three filled stars and two empty stars. While the alternative text could have @@ -943,11 +1125,21 @@ ><img src="1" alt=""><img src="1" alt=""><img src="0" alt="" ><img src="0" alt=""></strong></meter></p></pre> - </div><h6 id="a-group-of-images-that-form-a-single-larger-picture-with-links"><span class="secno">4.8.1.1.9 </span>A group of images that form a single larger picture with links</h6><p>Generally, <a href="image-maps.html#image-map" id="image-map_1" title="image map">image maps</a> should be - used instead of slicing an image for links.<p>However, if an image is indeed sliced and any of the components + </div> + + + + <h6 id="a-group-of-images-that-form-a-single-larger-picture-with-links"><span class="secno">4.8.1.1.9 </span>A group of images that form a single larger picture with links</h6> + + <p>Generally, <a href="image-maps.html#image-map" id="image-map_1" title="image map">image maps</a> should be + used instead of slicing an image for links.</p> + + <p>However, if an image is indeed sliced and any of the components of the sliced picture are the sole contents of links, then one image per link must have alternative text in its <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_24">alt</a></code> attribute representing the purpose - of the link.<div class="example"> + of the link.</p> + + <div class="example"> <p>In the following example, a picture representing the flying spaghetti monster emblem, with each of the left noodly appendages @@ -961,11 +1153,21 @@ ><img src="fsm-middle.png" alt="" ><a href="?go=right"><img src="fsm-right.png" alt="Right side."></a></p></strong></pre> - </div><h6 id="a-key-part-of-the-content"><span class="secno">4.8.1.1.10 </span>A key part of the content</h6><p>In some cases, the image is a critical part of the + </div> + + + + <h6 id="a-key-part-of-the-content"><span class="secno">4.8.1.1.10 </span>A key part of the content</h6> + + <p>In some cases, the image is a critical part of the content. This could be the case, for instance, on a page that is part of a photo gallery. The image is the whole <em>point</em> of - the page containing it.<p>How to provide alternative text for an image that is a key part - of the content depends on the image's provenance.<dl><dt>The general case</dt> + the page containing it.</p> + + <p>How to provide alternative text for an image that is a key part + of the content depends on the image's provenance.</p> + + <dl><dt>The general case</dt> <dd> @@ -1221,10 +1423,29 @@ </dd> - </dl><h6 id="an-image-not-intended-for-the-user"><span class="secno">4.8.1.1.11 </span>An image not intended for the user</h6><p>Generally authors should avoid using <code><a href="#the-img-element" id="img_26">img</a></code> elements - for purposes other than showing images.<p>If an <code><a href="#the-img-element" id="img_27">img</a></code> element is being used for purposes other + </dl><h6 id="an-image-not-intended-for-the-user"><span class="secno">4.8.1.1.11 </span>An image not intended for the user</h6> + + <p>Generally authors should avoid using <code><a href="#the-img-element" id="img_26">img</a></code> elements + for purposes other than showing images.</p> + + <p>If an <code><a href="#the-img-element" id="img_27">img</a></code> element is being used for purposes other than showing an image, e.g. as part of a service to count page views, then the <code title="attr-img-alt"><a href="#attr-img-alt" id="alt_31">alt</a></code> attribute must - be the empty string.<p>In such cases, the <code title="attr-dim-width"><a href="dimension-attributes.html#attr-dim-width" id="width_5">width</a></code> and + be the empty string.</p> + + <p>In such cases, the <code title="attr-dim-width"><a href="dimension-attributes.html#attr-dim-width" id="width_5">width</a></code> and <code title="attr-dim-height"><a href="dimension-attributes.html#attr-dim-height" id="height_5">height</a></code> attributes should both - be set to zero. \ No newline at end of file + be set to zero.</p> + + + + + + + + + + + + + \ No newline at end of file Index: the-del-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-del-element.html,v retrieving revision 1.121 retrieving revision 1.122 diff -u -d -r1.121 -r1.122 --- the-del-element.html 15 Feb 2012 10:14:20 -0000 1.121 +++ the-del-element.html 13 Mar 2012 19:58:56 -0000 1.122 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-ins-element.html">← 4.7.1 The ins element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="attributes-common-to-ins-and-del-elements.html">4.7.3 Attributes common to ins and del elements →</a> </div> - <h4 id="the-del-element"><span class="secno">4.7.2 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>del</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_60" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-del-element"><span class="secno">4.7.2 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>del</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_60" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_98">Flow content</a>.</dd> <dd>When the element only contains <a href="content-models.html#phrasing-content" id="phrasing-content_109">phrasing content</a>: <a href="content-models.html#phrasing-content" id="phrasing-content_110">phrasing content</a>.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_60" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> @@ -365,7 +405,11 @@ <dt><a href="element-definitions.html#element-dfn-dom" id="element-dfn-dom_60" title="element-dfn-dom">DOM interface</a>:</dt> <dd>Uses the <code><a href="attributes-common-to-ins-and-del-elements.html#htmlmodelement" id="htmlmodelement_1">HTMLModElement</a></code> interface.</dd> </dl><p>The <code><a href="#the-del-element" id="del_11">del</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a removal - from the document.<p><code><a href="#the-del-element" id="del_12">del</a></code> elements should not cross <a href="content-models.html#paragraph" id="paragraph_14" title="paragraph">implied paragraph</a> boundaries.<div class="example"> + from the document.</p> + + <p><code><a href="#the-del-element" id="del_12">del</a></code> elements should not cross <a href="content-models.html#paragraph" id="paragraph_14" title="paragraph">implied paragraph</a> boundaries.</p> + + <div class="example"> <p>The following shows a "to do" list where items that have been done are crossed-off with the date and time of their @@ -379,4 +423,8 @@ <li>Buy a printer</li> </ul></pre> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: the-option-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-option-element.html,v retrieving revision 1.142 retrieving revision 1.143 diff -u -d -r1.142 -r1.143 --- the-option-element.html 21 Feb 2012 21:59:06 -0000 1.142 +++ the-option-element.html 13 Mar 2012 19:59:00 -0000 1.143 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-optgroup-element.html">← 4.10.11 The optgroup element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-textarea-element.html">4.10.13 The textarea element →</a> </div> - <h4 id="the-option-element"><span class="secno">4.10.12 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>option</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_92" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-option-element"><span class="secno">4.10.12 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>option</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_92" title="element-dfn-categories">Categories</a>:</dt> <dd>None.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_92" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>As a child of a <code><a href="the-select-element.html#the-select-element" id="select_38">select</a></code> element.</dd> @@ -385,28 +425,49 @@ </dd> </dl><p>The <code><a href="#the-option-element" id="option_24">option</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> an option in a <code><a href="the-select-element.html#the-select-element" id="select_39">select</a></code> element or as part of a list of suggestions - in a <code><a href="the-datalist-element.html#the-datalist-element" id="datalist_17">datalist</a></code> element.<p>In certain circumstances described in the definition of the + in a <code><a href="the-datalist-element.html#the-datalist-element" id="datalist_17">datalist</a></code> element.</p> + + <p>In certain circumstances described in the definition of the <code><a href="the-select-element.html#the-select-element" id="select_40">select</a></code> element, an <code><a href="#the-option-element" id="option_25">option</a></code> element can be a <code><a href="the-select-element.html#the-select-element" id="select_41">select</a></code> element's <a href="the-select-element.html#placeholder-label-option" id="placeholder-label-option_1">placeholder label option</a>. A <a href="the-select-element.html#placeholder-label-option" id="placeholder-label-option_2">placeholder label option</a> does not represent an actual option, but instead represents a label for the <code><a href="the-select-element.html#the-select-element" id="select_42">select</a></code> - control.<p>The <dfn aria-haspopup="true" id="attr-option-disabled" role="button" tabindex="0"><code>disabled</code></dfn> + control.</p> + + <p>The <dfn aria-haspopup="true" id="attr-option-disabled" role="button" tabindex="0"><code>disabled</code></dfn> attribute is a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_17">boolean attribute</a>. An <code><a href="#the-option-element" id="option_26">option</a></code> element is <dfn aria-haspopup="true" id="concept-option-disabled" role="button" tabindex="0">disabled</dfn> if its <code title="attr-option-disabled"><a href="#attr-option-disabled" id="disabled_7">disabled</a></code> attribute is present or if it is a child of an <code><a href="the-optgroup-element.html#the-optgroup-element" id="optgroup_8">optgroup</a></code> element whose <code title="attr-optgroup-disabled"><a href="the-optgroup-element.html#attr-optgroup-disabled" id="disabled_4">disabled</a></code> attribute is - present.<p>The <dfn aria-haspopup="true" id="attr-option-label" role="button" tabindex="0"><code>label</code></dfn> + present.</p> + + + + <p>The <dfn aria-haspopup="true" id="attr-option-label" role="button" tabindex="0"><code>label</code></dfn> attribute provides a label for element. The <dfn aria-haspopup="true" id="concept-option-label" role="button" tabindex="0">label</dfn> of an <code><a href="#the-option-element" id="option_27">option</a></code> element is the value of the <code title="attr-option-label"><a href="#attr-option-label" id="label_35">label</a></code> content attribute, if there - is one, or, if there is not, the value of the element's <code title="dom-option-text"><a href="#dom-option-text">text</a></code> IDL attribute.<p>The <dfn aria-haspopup="true" id="attr-option-value" role="button" tabindex="0"><code>value</code></dfn> + is one, or, if there is not, the value of the element's <code title="dom-option-text"><a href="#dom-option-text">text</a></code> IDL attribute.</p> + + <p>The <dfn aria-haspopup="true" id="attr-option-value" role="button" tabindex="0"><code>value</code></dfn> attribute provides a value for element. The <dfn aria-haspopup="true" id="concept-option-value" role="button" tabindex="0">value</dfn> of an <code><a href="#the-option-element" id="option_28">option</a></code> element is the value of the <code title="attr-option-value"><a href="#attr-option-value" id="value_37">value</a></code> content attribute, if there - is one, or, if there is not, the value of the element's <code title="dom-option-text"><a href="#dom-option-text">text</a></code> IDL attribute.<p>The <dfn aria-haspopup="true" id="attr-option-selected" role="button" tabindex="0"><code>selected</code></dfn> + is one, or, if there is not, the value of the element's <code title="dom-option-text"><a href="#dom-option-text">text</a></code> IDL attribute.</p> + + <p>The <dfn aria-haspopup="true" id="attr-option-selected" role="button" tabindex="0"><code>selected</code></dfn> attribute is a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_18">boolean attribute</a>. It represents the default <a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-option-element.html#concept-option-selectedness" title='Read about this "selectedness" reference in the full HTML5 spec.'>selectedness</a> of the - element.<p>A <code><a href="the-select-element.html#the-select-element" id="select_43">select</a></code> element whose <code title="attr-select-multiple"><a href="the-select-element.html#attr-select-multiple" id="multiple_36">multiple</a></code> attribute is not + element.</p> + + + + <p>A <code><a href="the-select-element.html#the-select-element" id="select_43">select</a></code> element whose <code title="attr-select-multiple"><a href="the-select-element.html#attr-select-multiple" id="multiple_36">multiple</a></code> attribute is not specified must not have more than one descendant <code><a href="#the-option-element" id="option_29">option</a></code> element with its <code title="attr-option-selected"><a href="#attr-option-selected" id="selected_1">selected</a></code> - attribute set.<dl class="domintro"><dt><var title="">option</var> . <code id="dom-option-selected" title="dom-option-selected"><a href="#dom-option-selected">selected</a></code></dt> + attribute set.</p> + + + + + <dl class="domintro"><dt><var title="">option</var> . <code id="dom-option-selected" title="dom-option-selected"><a href="#dom-option-selected">selected</a></code></dt> <dd> @@ -460,3 +521,9 @@ IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_75">reflect</a> the content attribute of the same name. The <dfn aria-haspopup="true" id="dom-option-defaultselected" role="button" tabindex="0"><code>defaultSelected</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_76">reflect</a> the <code title="attr-option-selected"><a href="#attr-option-selected" id="selected_3">selected</a></code> content attribute.</p> + + + + + + \ No newline at end of file Index: the-figcaption-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-figcaption-element.html,v retrieving revision 1.118 retrieving revision 1.119 diff -u -d -r1.118 -r1.119 --- the-figcaption-element.html 21 Feb 2012 21:59:04 -0000 1.118 +++ the-figcaption-element.html 13 Mar 2012 19:58:57 -0000 1.119 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-figure-element.html">← 4.5.11 The figure element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-div-element.html">4.5.13 The div element →</a> </div> - <h4 id="the-figcaption-element"><span class="secno">4.5.12 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>figcaption</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_30" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-figcaption-element"><span class="secno">4.5.12 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>figcaption</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_30" title="element-dfn-categories">Categories</a>:</dt> <dd>None.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_30" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>As the first or last child of a <code><a href="the-figure-element.html#the-figure-element" id="figure_10">figure</a></code> element.</dd> @@ -363,4 +403,8 @@ </dl><p>The <code><a href="#the-figcaption-element" id="figcaption_6">figcaption</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a caption or legend for the rest of the contents of the <code><a href="#the-figcaption-element" id="figcaption_7">figcaption</a></code> element's parent <code><a href="the-figure-element.html#the-figure-element" id="figure_11">figure</a></code> - element. \ No newline at end of file + element.</p> + + + + \ No newline at end of file Index: the-hr-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-hr-element.html,v retrieving revision 1.122 retrieving revision 1.123 diff -u -d -r1.122 -r1.123 --- the-hr-element.html 21 Feb 2012 21:59:05 -0000 1.122 +++ the-hr-element.html 13 Mar 2012 19:58:58 -0000 1.123 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-p-element.html">← 4.5.1 The p element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-pre-element.html">4.5.3 The pre element →</a> </div> - <h4 id="the-hr-element"><span class="secno">4.5.2 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>hr</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_20" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-hr-element"><span class="secno">4.5.2 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>hr</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_20" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_44">Flow content</a>.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_20" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>Where <a href="content-models.html#flow-content" id="flow-content_45">flow content</a> is expected.</dd> @@ -365,7 +405,9 @@ </dl><p>The <code><a href="#the-hr-element" id="hr_4">hr</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a <a href="content-models.html#paragraph" id="paragraph_9">paragraph</a>-level thematic break, e.g. a scene change in a story, or a transition to another topic within a section of a - reference book.<div class="example"> + reference book.</p> + + <div class="example"> <p>The following fictional extract from a project manual shows two sections that use the <code><a href="#the-hr-element" id="hr_5">hr</a></code> element to separate topics @@ -410,7 +452,9 @@ sections themselves, since the <code><a href="the-section-element.html#the-section-element" id="section_13">section</a></code> elements and the <code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h1_17">h1</a></code> elements imply thematic changes themselves.</p> - </div><div class="example"> + </div> + + <div class="example"> <p>The following extract from <cite>Pandora's Star</cite> by Peter F. Hamilton shows two paragraphs that precede a scene change and @@ -440,5 +484,10 @@ observatory in all weather and seasons, including the metre-deep snow of Gralmond's winters.</p></pre> - </div><p class="note">The <code><a href="#the-hr-element" id="hr_8">hr</a></code> element does not affect the - document's <a href="headings-and-sections.html#outline" id="outline_5">outline</a>. \ No newline at end of file + </div> + + <p class="note">The <code><a href="#the-hr-element" id="hr_8">hr</a></code> element does not affect the + document's <a href="headings-and-sections.html#outline" id="outline_5">outline</a>.</p> + + + \ No newline at end of file Index: the-summary-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-summary-element.html,v retrieving revision 1.116 retrieving revision 1.117 diff -u -d -r1.116 -r1.117 --- the-summary-element.html 21 Feb 2012 21:59:08 -0000 1.116 +++ the-summary-element.html 13 Mar 2012 19:59:01 -0000 1.117 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-details-element.html">← 4.11.1 The details element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-command-element.html">4.11.3 The command element →</a> </div> - <h4 id="the-summary-element"><span class="secno">4.11.2 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>summary</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_99" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-summary-element"><span class="secno">4.11.2 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>summary</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_99" title="element-dfn-categories">Categories</a>:</dt> <dd>None.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_99" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>As the first child of a <code><a href="the-details-element.html#the-details-element" id="details_13">details</a></code> element.</dd> @@ -363,4 +403,9 @@ </dl><p>The <code><a href="#the-summary-element" id="summary_3">summary</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a summary, caption, or legend for the rest of the contents of the <code><a href="#the-summary-element" id="summary_4">summary</a></code> element's parent <code><a href="the-details-element.html#the-details-element" id="details_14">details</a></code> - element. \ No newline at end of file + element.</p> + + + + + \ No newline at end of file Index: the-small-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-small-element.html,v retrieving revision 1.117 retrieving revision 1.118 diff -u -d -r1.117 -r1.118 --- the-small-element.html 21 Feb 2012 21:59:07 -0000 1.117 +++ the-small-element.html 13 Mar 2012 19:59:01 -0000 1.118 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-strong-element.html">← 4.6.3 The strong element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-s-element.html">4.6.5 The s element →</a> </div> - <h4 id="the-small-element"><span class="secno">4.6.4 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>small</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_35" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-small-element"><span class="secno">4.6.4 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>small</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_35" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_74">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_37">Phrasing content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_20">Palpable content</a>.</dd> @@ -363,19 +403,27 @@ <dt><a href="element-definitions.html#element-dfn-dom" id="element-dfn-dom_35" title="element-dfn-dom">DOM interface</a>:</dt> <dd>Uses <code><a href="elements.html#htmlelement" id="htmlelement_40">HTMLElement</a></code>.</dd> </dl><p>The <code><a href="#the-small-element" id="small_4">small</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> side - comments such as small print.<p class="note">Small print typically features disclaimers, caveats, + comments such as small print.</p> + + <p class="note">Small print typically features disclaimers, caveats, legal restrictions, or copyrights. Small print is also sometimes - used for attribution, or for satisfying licensing requirements.<p class="note">The <code><a href="#the-small-element" id="small_5">small</a></code> element does not + used for attribution, or for satisfying licensing requirements.</p> + + <p class="note">The <code><a href="#the-small-element" id="small_5">small</a></code> element does not "de-emphasize" or lower the importance of text emphasized by the <code><a href="the-em-element.html#the-em-element" id="em_7">em</a></code> element or marked as important with the <code><a href="the-strong-element.html#the-strong-element" id="strong_8">strong</a></code> element. To mark text as not emphasized or important, simply do not mark it up with the <code><a href="the-em-element.html#the-em-element" id="em_8">em</a></code> or - <code><a href="the-strong-element.html#the-strong-element" id="strong_9">strong</a></code> elements respectively.<p>The <code><a href="#the-small-element" id="small_6">small</a></code> element should not be used for extended + <code><a href="the-strong-element.html#the-strong-element" id="strong_9">strong</a></code> elements respectively.</p> + + <p>The <code><a href="#the-small-element" id="small_6">small</a></code> element should not be used for extended spans of text, such as multiple paragraphs, lists, or sections of text. It is only intended for short runs of text. The text of a page listing terms of use, for instance, would not be a suitable candidate for the <code><a href="#the-small-element" id="small_7">small</a></code> element: in such a case, the - text is not a side comment, it is the main content of the page.<div class="example"> + text is not a side comment, it is the main content of the page.</p> + + <div class="example"> <p>In this example, the <code><a href="#the-small-element" id="small_8">small</a></code> element is used to indicate that value-added tax is not included in a price of a hotel @@ -388,7 +436,9 @@ <dd>239 € <small>breakfast included, VAT not included</small> </dl></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>In this second example, the <code><a href="#the-small-element" id="small_9">small</a></code> element is used for a side comment in an article.</p> @@ -415,11 +465,16 @@ page.</small></p> </aside></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>In this last example, the <code><a href="#the-small-element" id="small_10">small</a></code> element is marked as being <em>important</em> small print.</p> <pre><p><strong><small>Continued use of this service will result in a kiss.</small></strong></p></pre> - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: the-kbd-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-kbd-element.html,v retrieving revision 1.117 retrieving revision 1.118 diff -u -d -r1.117 -r1.118 --- the-kbd-element.html 21 Feb 2012 21:59:05 -0000 1.117 +++ the-kbd-element.html 13 Mar 2012 19:58:59 -0000 1.118 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-samp-element.html">← 4.6.13 The samp element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-sub-and-sup-elements.html">4.6.15 The sub and sup elements →</a> </div> - <h4 id="the-kbd-element"><span class="secno">4.6.14 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>kbd</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_45" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-kbd-element"><span class="secno">4.6.14 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>kbd</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_45" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_84">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_68">Phrasing content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_30">Palpable content</a>.</dd> @@ -364,13 +404,21 @@ <dd>Uses <code><a href="elements.html#htmlelement" id="htmlelement_49">HTMLElement</a></code>.</dd> </dl><p>The <code><a href="#the-kbd-element" id="kbd_8">kbd</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> user input (typically keyboard input, although it may also be used to represent - other input, such as voice commands).<p>When the <code><a href="#the-kbd-element" id="kbd_9">kbd</a></code> element is nested inside a + other input, such as voice commands).</p> + + <p>When the <code><a href="#the-kbd-element" id="kbd_9">kbd</a></code> element is nested inside a <code><a href="the-samp-element.html#the-samp-element" id="samp_8">samp</a></code> element, it represents the input as it was echoed - by the system.<p>When the <code><a href="#the-kbd-element" id="kbd_10">kbd</a></code> element <em>contains</em> a + by the system.</p> + + <p>When the <code><a href="#the-kbd-element" id="kbd_10">kbd</a></code> element <em>contains</em> a <code><a href="the-samp-element.html#the-samp-element" id="samp_9">samp</a></code> element, it represents input based on system - output, for example invoking a menu item.<p>When the <code><a href="#the-kbd-element" id="kbd_11">kbd</a></code> element is nested inside another + output, for example invoking a menu item.</p> + + <p>When the <code><a href="#the-kbd-element" id="kbd_11">kbd</a></code> element is nested inside another <code><a href="#the-kbd-element" id="kbd_12">kbd</a></code> element, it represents an actual key or other - single unit of input as appropriate for the input mechanism.<div class="example"> + single unit of input as appropriate for the input mechanism.</p> + + <div class="example"> <p>Here the <code><a href="#the-kbd-element" id="kbd_13">kbd</a></code> element is used to indicate keys to press:</p> <pre><p>To make George eat an apple, press <kbd><kbd>Shift</kbd>+<kbd>F3</kbd></kbd></p></pre> @@ -389,4 +437,7 @@ <pre><p>To make George eat an apple, select <kbd>File | Eat Apple...</kbd></p></pre> - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: Overview.html =================================================================== RCS file: /sources/public/html5/spec-author-view/Overview.html,v retrieving revision 1.1753 retrieving revision 1.1754 diff -u -d -r1.1753 -r1.1754 --- Overview.html 7 Mar 2012 01:01:13 -0000 1.1753 +++ Overview.html 13 Mar 2012 19:58:34 -0000 1.1754 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -341,8 +377,10 @@ <h1>HTML5: Edition for Web Authors</h1> - <h2 class="no-num no-toc" id="editor-s-draft-7-march-2012">Editor's Draft 7 March 2012</h2> - <dl><dt>Latest Published Version:</dt> + <h2 class="no-num no-toc" id="w3c-working-draft-15-april-2012">W3C Working Draft 15 April 2012</h2> + <dl><dt>This Version:</dt> + <dd><a href="http://www.w3.org/TR/2012/WD-html5-20120315/">http://www.w3.org/TR/2012/WD-html5-20120315/</a></dd> + <dt>Latest Published Version:</dt> <dd><a href="http://www.w3.org/TR/html5-author/">http://www.w3.org/TR/html5-author/</a></dd> <dt>Latest Editor's Draft:</dt> <dd><a href="http://dev.w3.org/html5/spec-author-view/">http://dev.w3.org/html5/spec-author-view/</a></dd> @@ -364,7 +402,7 @@ <dt>Editor:</dt> <dd><a href="mailto:ian@hixie.ch">Ian Hickson</a>, Google, Inc.</dd> </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>, <a href="http://dev.w3.org/html5/spec/">full specification</a>. - This is revision 1.5607.</p> + This is revision 1.5608.</p> <p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notice#Copyright">Copyright</a> © 2011 <a href="http://www.w3.org/"><abbr title="World Wide Web Consortium">W3C</abbr></a><sup>®</sup> (<a href="http://www.csail.mit.edu/"><abbr title="Massachusetts @@ -383,7 +421,9 @@ <!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --> - </div><hr class="top"><h2 class="no-num no-toc" id="abstract">Abstract</h2><p>This document is a strict subset of + </div> + + <hr class="top"><h2 class="no-num no-toc" id="abstract">Abstract</h2><p>This document is a strict subset of the <a href="http://dev.w3.org/html5/spec/">full HTML5 specification</a> that omits user-agent (UA) implementation details. It is @@ -401,17 +441,32 @@ bug in the redaction process and the unredacted full HTML specification takes precedence. Readers are encouraged to report such discrepancies as bugs in the bug tracking system of the HTML Working - Group.<h2 class="no-num no-toc" id="status-of-this-document">Status of This document</h2><p><em>This section describes the status of this document at the + Group.</p> + + + + <h2 class="no-num no-toc" id="status-of-this-document">Status of This document</h2> + + + + <p><em>This section describes the status of this document at the time of its publication. Other documents may supersede this document. A list of current W3C publications and the most recently formally published <!-- DO NOT CHANGE THIS BACK TO THE STANDARD BOILERPLATE, AS IT IS INACCURATE --> revision of this technical report can be found in the <a href="http://www.w3.org/TR/">W3C technical reports index</a> at - http://www.w3.org/TR/.</em><p>If you wish to make comments regarding this document in a manner + http://www.w3.org/TR/.</em></p> + + + + + <p>If you wish to make comments regarding this document in a manner that is tracked by the W3C, please submit them via using <a href="http://www.w3.org/Bugs/Public/enter_bug.cgi?product=HTML%20WG">our public bug database</a>. If you do not have an account then you can - enter feedback using this form:<form action="http://www.whatwg.org/specs/web-apps/current-work/file-spam.cgi" method="post"> + enter feedback using this form:</p> + + <form action="http://www.whatwg.org/specs/web-apps/current-work/file-spam.cgi" method="post"> <fieldset><legend>Feedback Comments</legend> <input name="id" type="hidden" value="top"><input name="component" type="hidden" value="HTML5 spec (editor: Ian Hickson)"><input name="response" type="hidden" value="html"><p><label for="feedbackBox">Please enter your feedback, carefully indicating the title of the section for which you are submitting @@ -462,7 +517,10 @@ </script><p> <input onclick="return checkFeedbackForm(form)" type="submit" value="Submit feedback"><small>(Note: Your IP address and user agent will be publicly recorded for spam prevention purposes.)</small> </p> - </fieldset></form><p>If you cannot do this then you can also e-mail feedback to <a href="mailto:public-html-comments@w3.org">public-html-comments@w3.org</a> + </fieldset></form> + + + <p>If you cannot do this then you can also e-mail feedback to <a href="mailto:public-html-comments@w3.org">public-html-comments@w3.org</a> (<a href="mailto:public-html-comments-request@w3.org?subject=subscribe">subscribe</a>, <a href="http://lists.w3.org/Archives/Public/public-html-comments/">archives</a>), and arrangements will be made to transpose the comments to our @@ -476,35 +534,100 @@ formal feedback for the W3C process. <!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING SENTENCE TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --> - All feedback is welcome.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><p>The working groups maintains <a href="http://www.w3.org/Bugs/Public/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&status_whiteboard_type=allwordssubstr&status_whiteboard=&keywords_type=allwords&keywords=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&emailassigned_to1=1&emailtype1=exact&email1=ian%40hixie.ch&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0=">a + All feedback is welcome.</p> + + <!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --> + <p>The working groups maintains <a href="http://www.w3.org/Bugs/Public/buglist.cgi?query_format=advanced&short_desc_type=allwordssubstr&short_desc=&long_desc_type=allwordssubstr&long_desc=&bug_file_loc_type=allwordssubstr&bug_file_loc=&status_whiteboard_type=allwordssubstr&status_whiteboard=&keywords_type=allwords&keywords=&bug_status=UNCONFIRMED&bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&emailassigned_to1=1&emailtype1=exact&email1=ian%40hixie.ch&emailtype2=substring&email2=&bugidtype=include&bug_id=&votes=&chfieldfrom=&chfieldto=Now&chfieldvalue=&cmdtype=doit&order=Reuse+same+sort+as+last+time&field0-0-0=noop&type0-0-0=noop&value0-0-0=">a list of all bug reports that the editor has not yet tried to address</a> and <a href="http://www.w3.org/html/wg/tracker/products/1">a list of issues for which the chairs have not yet declared a decision</a>. The editor also maintains <a href="http://www.whatwg.org/issues/">a list of all e-mails that he has not yet tried to address</a>. These bugs, issues, and e-mails apply to multiple HTML-related specifications, - not just this one.</p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><p>Implementors should be aware that this specification is not + not just this one.</p> + <!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --> + + + + <p>Implementors should be aware that this specification is not stable. <strong>Implementors who are not taking part in the discussions are likely to find the specification changing out from under them in incompatible ways.</strong> Vendors interested in implementing this specification before it eventually reaches the Candidate Recommendation stage should join the aforementioned - mailing lists and take part in the discussions.<div id="multipage-common"> - </div><p>The publication of this document by the W3C as a W3C Working + mailing lists and take part in the discussions.</p> + + + <div id="multipage-common"> + + + + +<script type="text/javascript"> + function getCookie(name) { + var params = location.search.substr(1).split("&"); + for (var index = 0; index < params.length; index++) { + if (params[index] == name) + return "1"; + var data = params[index].split("="); + if (data[0] == name) + return unescape(data[1]); + } + var cookies = document.cookie.split("; "); + for (var index = 0; index < cookies.length; index++) { + var data = cookies[index].split("="); + if (data[0] == name) + return unescape(data[1]); + } + return null; + } + function load(script) { + var e = document.createElement('script'); + e.setAttribute('src', script + '?' + encodeURIComponent(location) + '&' + encodeURIComponent(document.referrer)); + document.body.appendChild(e); + } + function init() { + if (location.search == '?slow-browser') + return; + var configUI = document.createElement('div'); + configUI.id = 'configUI'; + document.body.appendChild(configUI); + if (document.getElementById('head')) + load('toc.js'); + load('dfn.js'); + if (getCookie('profile') == '1') + document.getElementsByTagName('h2')[0].textContent += '; load: ' + (new Date() - loadTimer) + 'ms'; + fixBrokenLink(); + } +</script></div> + + + + <p>The publication of this document by the W3C as a W3C Working Draft does not imply that all of the participants in the W3C HTML working group endorse the contents of the specification. Indeed, for any section of the specification, one can usually find many members of the working group or of the W3C as a whole who object strongly to the current text, the existence of the section at all, or the idea that the working group should even spend time discussing the concept - of that section.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><p>The latest stable version of the editor's draft of this + of that section.</p> + + + <!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --> + + <p>The latest stable version of the editor's draft of this specification is always available on <a href="http://dev.w3.org/html5/">the W3C CVS server</a> and in the <a href="http://svn.whatwg.org/webapps/">WHATWG Subversion repository</a>. The <a href="http://www.whatwg.org/specs/web-apps/current-work/complete.html">latest editor's working copy</a> (which may contain unfinished text in the process of being prepared) contains the latest draft text of this specification (amongst others). For more details, please see the <a href="http://wiki.whatwg.org/wiki/FAQ#What_are_the_various_versions_of_the_spec.3F">WHATWG - FAQ</a>.</p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING LIST TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><p>There are various ways to follow the change history for the - HTML specifications:<dl><dt>E-mail notifications of changes</dt> + FAQ</a>.</p> + <!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --> + + <!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING LIST TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --> + <p>There are various ways to follow the change history for the + HTML specifications:</p> + <dl><dt>E-mail notifications of changes</dt> <dd>HTML-Diffs mailing list (diff-marked HTML versions for each change): <a href="http://lists.w3.org/Archives/Public/public-html-diffs/latest">http://lists.w3.org/Archives/Public/public-html-diffs/latest</a></dd> <dd>Commit-Watchers mailing list (complete source diffs): <a href="http://lists.whatwg.org/listinfo.cgi/commit-watchers-whatwg.org">http://lists.whatwg.org/listinfo.cgi/commit-watchers-whatwg.org</a></dd> <dt>Browsable version-control record of all changes:</dt> @@ -515,17 +638,34 @@ Group</a> is the W3C working group responsible for this specification's progress along the W3C Recommendation track. - This specification is the 7 March 2012 Editor's Draft. - </p><!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><p>Work on this specification is also done at the <a href="http://www.whatwg.org/">WHATWG</a>. The W3C HTML working group + This specification is the 15 April 2012 Working Draft. + </p> + + + <!-- UNDER NO CIRCUMSTANCES IS THE PRECEDING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --> + + <p>Work on this specification is also done at the <a href="http://www.whatwg.org/">WHATWG</a>. The W3C HTML working group actively pursues convergence with the WHATWG, as required by the <a href="http://www.w3.org/2007/03/HTML-WG-charter">W3C HTML working - group charter</a>.</p><!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --><p>This document was produced by a group operating under the <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5 + group charter</a>.</p> + <!-- UNDER NO CIRCUMSTANCES IS THE FOLLOWING PARAGRAPH TO BE REMOVED OR EDITED WITHOUT TALKING TO IAN FIRST --> + + + + + <p>This document was produced by a group operating under the <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/">5 February 2004 W3C Patent Policy</a>. W3C maintains a <a href="http://www.w3.org/2004/01/pp-impl/40318/status" rel="disclosure">public list of any patent disclosures</a> made in connection with the deliverables of the group; that page also includes instructions for disclosing a patent. An individual who has actual knowledge of a patent which the individual believes contains <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/#def-essential">Essential Claim(s)</a> must disclose the information in accordance with <a href="http://www.w3.org/Consortium/Patent-Policy-20040205/#sec-Disclosure">section - 6 of the W3C Patent Policy</a>.<h2 class="no-num no-toc" id="contents">Table of Contents</h2> + 6 of the W3C Patent Policy</a>.</p> + + + <h2 class="no-num no-toc" id="contents">Table of Contents</h2> + + + <!--begin-toc--> <ol class="toc"><li><a href="introduction.html#introduction"><span class="secno">1 </span>Introduction</a> <ol><li><a href="introduction.html#background"><span class="secno">1.1 </span>Background</a></li> Index: fragment-links-full.js =================================================================== RCS file: /sources/public/html5/spec-author-view/fragment-links-full.js,v retrieving revision 1.142 retrieving revision 1.143 diff -u -d -r1.142 -r1.143 --- fragment-links-full.js 2 Mar 2012 23:58:22 -0000 1.142 +++ fragment-links-full.js 13 Mar 2012 19:58:39 -0000 1.143 @@ -1,4 +1,4 @@ -var fragment_links = { 'ix-handler-ondrag':'section-index','dom-media-defaultmuted':'media-elements','htmlcommandelement':'the-command-element','dom-texttrackcuelist-length':'media-elements','dom-source-media':'the-source-element','e-mail-state-type-email':'states-of-the-type-attribute','command-facet-type':'commands','dom-texttrack-label':'media-elements','concept-slots':'attributes-common-to-td-and-th-elements','dom-command-icon':'the-command-element','valid-non-negative-integer':'common-microsyntaxes','ix-handler-window-onafterprint':'section-index','dom-command-ro-commandchecked':'commands','entity-ring':'named-character-references','the-after-head-insertion-mode':'tree-construction','create-a-script':'webappapis','the-br-element':'the-br-element','ix-handler-onreset':'section-index','ix-handler-window-onscroll':'section-index','entity-straightepsilon':'named-character-references','concept-facet':'commands','attr-script-async':'the-script-element','entity-target':'named-character-references','ix-handle-ondblclick':'section-index','entity-Cfr':'named-character-references','entity-THORN-legacy':'named-character-references','script-nesting-level':'parsing','entity-ncedil':'named-character-references','dom-table-deletetfoot':'the-table-element','entity-NotLessLess':'named-character-references','dom-tdth-abbr':'obsolete','the-maxlength-attribute':'common-input-element-attributes','focusing-steps':'editing','handler-mediacontroller-onloadeddata':'media-elements','entity-DownTeeArrow':'named-character-references','entity-Ecirc-legacy':'named-character-references','attr-button-type':'the-button-element','found-another-audio-track':'media-elements','entity-curarrm':'named-character-references','custom-handlers':'system-state-and-capabilities','the-navigator-object':'system-state-and-capabilities','attr-textarea-wrap-soft':'the-textarea-element','the-h3-element':'the-h1-h2-h3-h4-h5-and-h6-elements','concept-fe-disabled':'attributes-common-to-form-controls','entity-RightUpDownVector':'named-character-references','dm-object-border':'obsolete','effective-media-volume':'media-elements','entity-Oacute':'named-character-references','dom-texttrack-activecues':'media-elements','htmltitleelement':'the-title-element','entity-nGtv':'named-character-references','concept-spellcheck-default-inherit':'editing-apis','entity-expectation':'named-character-references','prepare-a-script':'the-script-element','entity-lAarr':'named-character-references','dom-tbody-valign':'obsolete','entity-naturals':'named-character-references','dom-videotrack-kind':'media-elements','dom-node-namespaceuri':'infrastructure','dom-dropzone':'dnd','dom-tbody-rows':'the-tbody-element','dom-video-videoheight':'the-video-element','handler-onseeking':'webappapis','entity-mdash':'named-character-references','entity-bernou':'named-character-references','entity-leftharpoonup':'named-character-references','strike':'obsolete','assigned-access-key':'editing','event-handler-event-type':'webappapis','entity-sup1-legacy':'named-character-references','scroll-an-element-ito-view':'infrastructure','dom-area-alt':'the-area-element','html-fragment-serialization-algorithm':'the-end','the-menu-bar-barprop-object':'browsers','concept-submit-button':'forms','dom-accesskey':'editing','entity-lesdot':'named-character-references','rules-for-constructing-the-chapter-tree-from-a-text-track':'media-elements','entity-nsime':'named-character-references','dom-image':'the-img-element','rawtext-less-than-sign-state':'tokenization','rawtext-state':'tokenization','ix-handler-onmousemove':'section-index','value-track-kind-description':'media-elements','htmltrackelement':'the-track-element','dom-marquee-scrolldelay':'obsolete','handler-onvolumechange':'webappapis','syntax-comments':'syntax','dom-body-vlink':'obsolete','attr-pre-width':'obsolete','entity-ocirc-legacy':'named-character-references','event-mediacontroller-playing':'media-elements','timers':'timers','the-div-element':'the-div-element','entity-larrsim':'named-character-references','dom-meter-max':'the-meter-element','entity-boxvr':'naed-character-references','media-element-event-task-source':'media-elements','entity-boxvl':'named-character-references','entity-boxvh':'named-character-references','entity-boxvR':'named-character-references','attr-input-alt':'states-of-the-type-attribute','entity-nhpar':'named-character-references','entity-emsp':'named-character-references','writing-a-form-s-user-interface':'forms','entity-semi':'named-character-references','entity-afr':'named-character-references','history-0':'history','history-1':'introduction','entity-boxvL':'named-character-references','entity-pscr':'named-character-references','entity-boxvH':'named-character-references','entity-trie':'named-character-references','refsPAGEVIS':'references','entity-uparrow':'named-character-references','attr-textarea-cols':'the-textarea-element','dom-script-defer':'the-script-element','htmldetailselement':'the-details-element','represents':'rendering','entity-imped':'named-character-references','entity-QUOT-legacy':'named-character-references','url-hostprt':'urls','entity-lHar':'named-character-references','handler-mediacontroller-oncanplay':'media-elements','fire-a-click-event':'webappapis','dom-img-naturalwidth':'the-img-element','dom-texttrack-kind-metadata':'media-elements','entity-supdsub':'named-character-references','concept-form-submit':'form-submission','nearest-activatable-element':'content-models','entity-searr':'named-character-references','rb':'obsolete','standard-metadata-names':'the-meta-element','handler-appcache-onerror':'offline','attr-meta-http-equiv-default-style':'the-meta-element','entity-par':'named-character-references','entity-wedbar':'named-character-references','entity-Lmidot':'named-character-references','attr-ol-type-keyword-decimal':'the-ol-element','texttrackcuelist':'media-elements','renderingUA':'infrastructure','object-plugin':'the-object-element','entity-lmoust':'named-character-references','valid-e-mail-address-list':'states-of-the-type-attribute','r1':'the-table-element','r2':'the-table-element','dom-texttrackcue-endtim':'media-elements','value-track-kind-translation':'media-elements','entity-ENG':'named-character-references','the-drag-data-item-kind':'dnd','entity-bigotimes':'named-character-references','entity-sscr':'named-character-references','entity-NotGreaterSlantEqual':'named-character-references','invalidstateerror':'infrastructure','dom-area-hash':'the-area-element','attr-embed-vspace':'obsolete','entity-Bcy':'named-character-references','link-type-author':'links','concept-textarea-mutable':'the-textarea-element','active-flag-was-set-when-the-script-started':'media-elements','dom-img-vspace':'obsolete','discard-a-document':'browsers','textarea-effective-height':'rendering','html-fragment-parsing-algorithm':'the-end','entity-seArr':'named-character-references','entity-lArr':'named-character-references','entity-rarrbfs':'named-character-references','table-example-1':'examples','dynamic-markup-insertion':'dynamic-markup-insertion','dynamic-nested-browsing-context-properties':'browsers','entity-lobrk':'named-characte-references','entity-rightsquigarrow':'named-character-references','top-level-browsing-context':'browsers','simple-color':'common-microsyntaxes','entity-bbrk':'named-character-references','attr-table-cellspacing':'obsolete','entity-colon':'named-character-references','entity-Ugrave':'named-character-references','dom-tdth-valign':'obsolete','entity-Mfr':'named-character-references','dom-ol-reversed':'the-ol-element','dom-meta-name':'the-meta-element','entity-LeftUpTeeVector':'named-character-references','algorithm-for-assigning-header-cells':'attributes-common-to-td-and-th-elements','dom-texttrack-kind-subtitles':'media-elements','dom-table-tbodies':'the-table-element','ix-handler-ondragend':'section-index','entity-Agrave-legacy':'named-character-references','valid-yearless-date-string':'common-microsyntaxes','entity-gesles':'named-character-references','entity-NotElement':'named-character-references','dom-htmloptionscollection-length':'common-dom-interfaces','dom-media-preload':'media-elements','concept-nod-clone-ext':'infrastructure','entity-sung':'named-character-references','handler-onplaying':'webappapis','entity-bcy':'named-character-references','attr-contextmenu':'the-menu-element','entity-thkap':'named-character-references','cookie-free-document-object':'dom','url-path':'urls','domtokenlist':'infrastructure','parsed-as-a-css-color-value':'infrastructure','dom-marquee-behavior':'obsolete','entity-disin':'named-character-references','dom-validitystate-typemismatch':'constraints','preferred-mime-name':'infrastructure','attr-th-scope-colgroup':'the-th-element','entity-tcedil':'named-character-references','entity-Vcy':'named-character-references','entity-ldquo':'named-character-references','entity-map':'named-character-references','selector-invalid':'links','entity-apacir':'named-character-references','dom-datatransfer-files':'dnd','refsDOMCORE':'references','kinds-of-content':'content-models','the-td-element':'the-td-element','entity-ctdot':'named-character-references','the-input-element-as-a-button':'rendring','entity-pointint':'named-character-references','creating-scripts':'webappapis','entity-Gcirc':'named-character-references','marquee-scroll-interval':'obsolete','button-state-type-button':'states-of-the-type-attribute','entity-Eopf':'named-character-references','ix-handler-onwaiting':'section-index','entity-aring-legacy':'named-character-references','entity-boxdL':'named-character-references','entity-OpenCurlyDoubleQuote':'named-character-references','entity-LeftTriangleBar':'named-character-references','attr-command-type-keyword-checkbox':'the-command-element','dom-domstringmap-nameditem':'common-dom-interfaces','entity-Xi':'named-character-references','proto-url':'system-state-and-capabilities','dom-dl-compact':'obsolete','table-model-error':'attributes-common-to-td-and-th-elements','entity-cacute':'named-character-references','img-error':'the-img-element','ix-handler-onscroll':'section-index','entity-eqvparsl':'named-character-references','media-elements':'media-elements','entity-dHar':'named-characer-references','ignore-destructive-writes-counter':'dynamic-markup-insertion','dom-tbody-insertrow':'the-tbody-element','best-practices-for-in-page-editors':'editing','after-attribute-value-quoted-state':'tokenization','radio-button-group':'states-of-the-type-attribute','dom-style-scoped':'the-style-element','htmlheadelement':'the-head-element','sandboxPluginApplet':'obsolete','entity-odblac':'named-character-references','refsRFC2397':'references','unicode-serialization-of-an-origin':'origin-0','entity-Ntilde-legacy':'named-character-references','refsHPAAIG':'references','handler-onpause':'webappapis','refsRFC3629':'references','attribute-value-double-quoted-state':'tokenization','non-scripted':'infrastructure','concept-input-step-default':'common-input-element-attributes','entity-epsiv':'named-character-references','link-type-tag':'links','generic-raw-text-element-parsing-algorithm':'tree-construction','ix-handler-window-onblur':'section-index','attr-ol-type-keyword-upper-roman':'the-ol-element','traverse-he-history':'history','dom-input-alt':'the-input-element','concept-progress-value':'the-progress-element','entity-darr':'named-character-references','entity-NotSucceedsEqual':'named-character-references','entity-sfr':'named-character-references','entity-lesges':'named-character-references','hashchangeevent':'history','htmlbrelement':'the-br-element','entity-xscr':'named-character-references','script-data-escaped-state':'tokenization','attr-fe-maxlength':'attributes-common-to-form-controls','handler-onprogress':'webappapis','entity-lozf':'named-character-references','entity-timesbar':'named-character-references','white_space':'common-microsyntaxes','handler-onchange':'webappapis','about:srcdoc':'urls','entity-rbrkslu':'named-character-references','entity-rbrksld':'named-character-references','attr-tr-charoff':'obsolete','dom-img-name':'obsolete','garbage-collection':'common-dom-interfaces','the-address-element':'the-address-element','entity-Ocy':'named-character-references','dom-uda-hash':'urls','collections:'infrastructure','unordered-set-of-unique-space-separated-tokens':'common-microsyntaxes','refsHTMLALTTECHS':'references','dom-textarea-input-setselectionrange':'textFieldSelection','entity-ntrianglelefteq':'named-character-references','valid-date-string-with-optional-time':'common-microsyntaxes','event-media-loadeddata':'media-elements','dom-table-frame':'obsolete','refsWEBVTT':'references','dom-validitystate-toolong':'constraints','entity-lessapprox':'named-character-references','the-marquee-element-0':'rendering','refsRFC4329':'references','entity-updownarrow':'named-character-references','dom-beforeunloadevent-returnvalue':'history','dom-iframe-name':'the-iframe-element','entity-nsupseteqq':'named-character-references','entity-Auml-legacy':'named-character-references','head-element-pointer':'parsing','entity-plusmn':'named-character-references','manually-releasing-the-storage-mutex':'system-state-and-capabilities','valid-local-date-and-time-string':'common-microsyntaxes','fire-loadeddata':'media-element','refsATAG':'references','attr-area-shape-keyword-rectangle':'the-area-element','dom-select-selectedindex':'the-select-element','syntax-start-tag':'syntax','tag-clouds':'links','entity-isinv':'named-character-references','event-media-seeking':'media-elements','dom-mediacontroller-buffered':'media-elements','dom-select-required':'the-select-element','entity-VerticalLine':'named-character-references','creator-document':'browsers','interactions-with-xpath-and-xslt':'interactions-with-xpath-and-xslt','entity-rsqb':'named-character-references','shows-caching-progress':'offline','dom-domstringmap-additem':'common-dom-interfaces','dom-menu-compact':'obsolete','dom-script-htmlfor':'obsolete','entity-multimap':'named-character-references','attr-track-srclang':'the-track-element','dom-track-label':'the-track-element','remove-an-element-from-a-document':'infrastructure','dom-texttrack-showing':'media-elements','the-readonly-attribute':'common-input-element-attributes','htmlscriptelement':'the-script-element','unquote':'syntax','entity-RightUpVectorBar':'named-character-references','dom-frame-scrolling':'obsolete','entity-boxV':'named-character-references','entity-curlyeqsucc':'named-character-references','entity-bnequiv':'named-character-references','entity-lsqb':'named-character-references','attr-area-nohref':'obsolete','loading-xml-documents':'dom','entity-subne':'named-character-references','dom-videotrack-selected':'media-elements','entity-boxH':'named-character-references','entity-boxv':'named-character-references','dom-fs-novalidate':'attributes-common-to-form-controls','entity-eDDot':'named-character-references','limited-to-numbers-greater-than-zero':'common-dom-interfaces','entity-icirc-legacy':'named-character-references','handling-first-frame-available':'media-elements','attr-crossorigin-none':'urls','entity-subnE':'named-character-references','entity-yscr':'named-character-references','entity-boxh':'named-character-references','concept-bc-noscript':'webappapis','frameset':'obsolete','ix-handler-onended':'secion-index','attr-media-preload-auto':'media-elements','adjust-mathml-attributes':'tree-construction','entity-mDDot':'named-character-references','ix-handler-window-onstorage':'section-index','entity-DiacriticalAcute':'named-character-references','text-track-loading':'media-elements','entity-NotTildeFullEqual':'named-character-references','parsing-xhtml-fragments':'the-xhtml-syntax','attr-select-size':'the-select-element','entity-ltrPar':'named-character-references','dom-input-usemap':'obsolete','text-track-cue-text':'media-elements','the-location-interface':'history','attr-q-cite':'the-q-element','dom-link-media':'the-link-element','willful-violation':'introduction','script-created-parser':'dynamic-markup-insertion','entity-bigcup':'named-character-references','editing-0':'editing','dom-mediaerror-media_err_decode':'media-elements','dom-applet-hspace':'obsolete','data-protocol':'infrastructure','ix-handler-onplaying':'section-index','html-namespace':'infrastructure','entity-ccedil-legacy':'named-character-rferences','entity-xrArr':'named-character-references','ix-handler-window-onunload':'section-index','attr-caption-align':'obsolete','concept-appcache-onlinewhitelist':'offline','entity-zwnj':'named-character-references','preprocessing-the-input-stream':'parsing','sequential-link-types':'links','dom-dim-width':'dimension-attributes','dom-table-insertrow':'the-table-element','concept-n-noscript':'webappapis','entity-compfn':'named-character-references','reset-the-insertion-mode-appropriately':'parsing','event-handlers-on-elements-document-objects-and-window-objects':'webappapis','float-nan':'infrastructure','beforeunloadevent':'history','authors-using-xhtml':'iana','entity-cedil-legacy':'named-character-references','entity-lcy':'named-character-references','script-data-escape-start-state':'tokenization','event-definitions-0':'history','conformance-checkers':'infrastructure','entity-Cacute':'named-character-references','input-type-attr-summary':'the-input-element','event-media-playing':'media-elements','dom-buton-value':'the-button-element','secondary-browsing-contexts':'browsers','attr-tr-bgcolor':'obsolete','end-tags':'syntax','entity-NotTildeTilde':'named-character-references','durationChange':'media-elements','concept-button':'forms','entity-nsupe':'named-character-references','refsECMA262':'references','entity-mcy':'named-character-references','entity-Tcedil':'named-character-references','entity-not-legacy':'named-character-references','entity-nsupE':'named-character-references','entity-gesl':'named-character-references','entity-cir':'named-character-references','dom-datatransferitemlist-removeitem':'dnd','htmlparagraphelement':'the-p-element','dom-document':'infrastructure','functionstringcallback':'dnd','entity-awconint':'named-character-references','dom-tdth-ch':'obsolete','popstateeventinit':'history','entity-ange':'named-character-references','entity-mlcp':'named-character-references','dom-table-deletecaption':'the-table-element','entity-minusb':'named-character-references','entity-minusd':'named-characer-references','text-track-cue-automatic-line-position':'media-elements','scope':'introduction','prescan-a-byte-stream-to-determine-its-encoding':'parsing','ix-handler-onstalled':'section-index','entity-nleftrightarrow':'named-character-references','the-dfn-element':'the-dfn-element','dom-area-type':'the-area-element','before-doctype-name-state':'tokenization','attr-ol-type-keyword-lower-roman':'the-ol-element','attr-tabindex':'editing','dom-object-type':'the-object-element','printing':'user-prompts','domexception':'infrastructure','entity-efDot':'named-character-references','entity-lcaron':'named-character-references','entity-Gdot':'named-character-references','dom-img-alt':'the-img-element','entity-Ycirc':'named-character-references','dom-command-checked':'the-command-element','explicit-self-navigation-override':'browsers','the-param-element':'the-param-element','xhtml':'the-xhtml-syntax','entity-Odblac':'named-character-references','sandboxScriptBlocked':'webappapis','attr-script-src':'the-script-element,'dom-tr-bgcolor':'obsolete','entity-swArr':'named-character-references','entity-ljcy':'named-character-references','refsPINGBACK':'references','entity-atilde-legacy':'named-character-references','get-the-timed-task':'timers','concept-input-value-default-range':'states-of-the-type-attribute','entity-varsigma':'named-character-references','entity-rarr':'named-character-references','dom-quote-cite':'the-blockquote-element','entity-NotTilde':'named-character-references','entity-dwangle':'named-character-references','entity-vscr':'named-character-references','attr-iframe-align':'obsolete','command-facet-id':'commands','dom-a-rellist':'the-a-element','attr-body-marginleft':'obsolete','attr-th-scope':'the-th-element','dom-external':'system-state-and-capabilities','event-mediacontroller-loadeddata':'media-elements','text-track-cue-alignment':'media-elements','entity-qscr':'named-character-references','print-media':'rendering','attr-table-align':'obsolete','entity-rarrhk':'named-character-references','attr-hyperlin-usemap':'image-maps','signedpublickeyandchallenge':'the-keygen-element','task-source':'webappapis','dom-ol-compact':'obsolete','entity-rBarr':'named-character-references','selector-read-only':'links','entity-Ograve-legacy':'named-character-references','entity-frac34-legacy':'named-character-references','frames':'obsolete','entity-seswar':'named-character-references','canvas':'the-canvas-element','entity-CenterDot':'named-character-references','entity-nvinfin':'named-character-references','dom-htmlformcontrolscollection-nameditem':'common-dom-interfaces','entity-Ncaron':'named-character-references','entity-Kopf':'named-character-references','entity-nfr':'named-character-references','entity-sqsubset':'named-character-references','mutationobserver-scripting-environment':'infrastructure','entity-aogon':'named-character-references','scroll-to-the-fragment-identifier':'history','unloading-document-cleanup-steps':'history','entity-LeftDownTeeVector':'named-character-references','entity-blacktriangleright':'named-haracter-references','text-html':'iana','attr-dir-ltr':'global-attributes','script-processing-encoding':'the-script-element','handler-mediacontroller-onloadedmetadata':'media-elements','refsCSSRUBY':'references','dom-table-border':'the-table-element','the-document-s-current-address':'dom','entity-suplarr':'named-character-references','dom-document-cookie':'dom','entity-bepsi':'named-character-references','entity-cupcap':'named-character-references','entity-dlcrop':'named-character-references','dom-a-href':'the-a-element','attr-ol-type-state-lower-alpha':'the-ol-element','entity-Aring-legacy':'named-character-references','event-media-emptied':'media-elements','handler-appcache-oncached':'offline','entity-CloseCurlyDoubleQuote':'named-character-references','concept-media-load-algorithm':'media-elements','parsing-main-inforeign':'tree-construction','attr-input-type-radio-keyword':'the-input-element','entity-equiv':'named-character-references','attr-tbody-valign':'obsolete','entity-bull':'named-character-refereces','entity-Qfr':'named-character-references','entity-Cross':'named-character-references','entity-rdsh':'named-character-references','the-document-s-address':'dom','handler-appcache-onobsolete':'offline','entity-colone':'named-character-references','the-input-element-as-a-file-upload-control':'rendering','attr-form-autocomplete':'the-form-element','entity-bsolb':'named-character-references','controller-playback':'media-elements','dom-param-value':'the-param-element','htmlulistelement':'the-ul-element','entity-DoubleDownArrow':'named-character-references','dom-area-hostname':'the-area-element','entity-veeeq':'named-character-references','entity-boxtimes':'named-character-references','dom-media-ended':'media-elements','entity-lbarr':'named-character-references','the-article-element':'the-article-element','dom-audiotrack-id':'media-elements','entity-coprod':'named-character-references','entity-lowast':'named-character-references','dom-command-ro-commandicon':'commands','entity-lambda':'named-character-referenes','entity-Iopf':'named-character-references','the-aside-element':'the-aside-element','entity-Yscr':'named-character-references','refsTYPEDARRAY':'references','entity-vsubne':'named-character-references','dom-label-htmlfor':'the-label-element','attr-contenteditable':'editing','xml':'infrastructure','entity-vsubnE':'named-character-references','xmp':'obsolete','dom-classname':'global-attributes','attr-output-for':'the-output-element','htmllegendelement':'the-legend-element','algorithm-for-processing-rows':'attributes-common-to-td-and-th-elements','entity-edot':'named-character-references','dom-tdth-colspan':'attributes-common-to-td-and-th-elements','dom-document-linkcolor':'obsolete','dom-table-createtfoot':'the-table-element','entity-drcrop':'named-character-references','ended-playback':'media-elements','dom-input-height':'the-input-element','entity-nleftarrow':'named-character-references','entity-bbrktbrk':'named-character-references','entity-rbbrk':'named-character-references','rules-for-updating-the-tex-track-rendering':'media-elements','refsDOT':'references','attr-source-src':'the-source-element','entity-daleth':'named-character-references','entity-Vert':'named-character-references','history-autocomplete':'history','foster-parent-element':'tree-construction','entity-bigodot':'named-character-references','an-overridden-reload':'dom','parse-a-global-date-and-time-string':'common-microsyntaxes','dom-applet-width':'obsolete','delaying-the-load-event-flag':'media-elements','entity-lap':'named-character-references','entity-lat':'named-character-references','attr-media-preload':'media-elements','entity-qint':'named-character-references','valid-non-empty-url':'urls','entity-IEcy':'named-character-references','the-external-interface':'system-state-and-capabilities','entity-SucceedsTilde':'named-character-references','url-scheme':'urls','the-p-element':'the-p-element','dom-embed-type':'the-embed-element','dom-ul-compact':'obsolete','entity-marker':'named-character-references','entity-quest':'named-character-refereces','event-mediacontroller-ratechange':'media-elements','tabular-data':'tabular-data','entity-ldca':'named-character-references','dom-confirm':'user-prompts','entity-PlusMinus':'named-character-references','the-area-element':'the-area-element','entity-Iacute-legacy':'named-character-references','attr-crossorigin-use-credentials-keyword':'urls','source-node':'dnd','attr-ol-type-state-upper-roman':'the-ol-element','attr-dir-rtl':'global-attributes','concept-media-load-resource':'media-elements','dom-texttrackcue-vertical':'media-elements','text-track-cue-writing-direction':'media-elements','dom-map-name':'the-map-element','entity-geqq':'named-character-references','intro-early-example':'introduction','dom-document-open':'dynamic-markup-insertion','boolean-attributes':'common-microsyntaxes','ix-handler-window-onpageshow':'section-index','attr-td-scope':'obsolete','printing-steps':'user-prompts','entity-acute-legacy':'named-character-references','table-descriptions':'the-table-element','entity-Chi':'named-charcter-references','rules-for-parsing-dimension-values':'common-microsyntaxes','entity-NotCupCap':'named-character-references','value-track-kind-caption':'media-elements','editing-apis':'editing-apis','dom-validitystate-rangeoverflow':'constraints','entity-oacute-legacy':'named-character-references','the-object-element':'the-object-element','refsUTF7':'references','opener-browsing-context':'browsers','determining-the-character-encoding':'parsing','entity-xfr':'named-character-references','dom-th-scope':'the-th-element','refsBIDI':'references','refsSRGB':'references','concept-input-immutable':'the-input-element','attr-link-title':'the-link-element','the-marquee-element':'obsolete','refsNPAPI':'references','attr-button-type-submit-state':'the-button-element','entity-hairsp':'named-character-references','dom-location-href':'history','entity-scsim':'named-character-references','publickeyandchallenge':'the-keygen-element','textcontent':'infrastructure','dom-textarea-value':'the-textarea-element','the-location-bar-arprop-object':'browsers','following-hyperlinks':'links','groupings-of-browsing-contexts':'browsers','entity-Rcy':'named-character-references','entity-scpolint':'named-character-references','event-loop':'webappapis','dom-document-nameditem-filter':'dom','dom-a-pathname':'the-a-element','entity-twixt':'named-character-references','entity-theta':'named-character-references','entity-looparrowleft':'named-character-references','entity-bscr':'named-character-references','x-that':'introduction','dom-media-played':'media-elements','entity-RightArrowLeftArrow':'named-character-references','selector-out-of-range':'links','dom-location':'history','entity-gtcir':'named-character-references','entity-egrave-legacy':'named-character-references','entity-Colon':'named-character-references','dom-mediacontroller-duration':'media-elements','entity-longrightarrow':'named-character-references','attr-fs-method-post':'attributes-common-to-form-controls','dom-tdth-align':'obsolete','entity-HARDcy':'named-character-references','relalternate':'links','htmlappletelement':'obsolete','dom-navigator-online':'offline','timer-task-source':'timers','content-type':'urls','entity-hbar':'named-character-references','entity-nearr':'named-character-references','entity-Therefore':'named-character-references','dfn-read-only-array':'infrastructure','entity-chcy':'named-character-references','entity-Igrave':'named-character-references','attr-input-type-month-keyword':'the-input-element','entity-lthree':'named-character-references','entity-succnsim':'named-character-references','dom-hr-align':'obsolete','entity-srarr':'named-character-references','valid-month-string':'common-microsyntaxes','entity-middot':'named-character-references','refused-to-allow-the-document-to-be-unloaded':'history','rcdata-end-tag-open-state':'tokenization','entity-NegativeThinSpace':'named-character-references','mathml':'mathml','htmloptgroupelement':'the-optgroup-element','entity-lnapprox':'named-character-references','entity-thetasym':'named-character-references','dom-windobase64-atob':'webappapis','entity-dd':'named-character-references','entity-notnivb':'named-character-references','entity-notnivc':'named-character-references','entity-notniva':'named-character-references','entity-rcub':'named-character-references','the-fieldset-element-0':'rendering','entity-shortmid':'named-character-references','presentational-hints':'rendering','the-time-element':'the-time-element','entity-urcorner':'named-character-references','concept-command':'commands','entity-xhArr':'named-character-references','blocked-on-its-media-controller':'media-elements','entity-gtdot':'named-character-references','the-input-byte-stream':'parsing','entity-llcorner':'named-character-references','dom-table-rows':'the-table-element','attr-fs-method-post-keyword':'attributes-common-to-form-controls','concept-http-equiv-extensions':'the-meta-element','bogus-doctype-state':'tokenization','dom-window-nameditem-filter':'browsers','entity-lrtri':'named-character-references','barred-from-constraint-validation':'constrants','event-mediacontcoller-ended':'media-elements','dom-meter-optimum':'the-meter-element','entity-varepsilon':'named-character-references','concept-appcache-newer':'offline','dom-texttrackcue-align':'media-elements','value-track-kind-main':'media-elements','directly-reachable-browsing-contexts':'browsers','tt':'obsolete','the-after-after-body-insertion-mode':'tree-construction','entity-macr-legacy':'named-character-references','entity-Wcirc':'named-character-references','entity-prcue':'named-character-references','entity-LowerRightArrow':'named-character-references','refsRFC3279':'references','entity-gne':'named-character-references','entity-jmath':'named-character-references','dom-navigator-yieldforstorageupdates':'system-state-and-capabilities','entity-hybull':'named-character-references','dom-history-state':'history','entity-OverBrace':'named-character-references','dom-mediacontroller-volume':'media-elements','entity-nacute':'named-character-references','entity-trisb':'named-character-references','htmlextareaelement':'the-textarea-element','entity-gnE':'named-character-references','processing-model':'image-maps','navigate-non-Document':'history','entity-otimes':'named-character-references','entity-vartheta':'named-character-references','entity-divonx':'named-character-references','entity-Gbreve':'named-character-references','entity-xlArr':'named-character-references','dom-tr-valign':'obsolete','parsing-main-afterframeset':'tree-construction','security-2':'browsers','security-1':'browsers','security-0':'constraints','entity-Eacute':'named-character-references','entity-phmmat':'named-character-references','refsMQ':'references','entity-lcub':'named-character-references','selector-active':'links','parsing-main-intbody':'tree-construction','entity-Aring':'named-character-references','entity-Lfr':'named-character-references','replaced-elements':'rendering','dom-window-item':'browsers','dom-validitystate-stepmismatch':'constraints','dom-texttrackcue':'media-elements','attr-meter-low':'the-meter-element','refsWELINK':'references','handler-appcache-ondownloading':'offline','states-of-the-type-attribute':'states-of-the-type-attribute','ix-handler-onprogress':'section-index','entity-eqcirc':'named-character-references','entity-LeftCeiling':'named-character-references','the-insertion-mode':'parsing','entity-hellip':'named-character-references','entity-smashp':'named-character-references','entity-Aacute-legacy':'named-character-references','implied-strong-reference':'common-dom-interfaces','entity-plussim':'named-character-references','dom-output-value':'the-output-element','dom-a-search':'the-a-element','the-ol-element':'the-ol-element','constructing-form-data-set':'form-submission','attr-tdth-colspan':'attributes-common-to-td-and-th-elements','dom-textarea-input-selectionstart':'textFieldSelection','dom-input-autocomplete':'the-input-element','dom-media-defaultplaybackrate':'media-elements','entity-lgE':'named-character-references','entity-sigma':'named-character-references','text-track-failed-to-load':'media-element','entity-tosa':'named-character-references','has-an-element-in-select-scope':'parsing','dom-texttrackcue-position':'media-elements','ascii-case-insensitive':'infrastructure','entity-nleq':'named-character-references','entity-ltlarr':'named-character-references','entity-nles':'named-character-references','dom-script-src':'the-script-element','entity-ocir':'named-character-references','entity-nvge':'named-character-references','entity-dagger':'named-character-references','attr-marquee-direction-right':'obsolete','dom-img-ismap':'the-img-element','after-doctype-system-identifier-state':'tokenization','entity-Upsi':'named-character-references','dom-linkstyle-disabled':'styling','dom-datatransferitemlist-item':'dnd','candidate-for-constraint-validation':'constraints','dom-parent':'browsers','whitelisted-scheme':'system-state-and-capabilities','entity-frac13':'named-character-references','meta-application-name':'the-meta-element','dom-body-text':'obsolete','dom-mediaerror-media_err_network':'media-elements','entty-Implies':'named-character-references','entity-orarr':'named-character-references','refsCORS':'references','dom-head-profile':'obsolete','create-a-script-from-a-node':'webappapis','refsCESU8':'references','entity-swarrow':'named-character-references','dom-table-createthead':'the-table-element','entity-Agrave':'named-character-references','text-track-cue-horizontal-writing-direction':'media-elements','the-script-element':'the-script-element','entity-sbquo':'named-character-references','entity-UpperRightArrow':'named-character-references','entity-sigmaf':'named-character-references','entity-acute':'named-character-references','dom-media-addtexttrack':'media-elements','attr-area-shape-keyword-poly':'the-area-element','named-character-references-table':'named-character-references','entity-Cayleys':'named-character-references','attr-crossorigin-anonymous-keyword':'urls','entity-sigmav':'named-character-references','attr-input-type-password-keyword':'the-input-element','dom-window-close':'browsers','attr-input-equired':'common-input-element-attributes','steps-to-expose-a-media-resource-specific-text-track':'media-elements','offline':'offline','concept-get-attributes-when-sniffing':'parsing','entity-plus':'named-character-references','entity-downharpoonleft':'named-character-references','entity-commat':'named-character-references','matches-the-environment':'common-microsyntaxes','attr-option-label':'the-option-element','entity-uopf':'named-character-references','rel-up':'links','entity-backprime':'named-character-references','the-after-after-frameset-insertion-mode':'tree-construction','the-button-element':'the-button-element','entity-lowbar':'named-character-references','entity-icy':'named-character-references','attr-object-classid':'obsolete','entity-Aacute':'named-character-references','the-script-block-s-source':'the-script-element','script-data-double-escaped-less-than-sign-state':'tokenization','script-data-escaped-dash-dash-state':'tokenization','entity-prime':'named-character-references','entity-rpar':'namd-character-references','entity-uharl':'named-character-references','introduction':'introduction','hashchangeeventinit':'history','list-state':'the-menu-element','dom-base-target':'the-base-element','entity-dfisht':'named-character-references','entity-uharr':'named-character-references','entity-rarrlp':'named-character-references','dom-select-value':'the-select-element','dom-applet-align':'obsolete','attr-meta-name':'the-meta-element','attr-li-type':'obsolete','dom-img-border':'obsolete','handler-window-onpopstate':'webappapis','concept-cell':'attributes-common-to-td-and-th-elements','arraybuffer':'infrastructure','entity-nabla':'named-character-references','htmloutputelement':'the-output-element','entity-latail':'named-character-references','entity-rfr':'named-character-references','entity-llarr':'named-character-references','dom-navigator-unregisterprotocolhandler':'system-state-and-capabilities','dom-table-width':'obsolete','entity-nharr':'named-character-references','skip-whitespace':'common-microsyntaxs','adjust-svg-attributes':'tree-construction','dom-uda-protocol':'urls','entity-ccedil':'named-character-references','session-history':'history','entity-sup3-legacy':'named-character-references','dom-document-referrer':'dom','xlink-namespace':'namespaces','entity-curlyeqprec':'named-character-references','attr-fs-method':'attributes-common-to-form-controls','entity-shy':'named-character-references','entity-omacr':'named-character-references','entity-rharul':'named-character-references','content-type-sniffing':'urls','code-point-length':'infrastructure','entity-Cscr':'named-character-references','drag-and-drop-initialization-steps':'dnd','html-vs-xhtml':'introduction','entity-para-legacy':'named-character-references','entity-Phi':'named-character-references','entity-olt':'named-character-references','entity-raemptyv':'named-character-references','attr-a-shape':'obsolete','dom-document-dir':'global-attributes','entity-DJcy':'named-character-references','user-interaction-task-source':'webappapis','entity-Xscr:'named-character-references','attr-br-clear':'obsolete','the-strong-element':'the-strong-element','lists-of-dimensions':'common-microsyntaxes','img-load':'the-img-element','about-blank-origin':'browsers','timeouterror':'infrastructure','entity-piv':'named-character-references','locked-for-focus':'editing','dom-document-url':'dom','concept-table':'attributes-common-to-td-and-th-elements','entity-gla':'named-character-references','handler-window-onresize':'webappapis','entity-glj':'named-character-references','entity-angzarr':'named-character-references','the-datalist-element':'the-datalist-element','dom-media-error':'media-elements','entity-glE':'named-character-references','hyperlink':'links','text-track-disabled':'media-elements','refsRFC2781':'references','entity-DoubleLeftRightArrow':'named-character-references','entity-rlarr':'named-character-references','entity-RightUpVector':'named-character-references','dom-link-sizes':'the-link-element','entity-nGg':'named-character-references','entity-triangledown:'named-character-references','attr-html-version':'obsolete','entity-UpTeeArrow':'named-character-references','entity-nGt':'named-character-references','dom-label-control':'the-label-element','platform-array-objects':'infrastructure','entity-Uogon':'named-character-references','entity-Rarrtl':'named-character-references','tag-cloud':'links','attr-th-scope-rowgroup':'the-th-element','dom-image-wh':'the-img-element','entity-Longleftarrow':'named-character-references','blob':'infrastructure','history-traversal-task-source':'webappapis','entity-Gg':'named-character-references','dom-appcache-downloading':'offline','entity-Gt':'named-character-references','htmlprogresselement':'the-progress-element','entity-euml-legacy':'named-character-references','handler-ondragend':'webappapis','dom-fs-formnovalidate':'attributes-common-to-form-controls','entity-GT':'named-character-references','marquee-current-loop-index':'obsolete','event-appcache-progress':'offline','dom-tree-accessors':'dom','attr-table-frame':'obsolete','ttr-input-type-datetime-local-keyword':'the-input-element','entity-cedil':'named-character-references','entity-dzcy':'named-character-references','entity-angle':'named-character-references','attr-marquee-behavior':'obsolete','converting-a-character-width-to-pixels':'rendering','entity-Lsh':'named-character-references','entity-leg':'named-character-references','concept-fs-enctype':'attributes-common-to-form-controls','attr-tdth-align':'obsolete','url-decomposition-idl-attributes':'urls','entity-les':'named-character-references','entity-leq':'named-character-references','entity-bigsqcup':'named-character-references','attr-dir-ltr-state':'global-attributes','concept-appcache-fallback':'offline','dom-tbody-choff':'obsolete','event-media-ratechange':'media-elements','attr-area-coords':'the-area-element','dom-datatransferitem-type':'dnd','entity-hopf':'named-character-references','entity-iukcy':'named-character-references','validitystate':'constraints','constructing-the-form-data-set':'form-submission','metadata-ontent-0':'content-models','location':'history','noembed':'obsolete','entity-mstpos':'named-character-references','dom-navigator-platform':'system-state-and-capabilities','entity-Auml':'named-character-references','do-not-apply':'common-input-element-attributes','entity-crarr':'named-character-references','attr-fs-formaction':'attributes-common-to-form-controls','entity-equivDD':'named-character-references','create-an-element-for-the-token':'tree-construction','run-pre-click-activation-steps':'content-models','dom-external-addsearchprovider':'system-state-and-capabilities','the-caption-element':'the-caption-element','case-sensitive':'infrastructure','facets':'commands','entity-slarr':'named-character-references','entity-DiacriticalGrave':'named-character-references','entity-NotGreaterTilde':'named-character-references','entity-apid':'named-character-references','entity-ocirc':'named-character-references','entity-SOFTcy':'named-character-references','the-title-element-0':'dom','attr-fs-formenctype':'attributs-common-to-form-controls','entity-CirclePlus':'named-character-references','list-of-text-tracks':'media-elements','dom-external-issearchproviderinstalled':'system-state-and-capabilities','attr-track-src':'the-track-element','script-processing-src-prepare':'the-script-element','entity-bsim':'named-character-references','entity-oror':'named-character-references','dom-tr-align':'obsolete','entity-cirmid':'named-character-references','attr-iframe-allowtransparency':'obsolete','entity-ddotseq':'named-character-references','entity-jopf':'named-character-references','dom-sharedworkerglobalscope-applicationcache':'offline','entity-lesdotor':'named-character-references','the-noscript-element':'the-noscript-element','interactive-content':'content-models','dom-tr-rowindex':'the-tr-element','entity-DoubleLongLeftArrow':'named-character-references','refsRFC5322':'references','submit-mailto-headers':'form-submission','refsRFC2313':'references','attr-link-sizes-any':'links','refsRFC2318':'references','a-phrase-or-paragrah-with-an-alternative-graphical-representation:-charts-diagrams-graphs-maps-illustrations':'the-img-element','ix-handler-onpause':'section-index','unfocusing-steps':'editing','quirks-mode-doctypes':'tree-construction','concept-input-mutable':'the-input-element','refsCSSOMVIEW':'references','text-track-cue-computed-line-position':'media-elements','entity-NotSquareSubset':'named-character-references','entity-rbrace':'named-character-references','reconstruct-the-active-formatting-elements':'parsing','entity-rbrack':'named-character-references','redirect-steps':'infrastructure','attr-input-align':'obsolete','atob':'webappapis','dom-table-summary':'obsolete','entity-Scedil':'named-character-references','script-processing-prepare':'the-script-element','htmlparamelement':'the-param-element','ix-handler-ontimeupdate':'section-index','dom-datatransfer-items':'dnd','the-th-element':'the-th-element','entity-dopf':'named-character-references','entity-prE':'named-character-references','syntax-elements':'syntax','entity-cy':'named-character-references','character-encodings':'infrastructure','entity-tstrok':'named-character-references','entity-SubsetEqual':'named-character-references','entity-xotime':'named-character-references','fragment-case':'the-end','entity-Rarr':'named-character-references','runtime-script-errors-in-documents':'webappapis','entity-lfloor':'named-character-references','entity-pre':'named-character-references','dom-object-contentwindow':'the-object-element','parsing-urls':'urls','attr-input-list':'common-input-element-attributes','attr-object-archive':'obsolete','elements':'elements','entity-gammad':'named-character-references','drageventinit':'dnd','resetBCName':'history','dom-document-scripts':'dom','attr-button-type-reset':'the-button-element','entity-rho':'named-character-references','entity-dlcorn':'named-character-references','extensibility':'infrastructure','entity-ZeroWidthSpace':'named-character-references','entity-csube':'named-character-references','entity-nlE':'named-character-references','prse-a-month-string':'common-microsyntaxes','entity-nlt':'named-character-references','entity-frac34':'named-character-references','attr-hr-color':'obsolete','dom-videotrack-id':'media-elements','entity-tint':'named-character-references','entity-nle':'named-character-references','entity-DoubleLeftTee':'named-character-references','entity-Ccedil':'named-character-references','resources':'infrastructure','entity-ltcc':'named-character-references','aborterror':'infrastructure','event-media-error':'media-elements','determine-the-value-of-an-indexed-property':'infrastructure','the-dd-element':'the-dd-element','entity-primes':'named-character-references','entity-backsimeq':'named-character-references','entity-aacute':'named-character-references','entity-supsim':'named-character-references','dom-link-rellist':'the-link-element','contenteditable':'editing','entity-female':'named-character-references','cue-events':'media-elements','entity-dscy':'named-character-references','entity-fflig':'named-character-references',entity-dscr':'named-character-references','ix-handler-window-onfocus':'section-index','entity-capand':'named-character-references','entity-ape':'named-character-references','entity-UnderBracket':'named-character-references','entity-omicron':'named-character-references','dimension-attributes':'dimension-attributes','trackevent':'media-elements','entity-nLeftarrow':'named-character-references','video':'the-video-element','attr-img-name':'obsolete','affected-by-a-base-url-change':'infrastructure','index':'section-index','entity-apE':'named-character-references','entity-Vscr':'named-character-references','entity-lparlt':'named-character-references','entity-ratail':'named-character-references','attr-track-kind-descriptions':'the-track-element','input-img-available':'states-of-the-type-attribute','dom-mediacontroller-paused':'media-elements','entity-frac78':'named-character-references','the-head-element':'the-head-element','dom-texttrack-addcue':'media-elements','entity-origof':'named-character-references','childbrowsing-context':'browsers','entity-DoubleRightArrow':'named-character-references','entity-rbrke':'named-character-references','entity-succsim':'named-character-references','entity-breve':'named-character-references','dom-link-type':'the-link-element','an-iframe-srcdoc-document':'the-iframe-element','the-step-attribute':'common-input-element-attributes','concept-duration':'common-microsyntaxes','entity-iiint':'named-character-references','windowmodal':'user-prompts','dom-img-align':'obsolete','entity-bopf':'named-character-references','read-xml':'history','entity-precsim':'named-character-references','browser-state':'offline','foster-parenting':'tree-construction','handler-onshow':'webappapis','attr-media-crossorigin':'media-elements','before-doctype-system-identifier-state':'tokenization','ready-for-post-load-tasks':'the-end','networkerror':'infrastructure','videotracklist':'media-elements','entity-lBarr':'named-character-references','entity-drcorn':'named-character-references','media-resource-end-positio':'media-elements','entity-sqcup':'named-character-references','the-style-element':'the-style-element','entity-nparsl':'named-character-references','entity-EmptyVerySmallSquare':'named-character-references','ix-handler-onmouseout':'section-index','entity-lagran':'named-character-references','origin-0':'origin-0','ix-handler-window-onpagehide':'section-index','entity-cong':'named-character-references','dom-appcache-checking':'offline','refsXML':'references','entity-notin':'named-character-references','entity-cuvee':'named-character-references','using-the-command-element-to-define-a-command':'commands','element':'infrastructure','script-processing-src':'the-script-element','entity-DiacriticalDoubleAcute':'named-character-references','attr-iframe-marginwidth':'obsolete','sourcing-in-band-text-tracks':'media-elements','entity-Afr':'named-character-references','entity-barwedge':'named-character-references','entity-nrarrc':'named-character-references','dom-a-type':'the-a-element','entity-gesdot':'named-character-eferences','attr-track-kind-keyword-metadata':'the-track-element','mouseeventinit':'infrastructure','entity-popf':'named-character-references','ix-handler-oninput':'section-index','entity-RBarr':'named-character-references','entity-LeftRightVector':'named-character-references','submit-mutate-action':'form-submission','scripting-flag':'parsing','dom-command-radiogroup':'the-command-element','entity-uArr':'named-character-references','handler-oncanplay':'webappapis','dropEffect-initialization':'dnd','transparent':'content-models','handler-onplay':'webappapis','event-handler-content-attributes':'webappapis','entity-DZcy':'named-character-references','entity-diams':'named-character-references','entity-IOcy':'named-character-references','the-html-element':'the-html-element','concept-fs-action':'attributes-common-to-form-controls','attr-progress-max':'the-progress-element','entity-vopf':'named-character-references','potentially-playing':'media-elements','dom-img-naturalheight':'the-img-element','runtime-script-erors':'webappapis','entity-RightCeiling':'named-character-references','entity-leftrightharpoons':'named-character-references','entity-iacute':'named-character-references','refsWEBIDL':'references','meta':'the-meta-element','dom-a-hreflang':'the-a-element','refsPNG':'references','entity-ropf':'named-character-references','entity-iexcl':'named-character-references','the-hidden-attribute':'editing','entity-varpi':'named-character-references','the-col-element':'the-col-element','concept-role-none':'wai-aria','suffering-from-being-missing':'constraints','ix-handler-oncuechange':'section-index','refsHTTP':'references','entity-gtrarr':'named-character-references','usage-summary':'usage-summary','security-forms':'constraints','transferable':'common-dom-interfaces','entity-Edot':'named-character-references','system-state-and-capabilities':'system-state-and-capabilities','htmltabledatacellelement':'the-td-element','the-meta-element':'the-meta-element','read-ua-inline':'history','entity-utri':'named-character-reference','entity-olcross':'named-character-references','dom-applicationcache':'offline','cache-host':'offline','entity-SquareSubset':'named-character-references','the-xml:base-attribute-xml-only':'global-attributes','fire-a-synthetic-mouse-event':'webappapis','event-media-loadedmetadata':'media-elements','htmlelement':'elements','the-page':'rendering','entity-nges':'named-character-references','entity-ngeq':'named-character-references','non-replaced-elements':'rendering','entity-xsqcup':'named-character-references','html-integration-point':'tree-construction','has-no-style-sheet-that-is-blocking-scripts':'styling','concept-textarea-dirty':'the-textarea-element','using-the-input-element-to-define-a-command':'commands','dom-select-multiple':'the-select-element','entity-squ':'named-character-references','entity-Ubreve':'named-character-references','dom-frame-frameborder':'obsolete','invalidnodetypeerror':'infrastructure','entity-raquo-legacy':'named-character-references','security-and-privacy-considerations':'media-eements','semantics-0':'elements','entity-Psi':'named-character-references','selectors':'links','security-with-canvas-elements':'the-canvas-element','entity-veebar':'named-character-references','attr-hx-align':'obsolete','attr-marquee-behavior-slide':'obsolete','entity-nvdash':'named-character-references','presentational-markup':'introduction','dom-audiotrack-language':'media-elements','authority-based-url':'urls','dom-tdth-headers':'attributes-common-to-td-and-th-elements','dom-dir':'global-attributes','entity-TSHcy':'named-character-references','dom-datatransferitem-getasfile':'dnd','handler-mediacontroller-onplay':'media-elements','dom-marquee-direction':'obsolete','url-fragment':'urls','entity-triangle':'named-character-references','ix-handler-ondragleave':'section-index','rules-for-parsing-floating-point-number-values':'common-microsyntaxes','javascript-protocol':'webappapis','entity-Dopf':'named-character-references','applicationcache':'offline','rcdata-elements':'syntax','entity-supseteq':'named-charater-references','pause':'webappapis','entity-shcy':'named-character-references','entity-kappav':'named-character-references','attr-li-value':'the-li-element','attr-body-bgcolor':'obsolete','refsPSL':'references','entity-Ycy':'named-character-references','entity-lopf':'named-character-references','attr-track-kind':'the-track-element','client-side-form-validation':'forms','dom-document-activeelement':'editing','entity-Jopf':'named-character-references','entity-nrarrw':'named-character-references','entity-gEl':'named-character-references','dom-textarea-readonly':'the-textarea-element','entity-Icirc-legacy':'named-character-references','frame':'obsolete','seamless-browsing-context-flag':'the-iframe-element','dom-tabindex':'editing','attr-marquee-direction-up':'obsolete','dom-applet-archive':'obsolete','entity-Euml':'named-character-references','script-data-escaped-dash-state':'tokenization','entity-it':'named-character-references','entity-yacy':'named-character-references','img-none':'the-img-element','link-typ-prefetch':'links','entity-times-legacy':'named-character-references','web-scheme-prefix':'iana','entity-fallingdotseq':'named-character-references','entity-ni':'named-character-references','entity-ne':'named-character-references','entity-ucirc-legacy':'named-character-references','entity-nu':'named-character-references','dom-node-parentnode':'infrastructure','table-charref-overrides':'tokenization','current-node':'parsing','requirements-for-implementations':'obsolete','entity-olcir':'named-character-references','dom-a-hash':'the-a-element','entity-ordm':'named-character-references','refsBCP47':'references','entity-ordf':'named-character-references','entity-gvnE':'named-character-references','valid-date-string':'common-microsyntaxes','entity-ohm':'named-character-references','pending-table-character-tokens':'tree-construction','additional-allowed-character':'tokenization','entity-ratio':'named-character-references','entity-Dscr':'named-character-references','handler-onsubmit':'webappapis','attr-img-lowsrc':obsolete','entity-itilde':'named-character-references','entity-ycy':'named-character-references','dom-history-replacestate':'history','seekUpdate':'media-elements','entity-nwarrow':'named-character-references','form-owner':'association-of-controls-and-forms','dom-menu-type':'the-menu-element','dom-appcache-uncached':'offline','entity-trade':'named-character-references','the-menu-element':'the-menu-element','entity-frac56':'named-character-references','attr-input-src':'states-of-the-type-attribute','entity-varsubsetneq':'named-character-references','entity-frac58':'named-character-references','entity-ShortDownArrow':'named-character-references','the-textarea-element':'the-textarea-element','attr-dim-width':'dimension-attributes','entity-smtes':'named-character-references','toolbars-0':'rendering','parse-a-week-string':'common-microsyntaxes','earliest-possible-position':'media-elements','entity-auml-legacy':'named-character-references','valid-integer':'common-microsyntaxes','event-handlers':'webappapis','even-firing':'webappapis','text-track-readiness-state':'media-elements','entity-leqslant':'named-character-references','text-track-cue-middle-alignment':'media-elements','consume-a-character-reference':'tokenization','dom-command-disabled':'the-command-element','entity-DoubleUpDownArrow':'named-character-references','attr-progress-value':'the-progress-element','entity-NotPrecedes':'named-character-references','sequential-focus-navigation-and-the-tabindex-attribute':'editing','entity-dtrif':'named-character-references','entity-udhar':'named-character-references','entity-Conint':'named-character-references','entity-brvbar-legacy':'named-character-references','entity-khcy':'named-character-references','entity-ffllig':'named-character-references','dom-texttrack-mode':'media-elements','unit-of-related-browsing-contexts':'browsers','entity-Kappa':'named-character-references','entity-NotGreaterFullEqual':'named-character-references','entity-boxuL':'named-character-references','textFieldSelection':'textFieldSelection',audio':'the-audio-element','entity-Omacr':'named-character-references','htmlcollection':'infrastructure','dom-track-loaded':'the-track-element','dom-link-target':'obsolete','link-type-stylesheet':'links','week-number-of-the-last-day':'common-microsyntaxes','entity-notindot':'named-character-references','entity-Diamond':'named-character-references','raw-text-elements':'syntax','outlines':'headings-and-sections','navigatorstorageutils':'system-state-and-capabilities','entity-doteq':'named-character-references','entity-Congruent':'named-character-references','entity-hookleftarrow':'named-character-references','percentages-and-dimensions':'common-microsyntaxes','dom-select-remove':'the-select-element','attr-a-coords':'obsolete','entity-langle':'named-character-references','entity-ntriangleleft':'named-character-references','media-controller-default-playback-rate':'media-elements','htmlformelement':'the-form-element','htmlanchorelement':'the-a-element','the-datatransfer-interface':'dnd','entity-laquo-legacy':'naed-character-references','entity-tridot':'named-character-references','custom-data-attribute':'global-attributes','session-history-entry':'history','event-media-durationchange':'media-elements','dom-style':'global-attributes','ix-handler-window-onmessage':'section-index','entity-iquest':'named-character-references','read-multipart-x-mixed-replace':'history','entity-Uuml-legacy':'named-character-references','attr-command-type-keyword-command':'the-command-element','entity-Aogon':'named-character-references','command-facet-hint':'commands','dom-datatransfer-setdata':'dnd','entity-curren':'named-character-references','text-track-showing-by-default':'media-elements','dom-navigator-isprotocolhandlerregistered':'system-state-and-capabilities','entity-NegativeVeryThinSpace':'named-character-references','ix-handler-oninvalid':'section-index','vaguer-moments-in-time':'common-microsyntaxes','the-css-user-agent-style-sheet-and-presentational-hints':'rendering','ix-handler-onkeydown':'section-index','handler-window-onbforeunload':'webappapis','entity-ngsim':'named-character-references','dom-select-add':'the-select-element','potentially-cors-enabled-fetch':'urls','entity-capcap':'named-character-references','function':'webappapis','entity-RuleDelayed':'named-character-references','handler-ondragenter':'webappapis','attr-form-accept':'obsolete','dom-texttrack-kind-descriptions':'media-elements','fully-active':'browsers','entity-Ucirc':'named-character-references','entity-RightTeeVector':'named-character-references','entity-shortparallel':'named-character-references','entity-escr':'named-character-references','entity-rnmid':'named-character-references','dom-media-duration':'media-elements','tokenizing-character-references':'tokenization','dom-trackevent-track':'media-elements','concept-range':'infrastructure','getting-media-metadata':'media-elements','dom-table-align':'obsolete','refsRFC1034':'references','track-language':'the-track-element','entity-simplus':'named-character-references','dom-input-maxlength':'the-input-elemnt','text-track-cue-vertical-growing-left-writing-direction':'media-elements','url-manipulation-and-creation':'urls','entity-Ifr':'named-character-references','handler-window-onscroll':'webappapis','dom-progress-value':'the-progress-element','base-dnd-feedback':'dnd','event-appcache-downloading':'offline','has-an-element-in-scope':'parsing','entity-Lcedil':'named-character-references','entity-uuarr':'named-character-references','entity-Uacute-legacy':'named-character-references','dom-location-replace':'history','structured-clone':'common-dom-interfaces','attr-input-autocomplete-default-state':'common-input-element-attributes','attr-div-align':'obsolete','dom-focus':'editing','entity-bot':'named-character-references','entity-gtrsim':'named-character-references','attr-marquee-behavior-alternate':'obsolete','entity-vdash':'named-character-references','entity-nvap':'named-character-references','dom-document-0':'browsers','entity-UpArrowBar':'named-character-references','dom-opener':'browsers','entity-brvbar':'nmed-character-references','update-the-image-data':'the-img-element','conformance-requirements-for-authors':'introduction','attr-input-vspace':'obsolete','the-root-element':'semantics','concept-http-equivalent':'urls','about:blank':'urls','webvtt':'infrastructure','attr-p-align':'obsolete','navigating-across-documents':'history','dom-body-bgcolor':'obsolete','htmlmenuelement':'the-menu-element','entity-NotPrecedesEqual':'named-character-references','critical-subresources':'infrastructure','sandboxed-top-level-navigation-browsing-context-flag':'the-iframe-element','math':'mathml','refsIANAPERMHEADERS':'references','ix-handler-ondrop':'section-index','handler-marquee-onfinish':'obsolete','entity-gtrdot':'named-character-references','dom-tr-deletecell':'the-tr-element','alternate-style-sheets':'styling','entity-amalg':'named-character-references','entity-notinE':'named-character-references','dom-table-thead':'the-table-element','entity-pound':'named-character-references','entity-Ocirc':'named-character-referencs','alt':'the-img-element','element-dfn-categories':'element-definitions','attr-area-shape-circle':'the-area-element','entity-nwArr':'named-character-references','entity-Updownarrow':'named-character-references','htmldirectoryelement':'obsolete','attr-hr-align':'obsolete','entity-nedot':'named-character-references','concept-node-clone':'infrastructure','dom-select-options':'the-select-element','dom-img-crossorigin':'the-img-element','root-element':'infrastructure','domstringlist':'infrastructure','spelling-and-grammar-checking':'editing-apis','the-wbr-element':'the-wbr-element','entity-ncong':'named-character-references','entity-lharu':'named-character-references','entity-imagpart':'named-character-references','entity-rlm':'named-character-references','entity-RightAngleBracket':'named-character-references','videotrack':'media-elements','entity-lhard':'named-character-references','text-track-api':'media-elements','push-onto-the-list-of-active-formatting-elements':'parsing','character-references':'syntax','enity-napprox':'named-character-references','entity-Acirc-legacy':'named-character-references','entity-Tcaron':'named-character-references','concept-appcache-manifest-explicit':'offline','mutation-during-parsing':'tree-construction','dom-command-label':'the-command-element','entity-copf':'named-character-references','webvtt-file-using-only-nested-cues':'infrastructure','entity-prurel':'named-character-references','entity-Barwed':'named-character-references','dom-img-width':'the-img-element','entity-lg':'named-character-references','entity-le':'named-character-references','entity-nVDash':'named-character-references','entity-ll':'named-character-references','entity-lt':'named-character-references','entity-subsetneq':'named-character-references','queue-a-post-load-task':'offline','entity-lE':'named-character-references','dom-iframe-src':'the-iframe-element','event-appcache-cached':'offline','entity-supset':'named-character-references','entity-bumpeq':'named-character-references','the-document-s-domain':'origin-0,'scripting':'webappapis','entity-Not':'named-character-references','entity-copysr':'named-character-references','valid-browsing-context-name-or-keyword':'browsers','dom-htmloptionscollection-selectedindex':'common-dom-interfaces','entity-nwarr':'named-character-references','entity-forkv':'named-character-references','entity-npar':'named-character-references','translation-mode':'global-attributes','comment-end-bang-state':'tokenization','garbage-collection-and-browsing-contexts':'browsers','attr-hr-noshade':'obsolete','case-sensitivity':'links','application-cache-api':'offline','entity-yen':'named-character-references','ordinary':'parsing','entity-Idot':'named-character-references','clear-the-list-of-active-formatting-elements-up-to-the-last-marker':'parsing','decoded-as-utf-8-with-error-handling':'infrastructure','entity-LeftAngleBracket':'named-character-references','typographic-conventions':'introduction','attr-tdth-abbr':'obsolete','dom-input-files':'common-input-element-apis','entity-frac35':'named-chaacter-references','entity-frac38':'named-character-references','entity-Vbar':'named-character-references','execCommand':'editing-apis','dnd':'dnd','entity-lesssim':'named-character-references','event-handler-attributes':'webappapis','other-link-types':'links','entity-because':'named-character-references','has-an-element-in-the-specific-scope':'parsing','entity-SmallCircle':'named-character-references','attr-abbr-title':'the-abbr-element','the-progress-element-0':'rendering','media-element-attributes':'media-elements','element-level-focus-apis':'editing','entity-sect-legacy':'named-character-references','entity-intprod':'named-character-references','text-track-cue':'media-elements','dom-marquee-loop':'obsolete','entity-urcorn':'named-character-references','security-location':'history','concept-fe-value':'attributes-common-to-form-controls','attr-keygen-keytype':'the-keygen-element','sourcing-out-of-band-text-tracks':'media-elements','entity-gfr':'named-character-references','concept-event-dispatch':'infrastrcture','entity-simlE':'named-character-references','entity-boxhd':'named-character-references','entity-Vdashl':'named-character-references','dom-input-multiple':'the-input-element','entity-boxhu':'named-character-references','attr-dropzone-copy':'dnd','dom-media-seek':'media-elements','event-media-progress':'media-elements','dom-basefont-size':'obsolete','concept-input-min-zero':'common-input-element-attributes','entity-nleqq':'named-character-references','url-host-specific':'urls','dom-media-muted':'media-elements','entity-boxhU':'named-character-references','entity-RightFloor':'named-character-references','attr-textarea-readonly':'the-textarea-element','entity-blacklozenge':'named-character-references','entity-DDotrahd':'named-character-references','dom-htmlallcollection-nameditem':'common-dom-interfaces','entity-RightDownVectorBar':'named-character-references','entity-Im':'named-character-references','sandboxCookies':'dom','entity-alpha':'named-character-references','dom-li-type':'obsolete','cross-originrequest-status':'infrastructure','comment-0':'infrastructure','refsPPUTF8':'references','algorithm-for-extracting-an-encoding-from-a-meta-element':'urls','entity-bigtriangleup':'named-character-references','set-the-document-s-address':'history','parsing-main-incdata':'tree-construction','attr-img-border':'obsolete','refsRFC3490':'references','traverse-the-history-by-a-delta':'history','entity-ZHcy':'named-character-references','attr-dir-auto':'global-attributes','entity-Upsilon':'named-character-references','duration-time-component-scale':'common-microsyntaxes','writing-xhtml-documents':'the-xhtml-syntax','navigator':'system-state-and-capabilities','entity-cwconint':'named-character-references','set-of-comma-separated-tokens':'common-microsyntaxes','dom-title':'global-attributes','dom-meta-scheme':'obsolete','entity-hercon':'named-character-references','handler-window-onpageshow':'webappapis','in-a-document':'infrastructure','audiotracklist':'media-elements','dom-frameelement':'browsers','handler-window-onsorage':'webappapis','dom-input-valueasdate':'common-input-element-apis','navigate':'history','ascii-serialization-of-an-origin':'origin-0','entity-epar':'named-character-references','link-type-nofollow':'links','handler-onfocus':'webappapis','entity-iexcl-legacy':'named-character-references','links-forms-and-navigation':'rendering','entity-uml-legacy':'named-character-references','entity-Gcedil':'named-character-references','entity-nrightarrow':'named-character-references','entity-CircleTimes':'named-character-references','dom-caption-align':'obsolete','forget-the-media-element-s-media-resource-specific-text-tracks':'media-elements','entity-vsupnE':'named-character-references','dom-embed-align':'obsolete','entity-rAtail':'named-character-references','htmlmapelement':'the-map-element','entity-RightTeeArrow':'named-character-references','entity-vsupne':'named-character-references','provide-a-stable-state':'webappapis','entity-bsol':'named-character-references','hidden-state-type-hidden':'states-of-the-type-atribute','entity-ncaron':'named-character-references','entity-Ecaron':'named-character-references','refsPROGRESS':'references','parsing-main-intable':'tree-construction','entity-complement':'named-character-references','radionodelist':'common-dom-interfaces','dom-img-usemap':'the-img-element','htmlframesetelement':'obsolete','parse-a-date-or-time-string':'common-microsyntaxes','attr-fs-enctype':'attributes-common-to-form-controls','attr-textarea-wrap-hard':'the-textarea-element','refsCSSIMAGES':'references','dom-media-initialtime':'media-elements','entity-ldrdhar':'named-character-references','entity-scnE':'named-character-references','xml-fragment-parsing-algorithm':'the-xhtml-syntax','handler-onkeydown':'webappapis','entity-ccupssm':'named-character-references','entity-CloseCurlyQuote':'named-character-references','entity-Kcedil':'named-character-references','entity-sup':'named-character-references','entity-lopar':'named-character-references','entity-egs':'named-character-references','entity-sum':'named-chracter-references','entity-ultri':'named-character-references','entity-sub':'named-character-references','ix-handler-ondragover':'section-index','accessing-other-browsing-contexts':'browsers','event-dragstart':'dnd','event-media-waiting':'media-elements','xml-fragment-serialization-algorithm':'the-xhtml-syntax','entity-jcy':'named-character-references','entity-Sigma':'named-character-references','entity-vDash':'named-character-references','attr-textarea-wrap-soft-state':'the-textarea-element','article-example':'the-article-element','entity-squarf':'named-character-references','entity-square':'named-character-references','entity-njcy':'named-character-references','dom-htmloptionscollection-nameditem':'common-dom-interfaces','selecting-specific-audio-and-video-tracks-declaratively':'media-elements','navigatoronline':'offline','concept-option-value':'the-option-element','entity-imof':'named-character-references','dom-keygen-keytype':'the-keygen-element','entity-cup':'named-character-references','entity-ohbar':named-character-references','form-associated-element':'forms','writing-secure-applications-with-html':'introduction','entity-Acirc':'named-character-references','dom-appcache-update':'offline','entity-aleph':'named-character-references','submit-data-post':'form-submission','attr-tr-align':'obsolete','tag-open-state':'tokenization','dom-frame-contentwindow':'obsolete','refsRFC3023':'references','entity-rlhar':'named-character-references','dom-mediacontroller-defaultplaybackrate':'media-elements','entity-orslope':'named-character-references','dom-option-value':'the-option-element','entity-longleftrightarrow':'named-character-references','value-track-kind-sign':'media-elements','about:legacy-compat':'urls','typemismatcherror':'infrastructure','dom-texttrack-kind-captions':'media-elements','dom-htmloptionscollection-add':'common-dom-interfaces','datatransferitem':'dnd','entity-topbot':'named-character-references','entity-nbsp':'named-character-references','dom-frame-marginheight':'obsolete','element-definitions:'element-definitions','formatting':'parsing','text-rendered-in-native-user-interfaces':'rendering','selector-in-range':'links','entity-VDash':'named-character-references','entity-trianglerighteq':'named-character-references','attr-hyperlink-media':'links','entity-permil':'named-character-references','link-type-prev':'links','table-aria-strong':'wai-aria','attr-fae-form':'association-of-controls-and-forms','entity-lrhard':'named-character-references','dynamic-changes-to-base-urls':'urls','dom-area-media':'the-area-element','concept-document-content-type':'infrastructure','entity-AElig':'named-character-references','ix-handler-oncanplay':'section-index','absolute-url':'urls','concept-datetime-digit':'common-microsyntaxes','entity-biguplus':'named-character-references','common-parser-idioms':'common-microsyntaxes','concept-fv-valid':'constraints','interactive-media':'rendering','dom-iframe-marginheight':'obsolete','entity-rx':'named-character-references','entity-xvee':'named-character-references','documents':dom','the-body-element':'the-body-element','heading-content':'content-models','dom-TrackList-getKind-categories':'media-elements','entity-SucceedsEqual':'named-character-references','attr-html-manifest':'the-html-element','htmliframeelement':'the-iframe-element','mutationobserver':'infrastructure','the-output-element':'the-output-element','ix-handler-onemptied':'section-index','entity-NotRightTriangle':'named-character-references','entity-Jscr':'named-character-references','quotes':'rendering','scriptTagXSLT':'the-script-element','password-state-type-password':'states-of-the-type-attribute','entity-thinsp':'named-character-references','attr-iframe-sandbox-allow-forms':'the-iframe-element','the-title-attribute-0':'rendering','blocked-media-controller':'media-elements','entity-angst':'named-character-references','disk-space':'offline','media-resources-with-multiple-media-tracks':'media-elements','entity-frac18':'named-character-references','concept-script':'webappapis','drag-data-store-mode':'dnd','entity-fra12':'named-character-references','read-plugin':'history','entity-frac14':'named-character-references','entity-frac15':'named-character-references','entity-frac16':'named-character-references','ix-handler-onshow':'section-index','audiotracklist-and-videotracklist-objects':'media-elements','entity-Ucy':'named-character-references','entity-intlarhk':'named-character-references','entity-Hat':'named-character-references','entity-wscr':'named-character-references','attr-background':'obsolete','refsRFC4281':'references','security':'dom','inter-element-whitespace':'content-models','entity-NotLess':'named-character-references','entity-nparallel':'named-character-references','category-submit':'forms','simple-cross-origin-request':'infrastructure','comments':'syntax','dom-contextmenu':'the-menu-element','attr-command-type-state-checkbox':'the-command-element','nested-browsing-context':'browsers','entity-cularrp':'named-character-references','entity-esdot':'named-character-references','same-origin':'origin-0','entity-oilde-legacy':'named-character-references','dom-document-head':'dom','entity-CircleMinus':'named-character-references','ix-handler-onratechange':'section-index','entity-approx':'named-character-references','months':'common-microsyntaxes','dom-document-lastmodified':'dom','dom-source-src':'the-source-element','attr-script-type':'the-script-element','refsMIMESNIFF':'references','entity-preceq':'named-character-references','entity-simne':'named-character-references','dom-fs-formmethod':'attributes-common-to-form-controls','rendering':'rendering','handler-onwaiting':'webappapis','dom-track-src':'the-track-element','the-drag-data-item-type-string':'dnd','dom-history-length':'history','entity-varphi':'named-character-references','entity-Or':'named-character-references','entity-ucy':'named-character-references','entity-Dagger':'named-character-references','serializing-html-fragments':'the-end','concept-video-intrinsic-height':'the-video-element','entity-nmid':'named-character-references','dom-col-ch':'obsolete','comand-facet-hiddenstate':'commands','markup-declaration-open-state':'tokenization','dom-classlist':'global-attributes','dom-xmldocument-load':'dom','entity-nsube':'named-character-references','ix-handler-onseeking':'section-index','refsWEBSTORAGE':'references','attr-media-preload-metadata':'media-elements','entity-hamilt':'named-character-references','assigning-keyboard-shortcuts':'editing','getcontext-return':'the-canvas-element','attr-script-event':'obsolete','dom-document-getelementsbyname':'dom','entity-ClockwiseContourIntegral':'named-character-references','entity-zcy':'named-character-references','dom-mediaerror-media_err_aborted':'media-elements','meta-generator':'the-meta-element','handler-onstalled':'webappapis','time-zones':'common-microsyntaxes','entity-harr':'named-character-references','entity-nvltrie':'named-character-references','entity-eqslantless':'named-character-references','event-mediacontroller-pause':'media-elements','dom-document-forms':'dom','entity-utrif':'named-character-references''effective-playback-rate':'media-elements','attr-meta-content':'the-meta-element','entity-Fouriertrf':'named-character-references','entity-barvee':'named-character-references','appcache-history-2':'history','entity-lceil':'named-character-references','attr-body-margintop':'obsolete','entity-nsimeq':'named-character-references','compiled-pattern-regular-expression':'common-input-element-attributes','ix-handler-window-onresize':'section-index','entity-szlig-legacy':'named-character-references','xml-parser':'the-xhtml-syntax','entity-Efr':'named-character-references','attr-mod-cite':'attributes-common-to-ins-and-del-elements','doctype-public-identifier-double-quoted-state':'tokenization','nestedParsing':'parsing','entity-rsh':'named-character-references','entity-drbkarow':'named-character-references','dom-dataset':'global-attributes','documentfragment':'infrastructure','entity-LongLeftArrow':'named-character-references','timeranges':'media-elements','remove-a-token-from-a-string':'common-microsyntaxes','attr-cmmand-command':'the-command-element','a-form-control-s-value':'attributes-common-to-form-controls','dom-media-have_current_data':'media-elements','event-readystatechange':'dom','entity-Ouml-legacy':'named-character-references','entity-bNot':'named-character-references','the-pre-element':'the-pre-element','entity-twoheadleftarrow':'named-character-references','attr-img-crossorigin':'the-img-element','dom-fs-enctype':'attributes-common-to-form-controls','entity-Popf':'named-character-references','dom-window-nameditem':'browsers','attr-textarea-rows-value':'the-textarea-element','parse-a-time-zone-offset-component':'common-microsyntaxes','the-rt-element':'the-rt-element','securityerror':'infrastructure','entity-rtriltri':'named-character-references','entity-inodot':'named-character-references','ltr-specific':'rendering','attr-command-type-keyword-radio':'the-command-element','entity-Egrave':'named-character-references','attr-track-kind-subtitles':'the-track-element','browser-interface-elements':'browsers','thehtml-element-0':'dom','entity-csub':'named-character-references','dom-tbody-align':'obsolete','dom-input-type':'the-input-element','dom-li-value':'the-li-element','entity-csup':'named-character-references','entity-amp':'named-character-references','entity-racute':'named-character-references','charset512':'the-meta-element','dom-fieldset-type':'the-fieldset-element','radio-button-state-type-radio':'states-of-the-type-attribute','attr-input-type-range-keyword':'the-input-element','dom-document-querycommandvalue':'editing-apis','live':'infrastructure','entity-vprop':'named-character-references','scriptTagParserResumes':'tree-construction','entity-shchcy':'named-character-references','dom-applet-object':'obsolete','entity-Scaron':'named-character-references','entity-Ropf':'named-character-references','closing-elements-that-have-implied-end-tags':'tree-construction','entity-LessGreater':'named-character-references','url-state-type-url':'states-of-the-type-attribute','entity-igrave':'named-character-references','ntity-ecaron':'named-character-references','entity-Delta':'named-character-references','handler-onselect':'webappapis','htmlformcontrolscollection-0':'common-dom-interfaces','entity-ecolon':'named-character-references','entity-period':'named-character-references','img-inc':'the-img-element','htmlbuttonelement':'the-button-element','dom-frame-marginwidth':'obsolete','entity-UpperLeftArrow':'named-character-references','entity-KJcy':'named-character-references','context-menus':'the-menu-element','parsing-main-inheadnoscript':'tree-construction','entity-RightArrow':'named-character-references','dom-texttrack-kind':'media-elements','history-traversal':'history','entity-tilde':'named-character-references','entity-LessLess':'named-character-references','refsCOOKIES':'references','entity-lltri':'named-character-references','attr-tdth-rowspan':'attributes-common-to-td-and-th-elements','entity-andslope':'named-character-references','the-form-element':'the-form-element','effective-script-origin':'origin-0','dom-basefnt-face':'obsolete','dom-tdth-rowspan':'attributes-common-to-td-and-th-elements','xmldocument':'dom','the-keygen-element':'the-keygen-element','entity-kfr':'named-character-references','parse-a-local-date-and-time-string':'common-microsyntaxes','entity-ndash':'named-character-references','entity-RightVector':'named-character-references','entity-Vdash':'named-character-references','entity-Iukcy':'named-character-references','entity-hstrok':'named-character-references','entity-NotLessSlantEqual':'named-character-references','forms':'forms','window':'browsers','attr-object-data':'the-object-element','entity-subrarr':'named-character-references','entity-pr':'named-character-references','entity-pm':'named-character-references','form-controls':'rendering','entity-pi':'named-character-references','refsWCAG':'references','refsUTF8DET':'references','attr-media-muted':'media-elements','entity-Tab':'named-character-references','dom-font-color':'obsolete','entity-nvDash':'named-character-references','entity-Tau':'namedcharacter-references','entity-dashv':'named-character-references','attr-track-default':'the-track-element','a-utf-16-encoding':'infrastructure','entity-nbumpe':'named-character-references','entity-empty':'named-character-references','entity-orv':'named-character-references','ready-to-be-parser-executed':'the-script-element','date-and-time-state-type-datetime':'states-of-the-type-attribute','entity-ord':'named-character-references','attr-body-marginwidth':'obsolete','entity-Gcy':'named-character-references','attr-iframe-hspace':'obsolete','safe-passing-of-structured-data':'common-dom-interfaces','entity-demptyv':'named-character-references','dom-applet-vspace':'obsolete','attr-dl-compact':'obsolete','target-element':'history','entity-ordm-legacy':'named-character-references','dependencies':'infrastructure','event-online':'offline','heading-content-0':'content-models','entity-ubreve':'named-character-references','entity-prsim':'named-character-references','dom-textarea-dirname':'the-textarea-element','reflect:'common-dom-interfaces','dom-progress-max':'the-progress-element','entity-cirfnint':'named-character-references','dom-audiotrack-kind':'media-elements','entity-UpDownArrow':'named-character-references','the-style-attribute':'global-attributes','entity-Dcy':'named-character-references','blink':'obsolete','entity-leftharpoondown':'named-character-references','domimplementation':'infrastructure','entity-udarr':'named-character-references','input-type-change':'the-input-element','script-data-escaped-less-than-sign-state':'tokenization','dropzone-processing-steps':'dnd','dom-tdth-height':'obsolete','dom-window-statusbar':'browsers','concept-table-advance':'attributes-common-to-td-and-th-elements','event-mediacontroller-emptied':'media-elements','event-handler-idl-attributes':'webappapis','limited-to-only-known-values':'common-dom-interfaces','entity-xlarr':'named-character-references','entity-boxdr':'named-character-references','entity-boxdl':'named-character-references','syntax-charref':'syntax','entity-smeparl':'named-character-references','semantics':'semantics','img-all':'the-img-element','entity-lhblk':'named-character-references','document.title':'dom','entity-boxdR':'named-character-references','entity-ldsh':'named-character-references','syntax-cdata':'syntax','using-the-a-element-to-define-a-command':'commands','refsRFC2237':'references','optional-tags':'syntax','entity-xutri':'named-character-references','entity-Wfr':'named-character-references','entity-xmap':'named-character-references','entity-ExponentialE':'named-character-references','entity-Mu':'named-character-references','concept-video-intrinsic-width':'the-video-element','entity-REG-legacy':'named-character-references','converted-to-ascii-uppercase':'infrastructure','dom-htmlallcollection-item-string':'common-dom-interfaces','the-script-block-s-character-encoding':'the-script-element','entity-andv':'named-character-references','entity-rtimes':'named-character-references','entity-uml':'named-character-references','entity-yuml':'named-character-refrences','attr-fe-disabled':'attributes-common-to-form-controls','entity-ufisht':'named-character-references','the-bdo-element':'the-bdo-element','entity-succ':'named-character-references','algorithm-for-ending-a-row-group':'attributes-common-to-td-and-th-elements','bgsound':'obsolete','entity-ddarr':'named-character-references','dom-command-type':'the-command-element','handler-window-onblur':'webappapis','dom-videotrack-language':'media-elements','dom-mediaerror-media_err_src_not_supported':'media-elements','htmlheadingelement':'the-h1-h2-h3-h4-h5-and-h6-elements','entity-lsh':'named-character-references','dom-appcache-status':'offline','entity-gtrless':'named-character-references','valid-normalized-forced-utc-global-date-and-time-string':'common-microsyntaxes','attr-input-type':'the-input-element','parsing-main-intr':'tree-construction','refsRFC3986':'references','refsRFC3987':'references','htmlspanelement':'the-span-element','entity-varr':'named-character-references','entity-half':'named-character-referenes','parsing-main-intd':'tree-construction','dom-datatransferitemlist-add':'dnd','entity-xcirc':'named-character-references','attr-map-name':'the-map-element','concept-transferable-neutered':'common-dom-interfaces','attributes-common-to-td-and-th-elements':'attributes-common-to-td-and-th-elements','entity-imagline':'named-character-references','entity-lvnE':'named-character-references','text-track':'media-elements','dom-datalist-options':'the-datalist-element','row-header':'attributes-common-to-td-and-th-elements','rules-for-parsing-non-negative-integers':'common-microsyntaxes','entity-ShortLeftArrow':'named-character-references','form-submission':'form-submission','selector-valid':'links','entity-Iuml-legacy':'named-character-references','content-type-sniffing:-image':'urls','replacement-enabled':'history','joint-session-history':'history','entity-dcy':'named-character-references','dom-texttrack-cues':'media-elements','entity-capdot':'named-character-references','attr-menu-compact':'obsolete','entity-Udbla':'named-character-references','boolean-attribute':'common-microsyntaxes','interfaces-for-url-manipulation':'urls','entity-bsime':'named-character-references','ix-handler-onblur':'section-index','aborting-a-document-load':'history','the-script-settings-determined-from-the-node':'webappapis','the-command':'the-command-element','entity-NotRightTriangleEqual':'named-character-references','entity-downharpoonright':'named-character-references','entity-ecy':'named-character-references','external':'system-state-and-capabilities','entity-ecirc':'named-character-references','texttracklist':'media-elements','entity-rightleftarrows':'named-character-references','script-s-document':'webappapis','entity-tdot':'named-character-references','entity-xodot':'named-character-references','entity-lneq':'named-character-references','ix-handler-window-onload':'section-index','entity-leftarrowtail':'named-character-references','insertion-point':'parsing','the-application-cache-selection-algorithm':'offline','concept-input-value-sting-date':'the-input-element','entity-NotLessEqual':'named-character-references','media-controller-volume-multiplier':'media-elements','entity-Racute':'named-character-references','document':'dom','entity-nwnear':'named-character-references','links-created-by-a-and-area-elements':'links','dom-canvas-getcontext':'the-canvas-element','rules-for-parsing-a-hash-name-reference':'common-microsyntaxes','handler-mediacontroller-oncanplaythrough':'media-elements','data-mining':'infrastructure','entity-zeetrf':'named-character-references','run-post-click-activation-steps':'content-models','the-rp-element':'the-rp-element','handler-window-onhashchange':'webappapis','dom-mediacontroller-muted':'media-elements','attr-command-checked':'the-command-element','attr-track-kind-keyword-subtitles':'the-track-element','entity-looparrowright':'named-character-references','the-li-element':'the-li-element','dom-a-coords':'obsolete','attr-hyperlink-hreflang':'links','dom-legend-align':'obsolete','parsing-main-inselect':'tree-constrction','entity-Escr':'named-character-references','past-names-map':'the-form-element','entity-gsime':'named-character-references','entity-mid':'named-character-references','entity-gsiml':'named-character-references','the-input-element-as-domain-specific-widgets':'rendering','selector-ltr':'links','event-media-loadstart':'media-elements','entity-luruhar':'named-character-references','htmltablecolelement':'the-colgroup-element','dom-form-submit':'the-form-element','entity-Ffr':'named-character-references','concept-date':'common-microsyntaxes','restrictions-on-content-models-and-on-attribute-values':'introduction','networking-task-source':'webappapis','dom-history-pushstate':'history','entity-Euml-legacy':'named-character-references','the-dl-element':'the-dl-element','exposed':'dom','lists-of-integers':'common-microsyntaxes','duration-time-component':'common-microsyntaxes','entity-hkswarow':'named-character-references','text-track-cue-start-time':'media-elements','entity-gnapprox':'named-character-references',entity-subsim':'named-character-references','entity-rharu':'named-character-references','entity-malt':'named-character-references','marquee-loop-count':'obsolete','entity-GreaterTilde':'named-character-references','entity-rhard':'named-character-references','entity-male':'named-character-references','entity-supne':'named-character-references','implicit-submission':'form-submission','attr-textarea-required':'the-textarea-element','dom-media-src':'media-elements','throw':'infrastructure','spin-the-event-loop':'webappapis','browsing-context-nested-through':'browsers','feed-the-parser':'the-xhtml-syntax','stack-of-open-elements':'parsing','entity-ulcrop':'named-character-references','entity-InvisibleComma':'named-character-references','entity-LeftRightArrow':'named-character-references','dom-input-stepup':'common-input-element-apis','entity-Proportion':'named-character-references','dom-table-caption':'the-table-element','using-the-button-element-to-define-a-command':'commands','attr-optgroup-disabled':'the-optgoup-element','entity-profline':'named-character-references','event-media-suspend':'media-elements','attr-command-type-state-command':'the-command-element','event-media-stalled':'media-elements','handler-ondrag':'webappapis','attr-input-autocomplete-on-state':'common-input-element-attributes','supported-property-indices':'infrastructure','entity-sdot':'named-character-references','entity-ffr':'named-character-references','dom-video-videowidth':'the-video-element','attr-table-rules':'obsolete','datetime-value':'the-time-element','attr-img-align':'obsolete','the-legend-element':'the-legend-element','entity-plusmn-legacy':'named-character-references','dom-videotracklist-selectedindex':'media-elements','entity-nsupset':'named-character-references','current-input-character':'parsing','dom-appcache-swapcache':'offline','dom-object-archive':'obsolete','forming-a-table':'attributes-common-to-td-and-th-elements','entity-NotNestedLessLess':'named-character-references','text-track-cue-size':'media-elements','dom-meter-alue':'the-meter-element','prompt-to-unload-a-document':'history','dom-document-alinkcolor':'obsolete','dom-blur':'editing','obsolete-but-conforming-features':'obsolete','refsXMLBASE':'references','entity-Intersection':'named-character-references','entity-aelig-legacy':'named-character-references','dom-track-default':'the-track-element','fire-waiting-when-waiting':'media-elements','entity-varpropto':'named-character-references','suffering-from-an-underflow':'constraints','entity-nVdash':'named-character-references','dom-datatransfer-effectallowed':'dnd','selector-default':'links','keywords-and-enumerated-attributes':'common-microsyntaxes','entity-LeftTriangleEqual':'named-character-references','attr-form-autocomplete-on-state':'the-form-element','dom-tdth-axis':'obsolete','entity-Zfr':'named-character-references','non-fatal-media-error':'media-elements','entity-doteqdot':'named-character-references','table-encoding-overrides':'parsing','the-h1-element':'the-h1-h2-h3-h4-h5-and-h6-elements','dom-validitystatevaluemissing':'constraints','entity-copy':'named-character-references','pre-click-activation-steps':'content-models','entity-Sc':'named-character-references','handler-window-onafterprint':'webappapis','entity-profalar':'named-character-references','sandboxed-navigation-browsing-context-flag':'the-iframe-element','ix-handler-onseeked':'section-index','dom-fieldset-disabled':'the-fieldset-element','entity-oslash':'named-character-references','dom-cva-validity':'constraints','entity-rdca':'named-character-references','ascii-compatible-character-encoding':'infrastructure','entity-Yuml':'named-character-references','entity-barwed':'named-character-references','entity-bigwedge':'named-character-references','entity-EqualTilde':'named-character-references','dom-textarea-wrap':'the-textarea-element','table-script-bom':'the-script-element','attr-track-kind-captions':'the-track-element','dom-datatransfer-getdata':'dnd','attr-input-placeholder':'common-input-element-attributes','dom-based-xslt-1.0-processors':'interactons-with-xpath-and-xslt','concept-param-parameter':'the-param-element','entity-integers':'named-character-references','entity-agrave-legacy':'named-character-references','entity-dblac':'named-character-references','entity-xnis':'named-character-references','entity-ecir':'named-character-references','table-uda-examples':'urls','entity-cuesc':'named-character-references','entity-ncap':'named-character-references','entity-NotLessTilde':'named-character-references','comment-state':'tokenization','entity-circledS':'named-character-references','entity-circledR':'named-character-references','entity-qprime':'named-character-references','entity-triplus':'named-character-references','entity-spar':'named-character-references','attr-tdth-valign':'obsolete','entity-Omega':'named-character-references','no-quirks-mode':'infrastructure','entity-nsubE':'named-character-references','suffering-from-a-custom-error':'constraints','dom-option-tvd':'the-option-element','event-media-timeupdate':'media-elements','entity-wopf':'name-character-references','the-h1-h2-h3-h4-h5-and-h6-elements':'the-h1-h2-h3-h4-h5-and-h6-elements','introduction-9':'rendering','introduction-8':'rendering','introduction-5':'webappapis','sections-and-headings':'rendering','introduction-7':'dnd','introduction-6':'editing','introduction-1':'forms','introduction-0':'media-elements','introduction-3':'links','introduction-2':'form-submission','entity-Dcaron':'named-character-references','meta-charset-during-parse':'tree-construction','entity-copy-legacy':'named-character-references','void-elements':'syntax','refsABNF':'references','drag-data-store-bitmap':'dnd','figcaption-as-alt-condition':'the-img-element','entity-grave':'named-character-references','history':'history','entity-sopf':'named-character-references','only-contemporary-times':'states-of-the-type-attribute','comment-start-dash-state':'tokenization','width-of-the-select-s-labels':'rendering','hyperlink-annotation':'links','menus':'the-menu-element','entity-Int':'named-character-references','misnested-tgs:-b-p-b-p':'the-end','stop-parsing':'the-end','entity-tprime':'named-character-references','sandboxed-seamless-iframes-flag':'the-iframe-element','allowed-to-navigate':'browsers','entity-ltri':'named-character-references','entity-thicksim':'named-character-references','entity-urtri':'named-character-references','the-input-element-as-a-range-control':'rendering','htmlaudioelement':'the-audio-element','entity-upsilon':'named-character-references','entity-eacute-legacy':'named-character-references','entity-qopf':'named-character-references','attr-style-type':'the-style-element','entity-plusdo':'named-character-references','handler-tracklist-onchange':'media-elements','dom-media-have_future_data':'media-elements','entity-Ccedil-legacy':'named-character-references','entity-plusdu':'named-character-references','seek-the-media-controller':'media-elements','text-type-text-state-and-search-state-type-search':'states-of-the-type-attribute','associatedSection':'headings-and-sections','entity-iuml-legacy':'named-charcter-references','entity-EmptySmallSquare':'named-character-references','refsWIN1254':'references','refsWIN1252':'references','refsBOCU1':'references','entity-topcir':'named-character-references','entity-Ugrave-legacy':'named-character-references','conformance-requirements':'infrastructure','entity-dotplus':'named-character-references','dom-form-acceptcharset':'the-form-element','dom-select-size':'the-select-element','concept-option-label':'the-option-element','entity-larrbfs':'named-character-references','auxiliary-browsing-contexts':'browsers','entity-nlarr':'named-character-references','entity-And':'named-character-references','concept-fe-values':'attributes-common-to-form-controls','entity-pfr':'named-character-references','concept-select-pick':'the-select-element','entity-equest':'named-character-references','entity-rsquor':'named-character-references','attr-param-name':'the-param-element','event':'infrastructure','handler-texttrackcue-onexit':'media-elements','handler-onratechange':'webappapis','entit-natural':'named-character-references','initial-code-entry-point':'webappapis','number-state-type-number':'states-of-the-type-attribute','task-queue':'webappapis','attr-img-src':'the-img-element','input-stream':'parsing','dom-fs-action':'attributes-common-to-form-controls','fire-a-dnd-event':'dnd','windowtimers':'timers','expiring-application-caches':'offline','concept-handler-error':'webappapis','http-aes-scheme':'iana','entity-uring':'named-character-references','handler-onmouseover':'webappapis','entity-Ubrcy':'named-character-references','insert-a-foreign-element':'tree-construction','entity-npr':'named-character-references','ix-handler-window-onoffline':'section-index','dom-colgroup-span':'the-colgroup-element','after-doctype-public-keyword-state':'tokenization','entity-mopf':'named-character-references','has-an-element-in-list-item-scope':'parsing','menus-intro':'the-menu-element','limiting-user-input-length':'attributes-common-to-form-controls','concept-event-listener':'infrastructure','entity-TScy':named-character-references','entity-NotSquareSuperset':'named-character-references','entity-Lcaron':'named-character-references','pragma-directives':'the-meta-element','entity-otilde':'named-character-references','entity-DotEqual':'named-character-references','entity-dsol':'named-character-references','attributes-for-embedded-content-and-images':'rendering','maps-to-the-pixel-length-property':'rendering','media-controllers':'media-elements','unload-a-document':'history','entity-Rscr':'named-character-references','entity-ApplyFunction':'named-character-references','entity-cdot':'named-character-references','phrasing-content-1':'rendering','phrasing-content-0':'content-models','linkstyle':'infrastructure','htmlallcollection':'common-dom-interfaces','entity-LeftTeeVector':'named-character-references','dom-window-focus':'editing','entity-napos':'named-character-references','the-tr-element':'the-tr-element','entity-roarr':'named-character-references','entity-nless':'named-character-references','handler-tracklistonaddtrack':'media-elements','clear-the-stack-back-to-a-table-row-context':'tree-construction','htmlpreelement':'the-pre-element','entity-oopf':'named-character-references','entity-scnsim':'named-character-references','the-draggable-attribute':'dnd','attr-body-text':'obsolete','attr-dir-auto-state':'global-attributes','entity-HilbertSpace':'named-character-references','attr-area-shape':'the-area-element','entity-nrarr':'named-character-references','concept-output-mode':'the-output-element','refsIANACHARSET':'references','entity-napE':'named-character-references','entity-AMP':'named-character-references','htmlvideoelement':'the-video-element','entity-nlArr':'named-character-references','entity-Oslash':'named-character-references','entity-Atilde-legacy':'named-character-references','entity-Wscr':'named-character-references','the-xhtml-syntax':'the-xhtml-syntax','concept-n-script':'webappapis','entity-mho':'named-character-references','appropriate-form-encoding-algorithm':'form-submission','entity-elinters':'nmed-character-references','dom-meter-low':'the-meter-element','windowbase64':'webappapis','dom-frame-noresize':'obsolete','parse-a-month-component':'common-microsyntaxes','dom-select-nameditem':'the-select-element','entity-delta':'named-character-references','dom-texttracklist-length':'media-elements','entity-iopf':'named-character-references','entity-TildeEqual':'named-character-references','attr-col-valign':'obsolete','handler-texttrackcue-onenter':'media-elements','entity-LeftTeeArrow':'named-character-references','concept-fe-checked':'attributes-common-to-form-controls','entity-vee':'named-character-references','attr-ol-start':'the-ol-element','entity-preccurlyeq':'named-character-references','entity-angrtvb':'named-character-references','dom-font-size':'obsolete','dom-input-placeholder':'the-input-element','run-synthetic-click-activation-steps':'content-models','dom-body-alink':'obsolete','entity-ruluhar':'named-character-references','entity-SucceedsSlantEqual':'named-character-references','appropriateend-tag-token':'tokenization','entity-nrArr':'named-character-references','dom-embed-src':'the-embed-element','attr-menu-label':'the-menu-element','htmltablerowelement':'the-tr-element','value-sanitization-algorithm':'the-input-element','htmlsourceelement':'the-source-element','entity-ominus':'named-character-references','entity-ccups':'named-character-references','collect-a-sequence-of-characters':'common-microsyntaxes','refsDOMPARSING':'references','the-accesskey-attribute':'editing','value-track-kind-alternate':'media-elements','text-level-semantics':'text-level-semantics','entity-Egrave-legacy':'named-character-references','xmlns-namespace':'namespaces','entity-Colone':'named-character-references','data-state':'tokenization','refsSELECTORS':'references','entity-LongLeftRightArrow':'named-character-references','entity-zigrarr':'named-character-references','concept-appcache-completeness':'offline','dom-script-charset':'the-script-element','attr-input-type-datetime-keyword':'the-input-element','dom-htmlallollection-tags':'common-dom-interfaces','attr-embed-name':'obsolete','dom-alert':'user-prompts','entity-nsqsube':'named-character-references','default-playback-start-position':'media-elements','the-table-element':'the-table-element','entity-Star':'named-character-references','dimRendering':'rendering','entity-lbrace':'named-character-references','attr-media-preload-none':'media-elements','entity-lbrack':'named-character-references','concept-meter-optimum':'the-meter-element','entity-Umacr':'named-character-references','entity-olarr':'named-character-references','entity-rarrap':'named-character-references','entity-Longleftrightarrow':'named-character-references','entity-prod':'named-character-references','entity-prop':'named-character-references','entity-Assign':'named-character-references','entity-NotLessGreater':'named-character-references','htmlframeelement':'obsolete','entity-subdot':'named-character-references','entity-GreaterFullEqual':'named-character-references','entity-trpezium':'named-character-refrences','entity-gt-legacy':'named-character-references','drag-data-store-allowed-effects-state':'dnd','dom-track-readystate':'the-track-element','entity-complexes':'named-character-references','attr-track-kind-metadata':'the-track-element','entity-boxbox':'named-character-references','attr-ol-type-keyword-lower-alpha':'the-ol-element','syntax-tags':'syntax','entity-oast':'named-character-references','entity-xoplus':'named-character-references','entity-Jfr':'named-character-references','entity-succeq':'named-character-references','the-id-attribute':'global-attributes','media-controller-position':'media-elements','introduction-4':'offline','entity-lEg':'named-character-references','entity-triminus':'named-character-references','entity-frac14-legacy':'named-character-references','entity-perp':'named-character-references','script-data-double-escaped-state':'tokenization','ix-handler-window-onerror':'section-index','input-author-notes':'forms','dom-a-protocol':'the-a-element','terminology':'infrastructure','dom-able-tfoot':'the-table-element','refsRFC1468':'references','entity-acy':'named-character-references','entity-acd':'named-character-references','form-control-dirname-attribute':'attributes-common-to-form-controls','entity-suphsub':'named-character-references','dom-fs-formaction':'attributes-common-to-form-controls','entity-frac12-legacy':'named-character-references','dom-navigator-registercontenthandler':'system-state-and-capabilities','script-processing-src-sync':'the-script-element','ix-event-handlers':'section-index','entity-rotimes':'named-character-references','dom-input-valueasnumber':'common-input-element-apis','dom-legend-form':'the-legend-element','overlong-form':'infrastructure','entity-acE':'named-character-references','entity-Hstrok':'named-character-references','entity-icirc':'named-character-references','dom-col-align':'obsolete','handler-appcache-onnoupdate':'offline','handler-mediacontroller-onpause':'media-elements','attr-iframe-src':'the-iframe-element','entity-RightDoubleBracket':'named-chracter-references','entity-beth':'named-character-references','command-facet-accesskey':'commands','entity-esim':'named-character-references','security-and-privacy':'system-state-and-capabilities','entity-beta':'named-character-references','attr-fs-method-get-keyword':'attributes-common-to-form-controls','entity-plankv':'named-character-references','entity-hookrightarrow':'named-character-references','entity-jfr':'named-character-references','location-of-the-media-resource':'media-elements','dom-link-charset':'obsolete','parser-pause-flag':'parsing','container-frame-element':'rendering','alphanumeric-ascii-characters':'common-microsyntaxes','relevant-namespace-object':'infrastructure','dom-option':'the-option-element','entity-zeta':'named-character-references','the-h6-element':'the-h1-h2-h3-h4-h5-and-h6-elements','input-impl-notes':'states-of-the-type-attribute','document-metadata':'the-html-element','refsCOMPUTABLE':'references','dom-audiotracklist-gettrackbyid':'media-elements','entity-rppolint':'named-chracter-references','document.writeln':'dynamic-markup-insertion','entity-vBarv':'named-character-references','ix-handler-onsubmit':'section-index','entity-uwangle':'named-character-references','entity-GreaterSlantEqual':'named-character-references','dom-iframe-scrolling':'obsolete','dom-frame-name':'obsolete','attr-command-type':'the-command-element','event-appcache-noupdate':'offline','application-cache-group':'offline','attr-marquee-truespeed':'obsolete','sandboxSubmitBlocked':'form-submission','non-negative-integers':'common-microsyntaxes','text-track-mode':'media-elements','syntax-attribute-name':'syntax','dom-validitystate-patternmismatch':'constraints','svg':'svg-0','drag-data-store-hot-spot-coordinate':'dnd','entity-fjlig':'named-character-references','set-the-event-handler-content-attribute-to-an-error':'webappapis','attr-area-shape-keyword-circle':'the-area-element','entity-NotGreater':'named-character-references','cors-settings-attributes':'urls','entity-napid':'named-character-references','the-meer-element':'the-meter-element','concept-week':'common-microsyntaxes','dom-fe-disabled':'attributes-common-to-form-controls','entity-lang':'named-character-references','valid-url':'urls','dom-texttrackcue-track':'media-elements','entity-NotGreaterLess':'named-character-references','entity-NegativeThickSpace':'named-character-references','entity-boxminus':'named-character-references','before-attribute-value-state':'tokenization','event-appcache-updateready':'offline','the-sub-element':'the-sub-and-sup-elements','entity-cirscir':'named-character-references','dom-textarea-required':'the-textarea-element','unloading-documents':'history','entity-Itilde':'named-character-references','attr-embed-src':'the-embed-element','script-execution-environment':'webappapis','entity-Vfr':'named-character-references','entity-aacute-legacy':'named-character-references','event-definition':'history','stall-timeout':'media-elements','attr-ol-reversed':'the-ol-element','valid-mime-type':'infrastructure','entity-wedgeq':'named-charater-references','entity-sqcups':'named-character-references','script-data-escape-start-dash-state':'tokenization','dom-frame-src':'obsolete','dom-node-childnodes':'infrastructure','entity-DoubleDot':'named-character-references','domsettabletokenlist':'infrastructure','entity-Yacute':'named-character-references','dom-input-value-value':'common-input-element-apis','fatal-decode-error':'media-elements','the-constraint-validation-api':'constraints','uint8clampedarray':'infrastructure','table-http-equiv':'the-meta-element','the-hr-element':'the-hr-element','dom-self':'browsers','sandboxed-automatic-features-browsing-context-flag':'the-iframe-element','entity-NotEqual':'named-character-references','dom-history-back':'history','entity-eplus':'named-character-references','handler-onloadedmetadata':'webappapis','entity-hoarr':'named-character-references','entity-there4':'named-character-references','htmlmeterelement':'the-meter-element','noframes':'obsolete','dom-marquee-bgcolor':'obsolete','entity-SquareSubsetEqual:'named-character-references','entity-laquo':'named-character-references','xml-compatible':'infrastructure','entity-natur':'named-character-references','refsX690':'references','extracting-encodings-from-meta-elements':'urls','entity-Cap':'named-character-references','delay-the-load-event':'the-end','dom-area-shape':'the-area-element','attr-img-vspace':'obsolete','entity-LeftArrowBar':'named-character-references','entity-nRightarrow':'named-character-references','number-of-days-in-month-month-of-year-year':'common-microsyntaxes','file-upload-state-type-file':'states-of-the-type-attribute','entity-UpArrowDownArrow':'named-character-references','default-button':'form-submission','concept-select-toggle':'the-select-element','links':'links','refsDOMEVENTS':'references','refsARIA':'references','dom-texttrackcue-line':'media-elements','a-style-sheet-that-is-blocking-scripts':'styling','attr-meta-http-equiv':'the-meta-element','htmldatalistelement':'the-datalist-element','dom-input-stepdown':'common-input-element-ais','entity-VerticalBar':'named-character-references','dom-appcache-obsolete':'offline','refsISO8601':'references','entity-ouml':'named-character-references','translate-enabled':'global-attributes','concept-appcache-init':'offline','event-appcache-obsolete':'offline','focus-management':'editing','attr-img-alt':'the-img-element','cors-settings-attribute':'urls','dom-command-ro-commandlabel':'commands','entity-boxhD':'named-character-references','dom-stylesheet-disabled':'infrastructure','dom-object-declare':'obsolete','entity-ntrianglerighteq':'named-character-references','entity-Nacute':'named-character-references','entity-uHar':'named-character-references','dom-location-hostname':'history','pending-parsing-blocking-script':'the-script-element','send-a-signal':'offline','entity-DownRightVectorBar':'named-character-references','entity-OpenCurlyQuote':'named-character-references','coercing-an-html-dom-into-an-infoset':'the-end','htmlinputelement':'the-input-element','dom-output-htmlfor':'the-output-element','andler-marquee-onstart':'obsolete','entity-dstrok':'named-character-references','media-controller-mute-override':'media-elements','script-processing-inline':'the-script-element','entity-boxVR':'named-character-references','entity-deg':'named-character-references','abort-a-document':'history','attr-select-required':'the-select-element','xhtml-document':'infrastructure','dom-document-images':'dom','activation-behavior':'content-models','entity-boxVL':'named-character-references','dom-source-type':'the-source-element','entity-boxVH':'named-character-references','entity-kgreen':'named-character-references','entity-boxVr':'named-character-references','text-0':'syntax','concept-appcache-manifest':'offline','dom-tdth-choff':'obsolete','entity-boxVl':'named-character-references','entity-boxVh':'named-character-references','entity-LeftFloor':'named-character-references','entity-asymp':'named-character-references','the-input-element-as-a-color-well':'rendering','htmlfontelement':'obsolete','dom-embed-name':'obsolete''conformance-classes':'infrastructure','special':'parsing','dom-media-network_no_source':'media-elements','entity-NewLine':'named-character-references','most-recently-reported-playback-state':'media-elements','concept-meter-low':'the-meter-element','entity-smile':'named-character-references','handler-onerror':'webappapis','entity-scy':'named-character-references','secondary-browsing-context':'browsers','character-reference-in-data-state':'tokenization','entity-eqcolon':'named-character-references','entity-sce':'named-character-references','attr-a-methods':'obsolete','entity-hksearow':'named-character-references','entity-lt-legacy':'named-character-references','times':'common-microsyntaxes','paused-for-user-interaction':'media-elements','entity-middot-legacy':'named-character-references','dom-document-links':'dom','entity-Precedes':'named-character-references','concept-input-max-default':'common-input-element-attributes','htmlbasefontelement':'obsolete','entity-scE':'named-character-references','attr-script-or':'obsolete','refsABOUT':'references','apis-for-creating-and-navigating-browsing-contexts-by-name':'browsers','entity-Zdot':'named-character-references','concept-row-group':'attributes-common-to-td-and-th-elements','parse-a-time-component':'common-microsyntaxes','concept-spellcheck-default-true':'editing-apis','dom-canvas-toblob':'the-canvas-element','sectioning-content-0':'content-models','dom-datatransferitem-getasstring':'dnd','selector-required':'links','refsWEBMCG':'references','entity-tshcy':'named-character-references','dom-ol-type':'the-ol-element','resolve-a-url':'urls','dom-datatransfer-setdragimage':'dnd','lists':'rendering','dom-input-dirname':'the-input-element','htmlallcollection-0':'common-dom-interfaces','dom-input-src':'the-input-element','entity-ulcorn':'named-character-references','dom-canvas-height':'the-canvas-element','dom-audiotrack-enabled':'media-elements','no-translate':'global-attributes','htmlmediaelement':'media-elements','entity-UpArrow':'named-character-references','webvtt-prser':'infrastructure','entity-Beta':'named-character-references','dom-texttrackcue-size':'media-elements','attr-object-hspace':'obsolete','attr-input-type-search-keyword':'the-input-element','entity-isindot':'named-character-references','attr-fe-name-charset':'attributes-common-to-form-controls','entity-uacute-legacy':'named-character-references','script-processing-empty':'the-script-element','definitions':'constraints','ix-handler-oncanplaythrough':'section-index','htmlcanvaselement':'the-canvas-element','handler-window-onunload':'webappapis','url':'urls','entity-lurdshar':'named-character-references','entity-ogt':'named-character-references','dom-tr-choff':'obsolete','attr-time-datetime':'the-time-element','the-body-element-0':'dom','entity-DownArrowBar':'named-character-references','entity-parsl':'named-character-references','editing':'editing','attr-dfn-title':'the-dfn-element','entity-xi':'named-character-references','dom-document-vlinkcolor':'obsolete','entity-eqsim':'named-character-references','entty-angrtvbd':'named-character-references','comma-separated-tokens':'common-microsyntaxes','entity-Coproduct':'named-character-references','entity-maltese':'named-character-references','entity-smallsetminus':'named-character-references','entity-rarrw':'named-character-references','entity-GreaterEqualLess':'named-character-references','the-kbd-element':'the-kbd-element','entity-rarrc':'named-character-references','entity-rarrb':'named-character-references','entity-succnapprox':'named-character-references','entity-lnE':'named-character-references','resource-sharing-check':'infrastructure','entity-rightrightarrows':'named-character-references','entity-reals':'named-character-references','dom-dim-height':'dimension-attributes','refsOPENSEARCH':'references','entity-lne':'named-character-references','dom-a-host':'the-a-element','entity-Laplacetrf':'named-character-references','ix-handler-window-onhashchange':'section-index','the-tfoot-element':'the-tfoot-element','entity-clubsuit':'named-character-references','basfont':'obsolete','entity-diamondsuit':'named-character-references','flow-content':'content-models','handler-window-onerror':'webappapis','dom-element-id':'infrastructure','entity-exponentiale':'named-character-references','dom-tbody-deleterow':'the-tbody-element','attr-body-marginright':'obsolete','handler-mediacontroller-onratechange':'media-elements','process-the-iframe-attributes':'the-iframe-element','entity-flat':'named-character-references','bidirectional-algorithm-formatting-character-ranges':'requirements-relating-to-bidirectional-algorithm-formatting-characters','entity-lesdoto':'named-character-references','entity-bdquo':'named-character-references','entity-easter':'named-character-references','entity-divideontimes':'named-character-references','entity-ntlg':'named-character-references','dom-track-loading':'the-track-element','entity-NotHumpDownHump':'named-character-references','dom-draggable':'dnd','entity-DiacriticalTilde':'named-character-references','selector-visited':'links','attr-col-width''obsolete','entity-iota':'named-character-references','img-yes':'the-img-element','dom-style-type':'the-style-element','entity-NotNestedGreaterGreater':'named-character-references','the-hr-element-0':'rendering','dom-mediacontroller-playbackrate':'media-elements','entity-diam':'named-character-references','entity-mnplus':'named-character-references','nested-browsing-contexts':'browsers','dom-hashchangeevent-newurl':'history','entity-NotLeftTriangleBar':'named-character-references','entity-Omicron':'named-character-references','adjust-foreign-attributes':'tree-construction','attr-media-autoplay':'media-elements','entity-eth':'named-character-references','entity-eta':'named-character-references','named-character-references':'named-character-references','handler-window-ononline':'webappapis','other-pragma-directives':'the-meta-element','htmlformcontrolscollection':'common-dom-interfaces','entity-Tilde':'named-character-references','entity-ReverseEquilibrium':'named-character-references','entity-iprod':'named-caracter-references','drag-data-store':'dnd','attr-tdth-nowrap':'obsolete','the-section-element':'the-section-element','the-drag-data-store':'dnd','attribute-s-serialized-name':'the-end','attr-input-autocomplete-off-state':'common-input-element-attributes','attr-fs-enctype-text':'attributes-common-to-form-controls','entity-nsmid':'named-character-references','entity-xdtri':'named-character-references','handler-onmousedown':'webappapis','attr-link-hreflang':'the-link-element','concept-dnd-ro':'dnd','concept-dnd-rw':'dnd','dom-col-choff':'obsolete','dom-a-target':'the-a-element','entity-cfr':'named-character-references','concept-error-handled':'webappapis','entity-iiota':'named-character-references','entity-iquest-legacy':'named-character-references','empty-cell':'attributes-common-to-td-and-th-elements','htmlolistelement':'the-ol-element','entity-weierp':'named-character-references','attr-input-pattern':'common-input-element-attributes','entity-plustwo':'named-character-references','concept-input-list':'commo-input-element-attributes','dom-p-align':'obsolete','attr-link-rel':'the-link-element','synchronising-multiple-media-elements':'media-elements','dom-tdth-nowrap':'obsolete','attr-link-rev':'obsolete','attr-iframe-marginheight':'obsolete','drag-and-drop-processing-model':'dnd','attr-datafld':'obsolete','entity-simdot':'named-character-references','the-input-element-as-a-checkbox-and-radio-button-widgets':'rendering','dom-meta-httpequiv':'the-meta-element','entity-ugrave-legacy':'named-character-references','current-drag-operation':'dnd','the-small-element':'the-small-element','command-facet-icon':'commands','refsEUCJP':'references','entity-rbarr':'named-character-references','ix-handler-onselect':'section-index','attr-tdth-axis':'obsolete','navigatorid':'system-state-and-capabilities','authors-using-html':'iana','entity-yopf':'named-character-references','script-s-global-object':'webappapis','entity-percnt':'named-character-references','dom-iscontenteditable':'editing','dom-datatransfer-types':'dnd','pagetrasitionevent':'history','home-subtree':'infrastructure','entity-cent':'named-character-references','entity-loplus':'named-character-references','dom-windowmodal-dialogarguments':'user-prompts','barprop':'browsers','entity-dzigrarr':'named-character-references','already-started':'the-script-element','entity-PartialD':'named-character-references','jump-to-a-code-entry-point':'webappapis','refsDASH':'references','entity-ascr':'named-character-references','entity-curlywedge':'named-character-references','handler-oncanplaythrough':'webappapis','attr-legend-align':'obsolete','source-browsing-context':'history','entity-Qopf':'named-character-references','dom-input-value-filename':'common-input-element-apis','the-stack-of-open-elements':'parsing','entity-ccaps':'named-character-references','entity-lessdot':'named-character-references','event-mediacontroller-canplaythrough':'media-elements','entity-upuparrows':'named-character-references','cdata-rcdata-restrictions':'syntax','using-the-command-attribute-on-command-elments-to-define-a-command-indirectly':'commands','entity-FilledVerySmallSquare':'named-character-references','attribute-name-state':'tokenization','dom-tdth-cellindex':'attributes-common-to-td-and-th-elements','entity-Wopf':'named-character-references','security-nav':'browsers','syntax-tag-omission':'syntax','entity-Ofr':'named-character-references','navigate-fragid-step':'history','dom-keygen-type':'the-keygen-element','htmllabelelement':'the-label-element','start-tags':'syntax','comment-end-dash-state':'tokenization','content-categories':'content-models','parsing-main-incolgroup':'tree-construction','the-optgroup-element':'the-optgroup-element','concept-select-option-list':'the-select-element','refsRFC1557':'references','explicitly-supported-xml-type':'history','dom-cva-willvalidate':'constraints','handler-mediacontroller-ondurationchange':'media-elements','the-history-interface':'history','entity-COPY-legacy':'named-character-references','htmlfieldsetelement':'the-fieldset-element','entity-angsph':'namedcharacter-references','entity-circledcirc':'named-character-references','reset-button-state-type-reset':'states-of-the-type-attribute','entity-Sopf':'named-character-references','scriptTag':'tree-construction','entity-spadesuit':'named-character-references','hierarchical-url':'urls','dom-area-rel':'the-area-element','attr-fs-enctype-urlencoded':'attributes-common-to-form-controls','paused-media-controller':'media-elements','entity-DownLeftVectorBar':'named-character-references','strip-leading-and-trailing-whitespace':'common-microsyntaxes','rcdata-end-tag-name-state':'tokenization','activation':'editing','header-and-data-cell-semantics':'attributes-common-to-td-and-th-elements','case-sensitivity-and-string-comparison':'infrastructure','namespaces':'namespaces','dom-form-item':'the-form-element','entity-hslash':'named-character-references','entity-wedge':'named-character-references','dom-tr-sectionrowindex':'the-tr-element','entity-backepsilon':'named-character-references','a-graphical-representation-of-someof-the-surrounding-text':'the-img-element','entity-Pcy':'named-character-references','entity-Hscr':'named-character-references','entity-iecy':'named-character-references','attr-meta-http-equiv-content-language':'the-meta-element','entity-models':'named-character-references','entity-COPY':'named-character-references','dom-a-text':'the-a-element','attr-input-type-button-keyword':'the-input-element','dom-select-type':'the-select-element','valid-mime-type-with-no-parameters':'infrastructure','entity-nleqslant':'named-character-references','parse-error':'parsing','dom-marquee-stop':'obsolete','entity-andand':'named-character-references','entity-ngeqslant':'named-character-references','quirks-mode':'infrastructure','character-encodings-0':'parsing','attr-link-href':'the-link-element','entity-laemptyv':'named-character-references','concept-encoding-confidence':'parsing','entity-tritime':'named-character-references','entity-lmoustache':'named-character-references','script-data-state':'tokenization','entity-ufr':'naed-character-references','cors-same-origin':'urls','split-a-string-on-commas':'common-microsyntaxes','entity-isinE':'named-character-references','entity-Cdot':'named-character-references','dom-applet-code':'obsolete','attr-object-align':'obsolete','html-mime-type':'infrastructure','entity-isins':'named-character-references','dom-form-reset':'the-form-element','entity-smid':'named-character-references','browsing-the-web':'history','text-track-showing':'media-elements','entity-larr':'named-character-references','resourceSuspend':'media-elements','entity-bigoplus':'named-character-references','entity-neArr':'named-character-references','entity-Yacute-legacy':'named-character-references','ix-handler-onloadedmetadata':'section-index','dom-barprop-visible':'browsers','dom-media-paused':'media-elements','handler-mediacontroller-onwaiting':'media-elements','entity-Gammad':'named-character-references','the-img-element':'the-img-element','entity-csupe':'named-character-references','concept-appcache-matches-fallback':offline','entity-Ecirc':'named-character-references','attr-meta-http-equiv-refresh':'the-meta-element','text-plain-encoding-algorithm':'form-submission','dom-input-min':'the-input-element','entity-mfr':'named-character-references','entity-LeftArrowRightArrow':'named-character-references','attr-form-autocomplete-off-state':'the-form-element','found-a-media-resource-specific-timed-track':'media-elements','syntax-attributes':'syntax','command-facet-checkedstate':'commands','entity-subseteq':'named-character-references','text-track-kind':'media-elements','concept-dnd-p':'dnd','dom-linkstyle-sheet':'infrastructure','dom-document-writeln':'dynamic-markup-insertion','base-url-change-steps':'infrastructure','entity-epsilon':'named-character-references','the-details-element':'the-details-element','plaintext-state':'tokenization','https-aes-scheme':'iana','entity-varsupsetneq':'named-character-references','element-content-categories':'section-index','parsing-cache-manifests':'offline','poster-frame':'the-video-elemen','refsWHATWGWIKI':'references','entity-xcap':'named-character-references','hasfeature':'common-dom-interfaces','attributes-0':'syntax','attributes-1':'section-index','handler-onmouseout':'webappapis','concept-input-min':'common-input-element-attributes','entity-vcy':'named-character-references','most-recently-reported-readiness-state':'media-elements','entity-LeftArrow':'named-character-references','attr-marquee-behavior-scroll':'obsolete','weeks':'common-microsyntaxes','handler-mediacontroller-onemptied':'media-elements','dom-document-nameditem':'dom','entity-simg':'named-character-references','entity-sime':'named-character-references','entity-scnap':'named-character-references','entity-siml':'named-character-references','resulting-autocompletion-state':'common-input-element-attributes','attr-fieldset-disabled':'the-fieldset-element','dom-form-length':'the-form-element','the-u-element':'the-u-element','handler-window-onmessage':'webappapis','entity-planckh':'named-character-references','attr-object-type':the-object-element','the-input-element-as-a-text-entry-widget':'rendering','entity-nsucceq':'named-character-references','attr-ol-type':'the-ol-element','master-command':'the-command-element','htmlhrelement':'the-hr-element','generic-task-sources':'webappapis','dom-input-readonly':'the-input-element','entity-dotminus':'named-character-references','default-media':'the-link-element','dom-area-search':'the-area-element','attr-link-urn':'obsolete','html-elements':'infrastructure','refsRFC2388':'references','dom-frame-longdesc':'obsolete','entity-dash':'named-character-references','entity-lotimes':'named-character-references','attr-media-preload-none-state':'media-elements','submitting-element-directionality':'attributes-common-to-form-controls','concept-meter-maximum':'the-meter-element','script-processing-defer':'the-script-element','concept-textarea-api-value':'the-textarea-element','the-input-element':'the-input-element','valid-global-date-and-time-string':'common-microsyntaxes','the-initial-insertion-mode':tree-construction','limited-to-only-non-negative-numbers-greater-than-zero':'common-dom-interfaces','dom-track-srclang':'the-track-element','entity-ordf-legacy':'named-character-references','attr-media-controls':'media-elements','htmlmetaelement':'the-meta-element','dom-location-hash':'history','entity-omid':'named-character-references','entity-div':'named-character-references','attr-fe-autofocus':'attributes-common-to-form-controls','entity-prec':'named-character-references','entity-dArr':'named-character-references','dom-marquee-scrollamount':'obsolete','entity-die':'named-character-references','entity-LowerLeftArrow':'named-character-references','parse-a-manifest':'offline','guidelines-for-exposing-cues-in-various-formats-as-text-track-cues':'media-elements','entity-plusacir':'named-character-references','dom-textarea-maxlength':'the-textarea-element','parse-a-yearless-date-string':'common-microsyntaxes','entity-nscr':'named-character-references','concept-dropzone-operation':'dnd','entity-Yopf':'named-chracter-references','attr-button-value':'the-button-element','dom-texttrack-disabled':'media-elements','entity-nsce':'named-character-references','script-processing-noscript':'the-script-element','attr-object-declare':'obsolete','video-object-fit':'rendering','attr-object-name':'the-object-element','event-definitions':'media-elements','entity-THORN':'named-character-references','fetching-resources':'urls','entity-iscr':'named-character-references','entity-mapstodown':'named-character-references','dom-document-fgcolor':'obsolete','dom-domstringmap-setitem':'common-dom-interfaces','dom':'dom','consumed':'parsing','element-dfn-dom':'element-definitions','entity-acirc-legacy':'named-character-references','entity-epsi':'named-character-references','dom-optgroup-label':'the-optgroup-element','entity-sqsupe':'named-character-references','frame-border-color':'rendering','handler-onabort':'webappapis','entity-nesim':'named-character-references','entity-varsupsetneqq':'named-character-references','syntax':'syntax','alowed-to-show-a-pop-up':'browsers','handler-onreset':'webappapis','palpable-content-0':'content-models','dom-fieldset-elements':'the-fieldset-element','entity-Iacute':'named-character-references','entity-llhard':'named-character-references','script-s-base-url':'webappapis','entity-Exists':'named-character-references','mathml-namespace':'namespaces','entity-LessEqualGreater':'named-character-references','print-when-loaded':'user-prompts','entity-GJcy':'named-character-references','event-media-canplay':'media-elements','entity-CapitalDifferentialD':'named-character-references','entity-divide-legacy':'named-character-references','entity-bkarow':'named-character-references','event-mediacontroller-loadedmetadata':'media-elements','selector-enabled':'links','dom-windowtimers-cleartimeout':'timers','entity-Esim':'named-character-references','form-submission-0':'attributes-common-to-form-controls','entity-bcong':'named-character-references','texttrackcue':'media-elements','dom-pre-width':'obsolete','refsRFC5724':'reerences','entity-boxur':'named-character-references','entity-quatint':'named-character-references','quotaexceedederror':'infrastructure','dom-basefont-color':'obsolete','handler-onloadeddata':'webappapis','entity-boxul':'named-character-references','dom-location-assign':'history','entity-boxuR':'named-character-references','overview-of-the-parsing-model':'parsing','dom-dragevent-datatransfer':'dnd','dom-option-defaultselected':'the-option-element','urls':'urls','the-select-element-0':'rendering','entity-mapstoleft':'named-character-references','entity-ocy':'named-character-references','dom-texttrackcue-getcueashtml':'media-elements','attr-input-maxlength':'common-input-element-attributes','entity-ropar':'named-character-references','attr-input-min':'common-input-element-attributes','eventinit':'infrastructure','attr-input-type-url-keyword':'the-input-element','entity-longleftarrow':'named-character-references','htmlembedelement':'the-embed-element','entity-Poincareplane':'named-character-references','dom-ma-areas':'the-map-element','attr-crossorigin-use-credentials':'urls','character-encoding-declaration':'the-meta-element','entity-gnap':'named-character-references','concept-uda-setter':'urls','entity-Square':'named-character-references','entity-nvlArr':'named-character-references','entity-lcedil':'named-character-references','best-practices-for-authors-using-media-elements':'media-elements','dom-dir-compact':'obsolete','dom-hr-noshade':'obsolete','entity-odsold':'named-character-references','attr-input-type-text-keyword':'the-input-element','the-source-element':'the-source-element','browsing-context-name':'browsers','receives-a-set-cookie-string':'infrastructure','attr-form-accept-charset':'the-form-element','entity-rAarr':'named-character-references','parse-a-url':'urls','entity-NotSucceeds':'named-character-references','attr-link-charset':'obsolete','entity-Uopf':'named-character-references','dom-element-tagname':'infrastructure','entity-RightTriangleBar':'named-character-references','entity-downarrow':'naed-character-references','table-descriptions-techniques':'the-table-element','entity-submult':'named-character-references','value-track-kind-none':'media-elements','entity-chi':'named-character-references','entity-late':'named-character-references','entity-Zeta':'named-character-references','ix-handler-onplay':'section-index','the-status-bar-barprop-object':'browsers','entity-xrarr':'named-character-references','attr-track-kind-keyword-descriptions':'the-track-element','entity-rightharpoonup':'named-character-references','credential-flag':'infrastructure','attr-input-type-image-keyword':'the-input-element','using-the-accesskey-attribute-to-define-a-command-on-other-elements':'commands','bc-focus-ergo-bcc-focus':'editing','attr-ol-type-state-decimal':'the-ol-element','htmltimeelement':'the-time-element','dom-appcache-idle':'offline','attribute-text':'element-definitions','dom-radionodelist-value':'common-dom-interfaces','attr-fe-name-isindex':'attributes-common-to-form-controls','character':'infrastructure',dom-history':'history','entity-iogon':'named-character-references','entity-curarr':'named-character-references','canceled-activation-steps':'content-models','event-dragover':'dnd','entity-squf':'named-character-references','latest-entry':'history','background':'introduction','htmlobjectelement':'the-object-element','security-document':'dom','dom-media-currenttime':'media-elements','dom-navigator-iscontenthandlerregistered':'system-state-and-capabilities','entity-gnsim':'named-character-references','entity-larrfs':'named-character-references','dom-table-createcaption':'the-table-element','entity-Map':'named-character-references','domstringmap-0':'common-dom-interfaces','invalidmodificationerror':'infrastructure','entity-cups':'named-character-references','application-x-www-form-urlencoded':'iana','paragraphs':'content-models','the-textarea-element-0':'rendering','entity-twoheadrightarrow':'named-character-references','phrasing-content':'content-models','entity-scap':'named-character-references','attr-meter-mn':'the-meter-element','attr-command-disabled':'the-command-element','entity-quot':'named-character-references','entity-Lang':'named-character-references','handler-ondblclick':'webappapis','entity-Dot':'named-character-references','dom-option-disabled':'the-option-element','entity-vzigzag':'named-character-references','encoding-sniffing-algorithm':'parsing','dom-tr-cells':'the-tr-element','reflecting-content-attributes-in-idl-attributes':'common-dom-interfaces','parsing':'parsing','entity-Darr':'named-character-references','attr-param-type':'obsolete','dom-input-checked':'common-input-element-apis','entity-Rcedil':'named-character-references','negative-tabindex':'editing','handler-mediacontroller-onended':'media-elements','dom-document-createelementns':'infrastructure','strip-line-breaks':'common-microsyntaxes','entity-andd':'named-character-references','dom-cva-checkvalidatity':'constraints','entity-roplus':'named-character-references','entity-nsubseteq':'named-character-references','entity-ETH-legacy':'naed-character-references','entity-gjcy':'named-character-references','alternative-style-sheet-sets':'infrastructure','concept-input-value-number-string':'the-input-element','entity-ETH':'named-character-references','entity-Sfr':'named-character-references','editing-host':'editing-apis','script-data-double-escaped-dash-state':'tokenization','entity-dot':'named-character-references','attr-spellcheck':'editing-apis','entity-oslash-legacy':'named-character-references','attr-a-charset':'obsolete','dom-br-clear':'obsolete','concept-datetime':'common-microsyntaxes','a-group-of-images-that-form-a-single-larger-picture-with-links':'the-img-element','text-track-hidden':'media-elements','hardwareLimitations':'infrastructure','entity-nisd':'named-character-references','attr-textarea-placeholder':'the-textarea-element','event-input-change':'common-input-element-apis','submit-button-state-type-submit':'states-of-the-type-attribute','entity-ac':'named-character-references','entity-af':'named-character-references','dom-textrea-defaultvalue':'the-textarea-element','local-dates-and-times':'common-microsyntaxes','editors':'infrastructure','media-timeline':'media-elements','entity-ap':'named-character-references','entity-yacute':'named-character-references','htmlselectelement':'the-select-element','entity-ovbar':'named-character-references','entity-Ouml':'named-character-references','concept-http-equivalent-get':'urls','xml-namespace':'namespaces','placeholder-label-option':'the-select-element','dir':'obsolete','entity-DownLeftVector':'named-character-references','attr-dataformatas':'obsolete','the-keygen-element-0':'rendering','dom-document-hasfocus':'editing','entity-Vee':'named-character-references','dom-input-width':'the-input-element','entity-ngeqq':'named-character-references','rules-for-updating-the-display-of-webvtt-text-tracks':'infrastructure','entity-bump':'named-character-references','entity-rang':'named-character-references','application-x-www-form-urlencoded-decoding-algorithm':'form-submission','attr-param-value':'he-param-element','attr-input-hspace':'obsolete','character-reference-in-rcdata-state':'tokenization','entity-Kcy':'named-character-references','entity-Alpha':'named-character-references','text-track-cue-text-position':'media-elements','handler-oninvalid':'webappapis','entity-planck':'named-character-references','align-descendants':'rendering','html-parser':'parsing','changing-the-encoding-while-parsing':'parsing','set-of-space-separated-tokens':'common-microsyntaxes','iana':'iana','entity-circlearrowright':'named-character-references','refsRFC2483':'references','dom-uda-hostname':'urls','entity-ssmile':'named-character-references','attr-meta-http-equiv-set-cookie':'the-meta-element','entity-measuredangle':'named-character-references','attr-object-standby':'obsolete','mouseevent':'infrastructure','attr-mod-datetime':'attributes-common-to-ins-and-del-elements','entity-pluscir':'named-character-references','stylesheet':'infrastructure','parse-a-time-string':'common-microsyntaxes','after-doctype-system-keywordstate':'tokenization','the-pattern-attribute':'common-input-element-attributes','content-type-sniffing:-text-or-binary':'urls','report-the-error':'webappapis','parsing-main-incaption':'tree-construction','concept-input-step-default-base':'common-input-element-attributes','entity-cscr':'named-character-references','dom-area-target':'the-area-element','attr-link-media':'the-link-element','handler-ontimeupdate':'webappapis','entity-Lcy':'named-character-references','dom-window-locationbar':'browsers','attr-fs-novalidate':'attributes-common-to-form-controls','table-uda':'urls','media-playback':'media-elements','entity-sup1':'named-character-references','entity-subset':'named-character-references','entity-sup3':'named-character-references','entity-sup2':'named-character-references','entity-prnsim':'named-character-references','entity-hardcy':'named-character-references','charset':'the-meta-element','auxiliary-browsing-context':'browsers','dom-media-startoffsettime':'media-elements','entity-NotHumpEqual':'named-caracter-references','the-before-html-insertion-mode':'tree-construction','entity-supe':'named-character-references','attr-input-type-number-keyword':'the-input-element','attr-hyperlink-type':'links','entity-bowtie':'named-character-references','form-submission-algorithm':'form-submission','sandboxPluginObject':'the-object-element','outline':'headings-and-sections','entity-supE':'named-character-references','entity-Ucirc-legacy':'named-character-references','attr-iframe-sandbox':'the-iframe-element','wrongdocumenterror':'infrastructure','script-processing-parser-inserted':'the-script-element','entity-circledast':'named-character-references','entity-Supset':'named-character-references','entity-rangle':'named-character-references','entity-capbrcup':'named-character-references','htmlquoteelement':'the-blockquote-element','user-prompts':'user-prompts','dom-video-poster':'the-video-element','entity-eDot':'named-character-references','entity-Barv':'named-character-references','listing':'obsolete','dom-object-codetpe':'obsolete','refsCP50220':'references','sandboxed-scripts-browsing-context-flag':'the-iframe-element','local-date-and-time-state-type-datetime-local':'states-of-the-type-attribute','entity-rtri':'named-character-references','entity-Imacr':'named-character-references','category-listed':'forms','entity-blank':'named-character-references','entity-qfr':'named-character-references','entity-Bfr':'named-character-references','embedded-content-2':'rendering','embedded-content-1':'embedded-content-1','embedded-content-0':'content-models','entity-REG':'named-character-references','entity-NotVerticalBar':'named-character-references','the-required-attribute':'common-input-element-attributes','manifests':'offline','entity-propto':'named-character-references','act-as-if-a-token-had-been-seen':'tree-construction','entity-uacute':'named-character-references','dom-navigator-appversion':'system-state-and-capabilities','htmlhtmlelement':'the-html-element','sectioning-root':'headings-and-sections','htmllinkelement':'the-lin-element','suffering-from-a-pattern-mismatch':'constraints','ix-handler-window-onbeforeunload':'section-index','has-a-style-sheet-that-is-blocking-scripts':'styling','language':'global-attributes','dom-track-kind':'the-track-element','entity-quaternions':'named-character-references','valid-list-of-integers':'common-microsyntaxes','entity-lbbrk':'named-character-references','entity-Mcy':'named-character-references','entity-larrhk':'named-character-references','entity-DoubleLongRightArrow':'named-character-references','unknown-images':'the-img-element','refsFILESYSTEMAPI':'references','dom-fae-form':'association-of-controls-and-forms','entity-Iota':'named-character-references','building-menus-and-toolbars':'the-menu-element','entity-rArr':'named-character-references','scroll-to-fragid':'history','elements-0':'syntax','elements-1':'section-index','limited-to-only-non-negative-numbers':'common-dom-interfaces','dom-img-longdesc':'obsolete','refsRFC4395':'references','entity-LessTilde':'named-character-references,'dom-select-length':'the-select-element','script-processing-for':'the-script-element','the-q-element':'the-q-element','refsRFC1345':'references','entity-bfr':'named-character-references','entity-sccue':'named-character-references','entity-nvHarr':'named-character-references','entity-yucy':'named-character-references','dom-tdth-bgcolor':'obsolete','entity-Cconint':'named-character-references','the-scrollbar-barprop-object':'browsers','dom-input-pattern':'the-input-element','dom-input-value-default-on':'common-input-element-apis','htmltablecaptionelement':'the-caption-element','entity-rcedil':'named-character-references','script-data-end-tag-name-state':'tokenization','dom-hx-align':'obsolete','use-div-for-wrappers':'the-section-element','entity-NotRightTriangleBar':'named-character-references','dom-a-charset':'obsolete','event-pagehide':'history','dom-area-coords':'the-area-element','entity-tbrk':'named-character-references','general-guidelines':'the-img-element','dom-fs-formtarget':'attributes-common-to-fom-controls','entry-script':'browsers','entity-block':'named-character-references','attr-input-dirname':'common-input-element-attributes','attr-input-checked':'the-input-element','dom-fs-target':'attributes-common-to-form-controls','entity-ffilig':'named-character-references','entity-backsim':'named-character-references','entity-Mellintrf':'named-character-references','htmldocument':'browsers','entity-intercal':'named-character-references','the-dirname-attribute':'common-input-element-attributes','attr-area-shape-default':'the-area-element','entity-prap':'named-character-references','media-controller-playback-rate':'media-elements','attributes-common-to-form-controls':'attributes-common-to-form-controls','image-map':'image-maps','attr-optgroup-label':'the-optgroup-element','entity-HorizontalLine':'named-character-references','entity-rcy':'named-character-references','entity-pound-legacy':'named-character-references','attr-iframe-sandbox-allow-scripts':'the-iframe-element','execute-the-script-block':'the-scrit-element','entity-rarrsim':'named-character-references','entity-downdownarrows':'named-character-references','dom-validitystate-rangeunderflow':'constraints','defineTimeline':'media-elements','entity-gE':'named-character-references','svg-namespace':'namespaces','entity-ouml-legacy':'named-character-references','misnested-tags:-b-i-b-i':'the-end','entity-PrecedesSlantEqual':'named-character-references','entity-djcy':'named-character-references','attr-link-methods':'obsolete','handler-mediacontroller-ontimeupdate':'media-elements','entity-lozenge':'named-character-references','entity-gg':'named-character-references','entity-ge':'named-character-references','entity-LeftDownVectorBar':'named-character-references','entity-gl':'named-character-references','attr-script-language':'obsolete','entity-gt':'named-character-references','entity-Emacr':'named-character-references','dom-iframe-longdesc':'obsolete','ix-handler-window-ononline':'section-index','attr-option-selected':'the-option-element','infrastructure':'inrastructure','parsing-main-afterbody':'tree-construction','svg-0':'svg-0','scripting-1':'scripting-1','entity-kappa':'named-character-references','wai-aria':'wai-aria','entity-Nfr':'named-character-references','dates':'common-microsyntaxes','entity-kscr':'named-character-references','entity-Superset':'named-character-references','insert-an-element-into-a-document':'infrastructure','entity-capcup':'named-character-references','attr-marquee-direction-down':'obsolete','dom-appcache-abort':'offline','dom-texttrackcue-text':'media-elements','rcdata-less-than-sign-state':'tokenization','entity-varnothing':'named-character-references','htmlbaseelement':'the-base-element','entity-jukcy':'named-character-references','entity-gbreve':'named-character-references','entity-hearts':'named-character-references','entity-ngE':'named-character-references','text-track-list-of-cues':'media-elements','entity-gesdotol':'named-character-references','dom-navigator-canplaytype':'media-elements','link-type-bookmark':'links','concept-nput-required':'common-input-element-attributes','refsTIS620':'references','entity-nge':'named-character-references','time-ranges':'media-elements','attr-area-shape-keyword-default':'the-area-element','entity-ngt':'named-character-references','the-link-element':'the-link-element','serializing-xhtml-fragments':'the-xhtml-syntax','text-track-cue-display-state':'media-elements','dom-canvas-width':'the-canvas-element','entity-npreceq':'named-character-references','entity-NotSquareSupersetEqual':'named-character-references','entity-xharr':'named-character-references','htmlbodyelement':'the-body-element','entity-CupCap':'named-character-references','entity-Lambda':'named-character-references','assigning-a-media-controller-declaratively':'media-elements','dom-iframe-marginwidth':'obsolete','entity-yacute-legacy':'named-character-references','entity-pertenk':'named-character-references','the-map-element':'the-map-element','dom-document-body':'dom','the-progress-element':'the-progress-element','entity-szlig':'named-haracter-references','entity-Pscr':'named-character-references','entity-succapprox':'named-character-references','entity-ogon':'named-character-references','entity-iocy':'named-character-references','dom-table-deletethead':'the-table-element','dom-link-disabled':'the-link-element','entity-Ascr':'named-character-references','entity-AElig-legacy':'named-character-references','design-notes':'introduction','entity-lrcorner':'named-character-references','entity-odiv':'named-character-references','entity-utdot':'named-character-references','entity-gneq':'named-character-references','dom-click':'editing','dom-videotrack-label':'media-elements','the-thead-element':'the-thead-element','event-hashchange':'history','entity-notni':'named-character-references','concept-plugin-secure':'infrastructure','concept-appcache-manifest-fallback':'offline','entity-thorn-legacy':'named-character-references','concept-embed-active':'the-embed-element','dom-top':'browsers','entity-nsupseteq':'named-character-references','audience':'itroduction','parse-a-duration-string':'common-microsyntaxes','entity-supplus':'named-character-references','dom-applet-alt':'obsolete','entity-nshortmid':'named-character-references','entity-precnapprox':'named-character-references','entity-supsetneq':'named-character-references','entity-precapprox':'named-character-references','run-canceled-activation-steps':'content-models','attr-base-target':'the-base-element','images':'rendering','requirements-relating-to-bidirectional-algorithm-formatting-characters':'requirements-relating-to-bidirectional-algorithm-formatting-characters','attributes-common-to-ins-and-del-elements':'attributes-common-to-ins-and-del-elements','entity-lfr':'named-character-references','dom-textarea-cols':'the-textarea-element','nomodificationallowederror':'infrastructure','the-video-element':'the-video-element','dom-media-network_empty':'media-elements','dom-document-all':'obsolete','the-meter-element-0':'rendering','dom-iframe-contentwindow':'the-iframe-element','dom-uda-search':'urls',dom-applet-name':'obsolete','refsRFC4648':'references','yearless-dates':'common-microsyntaxes','edits-and-tables':'edits-and-lists','title-on-style':'the-style-element','serializing-a-css-value':'infrastructure','the-script-block-s-fallback-character-encoding':'the-script-element','entity-rhov':'named-character-references','parent-browsing-context':'browsers','references':'references','entity-triangleq':'named-character-references','entity-YUcy':'named-character-references','entity-starf':'named-character-references','htmltablesectionelement':'the-tbody-element','entity-upsi':'named-character-references','entity-DoubleRightTee':'named-character-references','attr-source-type':'the-source-element','styling':'styling','relevant-application-cache':'offline','entity-langd':'named-character-references','handler-oninput':'webappapis','the-code-element':'the-code-element','entity-bumpE':'named-character-references','attr-fs-formnovalidate':'attributes-common-to-form-controls','syntax-text':'syntax','using-the-rulesfor':'parsing','list-of-scripts-that-will-execute-when-the-document-has-finished-parsing':'the-script-element','attr-command-title':'the-command-element','domstringmap':'common-dom-interfaces','entity-dharr':'named-character-references','entity-SHCHcy':'named-character-references','entity-dharl':'named-character-references','dom-event-target':'infrastructure','dom-col-width':'obsolete','file':'infrastructure','entity-MediumSpace':'named-character-references','handler-onloadstart':'webappapis','utf-8':'infrastructure','dialog-arguments':'user-prompts','text-track-cue-end-alignment':'media-elements','an-image-not-intended-for-the-user':'the-img-element','durations':'common-microsyntaxes','entity-nldr':'named-character-references','command-facet-action':'commands','entity-aelig':'named-character-references','entity-Larr':'named-character-references','script-data-double-escape-start-state':'tokenization','disowned-its-opener':'browsers','fallback-content':'content-models','dom-fs-encoding':'attributes-common-toform-controls','the-em-element':'the-em-element','css-element-reference-identifier':'infrastructure','entity-equals':'named-character-references','dom-media-texttracks':'media-elements','definitions-0':'webappapis','definitions-1':'webappapis','browsers':'browsers','dom-canvas-todataurl':'the-canvas-element','attr-embed-hspace':'obsolete','entity-Xfr':'named-character-references','dom-tbody-ch':'obsolete','dom-mod-cite':'attributes-common-to-ins-and-del-elements','tree-order':'infrastructure','concept-input-type-file-selected':'states-of-the-type-attribute','dom-document-embeds':'dom','the-session-history-of-browsing-contexts':'history','entity-midcir':'named-character-references','dom-table-rules':'obsolete','entity-fscr':'named-character-references','entity-amp-legacy':'named-character-references','refsRFC3676':'references','dom-timeranges-length':'media-elements','entity-lsim':'named-character-references','entity-nvrArr':'named-character-references','entity-ycirc':'named-character-references','headings-ad-sections':'headings-and-sections','entity-Sqrt':'named-character-references','plugins':'infrastructure','dom-audio':'the-audio-element','entity-gtlPar':'named-character-references','ix-handler-onmousewheel':'section-index','concept-appcache-foreign':'offline','insertion-mode':'parsing','mathml-text-integration-point':'tree-construction','entity-nequiv':'named-character-references','entity-sqsupseteq':'named-character-references','flow-content-1':'rendering','flow-content-0':'content-models','script-data-double-escaped-dash-dash-state':'tokenization','entity-frasl':'named-character-references','entity-TildeTilde':'named-character-references','entity-reg':'named-character-references','entity-opar':'named-character-references','dom-window-scrollbars':'browsers','entity-midast':'named-character-references','attr-iframe-frameborder':'obsolete','attr-col-charoff':'obsolete','convert-a-list-of-dimensions-to-a-list-of-pixel-values':'rendering','concept-event-type':'infrastructure','dom-texttrack-hidden':'media-elments','attr-a-urn':'obsolete','entity-sim':'named-character-references','entity-infintie':'named-character-references','entity-NotGreaterGreater':'named-character-references','entity-el':'named-character-references','attr-ul-type':'obsolete','entity-ee':'named-character-references','entity-eg':'named-character-references','entity-ijlig':'named-character-references','dom-domimplementation-createhtmldocument':'infrastructure','pending-application-cache-download-process-tasks':'offline','attr-col-span':'the-col-element','entity-amacr':'named-character-references','paragraph':'content-models','dom-innerhtml':'infrastructure','dom-html-version':'obsolete','entity-loang':'named-character-references','entity-SquareUnion':'named-character-references','numbers':'common-microsyntaxes','rules-for-parsing-a-legacy-color-value':'common-microsyntaxes','entity-cylcty':'named-character-references','entity-Igrave-legacy':'named-character-references','dom-area-protocol':'the-area-element','enabling-and-disabling-form-contros':'attributes-common-to-form-controls','entity-xuplus':'named-character-references','entity-PrecedesTilde':'named-character-references','entity-NotGreaterEqual':'named-character-references','adoptionAgency':'tree-construction','entity-nsim':'named-character-references','dom-history-go':'history','column-group-header':'attributes-common-to-td-and-th-elements','dom-accesskeylabel':'editing','dom-option-selected':'the-option-element','notfounderror':'infrastructure','refsXPATH10':'references','entity-nap':'named-character-references','entity-succcurlyeq':'named-character-references','entity-Hacek':'named-character-references','hierarchyrequesterror':'infrastructure','the-lang-and-xml:lang-attributes':'global-attributes','refsARIAIMPL':'references','dom-manipulation-task-source':'webappapis','dom-datatransferitemlist-length':'dnd','dom-uievent-detail':'infrastructure','after-doctype-public-identifier-state':'tokenization','the-dragevent-interface':'dnd','entity-Nscr':'named-character-references','dom-hr-size':obsolete','entity-FilledSmallSquare':'named-character-references','entity-zhcy':'named-character-references','entity-dollar':'named-character-references','interactive-content-0':'content-models','dom-time-datetime':'the-time-element','entity-Breve':'named-character-references','seeking':'media-elements','concept-appcache-status':'offline','event-media-pause':'media-elements','entity-oplus':'named-character-references','entity-OverBar':'named-character-references','entity-micro':'named-character-references','dom-datatransferitem-kind':'dnd','entity-Iscr':'named-character-references','entity-auml':'named-character-references','dom-validitystate-customerror':'constraints','entity-nwarhk':'named-character-references','ix-handler-onerror':'section-index','attr-table-datapagesize':'obsolete','entity-curvearrowleft':'named-character-references','generate-implied-end-tags':'tree-construction','refsRFC2119':'references','entity-ulcorner':'named-character-references','attr-tbody-char':'obsolete','the-personal-bar-barrop-object':'browsers','event-loops':'webappapis','entity-ograve':'named-character-references','entity-ssetmn':'named-character-references','dom-area-rellist':'the-area-element','entity-rHar':'named-character-references','entity-upsih':'named-character-references','attr-embed-align':'obsolete','attr-img-ismap':'the-img-element','dom-command-command':'the-command-element','charset1024':'the-meta-element','dom-script-event':'obsolete','dom-iframe-frameborder':'obsolete','entity-timesd':'named-character-references','dom-windowtimers-setinterval':'timers','entity-timesb':'named-character-references','entity-Element':'named-character-references','completely-loaded':'the-end','entity-mapsto':'named-character-references','dom-tr-ch':'obsolete','entity-rightharpoondown':'named-character-references','attr-media-preload-metadata-state':'media-elements','entity-phi':'named-character-references','dom-hidden':'editing','timed-text-tracks':'media-elements','entity-OverBracket':'named-character-references','entity-Jcirc':named-character-references','parse-state':'parsing','entity-ntriangleright':'named-character-references','the-audio-element':'the-audio-element','multipart-form-data-encoding-algorithm':'form-submission','attr-object-border':'obsolete','handler-window-onbeforeprint':'webappapis','read-media':'history','refsBECSS':'references','sandboxWindowOpen':'browsers','dom-img-height':'the-img-element','simple-dialogs':'user-prompts','text-content':'content-models','attr-input-step':'common-input-element-attributes','dom-area-pathname':'the-area-element','handler-window-onfocus':'webappapis','ix-handler-onload':'section-index','the-a-element':'the-a-element','refsUNIVCHARDET':'references','interactive':'infrastructure','attr-tr-char':'obsolete','entity-Wedge':'named-character-references','entity-rarrpl':'named-character-references','the-colgroup-element':'the-colgroup-element','entity-coloneq':'named-character-references','cache-failure-steps':'offline','attr-body-alink':'obsolete','dom-select-item':'the-select-element,'audiotrack':'media-elements','embedding-custom-non-visible-data-with-the-data-attributes':'global-attributes','dom-media-controls':'media-elements','attr-table-border':'the-table-element','attr-track-kind-keyword-captions':'the-track-element','handler-appcache-onchecking':'offline','attr-input-type-week-keyword':'the-input-element','maximum-allowed-value-length':'attributes-common-to-form-controls','entity-larrlp':'named-character-references','refsCHARMOD':'references','attr-dir-rtl-state':'global-attributes','entity-DoubleContourIntegral':'named-character-references','before-doctype-public-identifier-state':'tokenization','datatransfer':'dnd','dom-navigator-useragent':'system-state-and-capabilities','attr-style-title':'the-style-element','entity-doublebarwedge':'named-character-references','entity-dtdot':'named-character-references','entity-euml':'named-character-references','concept-input-max':'common-input-element-attributes','entity-gimel':'named-character-references','entity-urcrop':'named-character-eferences','entity-Icy':'named-character-references','entity-atilde':'named-character-references','list-of-dragged-nodes':'dnd','the-abbr-element':'the-abbr-element','attr-style-scoped':'the-style-element','the-autocomplete-attribute':'common-input-element-attributes','refsXMLNS':'references','restrictions-for-contents-of-script-elements':'the-script-element','entity-cuwed':'named-character-references','structure-of-this-specification':'introduction','valid-duration-string':'common-microsyntaxes','dom-window-stop':'browsers','dom-input-max':'the-input-element','dom-applet-codebase':'obsolete','attr-param-valuetype':'obsolete','storage-mutex':'webappapis','entity-subseteqq':'named-character-references','parse-a-date-component':'common-microsyntaxes','other-applicable-specifications':'infrastructure','user-interface':'media-elements','entity-Rfr':'named-character-references','entity-zwj':'named-character-references','media-resource':'media-elements','entity-nsqsupe':'named-character-references','entity-NotExits':'named-character-references','establish-script-block-source':'the-script-element','refsRFC6350':'references','embedded-content':'content-models','interfaces':'section-index','collections-0':'common-dom-interfaces','dom-input-value-default':'common-input-element-apis','element-restrictions':'syntax','entity-nearhk':'named-character-references','dom-body-link':'obsolete','entity-radic':'named-character-references','entity-gacute':'named-character-references','document.write':'dynamic-markup-insertion','element-dfn-contexts':'element-definitions','entity-Fscr':'named-character-references','handler-ondragover':'webappapis','compliance-with-other-specifications':'introduction','dom-texttrack-language':'media-elements','entity-nlsim':'named-character-references','entity-NotSucceedsTilde':'named-character-references','entity-parsim':'named-character-references','entity-lrarr':'named-character-references','entity-OverParenthesis':'named-character-references','dom-media-controller':'media-elements','media-elemen':'media-elements','downloading-or-updating-an-application-cache':'offline','entity-osol':'named-character-references','entity-Otilde-legacy':'named-character-references','ix-handler-ondurationchange':'section-index','entity-vBar':'named-character-references','attr-textarea-wrap-hard-state':'the-textarea-element','textarea-effective-width':'rendering','dom-input-list':'common-input-element-apis','entity-DotDot':'named-character-references','event-popstate':'history','entity-lAtail':'named-character-references','dom-a-hostname':'the-a-element','multicol':'obsolete','entity-ofcir':'named-character-references','entity-nhArr':'named-character-references','dom-windowmodal-returnvalue':'user-prompts','entity-sol':'named-character-references','entity-mapstoup':'named-character-references','entity-Equilibrium':'named-character-references','concept-dropzone-match':'dnd','ix-handler-onmouseover':'section-index','parsing-main-inbody':'tree-construction','concept-http-equivalent-headers':'urls','entity-fopf':'named-chaacter-references','entity-Qscr':'named-character-references','a-short-phrase-or-label-with-an-alternative-graphical-representation:-icons-logos':'the-img-element','dom-link-href':'the-link-element','pragma-set-default-language':'the-meta-element','entity-ThinSpace':'named-character-references','entity-RightArrowBar':'named-character-references','newlines':'syntax','event-mediacontroller-canplay':'media-elements','dom-spellcheck':'editing-apis','entity-NotTildeEqual':'named-character-references','dom-track-none':'the-track-element','entity-Hfr':'named-character-references','concept-rel-extensions':'links','drag-data-store-default-feedback':'dnd','limited-quirks-mode':'infrastructure','attr-form-name':'the-form-element','event-offline':'offline','big':'obsolete','entity-incare':'named-character-references','bidirectional-text':'rendering','entity-LJcy':'named-character-references','entity-triangleleft':'named-character-references','parser-inserted':'the-script-element','entity-ncy':'named-character-references,'entity-NotSquareSubsetEqual':'named-character-references','dom-media-network_idle':'media-elements','root-element-of-a-document-object':'infrastructure','entity-rightleftharpoons':'named-character-references','entity-gtreqqless':'named-character-references','converted-to-ascii-lowercase':'infrastructure','valid-floating-point-number':'common-microsyntaxes','dom-option-text':'the-option-element','refsECMA357':'references','examples':'examples','refsWIN874':'references','the-button-element-0':'rendering','refsCSSATTR':'references','attr-input-type-keywords':'the-input-element','dom-marquee-vspace':'obsolete','opening-the-input-stream':'dynamic-markup-insertion','entity-approxeq':'named-character-references','entity-caps':'named-character-references','dom-media-currentsrc':'media-elements','refsCSSCOLOR':'references','entity-IJlig':'named-character-references','dom-document-write':'dynamic-markup-insertion','dom-details-open':'the-details-element','escapingString':'the-end','entity-sqsubseteq':'named-charactr-references','dom-media-have_metadata':'media-elements','content-type-sniffing-0':'urls','entity-ntilde-legacy':'named-character-references','entity-rsquo':'named-character-references','valid-browsing-context-name':'browsers','self-closing-start-tag-state':'tokenization','entity-thickapprox':'named-character-references','entity-Ocirc-legacy':'named-character-references','entity-comp':'named-character-references','refsRFC1842':'references','entity-hfr':'named-character-references','dom-select-selectedoptions':'the-select-element','text-track-cue-line-position':'media-elements','entity-subsetneqq':'named-character-references','month-state-type-month':'states-of-the-type-attribute','acknowledgements':'acknowledgements','dom-col-span':'the-col-element','entity-DD':'named-character-references','common-event-behaviors':'common-input-element-apis','entity-Prime':'named-character-references','transferable-objects':'common-dom-interfaces','entity-xopf':'named-character-references','the-iframe-element':'the-iframe-eement','bring-the-media-element-up-to-speed-with-its-new-media-controller':'media-elements','entity-Rang':'named-character-references','external-resource-link':'links','dom-marquee-width':'obsolete','entity-DifferentialD':'named-character-references','attr-ol-type-state-lower-roman':'the-ol-element','attr-hyperlink-target':'links','script-data-escaped-end-tag-name-state':'tokenization','entity-topf':'named-character-references','dom-track-error':'the-track-element','signed-integers':'common-microsyntaxes','refsCSSOM':'references','entity-realpart':'named-character-references','entity-vltri':'named-character-references','linkui':'the-link-element','entity-cudarrr':'named-character-references','valid-e-mail-address':'states-of-the-type-attribute','unloading-document-visibility-change-steps':'history','entity-cudarrl':'named-character-references','being-rendered':'rendering','refsGBK':'references','entity-UnderBar':'named-character-references','dom-a-port':'the-a-element','entity-zopf':'named-character-referenes','documents-in-the-dom':'dom','ix-handler-onfocus':'section-index','attr-input-max':'common-input-element-attributes','refsMEDIAFRAG':'references','entity-DiacriticalDot':'named-character-references','script-s-browsing-context':'webappapis','entity-ltdot':'named-character-references','entity-NotLeftTriangleEqual':'named-character-references','entity-RoundImplies':'named-character-references','handler-onmousewheel':'webappapis','event-dragend':'dnd','dom-media-readystate':'media-elements','current-media-controller':'media-elements','syntax-references':'common-microsyntaxes','ix-handler-ondragstart':'section-index','valid-week-string':'common-microsyntaxes','entity-Del':'named-character-references','concept-fetch-loaded':'urls','entity-nvrtrie':'named-character-references','primary-context':'the-canvas-element','entity-Eogon':'named-character-references','concept-column':'attributes-common-to-td-and-th-elements','rawtext-end-tag-open-state':'tokenization','entity-lrhar':'named-character-references','texttrck':'media-elements','handler-onmouseup':'webappapis','attr-body-marginbottom':'obsolete','entity-Hopf':'named-character-references','entity-dcaron':'named-character-references','attr-meter-max':'the-meter-element','valid-time-string':'common-microsyntaxes','attr-textarea-cols-value':'the-textarea-element','attr-meta-http-equiv-content-type':'the-meta-element','entity-LeftTriangle':'named-character-references','attr-fs-target':'attributes-common-to-form-controls','entity-RightDownVector':'named-character-references','entity-blacktriangleleft':'named-character-references','floating-point-numbers':'common-microsyntaxes','entity-Atilde':'named-character-references','htmldivelement':'the-div-element','entity-DownBreve':'named-character-references','entity-DownRightVector':'named-character-references','stopped-due-to-errors':'media-elements','dom-input-align':'obsolete','entity-yen-legacy':'named-character-references','dom-tr-insertcell':'the-tr-element','validity-states':'constraints','event-mediacontroller-endd':'media-elements','entity-Rho':'named-character-references','selector-rtl':'links','handler-onmousemove':'webappapis','dom-textarea-type':'the-textarea-element','entity-nvsim':'named-character-references','navigating-auxiliary-browsing-contexts-in-the-dom':'browsers','unit-of-related-similar-origin-browsing-contexts':'browsers','entity-subedot':'named-character-references','entity-lmidot':'named-character-references','entity-Tstrok':'named-character-references','refsCSS':'references','entity-VerticalTilde':'named-character-references','week-state-type-week':'states-of-the-type-attribute','creating-and-inserting-elements':'tree-construction','entity-risingdotseq':'named-character-references','htmloptionscollection-0':'common-dom-interfaces','entity-mldr':'named-character-references','entity-egsdot':'named-character-references','entity-cwint':'named-character-references','the-canvas-element':'the-canvas-element','parsing-xhtml-documents':'the-xhtml-syntax','fetch':'urls','invalidaccesserror':'infrastructure,'entity-erDot':'named-character-references','entity-boxHD':'named-character-references','event-appcache-checking':'offline','entity-Dashv':'named-character-references','entity-boxHU':'named-character-references','after-doctype-name-state':'tokenization','parsing-html-fragments':'the-end','dom-texttrackcue-starttime':'media-elements','refsUTR36':'references','specially-focusable':'editing','entity-boxHd':'named-character-references','entity-abreve':'named-character-references','algorithm-for-growing-downward-growing-cells':'attributes-common-to-td-and-th-elements','concept-marquee-off':'obsolete','entity-boxHu':'named-character-references','entity-numero':'named-character-references','entity-rtrie':'named-character-references','dom-media-pause':'media-elements','entity-euro':'named-character-references','entity-rtrif':'named-character-references','after-attribute-name-state':'tokenization','entity-kjcy':'named-character-references','concept-mo-invoke':'infrastructure','dom-marquee-truespeed':'obsolete','selctor-indeterminate':'links','concept-js-deref':'webappapis','entity-sup2-legacy':'named-character-references','entity-ii':'named-character-references','entity-solbar':'named-character-references','frames-and-framesets':'rendering','entity-in':'named-character-references','entity-swnwar':'named-character-references','entity-ic':'named-character-references','attr-tbody-charoff':'obsolete','attr-input-type-hidden-keyword':'the-input-element','documentEncoding':'parsing','dom-track-track':'the-track-element','entity-smt':'named-character-references','htmloptionelement':'the-option-element','the-command-element':'the-command-element','entity-leftrightsquigarrow':'named-character-references','entity-isin':'named-character-references','the-execution-of-scripts-that-are-moving-across-multiple-documents':'the-end','dom-uda-pathname':'urls','concept-textarea-raw-value':'the-textarea-element','entity-GreaterEqual':'named-character-references','skip-white_space-characters':'common-microsyntaxes','entity-Gfr':'named-chaacter-references','doctype-name-state':'tokenization','attr-input-type-checkbox-keyword':'the-input-element','entity-Iogon':'named-character-references','dom-history-forward':'history','entity-psi':'named-character-references','entity-fork':'named-character-references','offsets-into-the-media-resource':'media-elements','a-type-that-the-user-agent-knows-it-cannot-render':'media-elements','constraints':'constraints','history-notes':'history','attr-input-multiple':'common-input-element-attributes','entity-Fopf':'named-character-references','entity-Kscr':'named-character-references','dom-htmloptionscollection-setter':'common-dom-interfaces','dom-audio-s':'the-audio-element','sandboxed-forms-browsing-context-flag':'the-iframe-element','text-track-cue-vertical-growing-right-writing-direction':'media-elements','entity-bumpe':'named-character-references','script-processing-start':'the-script-element','concept-marquee-on':'obsolete','dom-texttrack-removecue':'media-elements','attr-input-accept':'states-of-the-type-atribute','entity-lharul':'named-character-references','dom-input-defaultvalue':'the-input-element','the-translate-attribute':'global-attributes','the-placeholder-attribute':'common-input-element-attributes','dom-table-bgcolor':'obsolete','dom-iframe-sandbox':'the-iframe-element','text-track-cue-snap-to-lines-flag':'media-elements','command-facet-disabledstate':'commands','entity-nsup':'named-character-references','entity-therefore':'named-character-references','attr-details-open':'the-details-element','the-title-attribute':'global-attributes','dom-document-namedItem-which':'dom','entity-nsub':'named-character-references','dom-object-typemustmatch':'the-object-element','entity-numsp':'named-character-references','dom-document-commands':'commands','a-group-of-images-that-form-a-single-larger-picture-with-no-links':'the-img-element','concept-input-type-image-coordinate':'states-of-the-type-attribute','entity-Because':'named-character-references','entity-frac45':'named-character-references','attr-area-alt':'thearea-element','represented-by-the-collection':'infrastructure','obsolete-permitted-doctype':'syntax','entity-awint':'named-character-references','entity-eogon':'named-character-references','entity-Rcaron':'named-character-references','attr-input-size':'common-input-element-attributes','attr-dim-height':'dimension-attributes','locked-for-reset':'the-form-element','entity-ast':'named-character-references','entity-sext':'named-character-references','entity-erarr':'named-character-references','entity-imath':'named-character-references','the-details-element-0':'rendering','entity-ncup':'named-character-references','entity-supsetneqq':'named-character-references','entity-quot-legacy':'named-character-references','attr-menu-type':'the-menu-element','entity-frown':'named-character-references','dom-a-media':'the-a-element','attr-input-value':'the-input-element','supported-property-names':'infrastructure','dom-command-ro-commandhidden':'commands','list-of-the-descendant-browsing-contexts':'browsers','plaintext':'obsoete','entity-odot':'named-character-references','dom-command-ro-commandtype':'commands','expose-a-user-interface-to-the-user':'media-elements','handler-oncontextmenu':'webappapis','entity-Proportional':'named-character-references','attr-object-vspace':'obsolete','unexpected-markup-in-tables':'the-end','ix-handler-onsuspend':'section-index','attr-datasrc':'obsolete','attr-meta-charset':'the-meta-element','transparently-follow-the-redirect':'urls','dom-image-w':'the-img-element','ix-handler-onmouseup':'section-index','dom-texttrackcue-id':'media-elements','scriptForeignEndTag':'tree-construction','entity-nrtri':'named-character-references','attr-tdth-width':'obsolete','reset-the-form-owner':'association-of-controls-and-forms','entity-QUOT':'named-character-references','entity-fpartint':'named-character-references','checkbox-state-type-checkbox':'states-of-the-type-attribute','entity-phiv':'named-character-references','refsJSURL':'references','filelist':'infrastructure','concept-fetch-total':'urls','entity-gesoto':'named-character-references','entity-Bopf':'named-character-references','text':'infrastructure','attr-col-align':'obsolete','multipart-x-mixed-replace':'iana','entity-fllig':'named-character-references','entity-uogon':'named-character-references','dom-frame-contentdocument':'obsolete','entity-lbrke':'named-character-references','dom-media-seeking':'media-elements','notsupportederror':'infrastructure','running-mutation-observers':'browsers','entity-DownTee':'named-character-references','media-controller-duration':'media-elements','entity-sqsup':'named-character-references','entity-DownRightTeeVector':'named-character-references','entity-sqsub':'named-character-references','the-figcaption-element':'the-figcaption-element','dom-datatransfer-addelement':'dnd','recommended-reading':'introduction','entity-uarr':'named-character-references','selector-link':'links','event-click':'infrastructure','value-track-kind-commentary':'media-elements','attr-marquee-direction':'obsolete','the-head-element-0':'dom','entit-rarrtl':'named-character-references','attr-video-poster':'the-video-element','normal-elements':'syntax','dom-img-hspace':'obsolete','custom-request-headers':'infrastructure','entity-LeftUpDownVector':'named-character-references','entity-nspar':'named-character-references','dom-script-type':'the-script-element','entity-larrpl':'named-character-references','entity-SupersetEqual':'named-character-references','initial-playback-position':'media-elements','plugin':'infrastructure','common-dom-interfaces':'common-dom-interfaces','attr-meta-scheme':'obsolete','attributes':'element-definitions','entity-Epsilon':'named-character-references','ix-handler-onmousedown':'section-index','comment':'tokenization','entity-jcirc':'named-character-references','dom-div-align':'obsolete','entity-geqslant':'named-character-references','concept-appcache-onlinewhitelist-wildcard':'offline','refsUNDO':'references','browsing-context':'browsers','dom-textarea-textlength':'the-textarea-element','entity-hyphen':'named-character-referencs','dom-media-audiotracks':'media-elements','media-element-load-algorithm':'media-elements','dom-audiotrack-label':'media-elements','entity-bne':'named-character-references','dom-textarea-placeholder':'the-textarea-element','event-media-seeked':'media-elements','entity-cupdot':'named-character-references','entity-ltcir':'named-character-references','telephone-state-type-tel':'states-of-the-type-attribute','dom-param-type':'obsolete','color-state-type-color':'states-of-the-type-attribute','dom-videotracklist-length':'media-elements','concept-input-value-dirty-flag':'the-input-element','dom-media-playbackrate':'media-elements','dom-style-media':'the-style-element','entity-bigstar':'named-character-references','attr-tr-valign':'obsolete','playing-the-media-resource':'media-elements','defining-term':'the-dfn-element','the-link-is-an-alternative-stylesheet':'links','dom-datatransfer-cleardata':'dnd','tokenization':'tokenization','entity-NotEqualTilde':'named-character-references','dom-param-valuetype':'obsolete''attr-object-codetype':'obsolete','noopener':'browsers','dom-optgroup-disabled':'the-optgroup-element','entity-ifr':'named-character-references','the-h2-element':'the-h1-h2-h3-h4-h5-and-h6-elements','entity-iff':'named-character-references','htmldlistelement':'the-dl-element','entity-fltns':'named-character-references','concept-events-trusted':'infrastructure','entity-bigtriangledown':'named-character-references','center':'obsolete','entity-bprime':'named-character-references','entity-xcup':'named-character-references','dom-window-toolbar':'browsers','ix-handler-ondragenter':'section-index','concept-frag-parse-context':'the-end','entity-lscr':'named-character-references','global-attributes':'global-attributes','concept-select-size':'the-select-element','nextid':'obsolete','elements-in-the-dom':'elements','value-track-kind-subtitle':'media-elements','dom-media-loop':'media-elements','attr-area-shape-poly':'the-area-element','dom-option-tv':'the-option-element','doctype-system-identifier-single-quoted-state':tokenization','dom-document-querycommandsupported':'editing-apis','the-fieldset-element':'the-fieldset-element','entity-Abreve':'named-character-references','entity-minusdu':'named-character-references','attr-xml-lang':'global-attributes','attr-link-target':'obsolete','entity-cupcup':'named-character-references','concept-input-value-date-string':'the-input-element','dom-document-createelement':'infrastructure','dom-form-checkvalidity':'the-form-element','table-layout-techniques':'the-table-element','entity-bigcirc':'named-character-references','sandboxed-origin-browsing-context-flag':'the-iframe-element','attr-button-type-button-state':'the-button-element','dom-htmlselectelement-setter':'the-select-element','entity-ReverseElement':'named-character-references','dom-iframe-contentdocument':'the-iframe-element','attr-command-label':'the-command-element','playing-media-controller':'media-elements','ix-handler-onkeyup':'section-index','attr-body-link':'obsolete','sample-handler-impl':'system-state-and-capabilitis','handler-onreadystatechange':'webappapis','handler-onkeypress':'webappapis','rules-for-serializing-simple-color-values':'common-microsyntaxes','entity-or':'named-character-references','attr-textarea-wrap':'the-textarea-element','the-doctype':'syntax','refsHTMLDIFF':'references','create-an-impotent-script':'webappapis','entity-oS':'named-character-references','suffering-from-a-type-mismatch':'constraints','event-appcache-error':'offline','application-cache':'offline','entity-LeftUpVectorBar':'named-character-references','refsWIN949':'references','dom-lang':'global-attributes','entity-DownArrowUpArrow':'named-character-references','attr-ul-compact':'obsolete','mime-type':'infrastructure','create-a-drag-data-store':'dnd','sandboxed-plugins-browsing-context-flag':'the-iframe-element','attr-data':'global-attributes','loading-the-media-resource':'media-elements','entity-supnE':'named-character-references','application-xhtml-xml':'iana','entity-LeftVector':'named-character-references','entity-NotSuperset':'name-character-references','entity-GT-legacy':'named-character-references','interactively-validate-the-constraints':'constraints','entity-LongRightArrow':'named-character-references','entity-Ufr':'named-character-references','entity-DScy':'named-character-references','attr-fe-name':'attributes-common-to-form-controls','event-drop':'dnd','attr-area-shape-keyword-circ':'the-area-element','entity-solb':'named-character-references','serializability-of-script-execution':'introduction','entity-asympeq':'named-character-references','dom-navigator-unregistercontenthandler':'system-state-and-capabilities','entity-ccirc':'named-character-references','date-state-type-date':'states-of-the-type-attribute','entity-kcy':'named-character-references','entity-not':'named-character-references','internal-structured-cloning-algorithm':'common-dom-interfaces','entity-Longrightarrow':'named-character-references','entity-nsccue':'named-character-references','dom-object-contentdocument':'the-object-element','entity-nltrie':'named-charater-references','entity-frac23':'named-character-references','entity-frac25':'named-character-references','entity-ggg':'named-character-references','mime-types':'media-elements','entity-rcaron':'named-character-references','entity-Theta':'named-character-references','image-button-state-type-image':'states-of-the-type-attribute','space-character':'common-microsyntaxes','dom-ol-start':'the-ol-element','text-cache-manifest':'iana','htmltablecellelement':'attributes-common-to-td-and-th-elements','the-samp-element':'the-samp-element','refsCSSFONTS':'references','entity-CHcy':'named-character-references','comment-end-state':'tokenization','ix-handler-onclick':'section-index','refsUNICODE':'references','entity-CounterClockwiseContourIntegral':'named-character-references','attr-object-typemustmatch':'the-object-element','entity-leftleftarrows':'named-character-references','entity-nexists':'named-character-references','entity-blacktriangledown':'named-character-references','browsing-context-names':'browsers','entityphone':'named-character-references','concept-appcache-pending-masters':'offline','attr-meter-high':'the-meter-element','refsRFC1554':'references','attr-label-for':'the-label-element','refsXHR':'references','entity-becaus':'named-character-references','row-group-header':'attributes-common-to-td-and-th-elements','concept-appcache-cache':'offline','obtain-a-physical-form':'rendering','entity-cross':'named-character-references','entity-MinusPlus':'named-character-references','entity-oacute':'named-character-references','ix-handler-onchange':'section-index','the-end':'the-end','attr-meter-value':'the-meter-element','dom-style-disabled':'the-style-element','attr-media-src':'media-elements','entity-ImaginaryI':'named-character-references','changesToNetworkingModel':'offline','the-s-element':'the-s-element','fire-loadedmetadata':'media-elements','entity-tcaron':'named-character-references','attr-iframe-longdesc':'obsolete','fakepath-srsly':'states-of-the-type-attribute','attr-input-usemap':'obsolete','concept-uda-iput':'urls','webvtt-cue-settings':'infrastructure','resetting-a-form':'form-submission','attr-iframe-vspace':'obsolete','entity-cent-legacy':'named-character-references','the-cite-element':'the-cite-element','dom-area-port':'the-area-element','entity-UnderBrace':'named-character-references','non-conforming-features':'obsolete','entity-varrho':'named-character-references','handler-state-string':'system-state-and-capabilities','creator-browsing-context':'browsers','entity-nLt':'named-character-references','entity-thksim':'named-character-references','dom-windowbase64-btoa':'webappapis','cross-origin-request':'infrastructure','dom-feature-strings':'common-dom-interfaces','entity-otimesas':'named-character-references','entity-nLl':'named-character-references','appcache':'offline','encrypted-http-and-related-security-concerns':'urls','entity-DownLeftRightVector':'named-character-references','original-insertion-mode':'parsing','entity-Uarr':'named-character-references','drag-data-store-elements-list':'dnd','dom-txtarea-rows':'the-textarea-element','transfer-a-transferable-object':'common-dom-interfaces','attr-fs-action':'attributes-common-to-form-controls','fire-a-simple-event':'webappapis','dom-progress-position':'the-progress-element','entity-vartriangleright':'named-character-references','dom-media-volume':'media-elements','dom-timeranges-end':'media-elements','entity-roang':'named-character-references','entity-VeryThinSpace':'named-character-references','mq':'common-microsyntaxes','type-blacklist':'system-state-and-capabilities','entity-isinsv':'named-character-references','entity-mumap':'named-character-references','entity-searrow':'named-character-references','entity-uhblk':'named-character-references','entity-rdquor':'named-character-references','element-type':'infrastructure','edits-and-paragraphs':'edits-and-paragraphs','dom-form-elements':'the-form-element','split-a-string-on-spaces':'common-microsyntaxes','update-the-session-history-with-the-new-page':'history','entity-divide':'named-character-references,'dom-htmloptionscollection-remove':'common-dom-interfaces','entity-rect':'named-character-references','support-named-properties':'infrastructure','entity-lesseqgtr':'named-character-references','meta-description':'the-meta-element','valid-simple-color':'common-microsyntaxes','dom-frameset-rows':'obsolete','filecallback':'infrastructure','handler-onload':'webappapis','prepare-an-event':'media-elements','entity-bemptyv':'named-character-references','entity-uuml':'named-character-references','reload-override-flag':'dom','style-sheet-ready':'styling','scripting-0':'infrastructure','writing':'syntax','edits':'edits','relaxing-the-same-origin-restriction':'origin-0','dom-input-required':'the-input-element','entity-DoubleLeftArrow':'named-character-references','entity-Aopf':'named-character-references','the-bdi-element':'the-bdi-element','dom-validitystate-valid':'constraints','handler-mediacontroller-onvolumechange':'media-elements','entity-Ntilde':'named-character-references','parse-the-webvtt-settings':'infrasructure','attr-base-href':'the-base-element','sbu-not-copy':'webappapis','track-url':'the-track-element','text-tracks-describing-chapters':'media-elements','the-blockquote-element':'the-blockquote-element','dom-media-have_enough_data':'media-elements','attr-input-type-email-keyword':'the-input-element','entity-boxDR':'named-character-references','entity-boxDL':'named-character-references','entity-Utilde':'named-character-references','client-identification':'system-state-and-capabilities','attr-input-type-color-keyword':'the-input-element','dom-media-load':'media-elements','entity-rsaquo':'named-character-references','entity-boxDr':'named-character-references','toolbars':'the-menu-element','entity-boxDl':'named-character-references','entity-lsquo':'named-character-references','entity-lvertneqq':'named-character-references','explicit-eof-character':'parsing','concept-input-step':'common-input-element-attributes','entity-kcedil':'named-character-references','entity-supedot':'named-character-references','mediacntroller':'media-elements','entity-sect':'named-character-references','dom-object-caller':'the-object-element','dom-window-status':'browsers','xpath-1.0-processors':'interactions-with-xpath-and-xslt','entity-CircleDot':'named-character-references','text-track-loaded':'media-elements','suffering-from-being-too-long':'constraints','dom-name':'browsers','entity-NotPrecedesSlantEqual':'named-character-references','entity-Nopf':'named-character-references','rank':'the-h1-h2-h3-h4-h5-and-h6-elements','network-states':'media-elements','entity-mu':'named-character-references','the-footer-element':'the-footer-element','entity-mp':'named-character-references','dom-document-bgcolor':'obsolete','link-type-help':'links','list-of-scripts-that-will-execute-in-order-as-soon-as-possible':'the-script-element','refsMFREL':'references','have-range-limitations':'common-input-element-attributes','security-3':'history','entity-ltquest':'named-character-references','documenttype':'infrastructure','entity-uscr':'named-character-refrences','urlmismatcherror':'infrastructure','attr-script-charset':'the-script-element','dom-media-have_nothing':'media-elements','fragment-escaped':'urls','entity-subplus':'named-character-references','dom-document-plugins':'dom','entity-jscr':'named-character-references','entity-tscy':'named-character-references','entity-tscr':'named-character-references','scriptTagXML':'the-xhtml-syntax','classes':'global-attributes','the-multiple-attribute':'common-input-element-attributes','dom-mediaerror-code':'media-elements','form-element-pointer':'parsing','concept-form-association':'association-of-controls-and-forms','syntax-ambiguous-ampersand':'syntax','entity-para':'named-character-references','entity-NotCongruent':'named-character-references','datatransferitemlist':'dnd','entity-part':'named-character-references','attr-ol-type-keyword-upper-alpha':'the-ol-element','dom-tdth-width':'obsolete','entity-PrecedesEqual':'named-character-references','event-drag':'dnd','refsWIN31J':'references','guidance-for-conformanc-checkers':'the-img-element','the-title-element':'the-title-element','entity-swarhk':'named-character-references','entity-mcomma':'named-character-references','entity-tcy':'named-character-references','entity-niv':'named-character-references','entity-nis':'named-character-references','script-processing-style-delayed':'the-script-element','the-mark-element':'the-mark-element','entity-ldquor':'named-character-references','terminology-0':'urls','entity-geq':'named-character-references','entity-ges':'named-character-references','concept-datetime-local':'common-microsyntaxes','pseudo-classes':'links','colors':'common-microsyntaxes','entity-gel':'named-character-references','handler-window-onload':'webappapis','htmloptionscollection':'common-dom-interfaces','entity-nprcue':'named-character-references','dom-media-crossorigin':'media-elements','htmlstyleelement':'the-style-element','dom-title-text':'the-title-element','the-sub-and-sup-elements':'the-sub-and-sup-elements','parsing-main-inselectintable':'tree-constrution','attr-dropzone-link':'dnd','ix-handler-onkeypress':'section-index','dom-option-form':'the-option-element','entity-gescc':'named-character-references','refsFILEAPI':'references','attr-iframe-srcdoc':'the-iframe-element','entity-YAcy':'named-character-references','entity-angrt':'named-character-references','the-h4-element':'the-h1-h2-h3-h4-h5-and-h6-elements','entity-sqsube':'named-character-references','dom-media-mediagroup':'media-elements','dom-hr-width':'obsolete','entity-Amacr':'named-character-references','attr-tdth-headers':'attributes-common-to-td-and-th-elements','entity-leftthreetimes':'named-character-references','active-document':'browsers','entity-centerdot':'named-character-references','entity-circeq':'named-character-references','entity-spades':'named-character-references','refsORIGIN':'references','attr-button-type-button':'the-button-element','attr-head-profile':'obsolete','entity-Dstrok':'named-character-references','entity-ldrushar':'named-character-references','attr-tdth-charoff':'obolete','refsCP51932':'references','entity-bottom':'named-character-references','entity-diamond':'named-character-references','base64-table':'webappapis','mediaerror':'media-elements','concept-section':'headings-and-sections','cdata-section-state':'tokenization','concept-appcache-explicit':'offline','current-table':'parsing','attr-area-shape-rect':'the-area-element','entity-trianglelefteq':'named-character-references','entity-sqsupset':'named-character-references','syntax-errors':'introduction','parse-a-yearless-date-component':'common-microsyntaxes','entity-SquareSuperset':'named-character-references','element-dfn-attributes':'element-definitions','attr-keygen-challenge':'the-keygen-element','category-reset':'forms','attr-th-scope-col':'the-th-element','n':'the-table-element','entity-Nu':'named-character-references','attr-fs-method-get':'attributes-common-to-form-controls','bogus-comment-state':'tokenization','entity-Zopf':'named-character-references','document-base-url':'urls','entity-Sup':'named-characterreferences','dom-area-host':'the-area-element','rules-for-parsing-integers':'common-microsyntaxes','attr-fs-formmethod':'attributes-common-to-form-controls','entity-Sum':'named-character-references','entity-Sub':'named-character-references','xml-mime-type':'infrastructure','attr-img-hspace':'obsolete','ix-handler-window-onpopstate':'section-index','handler-onended':'webappapis','entity-hArr':'named-character-references','attr-translate':'global-attributes','using-the-option-element-to-define-a-command':'commands','parse-a-time-zone-offset-string':'common-microsyntaxes','a-link-or-button-containing-nothing-but-the-image':'the-img-element','object-type-detection':'the-object-element','dialog-arguments-origin':'user-prompts','refsPDF':'references','entity-angmsd':'named-character-references','has-a-border':'rendering','htmlkeygenelement':'the-keygen-element','text-track-cue-start-alignment':'media-elements','entity-larrtl':'named-character-references','dom-textarea-input-selectiondirection':'textFieldSelection,'concept-yearless-date':'common-microsyntaxes','entity-Xopf':'named-character-references','statically-validate-the-constraints':'constraints','entity-succneqq':'named-character-references','dom-script-async':'the-script-element','refsEDITING':'references','entity-mscr':'named-character-references','attr-input-type-time-keyword':'the-input-element','entity-reg-legacy':'named-character-references','entity-Ncedil':'named-character-references','entity-nvle':'named-character-references','entity-efr':'named-character-references','entity-Topf':'named-character-references','entity-nvlt':'named-character-references','category-label':'forms','scriptingLanguages':'the-script-element','concept-timezone':'common-microsyntaxes','entity-exist':'named-character-references','script-data-escaped-end-tag-open-state':'tokenization','foster-parent':'tree-construction','entity-VerticalSeparator':'named-character-references','entity-rangd':'named-character-references','entity-range':'named-character-references','magic-border-selctor':'rendering','entity-ThickSpace':'named-character-references','entity-real':'named-character-references','entity-eparsl':'named-character-references','entity-InvisibleTimes':'named-character-references','the-ins-element':'the-ins-element','attr-embed-type':'the-embed-element','insert-an-html-element':'tree-construction','best-representation-of-the-number-as-a-floating-point-number':'common-microsyntaxes','entity-iacute-legacy':'named-character-references','dom-windowtimers-clearinterval':'timers','event-dragenter':'dnd','configuring-a-form-to-communicate-with-a-server':'forms','support-the-scripting-language':'the-script-element','entity-leftrightarrows':'named-character-references','entity-Cup':'named-character-references','dom-iframe-align':'obsolete','attr-tdth-char':'obsolete','acknowledge-self-closing-flag':'tokenization','refsATOM':'references','entity-Sscr':'named-character-references','dom-mediacontroller-seekable':'media-elements','attr-button-type-submit':'the-button-element','concept-documen-salvageable':'history','isindex-0':'obsolete','cdata-sections':'syntax','event-media-play':'media-elements','refsOGGROLE':'references','entity-uplus':'named-character-references','attr':'infrastructure','end-tag-open-state':'tokenization','entity-deg-legacy':'named-character-references','rawtext-end-tag-name-state':'tokenization','entity-sqcaps':'named-character-references','refsSVG':'references','entity-infin':'named-character-references','entity-DoubleVerticalBar':'named-character-references','concept-spellcheck-default-false':'editing-apis','method-context':'timers','entity-sc':'named-character-references','application-x-www-form-urlencoded-encoding-algorithm':'form-submission','entity-scaron':'named-character-references','entity-longmapsto':'named-character-references','entity-Uuml':'named-character-references','current-document-readiness':'dom','entity-Uacute':'named-character-references','node':'infrastructure','entity-AMP-legacy':'named-character-references','entity-rscr':'named-character-references,'foreign-elements':'syntax','webappapis':'webappapis','entity-swarr':'named-character-references','handler-appcache-onupdateready':'offline','meta-keywords':'the-meta-element','scriptEndTag':'tree-construction','entity-Lopf':'named-character-references','track-label':'the-track-element','entity-Yfr':'named-character-references','navigating-nested-browsing-contexts-in-the-dom':'browsers','timeline-offset':'media-elements','slaved-media-elements':'media-elements','entity-digamma':'named-character-references','entity-searhk':'named-character-references','dom-applet-height':'obsolete','entity-Eacute-legacy':'named-character-references','handler-texttrack-oncuechange':'media-elements','syntaxerror':'infrastructure','preferred-style-sheet-set':'infrastructure','entity-iuml':'named-character-references','entity-tau':'named-character-references','dom-table-createtbody':'the-table-element','entity-ddagger':'named-character-references','normalized-timeranges-object':'media-elements','entity-triangleright':'named-chaacter-references','entity-Jsercy':'named-character-references','attr-hyperlink-href':'links','canvas-blob-serialization-task-source':'the-canvas-element','list-of-code-entry-points':'webappapis','obsolete':'obsolete','entity-blacktriangle':'named-character-references','clear-the-stack-back-to-a-table-context':'tree-construction','concept-column-group':'attributes-common-to-td-and-th-elements','attr-iframe-sandbox-allow-same-origin':'the-iframe-element','entity-SHcy':'named-character-references','entity-RightUpTeeVector':'named-character-references','global-dates-and-times':'common-microsyntaxes','entity-agrave':'named-character-references','entity-rfloor':'named-character-references','entity-boxUr':'named-character-references','entity-setmn':'named-character-references','entity-angmsdah':'named-character-references','entity-forall':'named-character-references','entity-angmsdab':'named-character-references','entity-angmsdac':'named-character-references','resource-metadata-management':'dom','entity-angmsdaa':named-character-references','entity-angmsdaf':'named-character-references','entity-angmsdag':'named-character-references','entity-angmsdad':'named-character-references','entity-angmsdae':'named-character-references','link-type-license':'links','autoplaying-flag':'media-elements','the-rules-for-choosing-a-browsing-context-given-a-browsing-context-name':'browsers','handler-oncuechange':'webappapis','syntax-tag-name':'syntax','style-default-media':'the-style-element','an-entry-with-persisted-user-state':'history','entity-vellip':'named-character-references','entity-subE':'named-character-references','entity-gamma':'named-character-references','attr-area-shape-keyword-polygon':'the-area-element','image-maps-0':'rendering','dom-prompt':'user-prompts','report-the-controller-state':'media-elements','entity-sube':'named-character-references','dom-print':'user-prompts','obtain-the-storage-mutex':'webappapis','entity-nvgt':'named-character-references','entity-Cedilla':'named-character-references','entity-lesseqqgtr':named-character-references','attr-input-readonly':'common-input-element-attributes','character-reference-in-attribute-value-state':'tokenization','webvtt-cue-text-rendering-rules':'infrastructure','dom-a-rev':'obsolete','entity-TripleDot':'named-character-references','dom-a-rel':'the-a-element','entity-gcy':'named-character-references','the-datatransferitemlist-interface':'dnd','syntax-attribute-value':'syntax','entity-Rsh':'named-character-references','text-track-not-loaded':'media-elements','entity-omega':'named-character-references','table-model':'attributes-common-to-td-and-th-elements','entity-lpar':'named-character-references','attr-marquee-direction-left':'obsolete','the-option-element':'the-option-element','internal-algorithm-for-scanning-and-assigning-header-cells':'attributes-common-to-td-and-th-elements','entity-Leftrightarrow':'named-character-references','attr-a-rev':'obsolete','htmlareaelement':'the-area-element','entity-Zcy':'named-character-references','entity-profsurf':'named-character-refeences','dialogs-implemented-using-separate-documents':'user-prompts','entity-LT':'named-character-references','parser-appcache':'tree-construction','url-query':'urls','appcacheevents':'offline','scripts-that-modify-the-page-as-it-is-being-parsed':'the-end','htmltableelement':'the-table-element','attr-select-multiple':'the-select-element','htmlmarqueeelement':'obsolete','entity-Ll':'named-character-references','the-span-element':'the-span-element','entity-Lt':'named-character-references','entity-GreaterLess':'named-character-references','entity-scirc':'named-character-references','entity-lsime':'named-character-references','entity-lsimg':'named-character-references','text-track-cue-pause-on-exit-flag':'media-elements','a-quick-introduction-to-html':'introduction','entity-ntilde':'named-character-references','rcdata-state':'tokenization','ix-handler-onabort':'section-index','attr-input-autocomplete':'common-input-element-attributes','closing-the-input-stream':'dynamic-markup-insertion','text-track-cue-order':media-elements','concept-appcache-master':'offline','conversations':'links','the-h5-element':'the-h1-h2-h3-h4-h5-and-h6-elements','entity-HumpEqual':'named-character-references','concept-http-equivalent-codes':'urls','uievent':'infrastructure','entity-lrm':'named-character-references','entity-wfr':'named-character-references','entity-Integral':'named-character-references','other-metadata-names':'the-meta-element','concept-progress-maximum':'the-progress-element','entity-robrk':'named-character-references','entity-UpEquilibrium':'named-character-references','entity-vartriangleleft':'named-character-references','best-practices-for-implementors-of-media-elements':'media-elements','attr-command-radiogroup':'the-command-element','a-browsing-context-is-discarded':'browsers','entity-oint':'named-character-references','htmlunknownelement':'elements','entity-NotSubsetEqual':'named-character-references','concept-appcache-fallback-ns':'offline','the-size-attribute':'common-input-element-attributes','entity-Downarrow':named-character-references','entity-bnot':'named-character-references','concept-error-nothandled':'webappapis','entity-sfrown':'named-character-references','attr-hr-width':'obsolete','image-maps':'image-maps','origin':'origin-0','handler-marquee-onbounce':'obsolete','entity-Uarrocir':'named-character-references','entity-Uring':'named-character-references','entity-race':'named-character-references','determine-the-value-of-a-named-property':'infrastructure','concept-option-index':'the-option-element','entity-dtri':'named-character-references','attr-media-mediagroup':'media-elements','entity-ncongdot':'named-character-references','doctype-legacy-string':'syntax','the-list-of-active-formatting-elements':'parsing','error-codes':'media-elements','dom-option-tvds':'the-option-element','dom-document-applets':'obsolete','entity-zscr':'named-character-references','entity-thetav':'named-character-references','ix-handler-onvolumechange':'section-index','dom-document-close':'dynamic-markup-insertion','the-figure-element:'the-figure-element','entity-lstrok':'named-character-references','attr-track-kind-chapters':'the-track-element','entity-Uparrow':'named-character-references','valid-non-empty-url-potentially-surrounded-by-spaces':'urls','entity-curvearrowright':'named-character-references','dom-object-hspace':'obsolete','handler-onemptied':'webappapis','common-input-element-attributes':'common-input-element-attributes','dom-option-index':'the-option-element','entity-realine':'named-character-references','dates-and-times':'common-microsyntaxes','refsRFC5280':'references','using-the-accesskey-attribute-on-a-label-element-to-define-a-command':'commands','entity-LeftDoubleBracket':'named-character-references','attr-link-sizes':'links','refsGRAPHICS':'references','dom-table-deleterow':'the-table-element','dom-object-code':'obsolete','entity-wreath':'named-character-references','dom-form-name':'the-form-element','entity-strns':'named-character-references','attr-th-scope-row':'the-th-element','handler-ondrop':'webappapis','entit-gscr':'named-character-references','list-of-active-formatting-elements':'parsing','common-pitfalls-to-avoid-when-using-the-scripting-apis':'introduction','event-pageshow':'history','dom-mediacontroller-pause':'media-elements','entity-ltrif':'named-character-references','entity-ltrie':'named-character-references','read-html':'history','processinginstruction':'infrastructure','entity-NoBreak':'named-character-references','set-of-scripts-that-will-execute-as-soon-as-possible':'the-script-element','entity-Oacute-legacy':'named-character-references','concept-option-selectedness':'the-option-element','misinterpreted-for-compatibility':'parsing','spacer':'obsolete','entity-congdot':'named-character-references','dom-area-hreflang':'the-area-element','entity-Kfr':'named-character-references','custom-validity-error-message':'constraints','dom-length':'browsers','entity-Tfr':'named-character-references','the-min-and-max-attributes':'common-input-element-attributes','next-input-character':'parsing','dom-mediacontrolle':'media-elements','navigatorcontentutils':'system-state-and-capabilities','entity-gtcc':'named-character-references','nobr':'obsolete','concept-spellcheck-default':'editing-apis','doctype-system-identifier-double-quoted-state':'tokenization','sce-not-copy':'webappapis','webvtt-cue-text-parsing-rules':'infrastructure','entity-eqslantgtr':'named-character-references','dom-meta-content':'the-meta-element','dom-node-localname':'infrastructure','concept-input-min-default':'common-input-element-attributes','dom-object-data':'the-object-element','entity-cupor':'named-character-references','concept-time':'common-microsyntaxes','entity-Lscr':'named-character-references','the-var-element':'the-var-element','entity-plusb':'named-character-references','entity-pluse':'named-character-references','rules-for-parsing-a-list-of-dimensions':'common-microsyntaxes','the-summary-element':'the-summary-element','refsGREGORIAN':'references','the-header-element':'the-header-element','the-dropzone-attribute':'dnd','entity-vnsub':'nmed-character-references','entity-RightDownTeeVector':'named-character-references','dom-media-videotracks':'media-elements','entity-larrb':'named-character-references','dom-domstringmap-removeitem':'common-dom-interfaces','entity-vnsup':'named-character-references','dom-appcache-updateready':'offline','entity-num':'named-character-references','dom-area-href':'the-area-element','entity-gopf':'named-character-references','concept-appcache-selection':'offline','entity-macr':'named-character-references','entity-bigcap':'named-character-references','valid-time-zone-offset-string':'common-microsyntaxes','entity-ensp':'named-character-references','authoring':'image-maps','dom-output-type':'the-output-element','entity-nltri':'named-character-references','rendered-legend':'rendering','entity-nLtv':'named-character-references','range-state-type-range':'states-of-the-type-attribute','attr-iframe-name':'the-iframe-element','entity-harrw':'named-character-references','dom-datatransferitemlist-clear':'dnd','sandboxLinks''history','entity-lacute':'named-character-references','dom-fe-autofocus':'attributes-common-to-form-controls','dom-document-getelementbyid':'infrastructure','dom-input-accept':'the-input-element','attr-media-loop':'media-elements','dom-fe-name':'attributes-common-to-form-controls','entity-verbar':'named-character-references','anonymous-command':'commands','doctype-state':'tokenization','synchronous-section':'webappapis','seamlessLinks':'history','entity-straightphi':'named-character-references','prefix-match':'infrastructure','entity-LessSlantEqual':'named-character-references','entity-aopf':'named-character-references','entity-bsemi':'named-character-references','text-track-cue-end-time':'media-elements','entity-Backslash':'named-character-references','concept-input-value-string-number':'the-input-element','some-sample-manifests':'offline','entity-KHcy':'named-character-references','tree-construction':'tree-construction','unclosed-formatting-elements':'the-end','provides-a-paint-source':'infrastructure','he-dt-element':'the-dt-element','events':'webappapis','entity-thorn':'named-character-references','the-window-object':'browsers','entity-rmoustache':'named-character-references','attr-textarea-dirname':'the-textarea-element','concept-input-step-scale':'common-input-element-attributes','dom-link-hreflang':'the-link-element','palpable-content':'content-models','entity-precneqq':'named-character-references','drag-data-store-item-list':'dnd','entity-circlearrowleft':'named-character-references','html-namespace-0':'namespaces','entity-gap':'named-character-references','dom-form-autocomplete':'the-form-element','entity-backcong':'named-character-references','dom-document-readystate':'dom','refsRFC2046':'references','nodelist':'infrastructure','entity-cuepr':'named-character-references','ready-states':'media-elements','current-target-element':'dnd','entity-LeftUpVector':'named-character-references','dom-a-shape':'obsolete','entity-leftarrow':'named-character-references','dom-event-istrusted':'infrastructure','entiy-nsubseteqq':'named-character-references','dom-textarea-input-selectionend':'textFieldSelection','create-a-document-object':'history','entity-shy-legacy':'named-character-references','dom-window-blur':'editing','the-del-element':'the-del-element','refsWEBWORKERS':'references','entity-subsup':'named-character-references','concept-output-defaultvalue':'the-output-element','isindex':'tree-construction','entity-vArr':'named-character-references','entity-Rrightarrow':'named-character-references','concept-task':'webappapis','entity-subsub':'named-character-references','entity-Re':'named-character-references','entity-Equal':'named-character-references','return-value':'user-prompts','list-of-active-timers':'timers','dom-input-indeterminate':'the-input-element','attr-table-summary':'obsolete','entity-gtreqless':'named-character-references','focusable':'editing','override-url':'history','concept-appcache-manifest-network':'offline','text-track-cue-identifier':'media-elements','entity-SquareIntersection':'named-charater-references','entity-DoubleLongLeftRightArrow':'named-character-references','ordered-set-of-unique-space-separated-tokens':'common-microsyntaxes','attr-object-code':'obsolete','concept-appcache-obsolete':'offline','concept-row':'attributes-common-to-td-and-th-elements','doctype-public-identifier-single-quoted-state':'tokenization','non-interactive':'infrastructure','entity-zfr':'named-character-references','entity-nLeftrightarrow':'named-character-references','dom-trees':'infrastructure','entity-blacksquare':'named-character-references','entity-Lstrok':'named-character-references','cssstyledeclaration':'infrastructure','temporary-buffer':'tokenization','attr-link-type':'the-link-element','between-doctype-public-and-system-identifiers-state':'tokenization','enabling-and-disabling-scripting':'webappapis','clear-the-stack-back-to-a-table-body-context':'tree-construction','dom-texttrackcuelist-getcuebyid':'media-elements','refsJPEG':'references','concept-bc-script':'webappapis','inline-documentation-for-extenal-scripts':'the-script-element','toolbar-state':'the-menu-element','increment-the-marquee-current-loop-index':'obsolete','attr-crossorigin-anonymous':'urls','htmlimageelement':'the-img-element','attr-option-value':'the-option-element','entity-star':'named-character-references','dom-base-href':'the-base-element','dom-showmodaldialog':'user-prompts','trackeventinit':'media-elements','entity-Ecy':'named-character-references','handler-mediacontroller-onplaying':'media-elements','the-windowproxy-object':'browsers','popstateevent':'history','entity-between':'named-character-references','attr-iframe-scrolling':'obsolete','link-type-noreferrer':'links','entity-eacute':'named-character-references','entity-operp':'named-character-references','entity-nang':'named-character-references','entity-int':'named-character-references','rules-for-parsing-simple-color-values':'common-microsyntaxes','entity-times':'named-character-references','entity-lbrkslu':'named-character-references','script-data-double-escape-end-state':'tkenization','concept-id':'infrastructure','dom-object-usemap':'the-object-element','entity-lbrksld':'named-character-references','entity-Bscr':'named-character-references','dom-node-ownerdocument':'infrastructure','attr-track-label':'the-track-element','entity-NegativeMediumSpace':'named-character-references','entity-Jcy':'named-character-references','dom-outerhtml':'infrastructure','the-element-pointers':'parsing','attr-body-marginheight':'obsolete','browsing-context-container':'browsers','refsRFC1922':'references','dom-cva-validationmessage':'constraints','killing-scripts':'webappapis','entity-bullet':'named-character-references','entity-horbar':'named-character-references','guidance-for-markup-generators':'the-img-element','dom-document-location':'history','entity-oscr':'named-character-references','the-ruby-element':'the-ruby-element','concept-navigate-mature':'history','entity-SuchThat':'named-character-references','entity-toea':'named-character-references','focus':'editing','entity-image':'named-charater-references','dom-pagetransitionevent-persisted':'history','entity-ang':'named-character-references','entity-and':'named-character-references','handler-window-onoffline':'webappapis','concept-fs-method':'attributes-common-to-form-controls','entity-boxplus':'named-character-references','entity-zdot':'named-character-references','official-playback-position':'media-elements','entity-wr':'named-character-references','entity-Vopf':'named-character-references','entity-wp':'named-character-references','handler-ondurationchange':'webappapis','entity-UnderParenthesis':'named-character-references','dom-iframe-srcdoc':'the-iframe-element','entity-duhar':'named-character-references','entity-gcirc':'named-character-references','concept-fs-target':'attributes-common-to-form-controls','media-resource-specific-text-track':'media-elements','entity-emptyset':'named-character-references','dom-a-name':'obsolete','entity-scedil':'named-character-references','webvtt-file-using-cue-text':'infrastructure','entity-supmult':'name-character-references','entity-dbkarow':'named-character-references','entity-lescc':'named-character-references','sandboxPluginEmbed':'the-embed-element','attr-script-defer':'the-script-element','entity-leqq':'named-character-references','dom-mediacontroller-played':'media-elements','url-encoded-form-data':'form-submission','attr-ol-compact':'obsolete','entity-lfisht':'named-character-references','attr-tbody-align':'obsolete','entity-Otimes':'named-character-references','entity-Tscr':'named-character-references','entity-varkappa':'named-character-references','concept-option-disabled':'the-option-element','entity-ltimes':'named-character-references','entity-curren-legacy':'named-character-references','time-state-type-time':'states-of-the-type-attribute','entity-lessgtr':'named-character-references','the-track-element':'the-track-element','entity-NJcy':'named-character-references','entity-lsaquo':'named-character-references','entity-jsercy':'named-character-references','entity-supdot':'named-character-referenes','suffering-from-a-step-mismatch':'constraints','dom-button-type':'the-button-element','element-dfn-content-model':'element-definitions','the-i-element':'the-i-element','the-embed-element':'the-embed-element','entity-nearrow':'named-character-references','entity-elsdot':'named-character-references','refsCSSUI':'references','entity-RightTriangleEqual':'named-character-references','dom-keygen-challenge':'the-keygen-element','handler-appcache-onprogress':'offline','dom-videotracklist-gettrackbyid':'media-elements','entity-nshortparallel':'named-character-references','entity-simeq':'named-character-references','entity-Lleftarrow':'named-character-references','writing-cache-manifests':'offline','sandboxPluginNavigate':'history','abort-a-parser':'the-end','has-an-element-in-button-scope':'parsing','frameset-ok-flag':'parsing','dom-location-pathname':'history','dom-media-network_loading':'media-elements','unicode-code-point':'infrastructure','valid-media-query':'common-microsyntaxes','entity-Lacute':'named-charcter-references','earliest-possible-position-when-the-script-started':'media-elements','concept-form-reset':'form-submission','dom-document-anchors':'obsolete','entity-cemptyv':'named-character-references','entity-caron':'named-character-references','entity-nbsp-legacy':'named-character-references','color-spaces-and-color-correction':'the-canvas-element','dom-popstateevent-state':'history','entity-Verbar':'named-character-references','selector-checked':'links','entity-Zacute':'named-character-references','dom-marquee-hspace':'obsolete','entity-NestedLessLess':'named-character-references','dom-media-networkstate':'media-elements','htmlmodelement':'attributes-common-to-ins-and-del-elements','entity-rationals':'named-character-references','pagetransitioneventinit':'history','entity-xwedge':'named-character-references','edits-and-lists':'edits-and-lists','attr-input-type-date-keyword':'the-input-element','windowproxy':'browsers','handler-onclick':'webappapis','the-nav-element':'the-nav-element','entity-ugrave':named-character-references','entity-Dfr':'named-character-references','selector-optional':'links','dom-media-autoplay':'media-elements','entity-ntgl':'named-character-references','dom-link-rel':'the-link-element','event-mediacontroller-timeupdate':'media-elements','script-s-url-character-encoding':'webappapis','dom-link-rev':'obsolete','entity-softcy':'named-character-references','handler-onkeyup':'webappapis','attr-body-vlink':'obsolete','editing-hosts':'rendering','dom-form-nameditem':'the-form-element','the-select-element':'the-select-element','dom-input-value':'common-input-element-apis','entity-Product':'named-character-references','attr-option-name':'obsolete','attr-blockquote-cite':'the-blockquote-element','security-window':'browsers','handler-onsuspend':'webappapis','dom-media-buffered':'media-elements','entity-blk12':'named-character-references','attr-lang':'global-attributes','entity-blk14':'named-character-references','entity-Rightarrow':'named-character-references','entity-simrarr':'named-characer-references','other-parsing-state-flags':'parsing','entity-Pr':'named-character-references','security-risks-in-the-drag-and-drop-model':'dnd','entity-apos':'named-character-references','entity-Pi':'named-character-references','entity-notinva':'named-character-references','entity-notinvb':'named-character-references','entity-notinvc':'named-character-references','entity-hscr':'named-character-references','using-the-accesskey-attribute-on-a-legend-element-to-define-a-command':'commands','entity-heartsuit':'named-character-references','implementing-the-server-side-processing-for-a-form':'forms','entity-sharp':'named-character-references','attr-a-name':'obsolete','entity-dfr':'named-character-references','events-and-the-window-object':'webappapis','script':'the-script-element','entity-prnE':'named-character-references','entity-oelig':'named-character-references','invalidcharactererror':'infrastructure','entity-Subset':'named-character-references','dragevent':'dnd','entity-uuml-legacy':'named-character-referenes','eventtarget':'infrastructure','a-purely-decorative-image-that-doesn-t-add-any-information':'the-img-element','transparent-content-models':'content-models','entity-precnsim':'named-character-references','attribute-value-unquoted-state':'tokenization','dndevents':'dnd','url-host':'urls','before-attribute-name-state':'tokenization','entity-Ccirc':'named-character-references','command-api':'commands','entity-orderof':'named-character-references','entity-ell':'named-character-references','ordinal-value':'the-li-element','warnings-for-obsolete-but-conforming-features':'obsolete','entity-els':'named-character-references','dom-mediacontroller-currenttime':'media-elements','attr-area-shape-keyword-rect':'the-area-element','valid-url-potentially-surrounded-by-spaces':'urls','handler-texttracklist-onaddtrack':'media-elements','dom-datatransfer-dropeffect':'dnd','entity-rfisht':'named-character-references','multipart-form-data-boundary-string':'form-submission','the-before-head-insertion-mode':'tree-construction',windows':'browsers','command-facet-label':'commands','attributes-for-form-submission':'attributes-common-to-form-controls','entity-nsucc':'named-character-references','entity-prnap':'named-character-references','change-the-encoding':'parsing','font':'obsolete','attr-option-disabled':'the-option-element','entity-parallel':'named-character-references','dom-frames':'browsers','entry-update':'history','entity-RightTriangle':'named-character-references','webvtt-cue-text-dom-construction-rules':'infrastructure','entity-puncsp':'named-character-references','entity-sdotb':'named-character-references','entity-sdote':'named-character-references','entity-conint':'named-character-references','interactive-elements':'interactive-elements','entity-Gamma':'named-character-references','ix-handler-onloadeddata':'section-index','attr-input-type-tel-keyword':'the-input-element','parsing-main-intabletext':'tree-construction','association-of-controls-and-forms':'association-of-controls-and-forms','generic-rcdata-element-parsing-lgorithm':'tree-construction','refsSHIFTJIS':'references','the-label-element':'the-label-element','active-parser':'dom','autofocusing-a-form-control':'attributes-common-to-form-controls','entity-oline':'named-character-references','concept-input-checked-dirty-flag':'the-input-element','entity-NotDoubleVerticalBar':'named-character-references','attr-hyperlink-rel':'links','entity-Pfr':'named-character-references','entity-Mscr':'named-character-references','state-object':'history','effectAllowed-initialization':'dnd','attr-input-type-submit-keyword':'the-input-element','entity-harrcir':'named-character-references','script-data-less-than-sign-state':'tokenization','event-media-ended':'media-elements','close-the-cell':'tree-construction','entity-Otilde':'named-character-references','datacloneerror':'infrastructure','dom-navigator':'system-state-and-capabilities','handler-ondragleave':'webappapis','table-aria-weak':'wai-aria','entity-vangrt':'named-character-references','ix-handler-window-onbeforeprint':'sectionindex','entity-Uscr':'named-character-references','entity-zcaron':'named-character-references','tag-name-state':'tokenization','entity-yfr':'named-character-references','entity-TildeFullEqual':'named-character-references','current-playback-position':'media-elements','dom-media-play':'media-elements','entity-upharpoonright':'named-character-references','attr-object-codebase':'obsolete','dom-uda-port':'urls','entity-rightthreetimes':'named-character-references','syntax-doctype':'syntax','making-entire-documents-editable:-the-designmode-idl-attribute':'editing','entity-lesg':'named-character-references','entity-Hcirc':'named-character-references','handler-window-onpagehide':'webappapis','entity-npart':'named-character-references','entity-alefsym':'named-character-references','webvtt-file':'infrastructure','following-hyperlinks-0':'links','attr-table-width':'obsolete','entity-raquo':'named-character-references','concept-meter-actual':'the-meter-element','active-range':'editing-apis','dom-option-label':'the-optin-element','ancestor-browsing-context':'browsers','concept-meter-minimum':'the-meter-element','dom-ul-type':'obsolete','attr-fs-formtarget':'attributes-common-to-form-controls','entity-rightarrowtail':'named-character-references','entity-topfork':'named-character-references','attr-iframe-sandbox-allow-top-navigation':'the-iframe-element','entity-RightVectorBar':'named-character-references','entity-Bernoullis':'named-character-references','dom-command-ro-commanddisabled':'commands','attr-dropzone-move':'dnd','dom-location-protocol':'history','text-track-label':'media-elements','compatibility-caseless':'infrastructure','entity-dotsquare':'named-character-references','tables':'rendering','entity-simgE':'named-character-references','entity-kopf':'named-character-references','cors-enabled-fetch':'urls','attr-meter-optimum':'the-meter-element','the-ul-element':'the-ul-element','entity-ngtr':'named-character-references','event-media-abort':'media-elements','attr-hr-size':'obsolete','the-sup-element':'the-sub-and-sp-elements','entity-minus':'named-character-references','entity-checkmark':'named-character-references','entity-cire':'named-character-references','entity-circ':'named-character-references','attr-command-icon':'the-command-element','dom-param-name':'the-param-element','concept-appcache-upgrade':'offline','entity-smte':'named-character-references','entity-cirE':'named-character-references','ignore':'infrastructure','entity-iiiint':'named-character-references','attr-source-media':'the-source-element','has-an-element-in-table-scope':'parsing','entity-lsquor':'named-character-references','strictly-split-a-string':'common-microsyntaxes','entity-comma':'named-character-references','entity-RightTee':'named-character-references','entity-acirc':'named-character-references','selector-disabled':'links','maps-to-the-dimension-property':'rendering','entity-ucirc':'named-character-references','entity-nexist':'named-character-references','the-directionality':'global-attributes','the-list-attribute':'common-input-element-atributes','entity-rceil':'named-character-references','dom-location-search':'history','event-dragleave':'dnd','refsPOLYGLOT':'references','entity-DownLeftTeeVector':'named-character-references','queue-a-task':'webappapis','entity-Iuml':'named-character-references','entity-eopf':'named-character-references','entity-intcal':'named-character-references','parsing-main-inhead':'tree-construction','dom-window-personalbar':'browsers','entity-cap':'named-character-references','ix-handler-oncontextmenu':'section-index','entity-ShortUpArrow':'named-character-references','dom-marquee-start':'obsolete','concept-link-type-sniffing':'the-link-element','entity-rightarrow':'named-character-references','perform-a-microtask-checkpoint':'webappapis','sections':'sections','dom-navigator-registerprotocolhandler':'system-state-and-capabilities','entity-blk34':'named-character-references','dom-textarea-input-select':'textFieldSelection','naming-form-controls':'attributes-common-to-form-controls','entity-zacute':'named-character-rferences','refsMAILTO':'references','constraint-validation':'constraints','reload-override-buffer':'dom','dom-table-cellpadding':'obsolete','entity-vfr':'named-character-references','current-entry-of-the-joint-session-history':'history','entity-DoubleUpArrow':'named-character-references','force-async':'the-script-element','entity-UpTee':'named-character-references','entity-micro-legacy':'named-character-references','attribute-value-single-quoted-state':'tokenization','dom-timeranges-start':'media-elements','refsISO885911':'references','dom-fs-formenctype':'attributes-common-to-form-controls','attr-col-char':'obsolete','attr-th-scope-auto':'the-th-element','cors-cross-origin':'urls','entity-UnionPlus':'named-character-references','attr-colgroup-span':'the-colgroup-element','mediaevents':'media-elements','dom-frameset-cols':'obsolete','termination-nesting-level':'history','plain-text-form-data':'form-submission','entity-lnsim':'named-character-references','source-default-media':'the-source-element','an-introdction-to-error-handling-and-strange-cases-in-the-parser':'the-end','entity-LessFullEqual':'named-character-references','event-media-volumechange':'media-elements','entity-yicy':'named-character-references','submit-body':'form-submission','dom-table-cellspacing':'obsolete','entity-eng':'named-character-references','handler-ondragstart':'webappapis','dom-map-images':'the-map-element','dom-texttrack-kind-chapters':'media-elements','entity-LeftTee':'named-character-references','dom-mediacontroller-play':'media-elements','dom-object-vspace':'obsolete','syntax-newlines':'syntax','attr-iframe-seamless':'the-iframe-element','entity-supseteqq':'named-character-references','multipart-form-data':'form-submission','htmltableheadercellelement':'the-th-element','entity-LT-legacy':'named-character-references','fakepath-orly':'common-input-element-apis','other-elements-attributes-and-apis':'obsolete','entity-ecirc-legacy':'named-character-references','handler-onscroll':'webappapis','ix-handler-onloadstart':'section-index',entity-odash':'named-character-references','entity-bsolhsub':'named-character-references','entity-duarr':'named-character-references','entity-sacute':'named-character-references','dom-font-face':'obsolete','entity-igrave-legacy':'named-character-references','dom-script-text':'the-script-element','insert-a-character':'tree-construction','the-hgroup-element':'the-hgroup-element','events-0':'section-index','entity-Acy':'named-character-references','entity-OElig':'named-character-references','entity-gtrapprox':'named-character-references','dom-input-step':'the-input-element','entity-npre':'named-character-references','dom-uda-host':'urls','iframe-content-model':'the-iframe-element','img-good':'the-img-element','entity-ContourIntegral':'named-character-references','entity-ccaron':'named-character-references','a-key-part-of-the-content':'the-img-element','refsSCSU':'references','entity-ograve-legacy':'named-character-references','entity-Oslash-legacy':'named-character-references','link-type-next':'links','the-scrpt-block-s-type':'the-script-element','entity-NotLeftTriangle':'named-character-references','entity-Bumpeq':'named-character-references','bindings':'rendering','namespaceerror':'infrastructure','entity-Fcy':'named-character-references','entity-NotSupersetEqual':'named-character-references','dom-texttrackcue-pauseonexit':'media-elements','entity-gsim':'named-character-references','concept-meta-extensions':'the-meta-element','concept-embed-type':'the-embed-element','hyperlink-suffix':'the-a-element','entity-imacr':'named-character-references','read-text':'history','dom-audiotracklist-length':'media-elements','decohints':'rendering','text-that-has-been-rendered-to-a-graphic-for-typographical-effect':'the-img-element','dom-mod-datetime':'attributes-common-to-ins-and-del-elements','htmllielement':'the-li-element','the-toolbar-barprop-object':'browsers','editable':'editing-apis','entity-gneqq':'named-character-references','dom-cva-setcustomvalidity':'constraints','found-another-video-track':'media-elements','entiy-upharpoonleft':'named-character-references','dom-windowtimers-settimeout':'timers','context-menu-state':'the-menu-element','attr-style-media':'the-style-element','attr-input-type-reset-keyword':'the-input-element','submit-get-action':'form-submission','parsing-main-inframeset':'tree-construction','attr-textarea-rows':'the-textarea-element','entity-TRADE':'named-character-references','common-idioms':'links','dom-img-src':'the-img-element','event-mediacontroller-play':'media-elements','entity-Zcaron':'named-character-references','entity-SquareSupersetEqual':'named-character-references','entity-ubrcy':'named-character-references','attr-button-type-reset-state':'the-button-element','dom-media-seekable':'media-elements','entity-Zscr':'named-character-references','entity-gvertneqq':'named-character-references','concept-fs-novalidate':'attributes-common-to-form-controls','entity-emsp13':'named-character-references','entity-emsp14':'named-character-references','attr-input-type-file-keyword':'the-input-element','te-base-element':'the-base-element','entity-nsc':'named-character-references','concept-ltr':'global-attributes','entity-nopf':'named-character-references','dom-img-complete':'the-img-element','dom-document-querycommandstate':'editing-apis','entity-ShortRightArrow':'named-character-references','entity-Gscr':'named-character-references','linkTypes':'links','cookie-string':'infrastructure','entity-udblac':'named-character-references','entity-rrarr':'named-character-references','processing-model-0':'attributes-common-to-td-and-th-elements','processing-model-1':'webappapis','processing-model-2':'webappapis','processing-model-3':'editing','refsMATHML':'references','text-track-cue-active-flag':'media-elements','attr-table-cellpadding':'obsolete','entity-excl':'named-character-references','submit-mailto-body':'form-submission','attr-track-kind-keyword-chapters':'the-track-element','unicode-character':'infrastructure','dom-texttrackcue-snaptolines':'media-elements','entity-nsubset':'named-character-references','entit-utilde':'named-character-references','dom-document-defaultview':'browsers','dom-domimplementation-createdocument':'infrastructure','concept-meter-high':'the-meter-element','dom-input-size':'the-input-element','footnotes':'links','dom-window-menubar':'browsers','entity-fcy':'named-character-references','entity-setminus':'named-character-references','entity-filig':'named-character-references','suffering-from-an-overflow':'constraints','concept-form-reset-control':'form-submission','entity-clubs':'named-character-references','dom-window':'browsers','sandboxOrigin':'origin-0','entity-yuml-legacy':'named-character-references','attr-fs-enctype-formdata':'attributes-common-to-form-controls','dom-node-insertbefore':'infrastructure','calling-scripts':'webappapis','entity-lnap':'named-character-references','url-port':'urls','attr-img-longdesc':'obsolete','enumerated-attribute':'common-microsyntaxes','dom-input-defaultchecked':'the-input-element','the-event-handler-processing-algorithm':'webappapis','dom-contenteditale':'editing','marquee-scroll-distance':'obsolete','space-separated-tokens':'common-microsyntaxes','entity-Leftarrow':'named-character-references','direction-of-playback':'media-elements','dom-col-valign':'obsolete','entity-gtquest':'named-character-references','await-a-stable-state':'webappapis','xml-documents':'infrastructure','the-indicated-part-of-the-document':'history','entity-Gopf':'named-character-references','entity-ForAll':'named-character-references','concept-link-obtain':'the-link-element','metadata-content':'content-models','dom-iframe-seamless':'the-iframe-element','parse-a-date-string':'common-microsyntaxes','dom-body-background':'obsolete','entity-emacr':'named-character-references','entity-eth-legacy':'named-character-references','entity-bigvee':'named-character-references','entity-order':'named-character-references','entity-nrtrie':'named-character-references','script-data-end-tag-open-state':'tokenization','dom-document-querycommandenabled':'editing-apis','code-unit':'infrastructure','entty-HumpDownHump':'named-character-references','attr-command-type-state-radio':'the-command-element','entity-Copf':'named-character-references','dom-navigator-appname':'system-state-and-capabilities','obsolete-permitted-doctype-string':'syntax','entity-gdot':'named-character-references','event-mediacontroller-volumechange':'media-elements','refsCLDR':'references','dom-translate':'global-attributes','entity-boxUR':'named-character-references','entity-rpargt':'named-character-references','entity-check':'named-character-references','html-documents':'infrastructure','entity-vrtri':'named-character-references','entity-boxUL':'named-character-references','entity-wcirc':'named-character-references','categories':'forms','entity-questeq':'named-character-references','sectioning-content':'content-models','dom-location-port':'history','entity-Ograve':'named-character-references','application-cache-download-process':'offline','entity-boxUl':'named-character-references','entity-nprec':'named-character-references','entityNotSubset':'named-character-references','entity-Union':'named-character-references','entity-suphsol':'named-character-references','labeled-control':'the-label-element','attr-ol-type-state-upper-alpha':'the-ol-element','attr-media-preload-auto-state':'media-elements','dom-document-clear':'obsolete','event-mediacontroller-durationchange':'media-elements','refsEUCKR':'references','entity-NonBreakingSpace':'named-character-references','document-s-character-encoding':'infrastructure','entity-lates':'named-character-references','dom-object-codebase':'obsolete','entity-fnof':'named-character-references','the-main-part-of-the-content':'links','entity-tfr':'named-character-references','entity-varsubsetneqq':'named-character-references','entity-umacr':'named-character-references','dom-open':'browsers','x-this':'introduction','entity-aring':'named-character-references','entity-emptyv':'named-character-references','concept-month':'common-microsyntaxes','entity-supsup':'named-character-references','entity-rdldhar':'name-character-references','entity-supsub':'named-character-references','entity-Succeeds':'named-character-references','dom-object-name':'the-object-element','entity-cupbrcap':'named-character-references','attr-table-bgcolor':'obsolete','the-datatransferitem-interface':'dnd','dom-meter-high':'the-meter-element','entity-rarrfs':'named-character-references','commands':'commands','entity-Scy':'named-character-references','valid-normalized-local-date-and-time-string':'common-microsyntaxes','webvtt-file-using-chapter-title-text':'infrastructure','dom-object-align':'obsolete','create-a-date-object':'infrastructure','a-serialization-of-the-image-as-a-file':'the-canvas-element','entity-GreaterGreater':'named-character-references','attr-canvas-width':'the-canvas-element','entity-rmoust':'named-character-references','entity-NotSucceedsSlantEqual':'named-character-references','entity-lneqq':'named-character-references','entity-sstarf':'named-character-references','entity-Sacute':'named-character-references','resolving-url':'urls','parsing-main-inhtml':'tree-construction','refsWEBSOCKET':'references','entity-telrec':'named-character-references','entity-nesear':'named-character-references','entity-ReverseUpEquilibrium':'named-character-references','rules-for-parsing-a-list-of-integers':'common-microsyntaxes','entity-Jukcy':'named-character-references','the-applet-element':'obsolete','conforming-html5-documents':'infrastructure','entity-Ccaron':'named-character-references','outline-depth':'headings-and-sections','entity-cularr':'named-character-references','entity-iinfin':'named-character-references','immediate-user-selection':'dnd','indexsizeerror':'infrastructure','attr-tdth-bgcolor':'obsolete','entity-pitchfork':'named-character-references','entity-ofr':'named-character-references','the-tbody-element':'the-tbody-element','link-type-search':'links','named-access-on-the-window-object':'browsers','dom-output-defaultvalue':'the-output-element','text-track-model':'media-elements','entity-rdquo':'named-character-references','entiy-LeftDownVector':'named-character-references','attr-tdth-height':'obsolete','dom-meter-min':'the-meter-element','dom-area-nohref':'obsolete','entity-npolint':'named-character-references','event-media-canplaythrough':'media-elements','entity-NestedGreaterGreater':'named-character-references','dom-object-standby':'obsolete','entity-vert':'named-character-references','designMode':'editing','syntax-end-tag':'syntax','entity-Scirc':'named-character-references','entity-leftrightarrow':'named-character-references','the-text-tracks-are-ready':'media-elements','entity-curlyvee':'named-character-references','dom-function-call':'webappapis','entity-pcy':'named-character-references','how-to-read-this-specification':'introduction','dom-location-reload':'history','entity-LeftVectorBar':'named-character-references','refsUAAG':'references','dom-hr-color':'obsolete','entity-Vvdash':'named-character-references','handler-onblur':'webappapis','the-dir-attribute':'global-attributes','common-microsyntaxes':'common-microsyntaxes,'entity-Mopf':'named-character-references','dom-option-t':'the-option-element','entity-top':'named-character-references','entity-homtht':'named-character-references','meta-author':'the-meta-element','entity-Oscr':'named-character-references','entity-NotReverseElement':'named-character-references','acronym':'obsolete','common-input-element-apis':'common-input-element-apis','entity-sqcap':'named-character-references','browsing-context-scope-origin':'browsers','hidden-elements':'rendering','dom-document-domain':'origin-0','entity-DownArrow':'named-character-references','valid-hash-name-reference':'common-microsyntaxes','entity-Icirc':'named-character-references','entity-YIcy':'named-character-references','entity-nbump':'named-character-references','event-input-input':'common-input-element-apis','event-mediacontroller-waiting':'media-elements','selector-read-write':'links','dom-lfe-labels':'the-label-element','column-header':'attributes-common-to-td-and-th-elements','dom-hashchangeevent-oldurl':'history','docuent-level-focus-apis':'editing','the-b-element':'the-b-element','content-models':'content-models','media-data':'media-elements','dom-document-querycommandindeterm':'editing-apis','algorithm-for-processing-row-groups':'attributes-common-to-td-and-th-elements','entity-caret':'named-character-references','refsXSLT10':'references','handler-onseeked':'webappapis','entity-Tcy':'named-character-references','entity-loarr':'named-character-references','entity-hcirc':'named-character-references','entity-egrave':'named-character-references','rateUpdate':'media-elements','attr-textarea-maxlength':'the-textarea-element','concept-rtl':'global-attributes','entity-Oopf':'named-character-references','dom-location-host':'history','comment-start-state':'tokenization','dom-embed-caller':'the-embed-element','entity-loz':'named-character-references','entity-rthree':'named-character-references','dom-marquee-height':'obsolete','valid-lowercase-simple-color':'common-microsyntaxes','paused-for-in-band-content':'media-elements','rel-con':'links','dom-menu-label':'the-menu-element','blocked-media-element':'media-elements','initiate-the-drag-and-drop-operation':'dnd','concept-input-checked-dirty':'the-input-element','entity-circleddash':'named-character-references','grouping-content':'grouping-content','dom-fs-method':'attributes-common-to-form-controls','attr-canvas-height':'the-canvas-element','current-entry':'history','text-track-language':'media-elements','entity-Eta':'named-character-references' }; +var fragment_links = { 'ix-handler-ondrag':'section-index','dom-media-defaultmuted':'media-elements','htmlcommandelement':'the-command-element','dom-texttrackcuelist-length':'media-elements','dom-source-media':'the-source-element','e-mail-state-type-email':'states-of-the-type-attribute','command-facet-type':'commands','dom-texttrack-label':'media-elements','concept-slots':'attributes-common-to-td-and-th-elements','dom-command-icon':'the-command-element','valid-non-negative-integer':'common-microsyntaxes','ix-handler-window-onafterprint':'section-index','dom-command-ro-commandchecked':'commands','entity-ring':'named-character-references','the-after-head-insertion-mode':'tree-construction','create-a-script':'webappapis','the-br-element':'the-br-element','ix-handler-onreset':'section-index','ix-handler-window-onscroll':'section-index','entity-straightepsilon':'named-character-references','concept-facet':'commands','attr-script-async':'the-script-element','entity-target':'named-character-references','ix-handle-ondblclick':'section-index','entity-Cfr':'named-character-references','entity-THORN-legacy':'named-character-references','script-nesting-level':'parsing','entity-ncedil':'named-character-references','dom-table-deletetfoot':'the-table-element','entity-NotLessLess':'named-character-references','dom-tdth-abbr':'obsolete','the-maxlength-attribute':'common-input-element-attributes','focusing-steps':'editing','handler-mediacontroller-onloadeddata':'media-elements','entity-DownTeeArrow':'named-character-references','entity-Ecirc-legacy':'named-character-references','attr-button-type':'the-button-element','found-another-audio-track':'media-elements','entity-curarrm':'named-character-references','custom-handlers':'system-state-and-capabilities','the-navigator-object':'system-state-and-capabilities','attr-textarea-wrap-soft':'the-textarea-element','the-h3-element':'the-h1-h2-h3-h4-h5-and-h6-elements','concept-fe-disabled':'attributes-common-to-form-controls','entity-RightUpDownVector':'named-character-references','dm-object-border':'obsolete','effective-media-volume':'media-elements','entity-Oacute':'named-character-references','dom-texttrack-activecues':'media-elements','htmltitleelement':'the-title-element','entity-nGtv':'named-character-references','concept-spellcheck-default-inherit':'editing-apis','entity-expectation':'named-character-references','prepare-a-script':'the-script-element','entity-lAarr':'named-character-references','dom-tbody-valign':'obsolete','entity-naturals':'named-character-references','dom-videotrack-kind':'media-elements','dom-node-namespaceuri':'infrastructure','dom-dropzone':'dnd','dom-tbody-rows':'the-tbody-element','dom-video-videoheight':'the-video-element','handler-onseeking':'webappapis','entity-mdash':'named-character-references','entity-bernou':'named-character-references','entity-leftharpoonup':'named-character-references','strike':'obsolete','assigned-access-key':'editing','event-handler-event-type':'webappapis','entity-sup1-legacy':'named-character-references','scroll-an-element-ito-view':'infrastructure','dom-area-alt':'the-area-element','html-fragment-serialization-algorithm':'the-end','the-menu-bar-barprop-object':'browsers','concept-submit-button':'forms','dom-accesskey':'editing','entity-lesdot':'named-character-references','rules-for-constructing-the-chapter-tree-from-a-text-track':'media-elements','entity-nsime':'named-character-references','dom-image':'the-img-element','rawtext-less-than-sign-state':'tokenization','rawtext-state':'tokenization','ix-handler-onmousemove':'section-index','value-track-kind-description':'media-elements','htmltrackelement':'the-track-element','dom-marquee-scrolldelay':'obsolete','handler-onvolumechange':'webappapis','syntax-comments':'syntax','dom-body-vlink':'obsolete','attr-pre-width':'obsolete','entity-ocirc-legacy':'named-character-references','event-mediacontroller-playing':'media-elements','timers':'timers','the-div-element':'the-div-element','entity-larrsim':'named-character-references','dom-meter-max':'the-meter-element','entity-boxvr':'naed-character-references','media-element-event-task-source':'media-elements','entity-boxvl':'named-character-references','entity-boxvh':'named-character-references','entity-boxvR':'named-character-references','attr-input-alt':'states-of-the-type-attribute','entity-nhpar':'named-character-references','entity-emsp':'named-character-references','writing-a-form-s-user-interface':'forms','entity-semi':'named-character-references','entity-afr':'named-character-references','history-0':'history','history-1':'introduction','entity-boxvL':'named-character-references','entity-pscr':'named-character-references','entity-boxvH':'named-character-references','entity-trie':'named-character-references','refsPAGEVIS':'references','entity-uparrow':'named-character-references','attr-textarea-cols':'the-textarea-element','dom-script-defer':'the-script-element','htmldetailselement':'the-details-element','represents':'rendering','entity-imped':'named-character-references','entity-QUOT-legacy':'named-character-references','url-hostprt':'urls','entity-lHar':'named-character-references','handler-mediacontroller-oncanplay':'media-elements','fire-a-click-event':'webappapis','dom-img-naturalwidth':'the-img-element','dom-texttrack-kind-metadata':'media-elements','entity-supdsub':'named-character-references','concept-form-submit':'form-submission','nearest-activatable-element':'content-models','entity-searr':'named-character-references','rb':'obsolete','standard-metadata-names':'the-meta-element','handler-appcache-onerror':'offline','attr-meta-http-equiv-default-style':'the-meta-element','entity-par':'named-character-references','entity-wedbar':'named-character-references','entity-Lmidot':'named-character-references','attr-ol-type-keyword-decimal':'the-ol-element','texttrackcuelist':'media-elements','renderingUA':'infrastructure','object-plugin':'the-object-element','entity-lmoust':'named-character-references','valid-e-mail-address-list':'states-of-the-type-attribute','r1':'the-table-element','r2':'the-table-element','dom-texttrackcue-endtim':'media-elements','value-track-kind-translation':'media-elements','entity-ENG':'named-character-references','the-drag-data-item-kind':'dnd','entity-bigotimes':'named-character-references','entity-sscr':'named-character-references','entity-NotGreaterSlantEqual':'named-character-references','invalidstateerror':'infrastructure','dom-area-hash':'the-area-element','attr-embed-vspace':'obsolete','entity-Bcy':'named-character-references','link-type-author':'links','concept-textarea-mutable':'the-textarea-element','active-flag-was-set-when-the-script-started':'media-elements','dom-img-vspace':'obsolete','discard-a-document':'browsers','textarea-effective-height':'rendering','html-fragment-parsing-algorithm':'the-end','entity-seArr':'named-character-references','entity-lArr':'named-character-references','entity-rarrbfs':'named-character-references','table-example-1':'examples','dynamic-markup-insertion':'dynamic-markup-insertion','dynamic-nested-browsing-context-properties':'browsers','entity-lobrk':'named-characte-references','entity-rightsquigarrow':'named-character-references','top-level-browsing-context':'browsers','simple-color':'common-microsyntaxes','entity-bbrk':'named-character-references','attr-table-cellspacing':'obsolete','entity-colon':'named-character-references','entity-Ugrave':'named-character-references','dom-tdth-valign':'obsolete','entity-Mfr':'named-character-references','dom-ol-reversed':'the-ol-element','dom-meta-name':'the-meta-element','entity-LeftUpTeeVector':'named-character-references','algorithm-for-assigning-header-cells':'attributes-common-to-td-and-th-elements','dom-texttrack-kind-subtitles':'media-elements','dom-table-tbodies':'the-table-element','ix-handler-ondragend':'section-index','entity-Agrave-legacy':'named-character-references','valid-yearless-date-string':'common-microsyntaxes','entity-gesles':'named-character-references','entity-NotElement':'named-character-references','dom-htmloptionscollection-length':'common-dom-interfaces','dom-media-preload':'media-elements','concept-nod-clone-ext':'infrastructure','entity-sung':'named-character-references','handler-onplaying':'webappapis','entity-bcy':'named-character-references','attr-contextmenu':'the-menu-element','entity-thkap':'named-character-references','cookie-free-document-object':'dom','url-path':'urls','domtokenlist':'infrastructure','parsed-as-a-css-color-value':'infrastructure','dom-marquee-behavior':'obsolete','entity-disin':'named-character-references','dom-validitystate-typemismatch':'constraints','preferred-mime-name':'infrastructure','attr-th-scope-colgroup':'the-th-element','entity-tcedil':'named-character-references','entity-Vcy':'named-character-references','entity-ldquo':'named-character-references','entity-map':'named-character-references','selector-invalid':'links','entity-apacir':'named-character-references','dom-datatransfer-files':'dnd','refsDOMCORE':'references','kinds-of-content':'content-models','the-td-element':'the-td-element','entity-ctdot':'named-character-references','the-input-element-as-a-button':'rendring','entity-pointint':'named-character-references','creating-scripts':'webappapis','entity-Gcirc':'named-character-references','marquee-scroll-interval':'obsolete','button-state-type-button':'states-of-the-type-attribute','entity-Eopf':'named-character-references','ix-handler-onwaiting':'section-index','entity-aring-legacy':'named-character-references','entity-boxdL':'named-character-references','entity-OpenCurlyDoubleQuote':'named-character-references','entity-LeftTriangleBar':'named-character-references','attr-command-type-keyword-checkbox':'the-command-element','dom-domstringmap-nameditem':'common-dom-interfaces','entity-Xi':'named-character-references','proto-url':'system-state-and-capabilities','dom-dl-compact':'obsolete','table-model-error':'attributes-common-to-td-and-th-elements','entity-cacute':'named-character-references','img-error':'the-img-element','ix-handler-onscroll':'section-index','entity-eqvparsl':'named-character-references','media-elements':'media-elements','entity-dHar':'named-characer-references','ignore-destructive-writes-counter':'dynamic-markup-insertion','dom-tbody-insertrow':'the-tbody-element','best-practices-for-in-page-editors':'editing','after-attribute-value-quoted-state':'tokenization','radio-button-group':'states-of-the-type-attribute','dom-style-scoped':'the-style-element','htmlheadelement':'the-head-element','sandboxPluginApplet':'obsolete','entity-odblac':'named-character-references','refsRFC2397':'references','unicode-serialization-of-an-origin':'origin-0','entity-Ntilde-legacy':'named-character-references','refsHPAAIG':'references','handler-onpause':'webappapis','refsRFC3629':'references','attribute-value-double-quoted-state':'tokenization','non-scripted':'infrastructure','concept-input-step-default':'common-input-element-attributes','entity-epsiv':'named-character-references','link-type-tag':'links','generic-raw-text-element-parsing-algorithm':'tree-construction','ix-handler-window-onblur':'section-index','attr-ol-type-keyword-upper-roman':'the-ol-element','traverse-he-history':'history','dom-input-alt':'the-input-element','concept-progress-value':'the-progress-element','entity-darr':'named-character-references','entity-NotSucceedsEqual':'named-character-references','entity-sfr':'named-character-references','entity-lesges':'named-character-references','hashchangeevent':'history','htmlbrelement':'the-br-element','entity-xscr':'named-character-references','script-data-escaped-state':'tokenization','attr-fe-maxlength':'attributes-common-to-form-controls','handler-onprogress':'webappapis','entity-lozf':'named-character-references','entity-timesbar':'named-character-references','white_space':'common-microsyntaxes','handler-onchange':'webappapis','about:srcdoc':'urls','entity-rbrkslu':'named-character-references','entity-rbrksld':'named-character-references','attr-tr-charoff':'obsolete','dom-img-name':'obsolete','garbage-collection':'common-dom-interfaces','the-address-element':'the-address-element','entity-Ocy':'named-character-references','dom-uda-hash':'urls','collections:'infrastructure','unordered-set-of-unique-space-separated-tokens':'common-microsyntaxes','refsHTMLALTTECHS':'references','dom-textarea-input-setselectionrange':'textFieldSelection','entity-ntrianglelefteq':'named-character-references','valid-date-string-with-optional-time':'common-microsyntaxes','event-media-loadeddata':'media-elements','dom-table-frame':'obsolete','refsWEBVTT':'references','dom-validitystate-toolong':'constraints','entity-lessapprox':'named-character-references','the-marquee-element-0':'rendering','refsRFC4329':'references','entity-updownarrow':'named-character-references','dom-beforeunloadevent-returnvalue':'history','dom-iframe-name':'the-iframe-element','entity-nsupseteqq':'named-character-references','entity-Auml-legacy':'named-character-references','head-element-pointer':'parsing','entity-plusmn':'named-character-references','manually-releasing-the-storage-mutex':'system-state-and-capabilities','valid-local-date-and-time-string':'common-microsyntaxes','fire-loadeddata':'media-element','refsATAG':'references','attr-area-shape-keyword-rectangle':'the-area-element','dom-select-selectedindex':'the-select-element','syntax-start-tag':'syntax','tag-clouds':'links','entity-isinv':'named-character-references','event-media-seeking':'media-elements','dom-mediacontroller-buffered':'media-elements','dom-select-required':'the-select-element','entity-VerticalLine':'named-character-references','creator-document':'browsers','interactions-with-xpath-and-xslt':'interactions-with-xpath-and-xslt','entity-rsqb':'named-character-references','shows-caching-progress':'offline','dom-domstringmap-additem':'common-dom-interfaces','dom-menu-compact':'obsolete','dom-script-htmlfor':'obsolete','entity-multimap':'named-character-references','attr-track-srclang':'the-track-element','dom-track-label':'the-track-element','remove-an-element-from-a-document':'infrastructure','dom-texttrack-showing':'media-elements','the-readonly-attribute':'common-input-element-attributes','htmlscriptelement':'the-script-element','unquote':'syntax','entity-RightUpVectorBar':'named-character-references','dom-frame-scrolling':'obsolete','entity-boxV':'named-character-references','entity-curlyeqsucc':'named-character-references','entity-bnequiv':'named-character-references','entity-lsqb':'named-character-references','attr-area-nohref':'obsolete','loading-xml-documents':'dom','entity-subne':'named-character-references','dom-videotrack-selected':'media-elements','entity-boxH':'named-character-references','entity-boxv':'named-character-references','dom-fs-novalidate':'attributes-common-to-form-controls','entity-eDDot':'named-character-references','limited-to-numbers-greater-than-zero':'common-dom-interfaces','entity-icirc-legacy':'named-character-references','handling-first-frame-available':'media-elements','attr-crossorigin-none':'urls','entity-subnE':'named-character-references','entity-yscr':'named-character-references','entity-boxh':'named-character-references','concept-bc-noscript':'webappapis','frameset':'obsolete','ix-handler-onended':'secion-index','attr-media-preload-auto':'media-elements','adjust-mathml-attributes':'tree-construction','entity-mDDot':'named-character-references','ix-handler-window-onstorage':'section-index','entity-DiacriticalAcute':'named-character-references','text-track-loading':'media-elements','entity-NotTildeFullEqual':'named-character-references','parsing-xhtml-fragments':'the-xhtml-syntax','attr-select-size':'the-select-element','entity-ltrPar':'named-character-references','dom-input-usemap':'obsolete','text-track-cue-text':'media-elements','the-location-interface':'history','attr-q-cite':'the-q-element','dom-link-media':'the-link-element','willful-violation':'introduction','script-created-parser':'dynamic-markup-insertion','entity-bigcup':'named-character-references','editing-0':'editing','dom-mediaerror-media_err_decode':'media-elements','dom-applet-hspace':'obsolete','data-protocol':'infrastructure','ix-handler-onplaying':'section-index','html-namespace':'infrastructure','entity-ccedil-legacy':'named-character-rferences','entity-xrArr':'named-character-references','ix-handler-window-onunload':'section-index','attr-caption-align':'obsolete','concept-appcache-onlinewhitelist':'offline','entity-zwnj':'named-character-references','preprocessing-the-input-stream':'parsing','sequential-link-types':'links','dom-dim-width':'dimension-attributes','dom-table-insertrow':'the-table-element','concept-n-noscript':'webappapis','entity-compfn':'named-character-references','reset-the-insertion-mode-appropriately':'parsing','event-handlers-on-elements-document-objects-and-window-objects':'webappapis','float-nan':'infrastructure','beforeunloadevent':'history','authors-using-xhtml':'iana','entity-cedil-legacy':'named-character-references','entity-lcy':'named-character-references','script-data-escape-start-state':'tokenization','event-definitions-0':'history','conformance-checkers':'infrastructure','entity-Cacute':'named-character-references','input-type-attr-summary':'the-input-element','event-media-playing':'media-elements','dom-buton-value':'the-button-element','secondary-browsing-contexts':'browsers','attr-tr-bgcolor':'obsolete','end-tags':'syntax','entity-NotTildeTilde':'named-character-references','durationChange':'media-elements','concept-button':'forms','entity-nsupe':'named-character-references','refsECMA262':'references','entity-mcy':'named-character-references','entity-Tcedil':'named-character-references','entity-not-legacy':'named-character-references','entity-nsupE':'named-character-references','entity-gesl':'named-character-references','entity-cir':'named-character-references','dom-datatransferitemlist-removeitem':'dnd','htmlparagraphelement':'the-p-element','dom-document':'infrastructure','functionstringcallback':'dnd','entity-awconint':'named-character-references','dom-tdth-ch':'obsolete','popstateeventinit':'history','entity-ange':'named-character-references','entity-mlcp':'named-character-references','dom-table-deletecaption':'the-table-element','entity-minusb':'named-character-references','entity-minusd':'named-characer-references','text-track-cue-automatic-line-position':'media-elements','scope':'introduction','prescan-a-byte-stream-to-determine-its-encoding':'parsing','ix-handler-onstalled':'section-index','entity-nleftrightarrow':'named-character-references','the-dfn-element':'the-dfn-element','dom-area-type':'the-area-element','before-doctype-name-state':'tokenization','attr-ol-type-keyword-lower-roman':'the-ol-element','attr-tabindex':'editing','dom-object-type':'the-object-element','printing':'user-prompts','domexception':'infrastructure','entity-efDot':'named-character-references','entity-lcaron':'named-character-references','entity-Gdot':'named-character-references','dom-img-alt':'the-img-element','entity-Ycirc':'named-character-references','dom-command-checked':'the-command-element','explicit-self-navigation-override':'browsers','the-param-element':'the-param-element','xhtml':'the-xhtml-syntax','entity-Odblac':'named-character-references','sandboxScriptBlocked':'webappapis','attr-script-src':'the-script-element,'dom-tr-bgcolor':'obsolete','entity-swArr':'named-character-references','entity-ljcy':'named-character-references','refsPINGBACK':'references','entity-atilde-legacy':'named-character-references','get-the-timed-task':'timers','concept-input-value-default-range':'states-of-the-type-attribute','entity-varsigma':'named-character-references','entity-rarr':'named-character-references','dom-quote-cite':'the-blockquote-element','entity-NotTilde':'named-character-references','entity-dwangle':'named-character-references','entity-vscr':'named-character-references','attr-iframe-align':'obsolete','command-facet-id':'commands','dom-a-rellist':'the-a-element','attr-body-marginleft':'obsolete','attr-th-scope':'the-th-element','dom-external':'system-state-and-capabilities','event-mediacontroller-loadeddata':'media-elements','text-track-cue-alignment':'media-elements','entity-qscr':'named-character-references','print-media':'rendering','attr-table-align':'obsolete','entity-rarrhk':'named-character-references','attr-hyperlin-usemap':'image-maps','signedpublickeyandchallenge':'the-keygen-element','task-source':'webappapis','dom-ol-compact':'obsolete','entity-rBarr':'named-character-references','selector-read-only':'links','entity-Ograve-legacy':'named-character-references','entity-frac34-legacy':'named-character-references','frames':'obsolete','entity-seswar':'named-character-references','canvas':'the-canvas-element','entity-CenterDot':'named-character-references','entity-nvinfin':'named-character-references','dom-htmlformcontrolscollection-nameditem':'common-dom-interfaces','entity-Ncaron':'named-character-references','entity-Kopf':'named-character-references','entity-nfr':'named-character-references','entity-sqsubset':'named-character-references','mutationobserver-scripting-environment':'infrastructure','entity-aogon':'named-character-references','scroll-to-the-fragment-identifier':'history','unloading-document-cleanup-steps':'history','entity-LeftDownTeeVector':'named-character-references','entity-blacktriangleright':'named-haracter-references','text-html':'iana','attr-dir-ltr':'global-attributes','script-processing-encoding':'the-script-element','handler-mediacontroller-onloadedmetadata':'media-elements','refsCSSRUBY':'references','dom-table-border':'the-table-element','the-document-s-current-address':'dom','entity-suplarr':'named-character-references','dom-document-cookie':'dom','entity-bepsi':'named-character-references','entity-cupcap':'named-character-references','entity-dlcrop':'named-character-references','dom-a-href':'the-a-element','attr-ol-type-state-lower-alpha':'the-ol-element','entity-Aring-legacy':'named-character-references','event-media-emptied':'media-elements','handler-appcache-oncached':'offline','entity-CloseCurlyDoubleQuote':'named-character-references','concept-media-load-algorithm':'media-elements','parsing-main-inforeign':'tree-construction','attr-input-type-radio-keyword':'the-input-element','entity-equiv':'named-character-references','attr-tbody-valign':'obsolete','entity-bull':'named-character-refereces','entity-Qfr':'named-character-references','entity-Cross':'named-character-references','entity-rdsh':'named-character-references','the-document-s-address':'dom','handler-appcache-onobsolete':'offline','entity-colone':'named-character-references','the-input-element-as-a-file-upload-control':'rendering','attr-form-autocomplete':'the-form-element','entity-bsolb':'named-character-references','controller-playback':'media-elements','dom-param-value':'the-param-element','htmlulistelement':'the-ul-element','entity-DoubleDownArrow':'named-character-references','dom-area-hostname':'the-area-element','entity-veeeq':'named-character-references','entity-boxtimes':'named-character-references','dom-media-ended':'media-elements','entity-lbarr':'named-character-references','the-article-element':'the-article-element','dom-audiotrack-id':'media-elements','entity-coprod':'named-character-references','entity-lowast':'named-character-references','dom-command-ro-commandicon':'commands','entity-lambda':'named-character-referenes','entity-Iopf':'named-character-references','the-aside-element':'the-aside-element','entity-Yscr':'named-character-references','refsTYPEDARRAY':'references','entity-vsubne':'named-character-references','dom-label-htmlfor':'the-label-element','attr-contenteditable':'editing','xml':'infrastructure','entity-vsubnE':'named-character-references','xmp':'obsolete','dom-classname':'global-attributes','attr-output-for':'the-output-element','htmllegendelement':'the-legend-element','algorithm-for-processing-rows':'attributes-common-to-td-and-th-elements','entity-edot':'named-character-references','dom-tdth-colspan':'attributes-common-to-td-and-th-elements','dom-document-linkcolor':'obsolete','dom-table-createtfoot':'the-table-element','entity-drcrop':'named-character-references','ended-playback':'media-elements','dom-input-height':'the-input-element','entity-nleftarrow':'named-character-references','entity-bbrktbrk':'named-character-references','entity-rbbrk':'named-character-references','rules-for-updating-the-tex-track-rendering':'media-elements','refsDOT':'references','attr-source-src':'the-source-element','entity-daleth':'named-character-references','entity-Vert':'named-character-references','history-autocomplete':'history','foster-parent-element':'tree-construction','entity-bigodot':'named-character-references','an-overridden-reload':'dom','parse-a-global-date-and-time-string':'common-microsyntaxes','dom-applet-width':'obsolete','delaying-the-load-event-flag':'media-elements','entity-lap':'named-character-references','entity-lat':'named-character-references','attr-media-preload':'media-elements','entity-qint':'named-character-references','valid-non-empty-url':'urls','entity-IEcy':'named-character-references','the-external-interface':'system-state-and-capabilities','entity-SucceedsTilde':'named-character-references','url-scheme':'urls','the-p-element':'the-p-element','dom-embed-type':'the-embed-element','dom-ul-compact':'obsolete','entity-marker':'named-character-references','entity-quest':'named-character-refereces','event-mediacontroller-ratechange':'media-elements','tabular-data':'tabular-data','entity-ldca':'named-character-references','dom-confirm':'user-prompts','entity-PlusMinus':'named-character-references','the-area-element':'the-area-element','entity-Iacute-legacy':'named-character-references','attr-crossorigin-use-credentials-keyword':'urls','source-node':'dnd','attr-ol-type-state-upper-roman':'the-ol-element','attr-dir-rtl':'global-attributes','concept-media-load-resource':'media-elements','dom-texttrackcue-vertical':'media-elements','text-track-cue-writing-direction':'media-elements','dom-map-name':'the-map-element','entity-geqq':'named-character-references','intro-early-example':'introduction','dom-document-open':'dynamic-markup-insertion','boolean-attributes':'common-microsyntaxes','ix-handler-window-onpageshow':'section-index','attr-td-scope':'obsolete','printing-steps':'user-prompts','entity-acute-legacy':'named-character-references','table-descriptions':'the-table-element','entity-Chi':'named-charcter-references','rules-for-parsing-dimension-values':'common-microsyntaxes','entity-NotCupCap':'named-character-references','value-track-kind-caption':'media-elements','editing-apis':'editing-apis','dom-validitystate-rangeoverflow':'constraints','entity-oacute-legacy':'named-character-references','the-object-element':'the-object-element','refsUTF7':'references','opener-browsing-context':'browsers','determining-the-character-encoding':'parsing','entity-xfr':'named-character-references','dom-th-scope':'the-th-element','refsBIDI':'references','refsSRGB':'references','concept-input-immutable':'the-input-element','attr-link-title':'the-link-element','the-marquee-element':'obsolete','refsNPAPI':'references','attr-button-type-submit-state':'the-button-element','entity-hairsp':'named-character-references','dom-location-href':'history','entity-scsim':'named-character-references','publickeyandchallenge':'the-keygen-element','textcontent':'infrastructure','dom-textarea-value':'the-textarea-element','the-location-bar-arprop-object':'browsers','following-hyperlinks':'links','groupings-of-browsing-contexts':'browsers','entity-Rcy':'named-character-references','entity-scpolint':'named-character-references','event-loop':'webappapis','dom-document-nameditem-filter':'dom','dom-a-pathname':'the-a-element','entity-twixt':'named-character-references','entity-theta':'named-character-references','entity-looparrowleft':'named-character-references','entity-bscr':'named-character-references','x-that':'introduction','dom-media-played':'media-elements','entity-RightArrowLeftArrow':'named-character-references','selector-out-of-range':'links','dom-location':'history','entity-gtcir':'named-character-references','entity-egrave-legacy':'named-character-references','entity-Colon':'named-character-references','dom-mediacontroller-duration':'media-elements','entity-longrightarrow':'named-character-references','attr-fs-method-post':'attributes-common-to-form-controls','dom-tdth-align':'obsolete','entity-HARDcy':'named-character-references','relalternate':'links','htmlappletelement':'obsolete','dom-navigator-online':'offline','timer-task-source':'timers','content-type':'urls','entity-hbar':'named-character-references','entity-nearr':'named-character-references','entity-Therefore':'named-character-references','dfn-read-only-array':'infrastructure','entity-chcy':'named-character-references','entity-Igrave':'named-character-references','attr-input-type-month-keyword':'the-input-element','entity-lthree':'named-character-references','entity-succnsim':'named-character-references','dom-hr-align':'obsolete','entity-srarr':'named-character-references','valid-month-string':'common-microsyntaxes','entity-middot':'named-character-references','refused-to-allow-the-document-to-be-unloaded':'history','rcdata-end-tag-open-state':'tokenization','entity-NegativeThinSpace':'named-character-references','mathml':'mathml','htmloptgroupelement':'the-optgroup-element','entity-lnapprox':'named-character-references','entity-thetasym':'named-character-references','dom-windobase64-atob':'webappapis','entity-dd':'named-character-references','entity-notnivb':'named-character-references','entity-notnivc':'named-character-references','entity-notniva':'named-character-references','entity-rcub':'named-character-references','the-fieldset-element-0':'rendering','entity-shortmid':'named-character-references','presentational-hints':'rendering','the-time-element':'the-time-element','entity-urcorner':'named-character-references','concept-command':'commands','entity-xhArr':'named-character-references','blocked-on-its-media-controller':'media-elements','entity-gtdot':'named-character-references','the-input-byte-stream':'parsing','entity-llcorner':'named-character-references','dom-table-rows':'the-table-element','attr-fs-method-post-keyword':'attributes-common-to-form-controls','concept-http-equiv-extensions':'the-meta-element','bogus-doctype-state':'tokenization','dom-window-nameditem-filter':'browsers','entity-lrtri':'named-character-references','barred-from-constraint-validation':'constrants','event-mediacontcoller-ended':'media-elements','dom-meter-optimum':'the-meter-element','entity-varepsilon':'named-character-references','concept-appcache-newer':'offline','dom-texttrackcue-align':'media-elements','value-track-kind-main':'media-elements','directly-reachable-browsing-contexts':'browsers','tt':'obsolete','the-after-after-body-insertion-mode':'tree-construction','entity-macr-legacy':'named-character-references','entity-Wcirc':'named-character-references','entity-prcue':'named-character-references','entity-LowerRightArrow':'named-character-references','refsRFC3279':'references','entity-gne':'named-character-references','entity-jmath':'named-character-references','dom-navigator-yieldforstorageupdates':'system-state-and-capabilities','entity-hybull':'named-character-references','dom-history-state':'history','entity-OverBrace':'named-character-references','dom-mediacontroller-volume':'media-elements','entity-nacute':'named-character-references','entity-trisb':'named-character-references','htmlextareaelement':'the-textarea-element','entity-gnE':'named-character-references','processing-model':'image-maps','navigate-non-Document':'history','entity-otimes':'named-character-references','entity-vartheta':'named-character-references','entity-divonx':'named-character-references','entity-Gbreve':'named-character-references','entity-xlArr':'named-character-references','dom-tr-valign':'obsolete','parsing-main-afterframeset':'tree-construction','security-2':'browsers','security-1':'browsers','security-0':'constraints','entity-Eacute':'named-character-references','entity-phmmat':'named-character-references','refsMQ':'references','entity-lcub':'named-character-references','selector-active':'links','parsing-main-intbody':'tree-construction','entity-Aring':'named-character-references','entity-Lfr':'named-character-references','replaced-elements':'rendering','dom-window-item':'browsers','dom-validitystate-stepmismatch':'constraints','dom-texttrackcue':'media-elements','attr-meter-low':'the-meter-element','refsWELINK':'references','handler-appcache-ondownloading':'offline','states-of-the-type-attribute':'states-of-the-type-attribute','ix-handler-onprogress':'section-index','entity-eqcirc':'named-character-references','entity-LeftCeiling':'named-character-references','the-insertion-mode':'parsing','entity-hellip':'named-character-references','entity-smashp':'named-character-references','entity-Aacute-legacy':'named-character-references','implied-strong-reference':'common-dom-interfaces','entity-plussim':'named-character-references','dom-output-value':'the-output-element','dom-a-search':'the-a-element','the-ol-element':'the-ol-element','constructing-form-data-set':'form-submission','attr-tdth-colspan':'attributes-common-to-td-and-th-elements','dom-textarea-input-selectionstart':'textFieldSelection','dom-input-autocomplete':'the-input-element','dom-media-defaultplaybackrate':'media-elements','entity-lgE':'named-character-references','entity-sigma':'named-character-references','text-track-failed-to-load':'media-element','entity-tosa':'named-character-references','has-an-element-in-select-scope':'parsing','dom-texttrackcue-position':'media-elements','ascii-case-insensitive':'infrastructure','entity-nleq':'named-character-references','entity-ltlarr':'named-character-references','entity-nles':'named-character-references','dom-script-src':'the-script-element','entity-ocir':'named-character-references','entity-nvge':'named-character-references','entity-dagger':'named-character-references','attr-marquee-direction-right':'obsolete','dom-img-ismap':'the-img-element','after-doctype-system-identifier-state':'tokenization','entity-Upsi':'named-character-references','dom-linkstyle-disabled':'styling','dom-datatransferitemlist-item':'dnd','candidate-for-constraint-validation':'constraints','dom-parent':'browsers','whitelisted-scheme':'system-state-and-capabilities','entity-frac13':'named-character-references','meta-application-name':'the-meta-element','dom-body-text':'obsolete','dom-mediaerror-media_err_network':'media-elements','entty-Implies':'named-character-references','entity-orarr':'named-character-references','refsCORS':'references','dom-head-profile':'obsolete','create-a-script-from-a-node':'webappapis','refsCESU8':'references','entity-swarrow':'named-character-references','dom-table-createthead':'the-table-element','entity-Agrave':'named-character-references','text-track-cue-horizontal-writing-direction':'media-elements','the-script-element':'the-script-element','entity-sbquo':'named-character-references','entity-UpperRightArrow':'named-character-references','entity-sigmaf':'named-character-references','entity-acute':'named-character-references','dom-media-addtexttrack':'media-elements','attr-area-shape-keyword-poly':'the-area-element','named-character-references-table':'named-character-references','entity-Cayleys':'named-character-references','attr-crossorigin-anonymous-keyword':'urls','entity-sigmav':'named-character-references','attr-input-type-password-keyword':'the-input-element','dom-window-close':'browsers','attr-input-equired':'common-input-element-attributes','steps-to-expose-a-media-resource-specific-text-track':'media-elements','offline':'offline','concept-get-attributes-when-sniffing':'parsing','entity-plus':'named-character-references','entity-downharpoonleft':'named-character-references','entity-commat':'named-character-references','matches-the-environment':'common-microsyntaxes','attr-option-label':'the-option-element','entity-uopf':'named-character-references','rel-up':'links','entity-backprime':'named-character-references','the-after-after-frameset-insertion-mode':'tree-construction','the-button-element':'the-button-element','entity-lowbar':'named-character-references','entity-icy':'named-character-references','attr-object-classid':'obsolete','entity-Aacute':'named-character-references','the-script-block-s-source':'the-script-element','script-data-double-escaped-less-than-sign-state':'tokenization','script-data-escaped-dash-dash-state':'tokenization','entity-prime':'named-character-references','entity-rpar':'namd-character-references','entity-uharl':'named-character-references','introduction':'introduction','hashchangeeventinit':'history','list-state':'the-menu-element','dom-base-target':'the-base-element','entity-dfisht':'named-character-references','entity-uharr':'named-character-references','entity-rarrlp':'named-character-references','dom-select-value':'the-select-element','dom-applet-align':'obsolete','attr-meta-name':'the-meta-element','attr-li-type':'obsolete','dom-img-border':'obsolete','handler-window-onpopstate':'webappapis','concept-cell':'attributes-common-to-td-and-th-elements','arraybuffer':'infrastructure','entity-nabla':'named-character-references','htmloutputelement':'the-output-element','entity-latail':'named-character-references','entity-rfr':'named-character-references','entity-llarr':'named-character-references','dom-navigator-unregisterprotocolhandler':'system-state-and-capabilities','dom-table-width':'obsolete','entity-nharr':'named-character-references','skip-whitespace':'common-microsyntaxs','adjust-svg-attributes':'tree-construction','dom-uda-protocol':'urls','entity-ccedil':'named-character-references','session-history':'history','entity-sup3-legacy':'named-character-references','dom-document-referrer':'dom','xlink-namespace':'namespaces','entity-curlyeqprec':'named-character-references','attr-fs-method':'attributes-common-to-form-controls','entity-shy':'named-character-references','entity-omacr':'named-character-references','entity-rharul':'named-character-references','content-type-sniffing':'urls','code-point-length':'infrastructure','entity-Cscr':'named-character-references','drag-and-drop-initialization-steps':'dnd','html-vs-xhtml':'introduction','entity-para-legacy':'named-character-references','entity-Phi':'named-character-references','entity-olt':'named-character-references','entity-raemptyv':'named-character-references','attr-a-shape':'obsolete','dom-document-dir':'global-attributes','entity-DJcy':'named-character-references','user-interaction-task-source':'webappapis','entity-Xscr:'named-character-references','attr-fs-enctype-formdata':'attributes-common-to-form-controls','the-strong-element':'the-strong-element','lists-of-dimensions':'common-microsyntaxes','img-load':'the-img-element','about-blank-origin':'browsers','timeouterror':'infrastructure','entity-piv':'named-character-references','locked-for-focus':'editing','dom-document-url':'dom','concept-table':'attributes-common-to-td-and-th-elements','entity-gla':'named-character-references','handler-window-onresize':'webappapis','entity-glj':'named-character-references','entity-angzarr':'named-character-references','the-datalist-element':'the-datalist-element','dom-media-error':'media-elements','entity-glE':'named-character-references','hyperlink':'links','text-track-disabled':'media-elements','refsRFC2781':'references','entity-DoubleLeftRightArrow':'named-character-references','entity-rlarr':'named-character-references','entity-RightUpVector':'named-character-references','dom-link-sizes':'the-link-element','entity-nGg':'named-charater-references','entity-triangledown':'named-character-references','attr-html-version':'obsolete','entity-UpTeeArrow':'named-character-references','entity-nGt':'named-character-references','dom-label-control':'the-label-element','platform-array-objects':'infrastructure','entity-Uogon':'named-character-references','entity-Rarrtl':'named-character-references','tag-cloud':'links','attr-th-scope-rowgroup':'the-th-element','dom-image-wh':'the-img-element','entity-Longleftarrow':'named-character-references','blob':'infrastructure','history-traversal-task-source':'webappapis','entity-Gg':'named-character-references','dom-appcache-downloading':'offline','entity-Gt':'named-character-references','htmlprogresselement':'the-progress-element','entity-euml-legacy':'named-character-references','handler-ondragend':'webappapis','dom-fs-formnovalidate':'attributes-common-to-form-controls','entity-GT':'named-character-references','marquee-current-loop-index':'obsolete','event-appcache-progress':'offline','dom-tree-accessors':dom','attr-table-frame':'obsolete','attr-input-type-datetime-local-keyword':'the-input-element','entity-cedil':'named-character-references','entity-dzcy':'named-character-references','entity-angle':'named-character-references','attr-marquee-behavior':'obsolete','converting-a-character-width-to-pixels':'rendering','entity-Lsh':'named-character-references','entity-leg':'named-character-references','concept-fs-enctype':'attributes-common-to-form-controls','attr-tdth-align':'obsolete','url-decomposition-idl-attributes':'urls','entity-les':'named-character-references','entity-leq':'named-character-references','entity-bigsqcup':'named-character-references','attr-dir-ltr-state':'global-attributes','concept-appcache-fallback':'offline','dom-tbody-choff':'obsolete','event-media-ratechange':'media-elements','attr-area-coords':'the-area-element','dom-datatransferitem-type':'dnd','entity-hopf':'named-character-references','entity-iukcy':'named-character-references','validitystate':'constraints','constructing-the-form-dta-set':'form-submission','metadata-content-0':'content-models','location':'history','noembed':'obsolete','entity-mstpos':'named-character-references','dom-navigator-platform':'system-state-and-capabilities','entity-Auml':'named-character-references','do-not-apply':'common-input-element-attributes','entity-crarr':'named-character-references','attr-fs-formaction':'attributes-common-to-form-controls','entity-equivDD':'named-character-references','create-an-element-for-the-token':'tree-construction','run-pre-click-activation-steps':'content-models','dom-external-addsearchprovider':'system-state-and-capabilities','the-caption-element':'the-caption-element','case-sensitive':'infrastructure','facets':'commands','entity-slarr':'named-character-references','entity-DiacriticalGrave':'named-character-references','entity-NotGreaterTilde':'named-character-references','entity-apid':'named-character-references','entity-ocirc':'named-character-references','entity-SOFTcy':'named-character-references','the-title-element-0':dom','attr-fs-formenctype':'attributes-common-to-form-controls','entity-CirclePlus':'named-character-references','list-of-text-tracks':'media-elements','dom-external-issearchproviderinstalled':'system-state-and-capabilities','attr-track-src':'the-track-element','script-processing-src-prepare':'the-script-element','entity-bsim':'named-character-references','entity-oror':'named-character-references','dom-tr-align':'obsolete','entity-cirmid':'named-character-references','attr-iframe-allowtransparency':'obsolete','entity-ddotseq':'named-character-references','entity-jopf':'named-character-references','dom-sharedworkerglobalscope-applicationcache':'offline','entity-lesdotor':'named-character-references','the-noscript-element':'the-noscript-element','interactive-content':'content-models','dom-tr-rowindex':'the-tr-element','entity-DoubleLongLeftArrow':'named-character-references','refsRFC5322':'references','submit-mailto-headers':'form-submission','refsRFC2313':'references','attr-link-sizes-any':'links','refsRFC238':'references','a-phrase-or-paragraph-with-an-alternative-graphical-representation:-charts-diagrams-graphs-maps-illustrations':'the-img-element','ix-handler-onpause':'section-index','unfocusing-steps':'editing','quirks-mode-doctypes':'tree-construction','concept-input-mutable':'the-input-element','refsCSSOMVIEW':'references','text-track-cue-computed-line-position':'media-elements','entity-NotSquareSubset':'named-character-references','entity-rbrace':'named-character-references','reconstruct-the-active-formatting-elements':'parsing','entity-rbrack':'named-character-references','redirect-steps':'infrastructure','attr-input-align':'obsolete','atob':'webappapis','dom-table-summary':'obsolete','entity-Scedil':'named-character-references','script-processing-prepare':'the-script-element','htmlparamelement':'the-param-element','ix-handler-ontimeupdate':'section-index','dom-datatransfer-items':'dnd','the-th-element':'the-th-element','entity-dopf':'named-character-references','entity-prE':'named-character-references,'syntax-elements':'syntax','entity-Ncy':'named-character-references','character-encodings':'infrastructure','entity-tstrok':'named-character-references','entity-SubsetEqual':'named-character-references','entity-xotime':'named-character-references','fragment-case':'the-end','entity-Rarr':'named-character-references','runtime-script-errors-in-documents':'webappapis','entity-lfloor':'named-character-references','entity-pre':'named-character-references','dom-object-contentwindow':'the-object-element','parsing-urls':'urls','attr-input-list':'common-input-element-attributes','attr-object-archive':'obsolete','elements':'elements','entity-gammad':'named-character-references','drageventinit':'dnd','resetBCName':'history','dom-document-scripts':'dom','attr-button-type-reset':'the-button-element','entity-rho':'named-character-references','entity-dlcorn':'named-character-references','extensibility':'infrastructure','entity-ZeroWidthSpace':'named-character-references','entity-csube':'named-character-references','entitynlE':'named-character-references','parse-a-month-string':'common-microsyntaxes','entity-nlt':'named-character-references','entity-frac34':'named-character-references','attr-hr-color':'obsolete','dom-videotrack-id':'media-elements','entity-tint':'named-character-references','entity-nle':'named-character-references','entity-DoubleLeftTee':'named-character-references','entity-Ccedil':'named-character-references','resources':'infrastructure','entity-ltcc':'named-character-references','aborterror':'infrastructure','event-media-error':'media-elements','determine-the-value-of-an-indexed-property':'infrastructure','the-dd-element':'the-dd-element','entity-primes':'named-character-references','entity-backsimeq':'named-character-references','entity-aacute':'named-character-references','entity-supsim':'named-character-references','dom-link-rellist':'the-link-element','contenteditable':'editing','entity-female':'named-character-references','cue-events':'media-elements','entity-dscy':'named-character-references','entityfflig':'named-character-references','entity-dscr':'named-character-references','ix-handler-window-onfocus':'section-index','entity-capand':'named-character-references','entity-ape':'named-character-references','entity-UnderBracket':'named-character-references','entity-omicron':'named-character-references','dimension-attributes':'dimension-attributes','trackevent':'media-elements','entity-nLeftarrow':'named-character-references','video':'the-video-element','attr-img-name':'obsolete','affected-by-a-base-url-change':'infrastructure','index':'section-index','entity-apE':'named-character-references','entity-Vscr':'named-character-references','entity-lparlt':'named-character-references','entity-ratail':'named-character-references','attr-track-kind-descriptions':'the-track-element','input-img-available':'states-of-the-type-attribute','dom-mediacontroller-paused':'media-elements','entity-frac78':'named-character-references','the-head-element':'the-head-element','dom-texttrack-addcue':'media-elements','entity-origof:'named-character-references','child-browsing-context':'browsers','entity-DoubleRightArrow':'named-character-references','entity-rbrke':'named-character-references','entity-succsim':'named-character-references','entity-breve':'named-character-references','dom-link-type':'the-link-element','an-iframe-srcdoc-document':'the-iframe-element','the-step-attribute':'common-input-element-attributes','concept-duration':'common-microsyntaxes','entity-iiint':'named-character-references','windowmodal':'user-prompts','dom-img-align':'obsolete','entity-bopf':'named-character-references','read-xml':'history','entity-precsim':'named-character-references','browser-state':'offline','foster-parenting':'tree-construction','handler-onshow':'webappapis','attr-media-crossorigin':'media-elements','before-doctype-system-identifier-state':'tokenization','ready-for-post-load-tasks':'the-end','networkerror':'infrastructure','videotracklist':'media-elements','entity-lBarr':'named-character-references','entity-drcorn':'named-character-reerences','media-resource-end-position':'media-elements','entity-sqcup':'named-character-references','the-style-element':'the-style-element','entity-nparsl':'named-character-references','entity-EmptyVerySmallSquare':'named-character-references','ix-handler-onmouseout':'section-index','entity-lagran':'named-character-references','origin-0':'origin-0','ix-handler-window-onpagehide':'section-index','entity-cong':'named-character-references','dom-appcache-checking':'offline','refsXML':'references','entity-notin':'named-character-references','entity-cuvee':'named-character-references','using-the-command-element-to-define-a-command':'commands','element':'infrastructure','script-processing-src':'the-script-element','entity-DiacriticalDoubleAcute':'named-character-references','attr-iframe-marginwidth':'obsolete','sourcing-in-band-text-tracks':'media-elements','entity-Afr':'named-character-references','entity-barwedge':'named-character-references','entity-nrarrc':'named-character-references','dom-a-type':'the-a-elemet','entity-gesdot':'named-character-references','attr-track-kind-keyword-metadata':'the-track-element','mouseeventinit':'infrastructure','entity-popf':'named-character-references','ix-handler-oninput':'section-index','entity-RBarr':'named-character-references','entity-LeftRightVector':'named-character-references','submit-mutate-action':'form-submission','scripting-flag':'parsing','dom-command-radiogroup':'the-command-element','entity-uArr':'named-character-references','handler-oncanplay':'webappapis','dropEffect-initialization':'dnd','transparent':'content-models','handler-onplay':'webappapis','event-handler-content-attributes':'webappapis','entity-DZcy':'named-character-references','entity-diams':'named-character-references','entity-IOcy':'named-character-references','the-html-element':'the-html-element','concept-fs-action':'attributes-common-to-form-controls','attr-progress-max':'the-progress-element','entity-vopf':'named-character-references','potentially-playing':'media-elements','dom-img-naturalheight''the-img-element','runtime-script-errors':'webappapis','entity-RightCeiling':'named-character-references','entity-leftrightharpoons':'named-character-references','entity-iacute':'named-character-references','refsWEBIDL':'references','meta':'the-meta-element','dom-a-hreflang':'the-a-element','refsPNG':'references','entity-ropf':'named-character-references','entity-iexcl':'named-character-references','the-hidden-attribute':'editing','entity-varpi':'named-character-references','the-col-element':'the-col-element','concept-role-none':'wai-aria','suffering-from-being-missing':'constraints','ix-handler-oncuechange':'section-index','refsHTTP':'references','entity-gtrarr':'named-character-references','usage-summary':'usage-summary','security-forms':'constraints','transferable':'common-dom-interfaces','entity-Edot':'named-character-references','system-state-and-capabilities':'system-state-and-capabilities','htmltabledatacellelement':'the-td-element','the-meta-element':'the-meta-element','read-ua-inline':'history','enity-utri':'named-character-references','entity-olcross':'named-character-references','dom-applicationcache':'offline','cache-host':'offline','entity-SquareSubset':'named-character-references','the-xml:base-attribute-xml-only':'global-attributes','fire-a-synthetic-mouse-event':'webappapis','event-media-loadedmetadata':'media-elements','htmlelement':'elements','the-page':'rendering','entity-nges':'named-character-references','entity-ngeq':'named-character-references','non-replaced-elements':'rendering','entity-xsqcup':'named-character-references','html-integration-point':'tree-construction','has-no-style-sheet-that-is-blocking-scripts':'styling','concept-textarea-dirty':'the-textarea-element','using-the-input-element-to-define-a-command':'commands','dom-select-multiple':'the-select-element','entity-squ':'named-character-references','entity-Ubreve':'named-character-references','dom-frame-frameborder':'obsolete','invalidnodetypeerror':'infrastructure','entity-raquo-legacy':'named-character-references','securityand-privacy-considerations':'media-elements','semantics-0':'elements','entity-Psi':'named-character-references','selectors':'links','security-with-canvas-elements':'the-canvas-element','entity-veebar':'named-character-references','attr-hx-align':'obsolete','attr-marquee-behavior-slide':'obsolete','entity-nvdash':'named-character-references','presentational-markup':'introduction','dom-audiotrack-language':'media-elements','authority-based-url':'urls','dom-tdth-headers':'attributes-common-to-td-and-th-elements','dom-dir':'global-attributes','entity-TSHcy':'named-character-references','dom-datatransferitem-getasfile':'dnd','handler-mediacontroller-onplay':'media-elements','dom-marquee-direction':'obsolete','url-fragment':'urls','entity-triangle':'named-character-references','ix-handler-ondragleave':'section-index','rules-for-parsing-floating-point-number-values':'common-microsyntaxes','javascript-protocol':'webappapis','entity-Dopf':'named-character-references','applicationcache':'offline','rcdata-elements':'sntax','entity-supseteq':'named-character-references','pause':'webappapis','entity-shcy':'named-character-references','entity-kappav':'named-character-references','attr-li-value':'the-li-element','attr-body-bgcolor':'obsolete','refsPSL':'references','entity-Ycy':'named-character-references','entity-lopf':'named-character-references','attr-track-kind':'the-track-element','client-side-form-validation':'forms','dom-document-activeelement':'editing','entity-Jopf':'named-character-references','entity-nrarrw':'named-character-references','entity-gEl':'named-character-references','dom-textarea-readonly':'the-textarea-element','entity-Icirc-legacy':'named-character-references','frame':'obsolete','seamless-browsing-context-flag':'the-iframe-element','dom-tabindex':'editing','attr-marquee-direction-up':'obsolete','dom-applet-archive':'obsolete','entity-Euml':'named-character-references','script-data-escaped-dash-state':'tokenization','entity-it':'named-character-references','entity-yacy':'named-character-references','mg-none':'the-img-element','link-type-prefetch':'links','entity-times-legacy':'named-character-references','web-scheme-prefix':'iana','entity-fallingdotseq':'named-character-references','entity-ni':'named-character-references','entity-ne':'named-character-references','entity-ucirc-legacy':'named-character-references','entity-nu':'named-character-references','dom-node-parentnode':'infrastructure','table-charref-overrides':'tokenization','current-node':'parsing','requirements-for-implementations':'obsolete','entity-olcir':'named-character-references','dom-a-hash':'the-a-element','entity-ordm':'named-character-references','refsBCP47':'references','entity-ordf':'named-character-references','entity-gvnE':'named-character-references','valid-date-string':'common-microsyntaxes','entity-ohm':'named-character-references','pending-table-character-tokens':'tree-construction','additional-allowed-character':'tokenization','entity-ratio':'named-character-references','entity-Dscr':'named-character-references','handler-onsumit':'webappapis','attr-img-lowsrc':'obsolete','entity-itilde':'named-character-references','entity-ycy':'named-character-references','dom-history-replacestate':'history','seekUpdate':'media-elements','entity-nwarrow':'named-character-references','form-owner':'association-of-controls-and-forms','dom-menu-type':'the-menu-element','dom-appcache-uncached':'offline','entity-trade':'named-character-references','the-menu-element':'the-menu-element','entity-frac56':'named-character-references','attr-input-src':'states-of-the-type-attribute','entity-varsubsetneq':'named-character-references','entity-frac58':'named-character-references','entity-ShortDownArrow':'named-character-references','the-textarea-element':'the-textarea-element','attr-dim-width':'dimension-attributes','entity-smtes':'named-character-references','toolbars-0':'rendering','parse-a-week-string':'common-microsyntaxes','earliest-possible-position':'media-elements','entity-auml-legacy':'named-character-references','valid-integer':'common-microsyntaxes,'event-handlers':'webappapis','event-firing':'webappapis','text-track-readiness-state':'media-elements','entity-leqslant':'named-character-references','text-track-cue-middle-alignment':'media-elements','consume-a-character-reference':'tokenization','dom-command-disabled':'the-command-element','entity-DoubleUpDownArrow':'named-character-references','attr-progress-value':'the-progress-element','entity-NotPrecedes':'named-character-references','sequential-focus-navigation-and-the-tabindex-attribute':'editing','entity-dtrif':'named-character-references','entity-udhar':'named-character-references','entity-Conint':'named-character-references','entity-brvbar-legacy':'named-character-references','entity-khcy':'named-character-references','entity-ffllig':'named-character-references','dom-texttrack-mode':'media-elements','unit-of-related-browsing-contexts':'browsers','entity-Kappa':'named-character-references','entity-NotGreaterFullEqual':'named-character-references','entity-boxuL':'named-character-references','textieldSelection':'textFieldSelection','audio':'the-audio-element','entity-Omacr':'named-character-references','htmlcollection':'infrastructure','dom-track-loaded':'the-track-element','dom-link-target':'obsolete','link-type-stylesheet':'links','week-number-of-the-last-day':'common-microsyntaxes','entity-notindot':'named-character-references','entity-Diamond':'named-character-references','raw-text-elements':'syntax','outlines':'headings-and-sections','navigatorstorageutils':'system-state-and-capabilities','entity-doteq':'named-character-references','entity-Congruent':'named-character-references','entity-hookleftarrow':'named-character-references','percentages-and-dimensions':'common-microsyntaxes','dom-select-remove':'the-select-element','attr-a-coords':'obsolete','entity-langle':'named-character-references','entity-ntriangleleft':'named-character-references','media-controller-default-playback-rate':'media-elements','htmlformelement':'the-form-element','htmlanchorelement':'the-a-element','the-datatransfer-interace':'dnd','entity-laquo-legacy':'named-character-references','entity-tridot':'named-character-references','custom-data-attribute':'global-attributes','session-history-entry':'history','event-media-durationchange':'media-elements','dom-style':'global-attributes','ix-handler-window-onmessage':'section-index','entity-iquest':'named-character-references','read-multipart-x-mixed-replace':'history','entity-Uuml-legacy':'named-character-references','attr-command-type-keyword-command':'the-command-element','entity-Aogon':'named-character-references','command-facet-hint':'commands','dom-datatransfer-setdata':'dnd','entity-curren':'named-character-references','text-track-showing-by-default':'media-elements','dom-navigator-isprotocolhandlerregistered':'system-state-and-capabilities','entity-NegativeVeryThinSpace':'named-character-references','ix-handler-oninvalid':'section-index','vaguer-moments-in-time':'common-microsyntaxes','the-css-user-agent-style-sheet-and-presentational-hints':'rendering','ix-handler-onkeydown:'section-index','handler-window-onbeforeunload':'webappapis','entity-ngsim':'named-character-references','dom-select-add':'the-select-element','potentially-cors-enabled-fetch':'urls','entity-capcap':'named-character-references','function':'webappapis','entity-RuleDelayed':'named-character-references','handler-ondragenter':'webappapis','attr-form-accept':'obsolete','dom-texttrack-kind-descriptions':'media-elements','fully-active':'browsers','entity-Ucirc':'named-character-references','entity-RightTeeVector':'named-character-references','entity-shortparallel':'named-character-references','entity-escr':'named-character-references','entity-rnmid':'named-character-references','dom-media-duration':'media-elements','tokenizing-character-references':'tokenization','dom-trackevent-track':'media-elements','concept-range':'infrastructure','getting-media-metadata':'media-elements','dom-table-align':'obsolete','refsRFC1034':'references','track-language':'the-track-element','entity-simplus':'named-character-references',dom-input-maxlength':'the-input-element','text-track-cue-vertical-growing-left-writing-direction':'media-elements','url-manipulation-and-creation':'urls','entity-Ifr':'named-character-references','handler-window-onscroll':'webappapis','dom-progress-value':'the-progress-element','base-dnd-feedback':'dnd','event-appcache-downloading':'offline','has-an-element-in-scope':'parsing','entity-Lcedil':'named-character-references','entity-uuarr':'named-character-references','entity-Uacute-legacy':'named-character-references','dom-location-replace':'history','structured-clone':'common-dom-interfaces','attr-input-autocomplete-default-state':'common-input-element-attributes','attr-div-align':'obsolete','dom-focus':'editing','entity-bot':'named-character-references','entity-gtrsim':'named-character-references','attr-marquee-behavior-alternate':'obsolete','entity-vdash':'named-character-references','entity-nvap':'named-character-references','dom-document-0':'browsers','entity-UpArrowBar':'named-character-references','dom-pener':'browsers','entity-brvbar':'named-character-references','update-the-image-data':'the-img-element','conformance-requirements-for-authors':'introduction','attr-input-vspace':'obsolete','the-root-element':'semantics','concept-http-equivalent':'urls','about:blank':'urls','webvtt':'infrastructure','attr-p-align':'obsolete','navigating-across-documents':'history','dom-body-bgcolor':'obsolete','htmlmenuelement':'the-menu-element','entity-NotPrecedesEqual':'named-character-references','critical-subresources':'infrastructure','sandboxed-top-level-navigation-browsing-context-flag':'the-iframe-element','math':'mathml','refsIANAPERMHEADERS':'references','ix-handler-ondrop':'section-index','handler-marquee-onfinish':'obsolete','entity-gtrdot':'named-character-references','dom-tr-deletecell':'the-tr-element','alternate-style-sheets':'styling','entity-amalg':'named-character-references','entity-notinE':'named-character-references','dom-table-thead':'the-table-element','entity-pound':'named-character-references','enity-Ocirc':'named-character-references','alt':'the-img-element','element-dfn-categories':'element-definitions','attr-area-shape-circle':'the-area-element','entity-nwArr':'named-character-references','entity-Updownarrow':'named-character-references','htmldirectoryelement':'obsolete','attr-hr-align':'obsolete','entity-nedot':'named-character-references','concept-node-clone':'infrastructure','dom-select-options':'the-select-element','dom-img-crossorigin':'the-img-element','root-element':'infrastructure','domstringlist':'infrastructure','spelling-and-grammar-checking':'editing-apis','the-wbr-element':'the-wbr-element','entity-ncong':'named-character-references','entity-lharu':'named-character-references','entity-imagpart':'named-character-references','entity-rlm':'named-character-references','entity-RightAngleBracket':'named-character-references','videotrack':'media-elements','entity-lhard':'named-character-references','text-track-api':'media-elements','push-onto-the-list-of-active-formatting-elements':'parsing,'character-references':'syntax','entity-napprox':'named-character-references','entity-Acirc-legacy':'named-character-references','entity-Tcaron':'named-character-references','concept-appcache-manifest-explicit':'offline','mutation-during-parsing':'tree-construction','dom-command-label':'the-command-element','entity-copf':'named-character-references','webvtt-file-using-only-nested-cues':'infrastructure','entity-prurel':'named-character-references','entity-Barwed':'named-character-references','dom-img-width':'the-img-element','entity-lg':'named-character-references','entity-le':'named-character-references','entity-nVDash':'named-character-references','entity-ll':'named-character-references','entity-lt':'named-character-references','entity-subsetneq':'named-character-references','queue-a-post-load-task':'offline','entity-lE':'named-character-references','dom-iframe-src':'the-iframe-element','event-appcache-cached':'offline','entity-supset':'named-character-references','entity-bumpeq':'named-character-referencs','the-document-s-domain':'origin-0','scripting':'webappapis','entity-Not':'named-character-references','entity-copysr':'named-character-references','valid-browsing-context-name-or-keyword':'browsers','dom-htmloptionscollection-selectedindex':'common-dom-interfaces','entity-nwarr':'named-character-references','entity-forkv':'named-character-references','entity-npar':'named-character-references','translation-mode':'global-attributes','comment-end-bang-state':'tokenization','garbage-collection-and-browsing-contexts':'browsers','attr-hr-noshade':'obsolete','case-sensitivity':'links','application-cache-api':'offline','entity-yen':'named-character-references','ordinary':'parsing','entity-Idot':'named-character-references','clear-the-list-of-active-formatting-elements-up-to-the-last-marker':'parsing','decoded-as-utf-8-with-error-handling':'infrastructure','entity-LeftAngleBracket':'named-character-references','typographic-conventions':'introduction','attr-tdth-abbr':'obsolete','dom-input-files':'common-input-eleent-apis','entity-frac35':'named-character-references','entity-frac38':'named-character-references','entity-Vbar':'named-character-references','execCommand':'editing-apis','dnd':'dnd','entity-lesssim':'named-character-references','event-handler-attributes':'webappapis','other-link-types':'links','entity-because':'named-character-references','has-an-element-in-the-specific-scope':'parsing','entity-SmallCircle':'named-character-references','attr-abbr-title':'the-abbr-element','the-progress-element-0':'rendering','media-element-attributes':'media-elements','element-level-focus-apis':'editing','entity-sect-legacy':'named-character-references','entity-intprod':'named-character-references','text-track-cue':'media-elements','dom-marquee-loop':'obsolete','entity-urcorn':'named-character-references','security-location':'history','concept-fe-value':'attributes-common-to-form-controls','attr-keygen-keytype':'the-keygen-element','sourcing-out-of-band-text-tracks':'media-elements','entity-gfr':'named-character-reference','concept-event-dispatch':'infrastructure','entity-simlE':'named-character-references','entity-boxhd':'named-character-references','entity-Vdashl':'named-character-references','dom-input-multiple':'the-input-element','entity-boxhu':'named-character-references','attr-dropzone-copy':'dnd','dom-media-seek':'media-elements','event-media-progress':'media-elements','dom-basefont-size':'obsolete','concept-input-min-zero':'common-input-element-attributes','entity-nleqq':'named-character-references','url-host-specific':'urls','dom-media-muted':'media-elements','entity-boxhU':'named-character-references','entity-RightFloor':'named-character-references','attr-textarea-readonly':'the-textarea-element','entity-blacklozenge':'named-character-references','entity-DDotrahd':'named-character-references','dom-htmlallcollection-nameditem':'common-dom-interfaces','entity-RightDownVectorBar':'named-character-references','entity-Im':'named-character-references','sandboxCookies':'dom','entity-alpha':'named-character-references','om-li-type':'obsolete','cross-origin-request-status':'infrastructure','comment-0':'infrastructure','refsPPUTF8':'references','algorithm-for-extracting-an-encoding-from-a-meta-element':'urls','entity-bigtriangleup':'named-character-references','set-the-document-s-address':'history','parsing-main-incdata':'tree-construction','attr-img-border':'obsolete','refsRFC3490':'references','traverse-the-history-by-a-delta':'history','entity-ZHcy':'named-character-references','attr-dir-auto':'global-attributes','entity-Upsilon':'named-character-references','duration-time-component-scale':'common-microsyntaxes','writing-xhtml-documents':'the-xhtml-syntax','navigator':'system-state-and-capabilities','entity-cwconint':'named-character-references','set-of-comma-separated-tokens':'common-microsyntaxes','dom-title':'global-attributes','dom-meta-scheme':'obsolete','entity-hercon':'named-character-references','handler-window-onpageshow':'webappapis','in-a-document':'infrastructure','audiotracklist':'media-elements','dom-frameelment':'browsers','handler-window-onstorage':'webappapis','dom-input-valueasdate':'common-input-element-apis','navigate':'history','ascii-serialization-of-an-origin':'origin-0','entity-epar':'named-character-references','link-type-nofollow':'links','handler-onfocus':'webappapis','entity-iexcl-legacy':'named-character-references','links-forms-and-navigation':'rendering','entity-uml-legacy':'named-character-references','entity-Gcedil':'named-character-references','entity-nrightarrow':'named-character-references','entity-CircleTimes':'named-character-references','dom-caption-align':'obsolete','forget-the-media-element-s-media-resource-specific-text-tracks':'media-elements','entity-vsupnE':'named-character-references','dom-embed-align':'obsolete','entity-rAtail':'named-character-references','htmlmapelement':'the-map-element','entity-RightTeeArrow':'named-character-references','entity-vsupne':'named-character-references','provide-a-stable-state':'webappapis','entity-bsol':'named-character-references','hidden-stat-type-hidden':'states-of-the-type-attribute','entity-ncaron':'named-character-references','entity-Ecaron':'named-character-references','refsPROGRESS':'references','parsing-main-intable':'tree-construction','entity-complement':'named-character-references','radionodelist':'common-dom-interfaces','dom-img-usemap':'the-img-element','htmlframesetelement':'obsolete','parse-a-date-or-time-string':'common-microsyntaxes','attr-fs-enctype':'attributes-common-to-form-controls','attr-textarea-wrap-hard':'the-textarea-element','refsCSSIMAGES':'references','dom-media-initialtime':'media-elements','entity-ldrdhar':'named-character-references','entity-scnE':'named-character-references','xml-fragment-parsing-algorithm':'the-xhtml-syntax','handler-onkeydown':'webappapis','entity-ccupssm':'named-character-references','entity-CloseCurlyQuote':'named-character-references','entity-Kcedil':'named-character-references','entity-sup':'named-character-references','entity-lopar':'named-character-references','entity-egs':'named-charactr-references','entity-sum':'named-character-references','entity-ultri':'named-character-references','entity-sub':'named-character-references','ix-handler-ondragover':'section-index','accessing-other-browsing-contexts':'browsers','event-dragstart':'dnd','event-media-waiting':'media-elements','xml-fragment-serialization-algorithm':'the-xhtml-syntax','entity-jcy':'named-character-references','entity-Sigma':'named-character-references','entity-vDash':'named-character-references','attr-textarea-wrap-soft-state':'the-textarea-element','article-example':'the-article-element','entity-squarf':'named-character-references','entity-square':'named-character-references','entity-njcy':'named-character-references','dom-htmloptionscollection-nameditem':'common-dom-interfaces','lowercase-ascii-letters':'common-microsyntaxes','navigatoronline':'offline','concept-option-value':'the-option-element','entity-imof':'named-character-references','dom-keygen-keytype':'the-keygen-element','entity-cup':'named-character-references','entty-ohbar':'named-character-references','form-associated-element':'forms','writing-secure-applications-with-html':'introduction','entity-Acirc':'named-character-references','dom-appcache-update':'offline','entity-aleph':'named-character-references','submit-data-post':'form-submission','attr-tr-align':'obsolete','tag-open-state':'tokenization','dom-frame-contentwindow':'obsolete','refsRFC3023':'references','entity-rlhar':'named-character-references','dom-mediacontroller-defaultplaybackrate':'media-elements','entity-orslope':'named-character-references','dom-option-value':'the-option-element','entity-longleftrightarrow':'named-character-references','value-track-kind-sign':'media-elements','about:legacy-compat':'urls','typemismatcherror':'infrastructure','dom-texttrack-kind-captions':'media-elements','dom-htmloptionscollection-add':'common-dom-interfaces','datatransferitem':'dnd','entity-topbot':'named-character-references','entity-nbsp':'named-character-references','dom-frame-marginheight':'obsolete','element-efinitions':'element-definitions','formatting':'parsing','text-rendered-in-native-user-interfaces':'rendering','selector-in-range':'links','entity-VDash':'named-character-references','entity-trianglerighteq':'named-character-references','attr-hyperlink-media':'links','entity-permil':'named-character-references','link-type-prev':'links','table-aria-strong':'wai-aria','attr-fae-form':'association-of-controls-and-forms','entity-lrhard':'named-character-references','dynamic-changes-to-base-urls':'urls','dom-area-media':'the-area-element','concept-document-content-type':'infrastructure','entity-AElig':'named-character-references','ix-handler-oncanplay':'section-index','absolute-url':'urls','concept-datetime-digit':'common-microsyntaxes','entity-biguplus':'named-character-references','common-parser-idioms':'common-microsyntaxes','concept-fv-valid':'constraints','interactive-media':'rendering','dom-iframe-marginheight':'obsolete','entity-rx':'named-character-references','entity-xvee':'named-character-references','ocuments':'dom','the-body-element':'the-body-element','heading-content':'content-models','dom-TrackList-getKind-categories':'media-elements','entity-SucceedsEqual':'named-character-references','attr-html-manifest':'the-html-element','htmliframeelement':'the-iframe-element','mutationobserver':'infrastructure','the-output-element':'the-output-element','ix-handler-onemptied':'section-index','entity-NotRightTriangle':'named-character-references','entity-Jscr':'named-character-references','quotes':'rendering','scriptTagXSLT':'the-script-element','password-state-type-password':'states-of-the-type-attribute','entity-thinsp':'named-character-references','attr-iframe-sandbox-allow-forms':'the-iframe-element','the-title-attribute-0':'rendering','blocked-media-controller':'media-elements','entity-angst':'named-character-references','disk-space':'offline','media-resources-with-multiple-media-tracks':'media-elements','entity-frac18':'named-character-references','concept-script':'webappapis','drag-data-store-mode':'dnd',entity-frac12':'named-character-references','read-plugin':'history','entity-frac14':'named-character-references','entity-frac15':'named-character-references','entity-frac16':'named-character-references','ix-handler-onshow':'section-index','audiotracklist-and-videotracklist-objects':'media-elements','entity-Ucy':'named-character-references','entity-intlarhk':'named-character-references','entity-Hat':'named-character-references','entity-wscr':'named-character-references','attr-background':'obsolete','refsRFC4281':'references','security':'dom','inter-element-whitespace':'content-models','entity-NotLess':'named-character-references','entity-nparallel':'named-character-references','category-submit':'forms','simple-cross-origin-request':'infrastructure','comments':'syntax','dom-contextmenu':'the-menu-element','attr-command-type-state-checkbox':'the-command-element','nested-browsing-context':'browsers','entity-cularrp':'named-character-references','entity-esdot':'named-character-references','same-origin':'origin-0,'entity-otilde-legacy':'named-character-references','dom-document-head':'dom','entity-CircleMinus':'named-character-references','ix-handler-onratechange':'section-index','entity-approx':'named-character-references','months':'common-microsyntaxes','dom-document-lastmodified':'dom','dom-source-src':'the-source-element','attr-script-type':'the-script-element','refsMIMESNIFF':'references','entity-preceq':'named-character-references','entity-simne':'named-character-references','dom-fs-formmethod':'attributes-common-to-form-controls','rendering':'rendering','handler-onwaiting':'webappapis','dom-track-src':'the-track-element','the-drag-data-item-type-string':'dnd','dom-history-length':'history','entity-varphi':'named-character-references','entity-Or':'named-character-references','entity-ucy':'named-character-references','entity-Dagger':'named-character-references','serializing-html-fragments':'the-end','concept-video-intrinsic-height':'the-video-element','entity-nmid':'named-character-references','dom-col-ch':'obolete','command-facet-hiddenstate':'commands','markup-declaration-open-state':'tokenization','dom-classlist':'global-attributes','dom-xmldocument-load':'dom','entity-nsube':'named-character-references','ix-handler-onseeking':'section-index','refsWEBSTORAGE':'references','attr-media-preload-metadata':'media-elements','entity-hamilt':'named-character-references','assigning-keyboard-shortcuts':'editing','getcontext-return':'the-canvas-element','attr-script-event':'obsolete','dom-document-getelementsbyname':'dom','entity-ClockwiseContourIntegral':'named-character-references','entity-zcy':'named-character-references','dom-mediaerror-media_err_aborted':'media-elements','meta-generator':'the-meta-element','handler-onstalled':'webappapis','time-zones':'common-microsyntaxes','entity-harr':'named-character-references','entity-nvltrie':'named-character-references','entity-eqslantless':'named-character-references','event-mediacontroller-pause':'media-elements','dom-document-forms':'dom','entity-utrif':'named-character-eferences','effective-playback-rate':'media-elements','attr-meta-content':'the-meta-element','entity-Fouriertrf':'named-character-references','entity-barvee':'named-character-references','appcache-history-2':'history','entity-lceil':'named-character-references','attr-body-margintop':'obsolete','entity-nsimeq':'named-character-references','compiled-pattern-regular-expression':'common-input-element-attributes','ix-handler-window-onresize':'section-index','entity-szlig-legacy':'named-character-references','xml-parser':'the-xhtml-syntax','entity-Efr':'named-character-references','attr-mod-cite':'attributes-common-to-ins-and-del-elements','doctype-public-identifier-double-quoted-state':'tokenization','nestedParsing':'parsing','entity-rsh':'named-character-references','entity-drbkarow':'named-character-references','dom-dataset':'global-attributes','documentfragment':'infrastructure','entity-LongLeftArrow':'named-character-references','timeranges':'media-elements','remove-a-token-from-a-string':'common-microsyntaxs','attr-command-command':'the-command-element','a-form-control-s-value':'attributes-common-to-form-controls','dom-media-have_current_data':'media-elements','event-readystatechange':'dom','entity-Ouml-legacy':'named-character-references','entity-bNot':'named-character-references','the-pre-element':'the-pre-element','entity-twoheadleftarrow':'named-character-references','attr-img-crossorigin':'the-img-element','dom-fs-enctype':'attributes-common-to-form-controls','entity-Popf':'named-character-references','dom-window-nameditem':'browsers','attr-textarea-rows-value':'the-textarea-element','parse-a-time-zone-offset-component':'common-microsyntaxes','the-rt-element':'the-rt-element','securityerror':'infrastructure','entity-rtriltri':'named-character-references','entity-inodot':'named-character-references','ltr-specific':'rendering','attr-command-type-keyword-radio':'the-command-element','entity-Egrave':'named-character-references','attr-track-kind-subtitles':'the-track-element','browser-interface-elements':'brosers','the-html-element-0':'dom','entity-csub':'named-character-references','dom-tbody-align':'obsolete','dom-input-type':'the-input-element','dom-li-value':'the-li-element','entity-csup':'named-character-references','entity-amp':'named-character-references','entity-racute':'named-character-references','charset512':'the-meta-element','dom-fieldset-type':'the-fieldset-element','radio-button-state-type-radio':'states-of-the-type-attribute','attr-input-type-range-keyword':'the-input-element','dom-document-querycommandvalue':'editing-apis','live':'infrastructure','entity-vprop':'named-character-references','scriptTagParserResumes':'tree-construction','entity-shchcy':'named-character-references','dom-applet-object':'obsolete','entity-Scaron':'named-character-references','entity-Ropf':'named-character-references','closing-elements-that-have-implied-end-tags':'tree-construction','entity-LessGreater':'named-character-references','url-state-type-url':'states-of-the-type-attribute','entity-igrave':'named-character-reerences','entity-ecaron':'named-character-references','entity-Delta':'named-character-references','handler-onselect':'webappapis','htmlformcontrolscollection-0':'common-dom-interfaces','entity-ecolon':'named-character-references','entity-period':'named-character-references','img-inc':'the-img-element','htmlbuttonelement':'the-button-element','dom-frame-marginwidth':'obsolete','entity-UpperLeftArrow':'named-character-references','entity-KJcy':'named-character-references','context-menus':'the-menu-element','parsing-main-inheadnoscript':'tree-construction','entity-RightArrow':'named-character-references','dom-texttrack-kind':'media-elements','history-traversal':'history','entity-tilde':'named-character-references','entity-LessLess':'named-character-references','refsCOOKIES':'references','entity-lltri':'named-character-references','attr-tdth-rowspan':'attributes-common-to-td-and-th-elements','entity-andslope':'named-character-references','the-form-element':'the-form-element','effective-script-origin':'origin-0''dom-basefont-face':'obsolete','dom-tdth-rowspan':'attributes-common-to-td-and-th-elements','xmldocument':'dom','the-keygen-element':'the-keygen-element','entity-kfr':'named-character-references','parse-a-local-date-and-time-string':'common-microsyntaxes','entity-ndash':'named-character-references','entity-RightVector':'named-character-references','entity-Vdash':'named-character-references','entity-Iukcy':'named-character-references','entity-hstrok':'named-character-references','entity-NotLessSlantEqual':'named-character-references','forms':'forms','window':'browsers','attr-object-data':'the-object-element','entity-subrarr':'named-character-references','entity-pr':'named-character-references','entity-pm':'named-character-references','form-controls':'rendering','entity-pi':'named-character-references','refsWCAG':'references','refsUTF8DET':'references','attr-media-muted':'media-elements','entity-Tab':'named-character-references','dom-font-color':'obsolete','entity-nvDash':'named-character-references','entity-au':'named-character-references','entity-dashv':'named-character-references','attr-track-default':'the-track-element','a-utf-16-encoding':'infrastructure','entity-nbumpe':'named-character-references','entity-empty':'named-character-references','entity-orv':'named-character-references','ready-to-be-parser-executed':'the-script-element','date-and-time-state-type-datetime':'states-of-the-type-attribute','entity-ord':'named-character-references','attr-body-marginwidth':'obsolete','entity-Gcy':'named-character-references','attr-iframe-hspace':'obsolete','safe-passing-of-structured-data':'common-dom-interfaces','entity-demptyv':'named-character-references','dom-applet-vspace':'obsolete','attr-dl-compact':'obsolete','target-element':'history','entity-ordm-legacy':'named-character-references','dependencies':'infrastructure','event-online':'offline','heading-content-0':'content-models','entity-ubreve':'named-character-references','entity-prsim':'named-character-references','dom-textarea-dirname':'the-textarea-elemen','reflect':'common-dom-interfaces','dom-progress-max':'the-progress-element','entity-cirfnint':'named-character-references','dom-audiotrack-kind':'media-elements','entity-UpDownArrow':'named-character-references','the-style-attribute':'global-attributes','entity-Dcy':'named-character-references','blink':'obsolete','entity-leftharpoondown':'named-character-references','domimplementation':'infrastructure','entity-udarr':'named-character-references','input-type-change':'the-input-element','script-data-escaped-less-than-sign-state':'tokenization','dropzone-processing-steps':'dnd','dom-tdth-height':'obsolete','dom-window-statusbar':'browsers','concept-table-advance':'attributes-common-to-td-and-th-elements','event-mediacontroller-emptied':'media-elements','event-handler-idl-attributes':'webappapis','limited-to-only-known-values':'common-dom-interfaces','entity-xlarr':'named-character-references','entity-boxdr':'named-character-references','entity-boxdl':'named-character-references','syntax-charref':'syntax','enity-smeparsl':'named-character-references','semantics':'semantics','img-all':'the-img-element','entity-lhblk':'named-character-references','document.title':'dom','entity-boxdR':'named-character-references','entity-ldsh':'named-character-references','syntax-cdata':'syntax','using-the-a-element-to-define-a-command':'commands','refsRFC2237':'references','optional-tags':'syntax','entity-xutri':'named-character-references','entity-Wfr':'named-character-references','entity-xmap':'named-character-references','entity-ExponentialE':'named-character-references','entity-Mu':'named-character-references','concept-video-intrinsic-width':'the-video-element','entity-REG-legacy':'named-character-references','converted-to-ascii-uppercase':'infrastructure','dom-htmlallcollection-item-string':'common-dom-interfaces','the-script-block-s-character-encoding':'the-script-element','entity-andv':'named-character-references','entity-rtimes':'named-character-references','entity-uml':'named-character-references','entity-yuml':'named-chracter-references','attr-fe-disabled':'attributes-common-to-form-controls','entity-ufisht':'named-character-references','the-bdo-element':'the-bdo-element','entity-succ':'named-character-references','algorithm-for-ending-a-row-group':'attributes-common-to-td-and-th-elements','bgsound':'obsolete','entity-ddarr':'named-character-references','dom-command-type':'the-command-element','handler-window-onblur':'webappapis','dom-videotrack-language':'media-elements','dom-mediaerror-media_err_src_not_supported':'media-elements','htmlheadingelement':'the-h1-h2-h3-h4-h5-and-h6-elements','entity-lsh':'named-character-references','dom-appcache-status':'offline','entity-gtrless':'named-character-references','valid-normalized-forced-utc-global-date-and-time-string':'common-microsyntaxes','attr-input-type':'the-input-element','parsing-main-intr':'tree-construction','refsRFC3986':'references','refsRFC3987':'references','htmlspanelement':'the-span-element','entity-varr':'named-character-references','entity-half':'named-characer-references','parsing-main-intd':'tree-construction','dom-datatransferitemlist-add':'dnd','entity-xcirc':'named-character-references','attr-map-name':'the-map-element','concept-transferable-neutered':'common-dom-interfaces','attributes-common-to-td-and-th-elements':'attributes-common-to-td-and-th-elements','entity-imagline':'named-character-references','entity-lvnE':'named-character-references','text-track':'media-elements','dom-datalist-options':'the-datalist-element','row-header':'attributes-common-to-td-and-th-elements','rules-for-parsing-non-negative-integers':'common-microsyntaxes','entity-ShortLeftArrow':'named-character-references','form-submission':'form-submission','selector-valid':'links','entity-Iuml-legacy':'named-character-references','content-type-sniffing:-image':'urls','replacement-enabled':'history','joint-session-history':'history','entity-dcy':'named-character-references','entity-capdot':'named-character-references','attr-menu-compact':'obsolete','entity-Udblac':'named-character-referenes','boolean-attribute':'common-microsyntaxes','interfaces-for-url-manipulation':'urls','entity-bsime':'named-character-references','ix-handler-onblur':'section-index','aborting-a-document-load':'history','the-script-settings-determined-from-the-node':'webappapis','the-command':'the-command-element','entity-NotRightTriangleEqual':'named-character-references','entity-downharpoonright':'named-character-references','entity-ecy':'named-character-references','external':'system-state-and-capabilities','entity-ecirc':'named-character-references','texttracklist':'media-elements','entity-rightleftarrows':'named-character-references','script-s-document':'webappapis','entity-tdot':'named-character-references','entity-xodot':'named-character-references','entity-lneq':'named-character-references','ix-handler-window-onload':'section-index','entity-leftarrowtail':'named-character-references','insertion-point':'parsing','the-application-cache-selection-algorithm':'offline','concept-input-value-string-date':'the-input-elemet','entity-NotLessEqual':'named-character-references','media-controller-volume-multiplier':'media-elements','entity-Racute':'named-character-references','document':'dom','entity-nwnear':'named-character-references','links-created-by-a-and-area-elements':'links','dom-canvas-getcontext':'the-canvas-element','rules-for-parsing-a-hash-name-reference':'common-microsyntaxes','handler-mediacontroller-oncanplaythrough':'media-elements','data-mining':'infrastructure','entity-zeetrf':'named-character-references','run-post-click-activation-steps':'content-models','the-rp-element':'the-rp-element','handler-window-onhashchange':'webappapis','dom-mediacontroller-muted':'media-elements','attr-command-checked':'the-command-element','attr-track-kind-keyword-subtitles':'the-track-element','entity-looparrowright':'named-character-references','the-li-element':'the-li-element','dom-a-coords':'obsolete','attr-hyperlink-hreflang':'links','dom-legend-align':'obsolete','parsing-main-inselect':'tree-construction','entity-Escr':'name-character-references','past-names-map':'the-form-element','entity-gsime':'named-character-references','entity-mid':'named-character-references','entity-gsiml':'named-character-references','the-input-element-as-domain-specific-widgets':'rendering','selector-ltr':'links','event-media-loadstart':'media-elements','entity-luruhar':'named-character-references','htmltablecolelement':'the-colgroup-element','dom-form-submit':'the-form-element','entity-Ffr':'named-character-references','concept-date':'common-microsyntaxes','restrictions-on-content-models-and-on-attribute-values':'introduction','networking-task-source':'webappapis','dom-history-pushstate':'history','entity-Euml-legacy':'named-character-references','the-dl-element':'the-dl-element','exposed':'dom','lists-of-integers':'common-microsyntaxes','duration-time-component':'common-microsyntaxes','entity-hkswarow':'named-character-references','text-track-cue-start-time':'media-elements','entity-gnapprox':'named-character-references','entity-subsim':'named-charcter-references','entity-rharu':'named-character-references','entity-malt':'named-character-references','marquee-loop-count':'obsolete','entity-GreaterTilde':'named-character-references','entity-rhard':'named-character-references','entity-male':'named-character-references','entity-supne':'named-character-references','implicit-submission':'form-submission','attr-textarea-required':'the-textarea-element','dom-media-src':'media-elements','throw':'infrastructure','spin-the-event-loop':'webappapis','browsing-context-nested-through':'browsers','feed-the-parser':'the-xhtml-syntax','stack-of-open-elements':'parsing','entity-ulcrop':'named-character-references','entity-InvisibleComma':'named-character-references','entity-LeftRightArrow':'named-character-references','dom-input-stepup':'common-input-element-apis','entity-Proportion':'named-character-references','dom-table-caption':'the-table-element','using-the-button-element-to-define-a-command':'commands','attr-optgroup-disabled':'the-optgroup-element','entity-proflne':'named-character-references','event-media-suspend':'media-elements','attr-command-type-state-command':'the-command-element','event-media-stalled':'media-elements','handler-ondrag':'webappapis','attr-input-autocomplete-on-state':'common-input-element-attributes','supported-property-indices':'infrastructure','entity-sdot':'named-character-references','entity-ffr':'named-character-references','dom-video-videowidth':'the-video-element','attr-table-rules':'obsolete','datetime-value':'the-time-element','attr-img-align':'obsolete','the-legend-element':'the-legend-element','entity-plusmn-legacy':'named-character-references','dom-videotracklist-selectedindex':'media-elements','entity-nsupset':'named-character-references','current-input-character':'parsing','dom-appcache-swapcache':'offline','dom-object-archive':'obsolete','forming-a-table':'attributes-common-to-td-and-th-elements','entity-NotNestedLessLess':'named-character-references','text-track-cue-size':'media-elements','dom-meter-value':'the-meter-element',prompt-to-unload-a-document':'history','dom-document-alinkcolor':'obsolete','dom-blur':'editing','obsolete-but-conforming-features':'obsolete','refsXMLBASE':'references','entity-Intersection':'named-character-references','entity-aelig-legacy':'named-character-references','dom-track-default':'the-track-element','fire-waiting-when-waiting':'media-elements','entity-varpropto':'named-character-references','suffering-from-an-underflow':'constraints','entity-nVdash':'named-character-references','dom-datatransfer-effectallowed':'dnd','selector-default':'links','keywords-and-enumerated-attributes':'common-microsyntaxes','entity-LeftTriangleEqual':'named-character-references','attr-form-autocomplete-on-state':'the-form-element','dom-tdth-axis':'obsolete','entity-Zfr':'named-character-references','non-fatal-media-error':'media-elements','entity-doteqdot':'named-character-references','table-encoding-overrides':'parsing','the-h1-element':'the-h1-h2-h3-h4-h5-and-h6-elements','dom-validitystate-valuemissing':'constraints,'entity-copy':'named-character-references','pre-click-activation-steps':'content-models','entity-Sc':'named-character-references','handler-window-onafterprint':'webappapis','entity-profalar':'named-character-references','sandboxed-navigation-browsing-context-flag':'the-iframe-element','ix-handler-onseeked':'section-index','dom-fieldset-disabled':'the-fieldset-element','entity-oslash':'named-character-references','dom-cva-validity':'constraints','entity-rdca':'named-character-references','ascii-compatible-character-encoding':'infrastructure','entity-Yuml':'named-character-references','entity-barwed':'named-character-references','entity-bigwedge':'named-character-references','entity-EqualTilde':'named-character-references','dom-textarea-wrap':'the-textarea-element','table-script-bom':'the-script-element','attr-track-kind-captions':'the-track-element','dom-datatransfer-getdata':'dnd','attr-input-placeholder':'common-input-element-attributes','dom-based-xslt-1.0-processors':'interactions-with-xpath-and-xslt','oncept-param-parameter':'the-param-element','entity-integers':'named-character-references','entity-agrave-legacy':'named-character-references','entity-dblac':'named-character-references','entity-xnis':'named-character-references','entity-ecir':'named-character-references','table-uda-examples':'urls','entity-cuesc':'named-character-references','entity-ncap':'named-character-references','entity-NotLessTilde':'named-character-references','comment-state':'tokenization','entity-circledS':'named-character-references','entity-circledR':'named-character-references','entity-qprime':'named-character-references','entity-triplus':'named-character-references','entity-spar':'named-character-references','attr-tdth-valign':'obsolete','entity-Omega':'named-character-references','no-quirks-mode':'infrastructure','entity-nsubE':'named-character-references','suffering-from-a-custom-error':'constraints','dom-option-tvd':'the-option-element','event-media-timeupdate':'media-elements','entity-wopf':'named-character-references','th-h1-h2-h3-h4-h5-and-h6-elements':'the-h1-h2-h3-h4-h5-and-h6-elements','introduction-9':'rendering','introduction-8':'rendering','introduction-5':'webappapis','sections-and-headings':'rendering','introduction-7':'dnd','introduction-6':'editing','introduction-1':'forms','introduction-0':'media-elements','introduction-3':'links','introduction-2':'form-submission','entity-Dcaron':'named-character-references','meta-charset-during-parse':'tree-construction','entity-copy-legacy':'named-character-references','void-elements':'syntax','refsABNF':'references','drag-data-store-bitmap':'dnd','figcaption-as-alt-condition':'the-img-element','entity-grave':'named-character-references','history':'history','entity-sopf':'named-character-references','only-contemporary-times':'states-of-the-type-attribute','comment-start-dash-state':'tokenization','width-of-the-select-s-labels':'rendering','hyperlink-annotation':'links','menus':'the-menu-element','entity-Int':'named-character-references','misnested-tags:-b-p-b-p':'the-end','stp-parsing':'the-end','entity-tprime':'named-character-references','sandboxed-seamless-iframes-flag':'the-iframe-element','allowed-to-navigate':'browsers','entity-ltri':'named-character-references','entity-thicksim':'named-character-references','entity-urtri':'named-character-references','the-input-element-as-a-range-control':'rendering','htmlaudioelement':'the-audio-element','entity-upsilon':'named-character-references','entity-eacute-legacy':'named-character-references','entity-qopf':'named-character-references','attr-style-type':'the-style-element','entity-plusdo':'named-character-references','handler-tracklist-onchange':'media-elements','dom-media-have_future_data':'media-elements','entity-Ccedil-legacy':'named-character-references','entity-plusdu':'named-character-references','seek-the-media-controller':'media-elements','text-type-text-state-and-search-state-type-search':'states-of-the-type-attribute','associatedSection':'headings-and-sections','entity-iuml-legacy':'named-character-references','entity-EptySmallSquare':'named-character-references','refsWIN1254':'references','refsWIN1252':'references','refsBOCU1':'references','entity-topcir':'named-character-references','entity-Ugrave-legacy':'named-character-references','conformance-requirements':'infrastructure','entity-dotplus':'named-character-references','dom-form-acceptcharset':'the-form-element','dom-select-size':'the-select-element','concept-option-label':'the-option-element','entity-larrbfs':'named-character-references','auxiliary-browsing-contexts':'browsers','entity-nlarr':'named-character-references','entity-And':'named-character-references','concept-fe-values':'attributes-common-to-form-controls','entity-pfr':'named-character-references','concept-select-pick':'the-select-element','entity-equest':'named-character-references','entity-rsquor':'named-character-references','attr-param-name':'the-param-element','event':'infrastructure','handler-texttrackcue-onexit':'media-elements','handler-onratechange':'webappapis','entity-natural':'named-characterreferences','initial-code-entry-point':'webappapis','number-state-type-number':'states-of-the-type-attribute','task-queue':'webappapis','attr-img-src':'the-img-element','input-stream':'parsing','dom-fs-action':'attributes-common-to-form-controls','fire-a-dnd-event':'dnd','windowtimers':'timers','expiring-application-caches':'offline','concept-handler-error':'webappapis','http-aes-scheme':'iana','entity-uring':'named-character-references','handler-onmouseover':'webappapis','entity-Ubrcy':'named-character-references','insert-a-foreign-element':'tree-construction','entity-npr':'named-character-references','ix-handler-window-onoffline':'section-index','dom-colgroup-span':'the-colgroup-element','after-doctype-public-keyword-state':'tokenization','entity-mopf':'named-character-references','has-an-element-in-list-item-scope':'parsing','menus-intro':'the-menu-element','limiting-user-input-length':'attributes-common-to-form-controls','concept-event-listener':'infrastructure','entity-TScy':'named-character-references,'entity-NotSquareSuperset':'named-character-references','entity-Lcaron':'named-character-references','pragma-directives':'the-meta-element','entity-otilde':'named-character-references','entity-DotEqual':'named-character-references','entity-dsol':'named-character-references','attributes-for-embedded-content-and-images':'rendering','maps-to-the-pixel-length-property':'rendering','media-controllers':'media-elements','unload-a-document':'history','entity-Rscr':'named-character-references','entity-ApplyFunction':'named-character-references','entity-cdot':'named-character-references','phrasing-content-1':'rendering','phrasing-content-0':'content-models','linkstyle':'infrastructure','htmlallcollection':'common-dom-interfaces','entity-LeftTeeVector':'named-character-references','dom-window-focus':'editing','entity-napos':'named-character-references','the-tr-element':'the-tr-element','entity-roarr':'named-character-references','entity-nless':'named-character-references','handler-tracklist-onaddtrack':'media-element','clear-the-stack-back-to-a-table-row-context':'tree-construction','htmlpreelement':'the-pre-element','entity-oopf':'named-character-references','entity-scnsim':'named-character-references','the-draggable-attribute':'dnd','attr-body-text':'obsolete','attr-dir-auto-state':'global-attributes','entity-HilbertSpace':'named-character-references','attr-area-shape':'the-area-element','entity-nrarr':'named-character-references','concept-output-mode':'the-output-element','refsIANACHARSET':'references','entity-napE':'named-character-references','entity-AMP':'named-character-references','htmlvideoelement':'the-video-element','entity-nlArr':'named-character-references','entity-Oslash':'named-character-references','entity-Atilde-legacy':'named-character-references','entity-Wscr':'named-character-references','the-xhtml-syntax':'the-xhtml-syntax','concept-n-script':'webappapis','entity-mho':'named-character-references','appropriate-form-encoding-algorithm':'form-submission','entity-elinters':'named-character-references',dom-meter-low':'the-meter-element','windowbase64':'webappapis','dom-frame-noresize':'obsolete','parse-a-month-component':'common-microsyntaxes','dom-select-nameditem':'the-select-element','entity-delta':'named-character-references','dom-texttracklist-length':'media-elements','entity-iopf':'named-character-references','entity-TildeEqual':'named-character-references','attr-col-valign':'obsolete','handler-texttrackcue-onenter':'media-elements','entity-LeftTeeArrow':'named-character-references','concept-fe-checked':'attributes-common-to-form-controls','entity-vee':'named-character-references','attr-ol-start':'the-ol-element','entity-preccurlyeq':'named-character-references','entity-angrtvb':'named-character-references','dom-font-size':'obsolete','dom-input-placeholder':'the-input-element','run-synthetic-click-activation-steps':'content-models','dom-body-alink':'obsolete','entity-ruluhar':'named-character-references','entity-SucceedsSlantEqual':'named-character-references','appropriate-end-tag-token':'tokenizatin','entity-nrArr':'named-character-references','dom-embed-src':'the-embed-element','attr-menu-label':'the-menu-element','htmltablerowelement':'the-tr-element','value-sanitization-algorithm':'the-input-element','htmlsourceelement':'the-source-element','entity-ominus':'named-character-references','entity-ccups':'named-character-references','collect-a-sequence-of-characters':'common-microsyntaxes','refsDOMPARSING':'references','the-accesskey-attribute':'editing','value-track-kind-alternate':'media-elements','text-level-semantics':'text-level-semantics','entity-Egrave-legacy':'named-character-references','xmlns-namespace':'namespaces','entity-Colone':'named-character-references','data-state':'tokenization','refsSELECTORS':'references','entity-LongLeftRightArrow':'named-character-references','entity-zigrarr':'named-character-references','concept-appcache-completeness':'offline','dom-script-charset':'the-script-element','attr-input-type-datetime-keyword':'the-input-element','dom-htmlallcollection-tags':'common-do-interfaces','attr-embed-name':'obsolete','dom-alert':'user-prompts','entity-nsqsube':'named-character-references','default-playback-start-position':'media-elements','the-table-element':'the-table-element','entity-Star':'named-character-references','dimRendering':'rendering','entity-lbrace':'named-character-references','attr-media-preload-none':'media-elements','entity-lbrack':'named-character-references','concept-meter-optimum':'the-meter-element','entity-Umacr':'named-character-references','entity-olarr':'named-character-references','entity-rarrap':'named-character-references','entity-Longleftrightarrow':'named-character-references','entity-prod':'named-character-references','entity-prop':'named-character-references','entity-Assign':'named-character-references','entity-NotLessGreater':'named-character-references','htmlframeelement':'obsolete','entity-subdot':'named-character-references','entity-GreaterFullEqual':'named-character-references','entity-trpezium':'named-character-references','entity-gt-legacy''named-character-references','drag-data-store-allowed-effects-state':'dnd','dom-track-readystate':'the-track-element','entity-complexes':'named-character-references','attr-track-kind-metadata':'the-track-element','entity-boxbox':'named-character-references','attr-ol-type-keyword-lower-alpha':'the-ol-element','syntax-tags':'syntax','entity-oast':'named-character-references','entity-xoplus':'named-character-references','entity-Jfr':'named-character-references','entity-succeq':'named-character-references','the-id-attribute':'global-attributes','media-controller-position':'media-elements','introduction-4':'offline','entity-lEg':'named-character-references','entity-triminus':'named-character-references','entity-frac14-legacy':'named-character-references','entity-perp':'named-character-references','script-data-double-escaped-state':'tokenization','ix-handler-window-onerror':'section-index','input-author-notes':'forms','dom-a-protocol':'the-a-element','terminology':'infrastructure','dom-table-tfoot':'the-table-eleent','refsRFC1468':'references','entity-acy':'named-character-references','entity-acd':'named-character-references','form-control-dirname-attribute':'attributes-common-to-form-controls','entity-suphsub':'named-character-references','dom-fs-formaction':'attributes-common-to-form-controls','entity-frac12-legacy':'named-character-references','dom-navigator-registercontenthandler':'system-state-and-capabilities','script-processing-src-sync':'the-script-element','ix-event-handlers':'section-index','entity-rotimes':'named-character-references','dom-input-valueasnumber':'common-input-element-apis','dom-legend-form':'the-legend-element','overlong-form':'infrastructure','entity-acE':'named-character-references','entity-Hstrok':'named-character-references','entity-icirc':'named-character-references','dom-col-align':'obsolete','handler-appcache-onnoupdate':'offline','handler-mediacontroller-onpause':'media-elements','attr-iframe-src':'the-iframe-element','entity-RightDoubleBracket':'named-character-references','entitybeth':'named-character-references','command-facet-accesskey':'commands','entity-esim':'named-character-references','security-and-privacy':'system-state-and-capabilities','entity-beta':'named-character-references','attr-fs-method-get-keyword':'attributes-common-to-form-controls','entity-plankv':'named-character-references','entity-hookrightarrow':'named-character-references','entity-jfr':'named-character-references','location-of-the-media-resource':'media-elements','dom-link-charset':'obsolete','parser-pause-flag':'parsing','container-frame-element':'rendering','relevant-namespace-object':'infrastructure','dom-option':'the-option-element','entity-zeta':'named-character-references','the-h6-element':'the-h1-h2-h3-h4-h5-and-h6-elements','input-impl-notes':'states-of-the-type-attribute','document-metadata':'the-html-element','refsCOMPUTABLE':'references','dom-audiotracklist-gettrackbyid':'media-elements','entity-rppolint':'named-character-references','document.writeln':'dynamic-markup-insertion','entity-vBarv':'amed-character-references','ix-handler-onsubmit':'section-index','entity-uwangle':'named-character-references','entity-GreaterSlantEqual':'named-character-references','dom-iframe-scrolling':'obsolete','dom-frame-name':'obsolete','attr-command-type':'the-command-element','event-appcache-noupdate':'offline','application-cache-group':'offline','attr-marquee-truespeed':'obsolete','sandboxSubmitBlocked':'form-submission','non-negative-integers':'common-microsyntaxes','text-track-mode':'media-elements','syntax-attribute-name':'syntax','dom-validitystate-patternmismatch':'constraints','svg':'svg-0','drag-data-store-hot-spot-coordinate':'dnd','entity-fjlig':'named-character-references','set-the-event-handler-content-attribute-to-an-error':'webappapis','attr-area-shape-keyword-circle':'the-area-element','entity-NotGreater':'named-character-references','cors-settings-attributes':'urls','entity-napid':'named-character-references','the-meter-element':'the-meter-element','concept-week':'common-microsyntaxes','dom-fe-disbled':'attributes-common-to-form-controls','entity-lang':'named-character-references','valid-url':'urls','dom-texttrackcue-track':'media-elements','entity-NotGreaterLess':'named-character-references','entity-NegativeThickSpace':'named-character-references','entity-boxminus':'named-character-references','before-attribute-value-state':'tokenization','event-appcache-updateready':'offline','the-sub-element':'the-sub-and-sup-elements','entity-cirscir':'named-character-references','dom-textarea-required':'the-textarea-element','unloading-documents':'history','entity-Itilde':'named-character-references','attr-embed-src':'the-embed-element','script-execution-environment':'webappapis','entity-Vfr':'named-character-references','entity-aacute-legacy':'named-character-references','event-definition':'history','stall-timeout':'media-elements','attr-ol-reversed':'the-ol-element','valid-mime-type':'infrastructure','entity-wedgeq':'named-character-references','entity-sqcups':'named-character-references','script-data-escape-tart-dash-state':'tokenization','dom-frame-src':'obsolete','dom-node-childnodes':'infrastructure','entity-DoubleDot':'named-character-references','domsettabletokenlist':'infrastructure','entity-Yacute':'named-character-references','dom-input-value-value':'common-input-element-apis','fatal-decode-error':'media-elements','the-constraint-validation-api':'constraints','uint8clampedarray':'infrastructure','table-http-equiv':'the-meta-element','the-hr-element':'the-hr-element','dom-self':'browsers','sandboxed-automatic-features-browsing-context-flag':'the-iframe-element','entity-NotEqual':'named-character-references','dom-history-back':'history','entity-eplus':'named-character-references','handler-onloadedmetadata':'webappapis','entity-hoarr':'named-character-references','entity-there4':'named-character-references','htmlmeterelement':'the-meter-element','noframes':'obsolete','dom-marquee-bgcolor':'obsolete','entity-SquareSubsetEqual':'named-character-references','entity-laquo':'named-character-references','xml-copatible':'infrastructure','entity-natur':'named-character-references','refsX690':'references','extracting-encodings-from-meta-elements':'urls','entity-Cap':'named-character-references','delay-the-load-event':'the-end','dom-area-shape':'the-area-element','attr-img-vspace':'obsolete','entity-LeftArrowBar':'named-character-references','entity-nRightarrow':'named-character-references','number-of-days-in-month-month-of-year-year':'common-microsyntaxes','file-upload-state-type-file':'states-of-the-type-attribute','entity-UpArrowDownArrow':'named-character-references','default-button':'form-submission','concept-select-toggle':'the-select-element','links':'links','refsDOMEVENTS':'references','refsARIA':'references','dom-texttrackcue-line':'media-elements','a-style-sheet-that-is-blocking-scripts':'styling','attr-meta-http-equiv':'the-meta-element','htmldatalistelement':'the-datalist-element','dom-input-stepdown':'common-input-element-apis','entity-VerticalBar':'named-character-references','dom-appcache-obsolete':'ofline','refsISO8601':'references','entity-ouml':'named-character-references','translate-enabled':'global-attributes','concept-appcache-init':'offline','event-appcache-obsolete':'offline','focus-management':'editing','attr-img-alt':'the-img-element','cors-settings-attribute':'urls','dom-command-ro-commandlabel':'commands','entity-boxhD':'named-character-references','dom-stylesheet-disabled':'infrastructure','dom-object-declare':'obsolete','entity-ntrianglerighteq':'named-character-references','entity-Nacute':'named-character-references','entity-uHar':'named-character-references','dom-location-hostname':'history','pending-parsing-blocking-script':'the-script-element','send-a-signal':'offline','entity-DownRightVectorBar':'named-character-references','entity-OpenCurlyQuote':'named-character-references','coercing-an-html-dom-into-an-infoset':'the-end','htmlinputelement':'the-input-element','dom-output-htmlfor':'the-output-element','handler-marquee-onstart':'obsolete','entity-dstrok':'named-character-references','edia-controller-mute-override':'media-elements','script-processing-inline':'the-script-element','entity-boxVR':'named-character-references','entity-deg':'named-character-references','abort-a-document':'history','attr-select-required':'the-select-element','xhtml-document':'infrastructure','dom-document-images':'dom','activation-behavior':'content-models','entity-boxVL':'named-character-references','dom-source-type':'the-source-element','entity-boxVH':'named-character-references','entity-kgreen':'named-character-references','entity-boxVr':'named-character-references','text-0':'syntax','concept-appcache-manifest':'offline','dom-tdth-choff':'obsolete','entity-boxVl':'named-character-references','entity-boxVh':'named-character-references','entity-LeftFloor':'named-character-references','entity-asymp':'named-character-references','the-input-element-as-a-color-well':'rendering','htmlfontelement':'obsolete','dom-embed-name':'obsolete','conformance-classes':'infrastructure','special':'parsing','dom-media-network_no_ource':'media-elements','entity-NewLine':'named-character-references','most-recently-reported-playback-state':'media-elements','concept-meter-low':'the-meter-element','entity-smile':'named-character-references','handler-onerror':'webappapis','entity-scy':'named-character-references','secondary-browsing-context':'browsers','character-reference-in-data-state':'tokenization','entity-eqcolon':'named-character-references','entity-sce':'named-character-references','attr-a-methods':'obsolete','entity-hksearow':'named-character-references','entity-lt-legacy':'named-character-references','times':'common-microsyntaxes','paused-for-user-interaction':'media-elements','entity-middot-legacy':'named-character-references','dom-document-links':'dom','entity-Precedes':'named-character-references','concept-input-max-default':'common-input-element-attributes','htmlbasefontelement':'obsolete','entity-scE':'named-character-references','attr-script-for':'obsolete','refsABOUT':'references','apis-for-creating-and-navigating-browsin-contexts-by-name':'browsers','entity-Zdot':'named-character-references','concept-row-group':'attributes-common-to-td-and-th-elements','parse-a-time-component':'common-microsyntaxes','concept-spellcheck-default-true':'editing-apis','dom-canvas-toblob':'the-canvas-element','sectioning-content-0':'content-models','dom-datatransferitem-getasstring':'dnd','selector-required':'links','refsWEBMCG':'references','entity-tshcy':'named-character-references','dom-ol-type':'the-ol-element','resolve-a-url':'urls','dom-datatransfer-setdragimage':'dnd','lists':'rendering','dom-input-dirname':'the-input-element','htmlallcollection-0':'common-dom-interfaces','dom-input-src':'the-input-element','entity-ulcorn':'named-character-references','dom-canvas-height':'the-canvas-element','dom-audiotrack-enabled':'media-elements','no-translate':'global-attributes','htmlmediaelement':'media-elements','entity-UpArrow':'named-character-references','webvtt-parser':'infrastructure','entity-Beta':'named-character-references','dom-texttrackce-size':'media-elements','attr-object-hspace':'obsolete','attr-input-type-search-keyword':'the-input-element','entity-isindot':'named-character-references','attr-fe-name-charset':'attributes-common-to-form-controls','entity-uacute-legacy':'named-character-references','script-processing-empty':'the-script-element','definitions':'constraints','ix-handler-oncanplaythrough':'section-index','htmlcanvaselement':'the-canvas-element','handler-window-onunload':'webappapis','url':'urls','entity-lurdshar':'named-character-references','entity-ogt':'named-character-references','dom-tr-choff':'obsolete','attr-time-datetime':'the-time-element','the-body-element-0':'dom','entity-DownArrowBar':'named-character-references','entity-parsl':'named-character-references','editing':'editing','attr-dfn-title':'the-dfn-element','entity-xi':'named-character-references','dom-document-vlinkcolor':'obsolete','entity-eqsim':'named-character-references','entity-angrtvbd':'named-character-references','comma-separated-tokens':'common-microsntaxes','entity-Coproduct':'named-character-references','entity-maltese':'named-character-references','entity-smallsetminus':'named-character-references','entity-rarrw':'named-character-references','entity-GreaterEqualLess':'named-character-references','the-kbd-element':'the-kbd-element','entity-rarrc':'named-character-references','entity-rarrb':'named-character-references','entity-succnapprox':'named-character-references','entity-lnE':'named-character-references','resource-sharing-check':'infrastructure','entity-rightrightarrows':'named-character-references','entity-reals':'named-character-references','dom-dim-height':'dimension-attributes','refsOPENSEARCH':'references','entity-lne':'named-character-references','dom-a-host':'the-a-element','entity-Laplacetrf':'named-character-references','ix-handler-window-onhashchange':'section-index','the-tfoot-element':'the-tfoot-element','entity-clubsuit':'named-character-references','basefont':'obsolete','entity-diamondsuit':'named-character-references','flow-content''content-models','handler-window-onerror':'webappapis','dom-element-id':'infrastructure','entity-exponentiale':'named-character-references','dom-tbody-deleterow':'the-tbody-element','attr-body-marginright':'obsolete','handler-mediacontroller-onratechange':'media-elements','process-the-iframe-attributes':'the-iframe-element','entity-flat':'named-character-references','bidirectional-algorithm-formatting-character-ranges':'requirements-relating-to-bidirectional-algorithm-formatting-characters','entity-lesdoto':'named-character-references','entity-bdquo':'named-character-references','entity-easter':'named-character-references','entity-divideontimes':'named-character-references','entity-ntlg':'named-character-references','dom-track-loading':'the-track-element','entity-NotHumpDownHump':'named-character-references','dom-draggable':'dnd','entity-DiacriticalTilde':'named-character-references','selector-visited':'links','attr-col-width':'obsolete','entity-iota':'named-character-references','img-yes':'the-img-element''dom-style-type':'the-style-element','entity-NotNestedGreaterGreater':'named-character-references','the-hr-element-0':'rendering','dom-mediacontroller-playbackrate':'media-elements','entity-diam':'named-character-references','entity-mnplus':'named-character-references','nested-browsing-contexts':'browsers','dom-hashchangeevent-newurl':'history','entity-NotLeftTriangleBar':'named-character-references','entity-Omicron':'named-character-references','adjust-foreign-attributes':'tree-construction','attr-media-autoplay':'media-elements','entity-eth':'named-character-references','entity-eta':'named-character-references','named-character-references':'named-character-references','handler-window-ononline':'webappapis','other-pragma-directives':'the-meta-element','htmlformcontrolscollection':'common-dom-interfaces','entity-Tilde':'named-character-references','entity-ReverseEquilibrium':'named-character-references','entity-iprod':'named-character-references','drag-data-store':'dnd','attr-tdth-nowrap':'obsolete','the-setion-element':'the-section-element','the-drag-data-store':'dnd','attribute-s-serialized-name':'the-end','attr-input-autocomplete-off-state':'common-input-element-attributes','attr-fs-enctype-text':'attributes-common-to-form-controls','entity-nsmid':'named-character-references','entity-xdtri':'named-character-references','handler-onmousedown':'webappapis','attr-link-hreflang':'the-link-element','concept-dnd-ro':'dnd','concept-dnd-rw':'dnd','dom-col-choff':'obsolete','dom-a-target':'the-a-element','entity-cfr':'named-character-references','concept-error-handled':'webappapis','entity-iiota':'named-character-references','entity-iquest-legacy':'named-character-references','empty-cell':'attributes-common-to-td-and-th-elements','htmlolistelement':'the-ol-element','entity-weierp':'named-character-references','attr-input-pattern':'common-input-element-attributes','entity-plustwo':'named-character-references','concept-input-list':'common-input-element-attributes','dom-p-align':'obsolete','attr-link-rel':'the-link-eleent','synchronising-multiple-media-elements':'media-elements','dom-tdth-nowrap':'obsolete','attr-link-rev':'obsolete','attr-iframe-marginheight':'obsolete','drag-and-drop-processing-model':'dnd','attr-datafld':'obsolete','entity-simdot':'named-character-references','the-input-element-as-a-checkbox-and-radio-button-widgets':'rendering','dom-meta-httpequiv':'the-meta-element','entity-ugrave-legacy':'named-character-references','current-drag-operation':'dnd','the-small-element':'the-small-element','command-facet-icon':'commands','refsEUCJP':'references','entity-rbarr':'named-character-references','ix-handler-onselect':'section-index','attr-tdth-axis':'obsolete','navigatorid':'system-state-and-capabilities','authors-using-html':'iana','entity-yopf':'named-character-references','script-s-global-object':'webappapis','entity-percnt':'named-character-references','dom-iscontenteditable':'editing','dom-datatransfer-types':'dnd','pagetransitionevent':'history','home-subtree':'infrastructure','entity-cent':'named-charater-references','entity-loplus':'named-character-references','dom-windowmodal-dialogarguments':'user-prompts','barprop':'browsers','entity-dzigrarr':'named-character-references','already-started':'the-script-element','entity-PartialD':'named-character-references','jump-to-a-code-entry-point':'webappapis','refsDASH':'references','entity-ascr':'named-character-references','entity-curlywedge':'named-character-references','handler-oncanplaythrough':'webappapis','attr-legend-align':'obsolete','source-browsing-context':'history','entity-Qopf':'named-character-references','dom-input-value-filename':'common-input-element-apis','the-stack-of-open-elements':'parsing','entity-ccaps':'named-character-references','entity-lessdot':'named-character-references','event-mediacontroller-canplaythrough':'media-elements','entity-upuparrows':'named-character-references','cdata-rcdata-restrictions':'syntax','using-the-command-attribute-on-command-elements-to-define-a-command-indirectly':'commands','entity-FilledVerySmallSquare':'amed-character-references','attribute-name-state':'tokenization','dom-tdth-cellindex':'attributes-common-to-td-and-th-elements','entity-Wopf':'named-character-references','security-nav':'browsers','syntax-tag-omission':'syntax','entity-Ofr':'named-character-references','navigate-fragid-step':'history','dom-keygen-type':'the-keygen-element','htmllabelelement':'the-label-element','start-tags':'syntax','comment-end-dash-state':'tokenization','content-categories':'content-models','parsing-main-incolgroup':'tree-construction','the-optgroup-element':'the-optgroup-element','concept-select-option-list':'the-select-element','refsRFC1557':'references','explicitly-supported-xml-type':'history','dom-cva-willvalidate':'constraints','handler-mediacontroller-ondurationchange':'media-elements','the-history-interface':'history','entity-COPY-legacy':'named-character-references','htmlfieldsetelement':'the-fieldset-element','entity-angsph':'named-character-references','entity-circledcirc':'named-character-references','reset-buton-state-type-reset':'states-of-the-type-attribute','entity-Sopf':'named-character-references','scriptTag':'tree-construction','entity-spadesuit':'named-character-references','hierarchical-url':'urls','dom-area-rel':'the-area-element','attr-fs-enctype-urlencoded':'attributes-common-to-form-controls','paused-media-controller':'media-elements','entity-DownLeftVectorBar':'named-character-references','strip-leading-and-trailing-whitespace':'common-microsyntaxes','rcdata-end-tag-name-state':'tokenization','activation':'editing','header-and-data-cell-semantics':'attributes-common-to-td-and-th-elements','case-sensitivity-and-string-comparison':'infrastructure','namespaces':'namespaces','dom-form-item':'the-form-element','entity-hslash':'named-character-references','entity-wedge':'named-character-references','dom-tr-sectionrowindex':'the-tr-element','entity-backepsilon':'named-character-references','a-graphical-representation-of-some-of-the-surrounding-text':'the-img-element','entity-Pcy':'named-character-referencs','entity-Hscr':'named-character-references','entity-iecy':'named-character-references','attr-meta-http-equiv-content-language':'the-meta-element','entity-models':'named-character-references','entity-COPY':'named-character-references','dom-a-text':'the-a-element','attr-input-type-button-keyword':'the-input-element','dom-select-type':'the-select-element','valid-mime-type-with-no-parameters':'infrastructure','entity-nleqslant':'named-character-references','parse-error':'parsing','dom-marquee-stop':'obsolete','entity-andand':'named-character-references','entity-ngeqslant':'named-character-references','quirks-mode':'infrastructure','character-encodings-0':'parsing','attr-link-href':'the-link-element','entity-laemptyv':'named-character-references','concept-encoding-confidence':'parsing','entity-tritime':'named-character-references','entity-lmoustache':'named-character-references','script-data-state':'tokenization','entity-ufr':'named-character-references','cors-same-origin':'urls','split-a-string-on-commas':'comon-microsyntaxes','entity-isinE':'named-character-references','entity-Cdot':'named-character-references','dom-applet-code':'obsolete','attr-object-align':'obsolete','html-mime-type':'infrastructure','entity-isins':'named-character-references','dom-form-reset':'the-form-element','entity-smid':'named-character-references','browsing-the-web':'history','text-track-showing':'media-elements','entity-larr':'named-character-references','resourceSuspend':'media-elements','entity-bigoplus':'named-character-references','entity-neArr':'named-character-references','entity-Yacute-legacy':'named-character-references','ix-handler-onloadedmetadata':'section-index','dom-barprop-visible':'browsers','dom-media-paused':'media-elements','handler-mediacontroller-onwaiting':'media-elements','entity-Gammad':'named-character-references','the-img-element':'the-img-element','entity-csupe':'named-character-references','concept-appcache-matches-fallback':'offline','entity-Ecirc':'named-character-references','attr-meta-http-equiv-refres':'the-meta-element','text-plain-encoding-algorithm':'form-submission','dom-input-min':'the-input-element','entity-mfr':'named-character-references','entity-LeftArrowRightArrow':'named-character-references','attr-form-autocomplete-off-state':'the-form-element','found-a-media-resource-specific-timed-track':'media-elements','syntax-attributes':'syntax','command-facet-checkedstate':'commands','entity-subseteq':'named-character-references','text-track-kind':'media-elements','concept-dnd-p':'dnd','dom-linkstyle-sheet':'infrastructure','dom-document-writeln':'dynamic-markup-insertion','base-url-change-steps':'infrastructure','entity-epsilon':'named-character-references','the-details-element':'the-details-element','plaintext-state':'tokenization','https-aes-scheme':'iana','entity-varsupsetneq':'named-character-references','element-content-categories':'section-index','parsing-cache-manifests':'offline','poster-frame':'the-video-element','refsWHATWGWIKI':'references','entity-xcap':'named-character-references','hasfeture':'common-dom-interfaces','attributes-0':'syntax','attributes-1':'section-index','handler-onmouseout':'webappapis','concept-input-min':'common-input-element-attributes','entity-vcy':'named-character-references','most-recently-reported-readiness-state':'media-elements','entity-LeftArrow':'named-character-references','attr-marquee-behavior-scroll':'obsolete','weeks':'common-microsyntaxes','handler-mediacontroller-onemptied':'media-elements','dom-document-nameditem':'dom','entity-simg':'named-character-references','entity-sime':'named-character-references','entity-scnap':'named-character-references','entity-siml':'named-character-references','resulting-autocompletion-state':'common-input-element-attributes','attr-fieldset-disabled':'the-fieldset-element','dom-form-length':'the-form-element','the-u-element':'the-u-element','handler-window-onmessage':'webappapis','entity-planckh':'named-character-references','attr-object-type':'the-object-element','the-input-element-as-a-text-entry-widget':'rendering','entit-nsucceq':'named-character-references','attr-ol-type':'the-ol-element','master-command':'the-command-element','htmlhrelement':'the-hr-element','generic-task-sources':'webappapis','dom-input-readonly':'the-input-element','entity-dotminus':'named-character-references','default-media':'the-link-element','dom-area-search':'the-area-element','attr-link-urn':'obsolete','html-elements':'infrastructure','refsRFC2388':'references','dom-frame-longdesc':'obsolete','entity-dash':'named-character-references','entity-lotimes':'named-character-references','attr-media-preload-none-state':'media-elements','submitting-element-directionality':'attributes-common-to-form-controls','concept-meter-maximum':'the-meter-element','script-processing-defer':'the-script-element','concept-textarea-api-value':'the-textarea-element','the-input-element':'the-input-element','valid-global-date-and-time-string':'common-microsyntaxes','the-initial-insertion-mode':'tree-construction','limited-to-only-non-negative-numbers-greater-than-zero':'commn-dom-interfaces','dom-track-srclang':'the-track-element','entity-ordf-legacy':'named-character-references','attr-media-controls':'media-elements','htmlmetaelement':'the-meta-element','dom-location-hash':'history','entity-omid':'named-character-references','entity-div':'named-character-references','attr-fe-autofocus':'attributes-common-to-form-controls','entity-prec':'named-character-references','entity-dArr':'named-character-references','dom-marquee-scrollamount':'obsolete','entity-die':'named-character-references','entity-LowerLeftArrow':'named-character-references','parse-a-manifest':'offline','guidelines-for-exposing-cues-in-various-formats-as-text-track-cues':'media-elements','entity-plusacir':'named-character-references','dom-textarea-maxlength':'the-textarea-element','parse-a-yearless-date-string':'common-microsyntaxes','entity-nscr':'named-character-references','concept-dropzone-operation':'dnd','entity-Yopf':'named-character-references','attr-button-value':'the-button-element','dom-texttrack-disabld':'media-elements','entity-nsce':'named-character-references','script-processing-noscript':'the-script-element','attr-object-declare':'obsolete','video-object-fit':'rendering','attr-object-name':'the-object-element','event-definitions':'media-elements','entity-THORN':'named-character-references','fetching-resources':'urls','entity-iscr':'named-character-references','entity-mapstodown':'named-character-references','dom-document-fgcolor':'obsolete','dom-domstringmap-setitem':'common-dom-interfaces','dom':'dom','consumed':'parsing','element-dfn-dom':'element-definitions','entity-acirc-legacy':'named-character-references','entity-epsi':'named-character-references','dom-optgroup-label':'the-optgroup-element','entity-sqsupe':'named-character-references','frame-border-color':'rendering','handler-onabort':'webappapis','entity-nesim':'named-character-references','entity-varsupsetneqq':'named-character-references','syntax':'syntax','allowed-to-show-a-pop-up':'browsers','handler-onreset':'webappapis','palpable-conten-0':'content-models','dom-fieldset-elements':'the-fieldset-element','entity-Iacute':'named-character-references','entity-llhard':'named-character-references','script-s-base-url':'webappapis','entity-Exists':'named-character-references','mathml-namespace':'namespaces','entity-LessEqualGreater':'named-character-references','print-when-loaded':'user-prompts','entity-GJcy':'named-character-references','event-media-canplay':'media-elements','entity-CapitalDifferentialD':'named-character-references','entity-divide-legacy':'named-character-references','entity-bkarow':'named-character-references','event-mediacontroller-loadedmetadata':'media-elements','selector-enabled':'links','dom-windowtimers-cleartimeout':'timers','entity-Esim':'named-character-references','form-submission-0':'attributes-common-to-form-controls','entity-bcong':'named-character-references','texttrackcue':'media-elements','dom-pre-width':'obsolete','refsRFC5724':'references','entity-boxur':'named-character-references','entity-quatint':'named-charcter-references','quotaexceedederror':'infrastructure','dom-basefont-color':'obsolete','handler-onloadeddata':'webappapis','entity-boxul':'named-character-references','dom-location-assign':'history','entity-boxuR':'named-character-references','overview-of-the-parsing-model':'parsing','dom-dragevent-datatransfer':'dnd','dom-option-defaultselected':'the-option-element','urls':'urls','the-select-element-0':'rendering','entity-mapstoleft':'named-character-references','entity-ocy':'named-character-references','dom-texttrackcue-getcueashtml':'media-elements','attr-input-maxlength':'common-input-element-attributes','entity-ropar':'named-character-references','attr-input-min':'common-input-element-attributes','eventinit':'infrastructure','attr-input-type-url-keyword':'the-input-element','entity-longleftarrow':'named-character-references','htmlembedelement':'the-embed-element','entity-Poincareplane':'named-character-references','dom-map-areas':'the-map-element','attr-crossorigin-use-credentials':'urls','character-enoding-declaration':'the-meta-element','entity-gnap':'named-character-references','concept-uda-setter':'urls','entity-Square':'named-character-references','entity-nvlArr':'named-character-references','entity-lcedil':'named-character-references','best-practices-for-authors-using-media-elements':'media-elements','dom-dir-compact':'obsolete','dom-hr-noshade':'obsolete','entity-odsold':'named-character-references','attr-input-type-text-keyword':'the-input-element','the-source-element':'the-source-element','browsing-context-name':'browsers','receives-a-set-cookie-string':'infrastructure','attr-form-accept-charset':'the-form-element','entity-rAarr':'named-character-references','parse-a-url':'urls','entity-NotSucceeds':'named-character-references','attr-link-charset':'obsolete','entity-Uopf':'named-character-references','dom-element-tagname':'infrastructure','entity-RightTriangleBar':'named-character-references','entity-downarrow':'named-character-references','table-descriptions-techniques':'the-table-element','entty-submult':'named-character-references','value-track-kind-none':'media-elements','entity-chi':'named-character-references','entity-late':'named-character-references','entity-Zeta':'named-character-references','ix-handler-onplay':'section-index','the-status-bar-barprop-object':'browsers','entity-xrarr':'named-character-references','attr-track-kind-keyword-descriptions':'the-track-element','entity-rightharpoonup':'named-character-references','credential-flag':'infrastructure','attr-input-type-image-keyword':'the-input-element','using-the-accesskey-attribute-to-define-a-command-on-other-elements':'commands','bc-focus-ergo-bcc-focus':'editing','attr-ol-type-state-decimal':'the-ol-element','htmltimeelement':'the-time-element','dom-appcache-idle':'offline','attribute-text':'element-definitions','dom-radionodelist-value':'common-dom-interfaces','attr-fe-name-isindex':'attributes-common-to-form-controls','character':'infrastructure','dom-history':'history','entity-iogon':'named-character-references','entity-curarr:'named-character-references','canceled-activation-steps':'content-models','event-dragover':'dnd','entity-squf':'named-character-references','latest-entry':'history','background':'introduction','htmlobjectelement':'the-object-element','security-document':'dom','dom-media-currenttime':'media-elements','dom-navigator-iscontenthandlerregistered':'system-state-and-capabilities','entity-gnsim':'named-character-references','entity-larrfs':'named-character-references','dom-table-createcaption':'the-table-element','entity-Map':'named-character-references','domstringmap-0':'common-dom-interfaces','invalidmodificationerror':'infrastructure','entity-cups':'named-character-references','application-x-www-form-urlencoded':'iana','paragraphs':'content-models','the-textarea-element-0':'rendering','entity-twoheadrightarrow':'named-character-references','phrasing-content':'content-models','entity-scap':'named-character-references','attr-meter-min':'the-meter-element','attr-command-disabled':'the-command-element','entity-quot:'named-character-references','entity-Lang':'named-character-references','handler-ondblclick':'webappapis','entity-Dot':'named-character-references','dom-option-disabled':'the-option-element','entity-vzigzag':'named-character-references','encoding-sniffing-algorithm':'parsing','dom-tr-cells':'the-tr-element','reflecting-content-attributes-in-idl-attributes':'common-dom-interfaces','parsing':'parsing','entity-Darr':'named-character-references','attr-param-type':'obsolete','dom-input-checked':'common-input-element-apis','entity-Rcedil':'named-character-references','negative-tabindex':'editing','handler-mediacontroller-onended':'media-elements','dom-document-createelementns':'infrastructure','strip-line-breaks':'common-microsyntaxes','entity-andd':'named-character-references','dom-cva-checkvalidatity':'constraints','entity-roplus':'named-character-references','entity-nsubseteq':'named-character-references','entity-ETH-legacy':'named-character-references','entity-gjcy':'named-character-references','alternative-tyle-sheet-sets':'infrastructure','concept-input-value-number-string':'the-input-element','entity-ETH':'named-character-references','entity-Sfr':'named-character-references','editing-host':'editing-apis','script-data-double-escaped-dash-state':'tokenization','entity-dot':'named-character-references','attr-spellcheck':'editing-apis','entity-oslash-legacy':'named-character-references','attr-a-charset':'obsolete','dom-br-clear':'obsolete','concept-datetime':'common-microsyntaxes','a-group-of-images-that-form-a-single-larger-picture-with-links':'the-img-element','text-track-hidden':'media-elements','hardwareLimitations':'infrastructure','entity-nisd':'named-character-references','attr-textarea-placeholder':'the-textarea-element','event-input-change':'common-input-element-apis','submit-button-state-type-submit':'states-of-the-type-attribute','entity-ac':'named-character-references','entity-af':'named-character-references','dom-textarea-defaultvalue':'the-textarea-element','local-dates-and-times':'common-microsynaxes','editors':'infrastructure','media-timeline':'media-elements','entity-ap':'named-character-references','entity-yacute':'named-character-references','htmlselectelement':'the-select-element','entity-ovbar':'named-character-references','entity-Ouml':'named-character-references','concept-http-equivalent-get':'urls','xml-namespace':'namespaces','placeholder-label-option':'the-select-element','dir':'obsolete','entity-DownLeftVector':'named-character-references','attr-dataformatas':'obsolete','the-keygen-element-0':'rendering','dom-document-hasfocus':'editing','entity-Vee':'named-character-references','dom-input-width':'the-input-element','entity-ngeqq':'named-character-references','rules-for-updating-the-display-of-webvtt-text-tracks':'infrastructure','entity-bump':'named-character-references','entity-rang':'named-character-references','application-x-www-form-urlencoded-decoding-algorithm':'form-submission','attr-param-value':'the-param-element','attr-input-hspace':'obsolete','character-reference-in-rcdata-sate':'tokenization','entity-Kcy':'named-character-references','entity-Alpha':'named-character-references','text-track-cue-text-position':'media-elements','handler-oninvalid':'webappapis','entity-planck':'named-character-references','align-descendants':'rendering','html-parser':'parsing','changing-the-encoding-while-parsing':'parsing','set-of-space-separated-tokens':'common-microsyntaxes','iana':'iana','entity-circlearrowright':'named-character-references','refsRFC2483':'references','dom-uda-hostname':'urls','entity-ssmile':'named-character-references','attr-meta-http-equiv-set-cookie':'the-meta-element','entity-measuredangle':'named-character-references','attr-object-standby':'obsolete','mouseevent':'infrastructure','attr-mod-datetime':'attributes-common-to-ins-and-del-elements','entity-pluscir':'named-character-references','stylesheet':'infrastructure','parse-a-time-string':'common-microsyntaxes','after-doctype-system-keyword-state':'tokenization','the-pattern-attribute':'common-input-element-attributes','ontent-type-sniffing:-text-or-binary':'urls','report-the-error':'webappapis','parsing-main-incaption':'tree-construction','concept-input-step-default-base':'common-input-element-attributes','entity-cscr':'named-character-references','dom-area-target':'the-area-element','attr-link-media':'the-link-element','handler-ontimeupdate':'webappapis','entity-Lcy':'named-character-references','dom-window-locationbar':'browsers','attr-fs-novalidate':'attributes-common-to-form-controls','table-uda':'urls','media-playback':'media-elements','entity-sup1':'named-character-references','entity-subset':'named-character-references','entity-sup3':'named-character-references','entity-sup2':'named-character-references','entity-prnsim':'named-character-references','entity-hardcy':'named-character-references','charset':'the-meta-element','auxiliary-browsing-context':'browsers','dom-media-startoffsettime':'media-elements','entity-NotHumpEqual':'named-character-references','the-before-html-insertion-mode':'tree-construction','entity-upe':'named-character-references','attr-input-type-number-keyword':'the-input-element','attr-hyperlink-type':'links','entity-bowtie':'named-character-references','form-submission-algorithm':'form-submission','sandboxPluginObject':'the-object-element','outline':'headings-and-sections','entity-supE':'named-character-references','entity-Ucirc-legacy':'named-character-references','attr-iframe-sandbox':'the-iframe-element','wrongdocumenterror':'infrastructure','script-processing-parser-inserted':'the-script-element','entity-circledast':'named-character-references','entity-Supset':'named-character-references','entity-rangle':'named-character-references','entity-capbrcup':'named-character-references','htmlquoteelement':'the-blockquote-element','user-prompts':'user-prompts','dom-video-poster':'the-video-element','entity-eDot':'named-character-references','entity-Barv':'named-character-references','listing':'obsolete','dom-object-codetype':'obsolete','refsCP50220':'references','sandboxed-scripts-browsing-context-fla':'the-iframe-element','local-date-and-time-state-type-datetime-local':'states-of-the-type-attribute','entity-rtri':'named-character-references','entity-Imacr':'named-character-references','category-listed':'forms','entity-blank':'named-character-references','entity-qfr':'named-character-references','entity-Bfr':'named-character-references','embedded-content-2':'rendering','embedded-content-1':'embedded-content-1','embedded-content-0':'content-models','entity-REG':'named-character-references','entity-NotVerticalBar':'named-character-references','the-required-attribute':'common-input-element-attributes','manifests':'offline','entity-propto':'named-character-references','act-as-if-a-token-had-been-seen':'tree-construction','entity-uacute':'named-character-references','dom-navigator-appversion':'system-state-and-capabilities','htmlhtmlelement':'the-html-element','sectioning-root':'headings-and-sections','htmllinkelement':'the-link-element','suffering-from-a-pattern-mismatch':'constraints','ix-handler-window-oneforeunload':'section-index','has-a-style-sheet-that-is-blocking-scripts':'styling','language':'global-attributes','dom-track-kind':'the-track-element','entity-quaternions':'named-character-references','valid-list-of-integers':'common-microsyntaxes','entity-lbbrk':'named-character-references','entity-Mcy':'named-character-references','entity-larrhk':'named-character-references','entity-DoubleLongRightArrow':'named-character-references','unknown-images':'the-img-element','refsFILESYSTEMAPI':'references','dom-fae-form':'association-of-controls-and-forms','entity-Iota':'named-character-references','building-menus-and-toolbars':'the-menu-element','entity-rArr':'named-character-references','scroll-to-fragid':'history','elements-0':'syntax','elements-1':'section-index','limited-to-only-non-negative-numbers':'common-dom-interfaces','dom-img-longdesc':'obsolete','refsRFC4395':'references','entity-LessTilde':'named-character-references','dom-select-length':'the-select-element','script-processing-for':'the-script-eleent','the-q-element':'the-q-element','refsRFC1345':'references','entity-bfr':'named-character-references','entity-sccue':'named-character-references','entity-nvHarr':'named-character-references','entity-yucy':'named-character-references','dom-tdth-bgcolor':'obsolete','entity-Cconint':'named-character-references','the-scrollbar-barprop-object':'browsers','dom-input-pattern':'the-input-element','dom-input-value-default-on':'common-input-element-apis','htmltablecaptionelement':'the-caption-element','entity-rcedil':'named-character-references','script-data-end-tag-name-state':'tokenization','dom-hx-align':'obsolete','use-div-for-wrappers':'the-section-element','entity-NotRightTriangleBar':'named-character-references','dom-a-charset':'obsolete','event-pagehide':'history','dom-area-coords':'the-area-element','entity-tbrk':'named-character-references','general-guidelines':'the-img-element','dom-fs-formtarget':'attributes-common-to-form-controls','entry-script':'browsers','entity-block':'named-character-references''attr-input-dirname':'common-input-element-attributes','attr-input-checked':'the-input-element','dom-fs-target':'attributes-common-to-form-controls','entity-ffilig':'named-character-references','entity-backsim':'named-character-references','entity-Mellintrf':'named-character-references','htmldocument':'browsers','entity-intercal':'named-character-references','the-dirname-attribute':'common-input-element-attributes','attr-area-shape-default':'the-area-element','entity-prap':'named-character-references','media-controller-playback-rate':'media-elements','attributes-common-to-form-controls':'attributes-common-to-form-controls','image-map':'image-maps','attr-optgroup-label':'the-optgroup-element','entity-HorizontalLine':'named-character-references','entity-rcy':'named-character-references','entity-pound-legacy':'named-character-references','attr-iframe-sandbox-allow-scripts':'the-iframe-element','execute-the-script-block':'the-script-element','entity-rarrsim':'named-character-references','entity-downdownarrows':named-character-references','dom-validitystate-rangeunderflow':'constraints','defineTimeline':'media-elements','entity-gE':'named-character-references','svg-namespace':'namespaces','entity-ouml-legacy':'named-character-references','misnested-tags:-b-i-b-i':'the-end','entity-PrecedesSlantEqual':'named-character-references','entity-djcy':'named-character-references','attr-link-methods':'obsolete','handler-mediacontroller-ontimeupdate':'media-elements','entity-lozenge':'named-character-references','entity-gg':'named-character-references','entity-ge':'named-character-references','entity-LeftDownVectorBar':'named-character-references','entity-gl':'named-character-references','attr-script-language':'obsolete','entity-gt':'named-character-references','entity-Emacr':'named-character-references','dom-iframe-longdesc':'obsolete','ix-handler-window-ononline':'section-index','attr-option-selected':'the-option-element','infrastructure':'infrastructure','parsing-main-afterbody':'tree-construction','svg-0':'svg-0','scriptng-1':'scripting-1','entity-kappa':'named-character-references','wai-aria':'wai-aria','entity-Nfr':'named-character-references','dates':'common-microsyntaxes','entity-kscr':'named-character-references','entity-Superset':'named-character-references','insert-an-element-into-a-document':'infrastructure','entity-capcup':'named-character-references','attr-marquee-direction-down':'obsolete','dom-appcache-abort':'offline','dom-texttrackcue-text':'media-elements','rcdata-less-than-sign-state':'tokenization','entity-varnothing':'named-character-references','htmlbaseelement':'the-base-element','entity-jukcy':'named-character-references','entity-gbreve':'named-character-references','entity-hearts':'named-character-references','entity-ngE':'named-character-references','text-track-list-of-cues':'media-elements','entity-gesdotol':'named-character-references','dom-navigator-canplaytype':'media-elements','link-type-bookmark':'links','concept-input-required':'common-input-element-attributes','refsTIS620':'references','entit-nge':'named-character-references','time-ranges':'media-elements','attr-area-shape-keyword-default':'the-area-element','entity-ngt':'named-character-references','the-link-element':'the-link-element','serializing-xhtml-fragments':'the-xhtml-syntax','text-track-cue-display-state':'media-elements','dom-canvas-width':'the-canvas-element','entity-npreceq':'named-character-references','entity-NotSquareSupersetEqual':'named-character-references','entity-xharr':'named-character-references','htmlbodyelement':'the-body-element','entity-CupCap':'named-character-references','entity-Lambda':'named-character-references','assigning-a-media-controller-declaratively':'media-elements','dom-iframe-marginwidth':'obsolete','entity-yacute-legacy':'named-character-references','entity-pertenk':'named-character-references','the-map-element':'the-map-element','dom-document-body':'dom','the-progress-element':'the-progress-element','entity-szlig':'named-character-references','entity-Pscr':'named-character-references','entity-succappro':'named-character-references','entity-ogon':'named-character-references','entity-iocy':'named-character-references','dom-table-deletethead':'the-table-element','dom-link-disabled':'the-link-element','entity-Ascr':'named-character-references','entity-AElig-legacy':'named-character-references','design-notes':'introduction','entity-lrcorner':'named-character-references','entity-odiv':'named-character-references','entity-utdot':'named-character-references','entity-gneq':'named-character-references','dom-click':'editing','dom-videotrack-label':'media-elements','the-thead-element':'the-thead-element','event-hashchange':'history','entity-notni':'named-character-references','concept-plugin-secure':'infrastructure','concept-appcache-manifest-fallback':'offline','entity-thorn-legacy':'named-character-references','concept-embed-active':'the-embed-element','dom-top':'browsers','entity-nsupseteq':'named-character-references','audience':'introduction','parse-a-duration-string':'common-microsyntaxes','entity-supplus':'naed-character-references','dom-applet-alt':'obsolete','entity-nshortmid':'named-character-references','entity-precnapprox':'named-character-references','entity-supsetneq':'named-character-references','entity-precapprox':'named-character-references','run-canceled-activation-steps':'content-models','attr-base-target':'the-base-element','images':'rendering','requirements-relating-to-bidirectional-algorithm-formatting-characters':'requirements-relating-to-bidirectional-algorithm-formatting-characters','attributes-common-to-ins-and-del-elements':'attributes-common-to-ins-and-del-elements','entity-lfr':'named-character-references','dom-textarea-cols':'the-textarea-element','nomodificationallowederror':'infrastructure','the-video-element':'the-video-element','dom-media-network_empty':'media-elements','dom-document-all':'obsolete','the-meter-element-0':'rendering','dom-iframe-contentwindow':'the-iframe-element','dom-uda-search':'urls','dom-applet-name':'obsolete','refsRFC4648':'references','yearless-dates':'common-mcrosyntaxes','edits-and-tables':'edits-and-lists','title-on-style':'the-style-element','serializing-a-css-value':'infrastructure','the-script-block-s-fallback-character-encoding':'the-script-element','entity-rhov':'named-character-references','parent-browsing-context':'browsers','references':'references','entity-triangleq':'named-character-references','entity-YUcy':'named-character-references','entity-starf':'named-character-references','htmltablesectionelement':'the-tbody-element','entity-upsi':'named-character-references','entity-DoubleRightTee':'named-character-references','attr-source-type':'the-source-element','styling':'styling','relevant-application-cache':'offline','entity-langd':'named-character-references','handler-oninput':'webappapis','the-code-element':'the-code-element','entity-bumpE':'named-character-references','attr-fs-formnovalidate':'attributes-common-to-form-controls','syntax-text':'syntax','using-the-rules-for':'parsing','list-of-scripts-that-will-execute-when-the-document-has-finished-arsing':'the-script-element','attr-command-title':'the-command-element','domstringmap':'common-dom-interfaces','entity-dharr':'named-character-references','entity-SHCHcy':'named-character-references','entity-dharl':'named-character-references','dom-event-target':'infrastructure','dom-col-width':'obsolete','file':'infrastructure','entity-MediumSpace':'named-character-references','handler-onloadstart':'webappapis','utf-8':'infrastructure','dialog-arguments':'user-prompts','text-track-cue-end-alignment':'media-elements','an-image-not-intended-for-the-user':'the-img-element','durations':'common-microsyntaxes','entity-nldr':'named-character-references','command-facet-action':'commands','entity-aelig':'named-character-references','entity-Larr':'named-character-references','script-data-double-escape-start-state':'tokenization','disowned-its-opener':'browsers','fallback-content':'content-models','dom-fs-encoding':'attributes-common-to-form-controls','the-em-element':'the-em-element','css-element-reference-identifie':'infrastructure','entity-equals':'named-character-references','dom-media-texttracks':'media-elements','definitions-0':'webappapis','definitions-1':'webappapis','browsers':'browsers','dom-canvas-todataurl':'the-canvas-element','attr-embed-hspace':'obsolete','entity-Xfr':'named-character-references','dom-tbody-ch':'obsolete','dom-mod-cite':'attributes-common-to-ins-and-del-elements','tree-order':'infrastructure','concept-input-type-file-selected':'states-of-the-type-attribute','dom-document-embeds':'dom','the-session-history-of-browsing-contexts':'history','entity-midcir':'named-character-references','dom-table-rules':'obsolete','entity-fscr':'named-character-references','entity-amp-legacy':'named-character-references','refsRFC3676':'references','dom-timeranges-length':'media-elements','entity-lsim':'named-character-references','entity-nvrArr':'named-character-references','entity-ycirc':'named-character-references','headings-and-sections':'headings-and-sections','entity-Sqrt':'named-character-references','pugins':'infrastructure','dom-audio':'the-audio-element','entity-gtlPar':'named-character-references','ix-handler-onmousewheel':'section-index','concept-appcache-foreign':'offline','insertion-mode':'parsing','mathml-text-integration-point':'tree-construction','entity-nequiv':'named-character-references','entity-sqsupseteq':'named-character-references','flow-content-1':'rendering','flow-content-0':'content-models','script-data-double-escaped-dash-dash-state':'tokenization','entity-frasl':'named-character-references','entity-TildeTilde':'named-character-references','entity-reg':'named-character-references','entity-opar':'named-character-references','dom-window-scrollbars':'browsers','entity-midast':'named-character-references','attr-iframe-frameborder':'obsolete','attr-col-charoff':'obsolete','convert-a-list-of-dimensions-to-a-list-of-pixel-values':'rendering','concept-event-type':'infrastructure','dom-texttrack-hidden':'media-elements','attr-a-urn':'obsolete','entity-sim':'named-character-references','entity-nfintie':'named-character-references','entity-NotGreaterGreater':'named-character-references','entity-el':'named-character-references','attr-ul-type':'obsolete','entity-ee':'named-character-references','entity-eg':'named-character-references','entity-ijlig':'named-character-references','dom-domimplementation-createhtmldocument':'infrastructure','pending-application-cache-download-process-tasks':'offline','attr-col-span':'the-col-element','entity-amacr':'named-character-references','paragraph':'content-models','dom-innerhtml':'infrastructure','dom-html-version':'obsolete','entity-loang':'named-character-references','entity-SquareUnion':'named-character-references','numbers':'common-microsyntaxes','rules-for-parsing-a-legacy-color-value':'common-microsyntaxes','entity-cylcty':'named-character-references','entity-Igrave-legacy':'named-character-references','dom-area-protocol':'the-area-element','enabling-and-disabling-form-controls':'attributes-common-to-form-controls','entity-xuplus':'named-character-referencs','entity-PrecedesTilde':'named-character-references','entity-NotGreaterEqual':'named-character-references','adoptionAgency':'tree-construction','entity-nsim':'named-character-references','dom-history-go':'history','column-group-header':'attributes-common-to-td-and-th-elements','dom-accesskeylabel':'editing','dom-option-selected':'the-option-element','notfounderror':'infrastructure','refsXPATH10':'references','entity-nap':'named-character-references','entity-succcurlyeq':'named-character-references','entity-Hacek':'named-character-references','hierarchyrequesterror':'infrastructure','the-lang-and-xml:lang-attributes':'global-attributes','refsARIAIMPL':'references','dom-manipulation-task-source':'webappapis','dom-datatransferitemlist-length':'dnd','dom-uievent-detail':'infrastructure','after-doctype-public-identifier-state':'tokenization','the-dragevent-interface':'dnd','entity-Nscr':'named-character-references','dom-hr-size':'obsolete','entity-FilledSmallSquare':'named-character-references','entity-zhcy':'amed-character-references','entity-dollar':'named-character-references','interactive-content-0':'content-models','dom-time-datetime':'the-time-element','entity-Breve':'named-character-references','seeking':'media-elements','concept-appcache-status':'offline','event-media-pause':'media-elements','entity-oplus':'named-character-references','entity-OverBar':'named-character-references','entity-micro':'named-character-references','dom-datatransferitem-kind':'dnd','entity-Iscr':'named-character-references','entity-auml':'named-character-references','dom-validitystate-customerror':'constraints','entity-nwarhk':'named-character-references','ix-handler-onerror':'section-index','attr-table-datapagesize':'obsolete','entity-curvearrowleft':'named-character-references','generate-implied-end-tags':'tree-construction','refsRFC2119':'references','entity-ulcorner':'named-character-references','attr-tbody-char':'obsolete','the-personal-bar-barprop-object':'browsers','event-loops':'webappapis','entity-ograve':'named-characte-references','entity-ssetmn':'named-character-references','dom-area-rellist':'the-area-element','entity-rHar':'named-character-references','entity-upsih':'named-character-references','attr-embed-align':'obsolete','attr-img-ismap':'the-img-element','dom-command-command':'the-command-element','charset1024':'the-meta-element','dom-script-event':'obsolete','dom-iframe-frameborder':'obsolete','entity-timesd':'named-character-references','dom-windowtimers-setinterval':'timers','entity-timesb':'named-character-references','entity-Element':'named-character-references','completely-loaded':'the-end','entity-mapsto':'named-character-references','dom-tr-ch':'obsolete','entity-rightharpoondown':'named-character-references','attr-media-preload-metadata-state':'media-elements','entity-phi':'named-character-references','dom-hidden':'editing','timed-text-tracks':'media-elements','entity-OverBracket':'named-character-references','entity-Jcirc':'named-character-references','parse-state':'parsing','entity-ntriangleright':'name-character-references','the-audio-element':'the-audio-element','multipart-form-data-encoding-algorithm':'form-submission','attr-object-border':'obsolete','handler-window-onbeforeprint':'webappapis','read-media':'history','refsBECSS':'references','sandboxWindowOpen':'browsers','dom-img-height':'the-img-element','simple-dialogs':'user-prompts','text-content':'content-models','attr-input-step':'common-input-element-attributes','dom-area-pathname':'the-area-element','handler-window-onfocus':'webappapis','ix-handler-onload':'section-index','the-a-element':'the-a-element','refsUNIVCHARDET':'references','interactive':'infrastructure','attr-tr-char':'obsolete','entity-Wedge':'named-character-references','entity-rarrpl':'named-character-references','the-colgroup-element':'the-colgroup-element','entity-coloneq':'named-character-references','cache-failure-steps':'offline','attr-body-alink':'obsolete','dom-select-item':'the-select-element','audiotrack':'media-elements','embedding-custom-non-visible-data-with-the-data-atributes':'global-attributes','dom-media-controls':'media-elements','attr-table-border':'the-table-element','attr-track-kind-keyword-captions':'the-track-element','handler-appcache-onchecking':'offline','attr-input-type-week-keyword':'the-input-element','maximum-allowed-value-length':'attributes-common-to-form-controls','entity-larrlp':'named-character-references','refsCHARMOD':'references','attr-dir-rtl-state':'global-attributes','entity-DoubleContourIntegral':'named-character-references','before-doctype-public-identifier-state':'tokenization','datatransfer':'dnd','dom-navigator-useragent':'system-state-and-capabilities','attr-style-title':'the-style-element','entity-doublebarwedge':'named-character-references','entity-dtdot':'named-character-references','entity-euml':'named-character-references','concept-input-max':'common-input-element-attributes','entity-gimel':'named-character-references','entity-urcrop':'named-character-references','entity-Icy':'named-character-references','entity-atilde':'named-charater-references','list-of-dragged-nodes':'dnd','the-abbr-element':'the-abbr-element','attr-style-scoped':'the-style-element','the-autocomplete-attribute':'common-input-element-attributes','refsXMLNS':'references','restrictions-for-contents-of-script-elements':'the-script-element','entity-cuwed':'named-character-references','structure-of-this-specification':'introduction','valid-duration-string':'common-microsyntaxes','dom-window-stop':'browsers','dom-input-max':'the-input-element','dom-applet-codebase':'obsolete','attr-param-valuetype':'obsolete','storage-mutex':'webappapis','entity-subseteqq':'named-character-references','parse-a-date-component':'common-microsyntaxes','other-applicable-specifications':'infrastructure','user-interface':'media-elements','entity-Rfr':'named-character-references','entity-zwj':'named-character-references','media-resource':'media-elements','entity-nsqsupe':'named-character-references','entity-NotExists':'named-character-references','establish-script-block-source':'the-script-elemnt','refsRFC6350':'references','embedded-content':'content-models','interfaces':'section-index','collections-0':'common-dom-interfaces','dom-input-value-default':'common-input-element-apis','element-restrictions':'syntax','entity-nearhk':'named-character-references','dom-body-link':'obsolete','entity-radic':'named-character-references','entity-gacute':'named-character-references','document.write':'dynamic-markup-insertion','element-dfn-contexts':'element-definitions','entity-Fscr':'named-character-references','handler-ondragover':'webappapis','compliance-with-other-specifications':'introduction','dom-texttrack-language':'media-elements','entity-nlsim':'named-character-references','entity-NotSucceedsTilde':'named-character-references','entity-parsim':'named-character-references','entity-lrarr':'named-character-references','entity-OverParenthesis':'named-character-references','dom-media-controller':'media-elements','media-element':'media-elements','downloading-or-updating-an-application-cache':'offline','entiy-osol':'named-character-references','entity-Otilde-legacy':'named-character-references','ix-handler-ondurationchange':'section-index','entity-vBar':'named-character-references','attr-textarea-wrap-hard-state':'the-textarea-element','textarea-effective-width':'rendering','dom-input-list':'common-input-element-apis','entity-DotDot':'named-character-references','event-popstate':'history','entity-lAtail':'named-character-references','dom-a-hostname':'the-a-element','multicol':'obsolete','entity-ofcir':'named-character-references','entity-nhArr':'named-character-references','dom-windowmodal-returnvalue':'user-prompts','entity-sol':'named-character-references','entity-mapstoup':'named-character-references','entity-Equilibrium':'named-character-references','concept-dropzone-match':'dnd','ix-handler-onmouseover':'section-index','parsing-main-inbody':'tree-construction','concept-http-equivalent-headers':'urls','entity-fopf':'named-character-references','entity-Qscr':'named-character-references','a-short-phrase-or-lbel-with-an-alternative-graphical-representation:-icons-logos':'the-img-element','dom-link-href':'the-link-element','pragma-set-default-language':'the-meta-element','entity-ThinSpace':'named-character-references','entity-RightArrowBar':'named-character-references','newlines':'syntax','event-mediacontroller-canplay':'media-elements','dom-spellcheck':'editing-apis','entity-NotTildeEqual':'named-character-references','dom-track-none':'the-track-element','entity-Hfr':'named-character-references','concept-rel-extensions':'links','drag-data-store-default-feedback':'dnd','limited-quirks-mode':'infrastructure','attr-form-name':'the-form-element','event-offline':'offline','big':'obsolete','entity-incare':'named-character-references','bidirectional-text':'rendering','entity-LJcy':'named-character-references','entity-triangleleft':'named-character-references','parser-inserted':'the-script-element','entity-ncy':'named-character-references','entity-NotSquareSubsetEqual':'named-character-references','dom-media-network_ide':'media-elements','root-element-of-a-document-object':'infrastructure','entity-rightleftharpoons':'named-character-references','entity-gtreqqless':'named-character-references','converted-to-ascii-lowercase':'infrastructure','valid-floating-point-number':'common-microsyntaxes','dom-option-text':'the-option-element','refsECMA357':'references','examples':'examples','refsWIN874':'references','the-button-element-0':'rendering','refsCSSATTR':'references','attr-input-type-keywords':'the-input-element','dom-marquee-vspace':'obsolete','opening-the-input-stream':'dynamic-markup-insertion','entity-approxeq':'named-character-references','entity-caps':'named-character-references','dom-media-currentsrc':'media-elements','refsCSSCOLOR':'references','entity-IJlig':'named-character-references','dom-document-write':'dynamic-markup-insertion','dom-details-open':'the-details-element','escapingString':'the-end','entity-sqsubseteq':'named-character-references','dom-media-have_metadata':'media-elements','content-type-sniffing-0:'urls','entity-ntilde-legacy':'named-character-references','entity-rsquo':'named-character-references','valid-browsing-context-name':'browsers','self-closing-start-tag-state':'tokenization','entity-thickapprox':'named-character-references','entity-Ocirc-legacy':'named-character-references','entity-comp':'named-character-references','refsRFC1842':'references','entity-hfr':'named-character-references','dom-select-selectedoptions':'the-select-element','text-track-cue-line-position':'media-elements','entity-subsetneqq':'named-character-references','month-state-type-month':'states-of-the-type-attribute','acknowledgements':'acknowledgements','dom-col-span':'the-col-element','entity-DD':'named-character-references','common-event-behaviors':'common-input-element-apis','entity-Prime':'named-character-references','transferable-objects':'common-dom-interfaces','entity-xopf':'named-character-references','the-iframe-element':'the-iframe-element','bring-the-media-element-up-to-speed-with-its-new-media-controller':'mediaelements','entity-Rang':'named-character-references','external-resource-link':'links','dom-marquee-width':'obsolete','entity-DifferentialD':'named-character-references','attr-ol-type-state-lower-roman':'the-ol-element','attr-hyperlink-target':'links','script-data-escaped-end-tag-name-state':'tokenization','entity-topf':'named-character-references','dom-track-error':'the-track-element','signed-integers':'common-microsyntaxes','refsCSSOM':'references','entity-realpart':'named-character-references','entity-vltri':'named-character-references','linkui':'the-link-element','entity-cudarrr':'named-character-references','valid-e-mail-address':'states-of-the-type-attribute','unloading-document-visibility-change-steps':'history','entity-cudarrl':'named-character-references','being-rendered':'rendering','refsGBK':'references','entity-UnderBar':'named-character-references','dom-a-port':'the-a-element','entity-zopf':'named-character-references','documents-in-the-dom':'dom','ix-handler-onfocus':'section-index','attr-inputmax':'common-input-element-attributes','refsMEDIAFRAG':'references','entity-DiacriticalDot':'named-character-references','script-s-browsing-context':'webappapis','entity-ltdot':'named-character-references','entity-NotLeftTriangleEqual':'named-character-references','entity-RoundImplies':'named-character-references','handler-onmousewheel':'webappapis','event-dragend':'dnd','dom-media-readystate':'media-elements','current-media-controller':'media-elements','syntax-references':'common-microsyntaxes','ix-handler-ondragstart':'section-index','valid-week-string':'common-microsyntaxes','entity-Del':'named-character-references','concept-fetch-loaded':'urls','entity-nvrtrie':'named-character-references','primary-context':'the-canvas-element','entity-Eogon':'named-character-references','concept-column':'attributes-common-to-td-and-th-elements','rawtext-end-tag-open-state':'tokenization','entity-lrhar':'named-character-references','texttrack':'media-elements','handler-onmouseup':'webappapis','attr-body-marginbottom':'osolete','entity-Hopf':'named-character-references','entity-dcaron':'named-character-references','attr-meter-max':'the-meter-element','valid-time-string':'common-microsyntaxes','attr-textarea-cols-value':'the-textarea-element','attr-meta-http-equiv-content-type':'the-meta-element','entity-LeftTriangle':'named-character-references','attr-fs-target':'attributes-common-to-form-controls','entity-RightDownVector':'named-character-references','entity-blacktriangleleft':'named-character-references','floating-point-numbers':'common-microsyntaxes','entity-Atilde':'named-character-references','htmldivelement':'the-div-element','entity-DownBreve':'named-character-references','entity-DownRightVector':'named-character-references','stopped-due-to-errors':'media-elements','dom-input-align':'obsolete','entity-yen-legacy':'named-character-references','dom-tr-insertcell':'the-tr-element','validity-states':'constraints','event-mediacontroller-ended':'media-elements','entity-Rho':'named-character-references','selector-rtl':'lins','handler-onmousemove':'webappapis','dom-textarea-type':'the-textarea-element','entity-nvsim':'named-character-references','navigating-auxiliary-browsing-contexts-in-the-dom':'browsers','unit-of-related-similar-origin-browsing-contexts':'browsers','entity-subedot':'named-character-references','entity-lmidot':'named-character-references','entity-Tstrok':'named-character-references','refsCSS':'references','entity-VerticalTilde':'named-character-references','week-state-type-week':'states-of-the-type-attribute','creating-and-inserting-elements':'tree-construction','entity-risingdotseq':'named-character-references','htmloptionscollection-0':'common-dom-interfaces','entity-mldr':'named-character-references','entity-egsdot':'named-character-references','entity-cwint':'named-character-references','the-canvas-element':'the-canvas-element','parsing-xhtml-documents':'the-xhtml-syntax','fetch':'urls','invalidaccesserror':'infrastructure','entity-erDot':'named-character-references','entity-boxHD':'named-character-refeences','event-appcache-checking':'offline','entity-Dashv':'named-character-references','entity-boxHU':'named-character-references','after-doctype-name-state':'tokenization','parsing-html-fragments':'the-end','dom-texttrackcue-starttime':'media-elements','refsUTR36':'references','specially-focusable':'editing','entity-boxHd':'named-character-references','entity-abreve':'named-character-references','algorithm-for-growing-downward-growing-cells':'attributes-common-to-td-and-th-elements','concept-marquee-off':'obsolete','entity-boxHu':'named-character-references','entity-numero':'named-character-references','entity-rtrie':'named-character-references','dom-media-pause':'media-elements','entity-euro':'named-character-references','entity-rtrif':'named-character-references','after-attribute-name-state':'tokenization','entity-kjcy':'named-character-references','concept-mo-invoke':'infrastructure','dom-marquee-truespeed':'obsolete','selector-indeterminate':'links','concept-js-deref':'webappapis','entity-sup2-legacy':named-character-references','entity-ii':'named-character-references','entity-solbar':'named-character-references','frames-and-framesets':'rendering','entity-in':'named-character-references','entity-swnwar':'named-character-references','entity-ic':'named-character-references','attr-tbody-charoff':'obsolete','attr-input-type-hidden-keyword':'the-input-element','documentEncoding':'parsing','dom-track-track':'the-track-element','entity-smt':'named-character-references','htmloptionelement':'the-option-element','the-command-element':'the-command-element','entity-leftrightsquigarrow':'named-character-references','entity-isin':'named-character-references','the-execution-of-scripts-that-are-moving-across-multiple-documents':'the-end','dom-uda-pathname':'urls','concept-textarea-raw-value':'the-textarea-element','entity-GreaterEqual':'named-character-references','skip-white_space-characters':'common-microsyntaxes','entity-Gfr':'named-character-references','doctype-name-state':'tokenization','attr-input-type-checkbox-kyword':'the-input-element','entity-Iogon':'named-character-references','dom-history-forward':'history','entity-psi':'named-character-references','entity-fork':'named-character-references','offsets-into-the-media-resource':'media-elements','a-type-that-the-user-agent-knows-it-cannot-render':'media-elements','constraints':'constraints','history-notes':'history','attr-input-multiple':'common-input-element-attributes','entity-Fopf':'named-character-references','entity-Kscr':'named-character-references','dom-htmloptionscollection-setter':'common-dom-interfaces','dom-audio-s':'the-audio-element','sandboxed-forms-browsing-context-flag':'the-iframe-element','text-track-cue-vertical-growing-right-writing-direction':'media-elements','entity-bumpe':'named-character-references','script-processing-start':'the-script-element','concept-marquee-on':'obsolete','dom-texttrack-removecue':'media-elements','attr-input-accept':'states-of-the-type-attribute','entity-lharul':'named-character-references','dom-input-defaultvalue':'te-input-element','the-translate-attribute':'global-attributes','the-placeholder-attribute':'common-input-element-attributes','dom-table-bgcolor':'obsolete','dom-iframe-sandbox':'the-iframe-element','text-track-cue-snap-to-lines-flag':'media-elements','command-facet-disabledstate':'commands','entity-nsup':'named-character-references','entity-therefore':'named-character-references','attr-details-open':'the-details-element','the-title-attribute':'global-attributes','dom-document-namedItem-which':'dom','entity-nsub':'named-character-references','dom-object-typemustmatch':'the-object-element','entity-numsp':'named-character-references','dom-document-commands':'commands','a-group-of-images-that-form-a-single-larger-picture-with-no-links':'the-img-element','concept-input-type-image-coordinate':'states-of-the-type-attribute','entity-Because':'named-character-references','entity-frac45':'named-character-references','attr-area-alt':'the-area-element','represented-by-the-collection':'infrastructure','obsolete-permitte-doctype':'syntax','entity-awint':'named-character-references','entity-eogon':'named-character-references','entity-Rcaron':'named-character-references','attr-input-size':'common-input-element-attributes','attr-dim-height':'dimension-attributes','locked-for-reset':'the-form-element','entity-ast':'named-character-references','entity-sext':'named-character-references','entity-erarr':'named-character-references','entity-imath':'named-character-references','the-details-element-0':'rendering','entity-ncup':'named-character-references','entity-supsetneqq':'named-character-references','entity-quot-legacy':'named-character-references','attr-menu-type':'the-menu-element','entity-frown':'named-character-references','dom-a-media':'the-a-element','attr-input-value':'the-input-element','supported-property-names':'infrastructure','dom-command-ro-commandhidden':'commands','list-of-the-descendant-browsing-contexts':'browsers','plaintext':'obsolete','entity-odot':'named-character-references','dom-command-ro-commandtype':'comands','expose-a-user-interface-to-the-user':'media-elements','handler-oncontextmenu':'webappapis','entity-Proportional':'named-character-references','attr-object-vspace':'obsolete','unexpected-markup-in-tables':'the-end','ix-handler-onsuspend':'section-index','attr-datasrc':'obsolete','attr-meta-charset':'the-meta-element','transparently-follow-the-redirect':'urls','dom-image-w':'the-img-element','ix-handler-onmouseup':'section-index','dom-texttrackcue-id':'media-elements','scriptForeignEndTag':'tree-construction','entity-nrtri':'named-character-references','attr-tdth-width':'obsolete','reset-the-form-owner':'association-of-controls-and-forms','entity-QUOT':'named-character-references','entity-fpartint':'named-character-references','checkbox-state-type-checkbox':'states-of-the-type-attribute','entity-phiv':'named-character-references','refsJSURL':'references','filelist':'infrastructure','concept-fetch-total':'urls','entity-gesdoto':'named-character-references','entity-Bopf':'named-character-references','tex':'infrastructure','attr-col-align':'obsolete','multipart-x-mixed-replace':'iana','entity-fllig':'named-character-references','entity-uogon':'named-character-references','dom-frame-contentdocument':'obsolete','entity-lbrke':'named-character-references','dom-media-seeking':'media-elements','notsupportederror':'infrastructure','running-mutation-observers':'browsers','entity-DownTee':'named-character-references','media-controller-duration':'media-elements','entity-sqsup':'named-character-references','selecting-specific-audio-and-video-tracks-declaratively':'media-elements','entity-DownRightTeeVector':'named-character-references','entity-sqsub':'named-character-references','the-figcaption-element':'the-figcaption-element','dom-datatransfer-addelement':'dnd','recommended-reading':'introduction','entity-uarr':'named-character-references','selector-link':'links','event-click':'infrastructure','value-track-kind-commentary':'media-elements','attr-marquee-direction':'obsolete','the-head-element-0':'dom','entity-rarrt':'named-character-references','attr-video-poster':'the-video-element','normal-elements':'syntax','dom-img-hspace':'obsolete','custom-request-headers':'infrastructure','entity-LeftUpDownVector':'named-character-references','entity-nspar':'named-character-references','dom-script-type':'the-script-element','entity-larrpl':'named-character-references','entity-SupersetEqual':'named-character-references','initial-playback-position':'media-elements','plugin':'infrastructure','common-dom-interfaces':'common-dom-interfaces','attr-meta-scheme':'obsolete','attributes':'element-definitions','entity-Epsilon':'named-character-references','ix-handler-onmousedown':'section-index','comment':'tokenization','entity-jcirc':'named-character-references','dom-div-align':'obsolete','entity-geqslant':'named-character-references','concept-appcache-onlinewhitelist-wildcard':'offline','refsUNDO':'references','browsing-context':'browsers','dom-textarea-textlength':'the-textarea-element','entity-hyphen':'named-character-references','do-media-audiotracks':'media-elements','media-element-load-algorithm':'media-elements','dom-audiotrack-label':'media-elements','entity-bne':'named-character-references','dom-textarea-placeholder':'the-textarea-element','event-media-seeked':'media-elements','entity-cupdot':'named-character-references','entity-ltcir':'named-character-references','telephone-state-type-tel':'states-of-the-type-attribute','dom-param-type':'obsolete','color-state-type-color':'states-of-the-type-attribute','dom-videotracklist-length':'media-elements','concept-input-value-dirty-flag':'the-input-element','dom-media-playbackrate':'media-elements','dom-style-media':'the-style-element','entity-bigstar':'named-character-references','attr-tr-valign':'obsolete','playing-the-media-resource':'media-elements','defining-term':'the-dfn-element','the-link-is-an-alternative-stylesheet':'links','dom-datatransfer-cleardata':'dnd','tokenization':'tokenization','entity-NotEqualTilde':'named-character-references','dom-param-valuetype':'obsolete','attr-bject-codetype':'obsolete','noopener':'browsers','dom-optgroup-disabled':'the-optgroup-element','entity-ifr':'named-character-references','the-h2-element':'the-h1-h2-h3-h4-h5-and-h6-elements','entity-iff':'named-character-references','htmldlistelement':'the-dl-element','entity-fltns':'named-character-references','concept-events-trusted':'infrastructure','entity-bigtriangledown':'named-character-references','center':'obsolete','entity-bprime':'named-character-references','entity-xcup':'named-character-references','dom-window-toolbar':'browsers','ix-handler-ondragenter':'section-index','concept-frag-parse-context':'the-end','entity-lscr':'named-character-references','global-attributes':'global-attributes','concept-select-size':'the-select-element','nextid':'obsolete','elements-in-the-dom':'elements','value-track-kind-subtitle':'media-elements','dom-media-loop':'media-elements','attr-area-shape-poly':'the-area-element','dom-option-tv':'the-option-element','doctype-system-identifier-single-quoted-state':'tokeniation','dom-document-querycommandsupported':'editing-apis','the-fieldset-element':'the-fieldset-element','entity-Abreve':'named-character-references','entity-minusdu':'named-character-references','attr-xml-lang':'global-attributes','attr-link-target':'obsolete','entity-cupcup':'named-character-references','concept-input-value-date-string':'the-input-element','dom-document-createelement':'infrastructure','dom-form-checkvalidity':'the-form-element','table-layout-techniques':'the-table-element','entity-bigcirc':'named-character-references','sandboxed-origin-browsing-context-flag':'the-iframe-element','attr-button-type-button-state':'the-button-element','dom-htmlselectelement-setter':'the-select-element','entity-ReverseElement':'named-character-references','dom-iframe-contentdocument':'the-iframe-element','attr-command-label':'the-command-element','playing-media-controller':'media-elements','ix-handler-onkeyup':'section-index','attr-body-link':'obsolete','sample-handler-impl':'system-state-and-capabilities','hadler-onreadystatechange':'webappapis','handler-onkeypress':'webappapis','rules-for-serializing-simple-color-values':'common-microsyntaxes','entity-or':'named-character-references','attr-textarea-wrap':'the-textarea-element','the-doctype':'syntax','refsHTMLDIFF':'references','create-an-impotent-script':'webappapis','entity-oS':'named-character-references','suffering-from-a-type-mismatch':'constraints','event-appcache-error':'offline','application-cache':'offline','entity-LeftUpVectorBar':'named-character-references','refsWIN949':'references','dom-lang':'global-attributes','entity-DownArrowUpArrow':'named-character-references','attr-ul-compact':'obsolete','mime-type':'infrastructure','create-a-drag-data-store':'dnd','sandboxed-plugins-browsing-context-flag':'the-iframe-element','attr-data':'global-attributes','loading-the-media-resource':'media-elements','entity-supnE':'named-character-references','application-xhtml-xml':'iana','entity-LeftVector':'named-character-references','entity-NotSuperset':'named-charater-references','entity-GT-legacy':'named-character-references','interactively-validate-the-constraints':'constraints','entity-LongRightArrow':'named-character-references','entity-Ufr':'named-character-references','entity-DScy':'named-character-references','attr-fe-name':'attributes-common-to-form-controls','event-drop':'dnd','attr-area-shape-keyword-circ':'the-area-element','entity-solb':'named-character-references','serializability-of-script-execution':'introduction','entity-asympeq':'named-character-references','dom-navigator-unregistercontenthandler':'system-state-and-capabilities','entity-ccirc':'named-character-references','date-state-type-date':'states-of-the-type-attribute','entity-kcy':'named-character-references','entity-not':'named-character-references','internal-structured-cloning-algorithm':'common-dom-interfaces','entity-Longrightarrow':'named-character-references','entity-nsccue':'named-character-references','dom-object-contentdocument':'the-object-element','entity-nltrie':'named-character-reerences','entity-frac23':'named-character-references','entity-frac25':'named-character-references','entity-ggg':'named-character-references','mime-types':'media-elements','entity-rcaron':'named-character-references','entity-Theta':'named-character-references','image-button-state-type-image':'states-of-the-type-attribute','space-character':'common-microsyntaxes','dom-ol-start':'the-ol-element','text-cache-manifest':'iana','htmltablecellelement':'attributes-common-to-td-and-th-elements','the-samp-element':'the-samp-element','refsCSSFONTS':'references','entity-CHcy':'named-character-references','comment-end-state':'tokenization','ix-handler-onclick':'section-index','refsUNICODE':'references','entity-CounterClockwiseContourIntegral':'named-character-references','attr-object-typemustmatch':'the-object-element','entity-leftleftarrows':'named-character-references','entity-nexists':'named-character-references','entity-blacktriangledown':'named-character-references','browsing-context-names':'browsers','entity-phone''named-character-references','concept-appcache-pending-masters':'offline','attr-meter-high':'the-meter-element','refsRFC1554':'references','attr-label-for':'the-label-element','refsXHR':'references','entity-becaus':'named-character-references','row-group-header':'attributes-common-to-td-and-th-elements','concept-appcache-cache':'offline','obtain-a-physical-form':'rendering','entity-cross':'named-character-references','entity-MinusPlus':'named-character-references','entity-oacute':'named-character-references','ix-handler-onchange':'section-index','the-end':'the-end','attr-meter-value':'the-meter-element','dom-style-disabled':'the-style-element','attr-media-src':'media-elements','entity-ImaginaryI':'named-character-references','changesToNetworkingModel':'offline','the-s-element':'the-s-element','fire-loadedmetadata':'media-elements','entity-tcaron':'named-character-references','attr-iframe-longdesc':'obsolete','fakepath-srsly':'states-of-the-type-attribute','attr-input-usemap':'obsolete','concept-uda-input':'rls','webvtt-cue-settings':'infrastructure','resetting-a-form':'form-submission','attr-iframe-vspace':'obsolete','entity-cent-legacy':'named-character-references','the-cite-element':'the-cite-element','dom-area-port':'the-area-element','entity-UnderBrace':'named-character-references','non-conforming-features':'obsolete','entity-varrho':'named-character-references','handler-state-string':'system-state-and-capabilities','creator-browsing-context':'browsers','entity-nLt':'named-character-references','entity-thksim':'named-character-references','dom-windowbase64-btoa':'webappapis','cross-origin-request':'infrastructure','dom-feature-strings':'common-dom-interfaces','entity-otimesas':'named-character-references','entity-nLl':'named-character-references','appcache':'offline','encrypted-http-and-related-security-concerns':'urls','entity-DownLeftRightVector':'named-character-references','original-insertion-mode':'parsing','entity-Uarr':'named-character-references','drag-data-store-elements-list':'dnd','dom-textarearows':'the-textarea-element','transfer-a-transferable-object':'common-dom-interfaces','attr-fs-action':'attributes-common-to-form-controls','fire-a-simple-event':'webappapis','dom-progress-position':'the-progress-element','entity-vartriangleright':'named-character-references','dom-media-volume':'media-elements','dom-timeranges-end':'media-elements','entity-roang':'named-character-references','entity-VeryThinSpace':'named-character-references','mq':'common-microsyntaxes','type-blacklist':'system-state-and-capabilities','entity-isinsv':'named-character-references','entity-mumap':'named-character-references','entity-searrow':'named-character-references','entity-uhblk':'named-character-references','entity-rdquor':'named-character-references','element-type':'infrastructure','edits-and-paragraphs':'edits-and-paragraphs','dom-form-elements':'the-form-element','split-a-string-on-spaces':'common-microsyntaxes','update-the-session-history-with-the-new-page':'history','entity-divide':'named-character-references','dom-tmloptionscollection-remove':'common-dom-interfaces','entity-rect':'named-character-references','support-named-properties':'infrastructure','entity-lesseqgtr':'named-character-references','meta-description':'the-meta-element','valid-simple-color':'common-microsyntaxes','dom-frameset-rows':'obsolete','filecallback':'infrastructure','handler-onload':'webappapis','prepare-an-event':'media-elements','entity-bemptyv':'named-character-references','entity-uuml':'named-character-references','reload-override-flag':'dom','style-sheet-ready':'styling','scripting-0':'infrastructure','writing':'syntax','edits':'edits','relaxing-the-same-origin-restriction':'origin-0','dom-input-required':'the-input-element','entity-DoubleLeftArrow':'named-character-references','entity-Aopf':'named-character-references','the-bdi-element':'the-bdi-element','dom-validitystate-valid':'constraints','handler-mediacontroller-onvolumechange':'media-elements','entity-Ntilde':'named-character-references','parse-the-webvtt-settings':'infrastructur','attr-base-href':'the-base-element','sbu-not-copy':'webappapis','track-url':'the-track-element','text-tracks-describing-chapters':'media-elements','the-blockquote-element':'the-blockquote-element','dom-media-have_enough_data':'media-elements','attr-input-type-email-keyword':'the-input-element','entity-boxDR':'named-character-references','ascii-digits':'common-microsyntaxes','entity-boxDL':'named-character-references','entity-Utilde':'named-character-references','client-identification':'system-state-and-capabilities','attr-input-type-color-keyword':'the-input-element','dom-media-load':'media-elements','entity-rsaquo':'named-character-references','entity-boxDr':'named-character-references','toolbars':'the-menu-element','entity-boxDl':'named-character-references','entity-lsquo':'named-character-references','entity-lvertneqq':'named-character-references','explicit-eof-character':'parsing','concept-input-step':'common-input-element-attributes','entity-kcedil':'named-character-references','entity-supedot':'name-character-references','mediacontroller':'media-elements','entity-sect':'named-character-references','dom-object-caller':'the-object-element','dom-window-status':'browsers','xpath-1.0-processors':'interactions-with-xpath-and-xslt','entity-CircleDot':'named-character-references','text-track-loaded':'media-elements','suffering-from-being-too-long':'constraints','dom-name':'browsers','entity-NotPrecedesSlantEqual':'named-character-references','entity-Nopf':'named-character-references','rank':'the-h1-h2-h3-h4-h5-and-h6-elements','network-states':'media-elements','entity-mu':'named-character-references','the-footer-element':'the-footer-element','entity-mp':'named-character-references','dom-document-bgcolor':'obsolete','link-type-help':'links','list-of-scripts-that-will-execute-in-order-as-soon-as-possible':'the-script-element','refsMFREL':'references','have-range-limitations':'common-input-element-attributes','security-3':'history','entity-ltquest':'named-character-references','documenttype':'infrastructure','enity-uscr':'named-character-references','urlmismatcherror':'infrastructure','attr-script-charset':'the-script-element','dom-media-have_nothing':'media-elements','fragment-escaped':'urls','entity-subplus':'named-character-references','dom-document-plugins':'dom','entity-jscr':'named-character-references','entity-tscy':'named-character-references','entity-tscr':'named-character-references','scriptTagXML':'the-xhtml-syntax','classes':'global-attributes','the-multiple-attribute':'common-input-element-attributes','dom-mediaerror-code':'media-elements','form-element-pointer':'parsing','concept-form-association':'association-of-controls-and-forms','syntax-ambiguous-ampersand':'syntax','entity-para':'named-character-references','entity-NotCongruent':'named-character-references','datatransferitemlist':'dnd','entity-part':'named-character-references','attr-ol-type-keyword-upper-alpha':'the-ol-element','dom-tdth-width':'obsolete','entity-PrecedesEqual':'named-character-references','event-drag':'dnd','refsWIN31J':'refernces','guidance-for-conformance-checkers':'the-img-element','the-title-element':'the-title-element','entity-swarhk':'named-character-references','entity-mcomma':'named-character-references','entity-tcy':'named-character-references','entity-niv':'named-character-references','entity-nis':'named-character-references','script-processing-style-delayed':'the-script-element','the-mark-element':'the-mark-element','entity-ldquor':'named-character-references','terminology-0':'urls','entity-geq':'named-character-references','entity-ges':'named-character-references','concept-datetime-local':'common-microsyntaxes','pseudo-classes':'links','colors':'common-microsyntaxes','entity-gel':'named-character-references','handler-window-onload':'webappapis','htmloptionscollection':'common-dom-interfaces','entity-nprcue':'named-character-references','dom-media-crossorigin':'media-elements','htmlstyleelement':'the-style-element','dom-title-text':'the-title-element','the-sub-and-sup-elements':'the-sub-and-sup-elements','parsing-maininselectintable':'tree-construction','attr-dropzone-link':'dnd','ix-handler-onkeypress':'section-index','dom-option-form':'the-option-element','entity-gescc':'named-character-references','refsFILEAPI':'references','attr-iframe-srcdoc':'the-iframe-element','entity-YAcy':'named-character-references','entity-angrt':'named-character-references','the-h4-element':'the-h1-h2-h3-h4-h5-and-h6-elements','entity-sqsube':'named-character-references','dom-media-mediagroup':'media-elements','dom-hr-width':'obsolete','entity-Amacr':'named-character-references','attr-tdth-headers':'attributes-common-to-td-and-th-elements','entity-leftthreetimes':'named-character-references','active-document':'browsers','entity-centerdot':'named-character-references','entity-circeq':'named-character-references','entity-spades':'named-character-references','refsORIGIN':'references','attr-button-type-button':'the-button-element','attr-head-profile':'obsolete','entity-Dstrok':'named-character-references','entity-ldrushar':'named-character-refeences','attr-tdth-charoff':'obsolete','refsCP51932':'references','entity-bottom':'named-character-references','entity-diamond':'named-character-references','base64-table':'webappapis','mediaerror':'media-elements','concept-section':'headings-and-sections','cdata-section-state':'tokenization','concept-appcache-explicit':'offline','current-table':'parsing','attr-area-shape-rect':'the-area-element','entity-trianglelefteq':'named-character-references','entity-sqsupset':'named-character-references','syntax-errors':'introduction','parse-a-yearless-date-component':'common-microsyntaxes','entity-SquareSuperset':'named-character-references','element-dfn-attributes':'element-definitions','attr-keygen-challenge':'the-keygen-element','category-reset':'forms','attr-th-scope-col':'the-th-element','n':'the-table-element','entity-Nu':'named-character-references','attr-fs-method-get':'attributes-common-to-form-controls','bogus-comment-state':'tokenization','entity-Zopf':'named-character-references','document-base-url':'urls,'entity-Sup':'named-character-references','dom-area-host':'the-area-element','rules-for-parsing-integers':'common-microsyntaxes','attr-fs-formmethod':'attributes-common-to-form-controls','entity-Sum':'named-character-references','entity-Sub':'named-character-references','xml-mime-type':'infrastructure','attr-img-hspace':'obsolete','ix-handler-window-onpopstate':'section-index','handler-onended':'webappapis','entity-hArr':'named-character-references','attr-translate':'global-attributes','using-the-option-element-to-define-a-command':'commands','parse-a-time-zone-offset-string':'common-microsyntaxes','a-link-or-button-containing-nothing-but-the-image':'the-img-element','object-type-detection':'the-object-element','dialog-arguments-origin':'user-prompts','refsPDF':'references','entity-angmsd':'named-character-references','has-a-border':'rendering','htmlkeygenelement':'the-keygen-element','text-track-cue-start-alignment':'media-elements','entity-larrtl':'named-character-references','dom-textarea-input-selectiodirection':'textFieldSelection','concept-yearless-date':'common-microsyntaxes','entity-Xopf':'named-character-references','statically-validate-the-constraints':'constraints','entity-succneqq':'named-character-references','dom-script-async':'the-script-element','refsEDITING':'references','entity-mscr':'named-character-references','attr-input-type-time-keyword':'the-input-element','entity-reg-legacy':'named-character-references','entity-Ncedil':'named-character-references','entity-nvle':'named-character-references','entity-efr':'named-character-references','entity-Topf':'named-character-references','entity-nvlt':'named-character-references','category-label':'forms','scriptingLanguages':'the-script-element','concept-timezone':'common-microsyntaxes','entity-exist':'named-character-references','script-data-escaped-end-tag-open-state':'tokenization','foster-parent':'tree-construction','entity-VerticalSeparator':'named-character-references','entity-rangd':'named-character-references','entity-range':'named-characte-references','magic-border-selector':'rendering','entity-ThickSpace':'named-character-references','entity-real':'named-character-references','entity-eparsl':'named-character-references','entity-InvisibleTimes':'named-character-references','the-ins-element':'the-ins-element','attr-embed-type':'the-embed-element','insert-an-html-element':'tree-construction','best-representation-of-the-number-as-a-floating-point-number':'common-microsyntaxes','entity-iacute-legacy':'named-character-references','dom-windowtimers-clearinterval':'timers','event-dragenter':'dnd','configuring-a-form-to-communicate-with-a-server':'forms','support-the-scripting-language':'the-script-element','entity-leftrightarrows':'named-character-references','entity-Cup':'named-character-references','dom-iframe-align':'obsolete','attr-tdth-char':'obsolete','acknowledge-self-closing-flag':'tokenization','refsATOM':'references','entity-Sscr':'named-character-references','dom-mediacontroller-seekable':'media-elements','attr-button-type-submit':'the-btton-element','concept-document-salvageable':'history','isindex-0':'obsolete','cdata-sections':'syntax','event-media-play':'media-elements','refsOGGROLE':'references','entity-uplus':'named-character-references','attr':'infrastructure','end-tag-open-state':'tokenization','entity-deg-legacy':'named-character-references','rawtext-end-tag-name-state':'tokenization','entity-sqcaps':'named-character-references','refsSVG':'references','entity-infin':'named-character-references','entity-DoubleVerticalBar':'named-character-references','concept-spellcheck-default-false':'editing-apis','method-context':'timers','entity-sc':'named-character-references','application-x-www-form-urlencoded-encoding-algorithm':'form-submission','entity-scaron':'named-character-references','entity-longmapsto':'named-character-references','entity-Uuml':'named-character-references','current-document-readiness':'dom','entity-Uacute':'named-character-references','node':'infrastructure','entity-AMP-legacy':'named-character-references','entity-rsr':'named-character-references','foreign-elements':'syntax','webappapis':'webappapis','entity-swarr':'named-character-references','handler-appcache-onupdateready':'offline','meta-keywords':'the-meta-element','scriptEndTag':'tree-construction','entity-Lopf':'named-character-references','track-label':'the-track-element','entity-Yfr':'named-character-references','navigating-nested-browsing-contexts-in-the-dom':'browsers','timeline-offset':'media-elements','slaved-media-elements':'media-elements','entity-digamma':'named-character-references','entity-searhk':'named-character-references','dom-applet-height':'obsolete','entity-Eacute-legacy':'named-character-references','handler-texttrack-oncuechange':'media-elements','syntaxerror':'infrastructure','preferred-style-sheet-set':'infrastructure','entity-iuml':'named-character-references','entity-tau':'named-character-references','dom-table-createtbody':'the-table-element','entity-ddagger':'named-character-references','normalized-timeranges-object':'media-elements','etity-triangleright':'named-character-references','entity-Jsercy':'named-character-references','attr-hyperlink-href':'links','canvas-blob-serialization-task-source':'the-canvas-element','list-of-code-entry-points':'webappapis','obsolete':'obsolete','entity-blacktriangle':'named-character-references','clear-the-stack-back-to-a-table-context':'tree-construction','concept-column-group':'attributes-common-to-td-and-th-elements','attr-iframe-sandbox-allow-same-origin':'the-iframe-element','entity-SHcy':'named-character-references','entity-RightUpTeeVector':'named-character-references','global-dates-and-times':'common-microsyntaxes','entity-agrave':'named-character-references','entity-rfloor':'named-character-references','entity-boxUr':'named-character-references','entity-setmn':'named-character-references','entity-angmsdah':'named-character-references','entity-forall':'named-character-references','entity-angmsdab':'named-character-references','entity-angmsdac':'named-character-references','resource-metadata-managment':'dom','entity-angmsdaa':'named-character-references','entity-angmsdaf':'named-character-references','entity-angmsdag':'named-character-references','entity-angmsdad':'named-character-references','entity-angmsdae':'named-character-references','link-type-license':'links','autoplaying-flag':'media-elements','the-rules-for-choosing-a-browsing-context-given-a-browsing-context-name':'browsers','handler-oncuechange':'webappapis','syntax-tag-name':'syntax','style-default-media':'the-style-element','an-entry-with-persisted-user-state':'history','entity-vellip':'named-character-references','entity-subE':'named-character-references','entity-gamma':'named-character-references','attr-area-shape-keyword-polygon':'the-area-element','image-maps-0':'rendering','dom-prompt':'user-prompts','report-the-controller-state':'media-elements','entity-sube':'named-character-references','dom-print':'user-prompts','obtain-the-storage-mutex':'webappapis','entity-nvgt':'named-character-references','entity-Cedilla':'named-character-rferences','entity-lesseqqgtr':'named-character-references','attr-input-readonly':'common-input-element-attributes','character-reference-in-attribute-value-state':'tokenization','webvtt-cue-text-rendering-rules':'infrastructure','dom-a-rev':'obsolete','entity-TripleDot':'named-character-references','dom-a-rel':'the-a-element','entity-gcy':'named-character-references','the-datatransferitemlist-interface':'dnd','syntax-attribute-value':'syntax','entity-Rsh':'named-character-references','text-track-not-loaded':'media-elements','entity-omega':'named-character-references','table-model':'attributes-common-to-td-and-th-elements','entity-lpar':'named-character-references','attr-marquee-direction-left':'obsolete','the-option-element':'the-option-element','internal-algorithm-for-scanning-and-assigning-header-cells':'attributes-common-to-td-and-th-elements','entity-Leftrightarrow':'named-character-references','attr-a-rev':'obsolete','htmlareaelement':'the-area-element','entity-Zcy':'named-character-references','entity-rofsurf':'named-character-references','dialogs-implemented-using-separate-documents':'user-prompts','entity-LT':'named-character-references','parser-appcache':'tree-construction','url-query':'urls','appcacheevents':'offline','scripts-that-modify-the-page-as-it-is-being-parsed':'the-end','htmltableelement':'the-table-element','attr-select-multiple':'the-select-element','htmlmarqueeelement':'obsolete','entity-Ll':'named-character-references','the-span-element':'the-span-element','entity-Lt':'named-character-references','entity-GreaterLess':'named-character-references','entity-scirc':'named-character-references','entity-lsime':'named-character-references','entity-lsimg':'named-character-references','text-track-cue-pause-on-exit-flag':'media-elements','a-quick-introduction-to-html':'introduction','entity-ntilde':'named-character-references','rcdata-state':'tokenization','ix-handler-onabort':'section-index','attr-input-autocomplete':'common-input-element-attributes','closing-the-input-stream':'dynamic-markup-insrtion','text-track-cue-order':'media-elements','concept-appcache-master':'offline','conversations':'links','the-h5-element':'the-h1-h2-h3-h4-h5-and-h6-elements','entity-HumpEqual':'named-character-references','concept-http-equivalent-codes':'urls','uievent':'infrastructure','entity-lrm':'named-character-references','entity-wfr':'named-character-references','entity-Integral':'named-character-references','other-metadata-names':'the-meta-element','concept-progress-maximum':'the-progress-element','entity-robrk':'named-character-references','entity-UpEquilibrium':'named-character-references','entity-vartriangleleft':'named-character-references','best-practices-for-implementors-of-media-elements':'media-elements','attr-command-radiogroup':'the-command-element','a-browsing-context-is-discarded':'browsers','entity-oint':'named-character-references','htmlunknownelement':'elements','entity-NotSubsetEqual':'named-character-references','concept-appcache-fallback-ns':'offline','the-size-attribute':'common-input-element-ttributes','entity-Downarrow':'named-character-references','entity-bnot':'named-character-references','concept-error-nothandled':'webappapis','entity-sfrown':'named-character-references','attr-hr-width':'obsolete','image-maps':'image-maps','origin':'origin-0','handler-marquee-onbounce':'obsolete','entity-Uarrocir':'named-character-references','entity-Uring':'named-character-references','entity-race':'named-character-references','determine-the-value-of-a-named-property':'infrastructure','concept-option-index':'the-option-element','entity-dtri':'named-character-references','attr-media-mediagroup':'media-elements','entity-ncongdot':'named-character-references','doctype-legacy-string':'syntax','the-list-of-active-formatting-elements':'parsing','error-codes':'media-elements','dom-option-tvds':'the-option-element','dom-document-applets':'obsolete','entity-zscr':'named-character-references','entity-thetav':'named-character-references','ix-handler-onvolumechange':'section-index','dom-document-close':'dynamic-markupinsertion','the-figure-element':'the-figure-element','entity-lstrok':'named-character-references','attr-track-kind-chapters':'the-track-element','entity-Uparrow':'named-character-references','valid-non-empty-url-potentially-surrounded-by-spaces':'urls','entity-curvearrowright':'named-character-references','dom-object-hspace':'obsolete','handler-onemptied':'webappapis','common-input-element-attributes':'common-input-element-attributes','dom-option-index':'the-option-element','entity-realine':'named-character-references','dates-and-times':'common-microsyntaxes','refsRFC5280':'references','using-the-accesskey-attribute-on-a-label-element-to-define-a-command':'commands','entity-LeftDoubleBracket':'named-character-references','attr-link-sizes':'links','refsGRAPHICS':'references','dom-table-deleterow':'the-table-element','dom-object-code':'obsolete','entity-wreath':'named-character-references','dom-form-name':'the-form-element','entity-strns':'named-character-references','attr-th-scope-row':'the-th-element','hander-ondrop':'webappapis','entity-gscr':'named-character-references','list-of-active-formatting-elements':'parsing','common-pitfalls-to-avoid-when-using-the-scripting-apis':'introduction','event-pageshow':'history','dom-mediacontroller-pause':'media-elements','entity-ltrif':'named-character-references','entity-ltrie':'named-character-references','read-html':'history','processinginstruction':'infrastructure','entity-NoBreak':'named-character-references','set-of-scripts-that-will-execute-as-soon-as-possible':'the-script-element','entity-Oacute-legacy':'named-character-references','concept-option-selectedness':'the-option-element','misinterpreted-for-compatibility':'parsing','spacer':'obsolete','entity-congdot':'named-character-references','dom-area-hreflang':'the-area-element','entity-Kfr':'named-character-references','custom-validity-error-message':'constraints','dom-length':'browsers','entity-Tfr':'named-character-references','the-min-and-max-attributes':'common-input-element-attributes','next-input-character:'parsing','dom-mediacontroller':'media-elements','navigatorcontentutils':'system-state-and-capabilities','entity-gtcc':'named-character-references','nobr':'obsolete','concept-spellcheck-default':'editing-apis','doctype-system-identifier-double-quoted-state':'tokenization','sce-not-copy':'webappapis','webvtt-cue-text-parsing-rules':'infrastructure','entity-eqslantgtr':'named-character-references','dom-meta-content':'the-meta-element','dom-node-localname':'infrastructure','concept-input-min-default':'common-input-element-attributes','dom-object-data':'the-object-element','entity-cupor':'named-character-references','concept-time':'common-microsyntaxes','entity-Lscr':'named-character-references','the-var-element':'the-var-element','entity-plusb':'named-character-references','entity-pluse':'named-character-references','rules-for-parsing-a-list-of-dimensions':'common-microsyntaxes','the-summary-element':'the-summary-element','refsGREGORIAN':'references','the-header-element':'the-header-element','the-dropzone-attibute':'dnd','entity-vnsub':'named-character-references','entity-RightDownTeeVector':'named-character-references','dom-media-videotracks':'media-elements','entity-larrb':'named-character-references','dom-domstringmap-removeitem':'common-dom-interfaces','entity-vnsup':'named-character-references','dom-appcache-updateready':'offline','entity-num':'named-character-references','dom-area-href':'the-area-element','entity-gopf':'named-character-references','concept-appcache-selection':'offline','entity-macr':'named-character-references','entity-bigcap':'named-character-references','valid-time-zone-offset-string':'common-microsyntaxes','entity-ensp':'named-character-references','authoring':'image-maps','dom-output-type':'the-output-element','entity-nltri':'named-character-references','rendered-legend':'rendering','entity-nLtv':'named-character-references','range-state-type-range':'states-of-the-type-attribute','attr-iframe-name':'the-iframe-element','entity-harrw':'named-character-references','dom-datatransferitemlst-clear':'dnd','sandboxLinks':'history','entity-lacute':'named-character-references','dom-fe-autofocus':'attributes-common-to-form-controls','dom-document-getelementbyid':'infrastructure','dom-input-accept':'the-input-element','attr-media-loop':'media-elements','dom-fe-name':'attributes-common-to-form-controls','entity-verbar':'named-character-references','anonymous-command':'commands','doctype-state':'tokenization','synchronous-section':'webappapis','seamlessLinks':'history','entity-straightphi':'named-character-references','prefix-match':'infrastructure','entity-LessSlantEqual':'named-character-references','entity-aopf':'named-character-references','entity-bsemi':'named-character-references','text-track-cue-end-time':'media-elements','entity-Backslash':'named-character-references','concept-input-value-string-number':'the-input-element','some-sample-manifests':'offline','entity-KHcy':'named-character-references','tree-construction':'tree-construction','unclosed-formatting-elements':'the-end','provides-a-pint-source':'infrastructure','the-dt-element':'the-dt-element','events':'webappapis','entity-thorn':'named-character-references','the-window-object':'browsers','entity-rmoustache':'named-character-references','attr-textarea-dirname':'the-textarea-element','concept-input-step-scale':'common-input-element-attributes','dom-link-hreflang':'the-link-element','palpable-content':'content-models','entity-precneqq':'named-character-references','drag-data-store-item-list':'dnd','entity-circlearrowleft':'named-character-references','html-namespace-0':'namespaces','entity-gap':'named-character-references','dom-form-autocomplete':'the-form-element','entity-backcong':'named-character-references','dom-document-readystate':'dom','refsRFC2046':'references','nodelist':'infrastructure','entity-cuepr':'named-character-references','ready-states':'media-elements','current-target-element':'dnd','entity-LeftUpVector':'named-character-references','dom-a-shape':'obsolete','entity-leftarrow':'named-character-references','dom-event-isrusted':'infrastructure','entity-nsubseteqq':'named-character-references','dom-textarea-input-selectionend':'textFieldSelection','create-a-document-object':'history','entity-shy-legacy':'named-character-references','dom-window-blur':'editing','the-del-element':'the-del-element','refsWEBWORKERS':'references','entity-subsup':'named-character-references','concept-output-defaultvalue':'the-output-element','isindex':'tree-construction','entity-vArr':'named-character-references','entity-Rrightarrow':'named-character-references','concept-task':'webappapis','entity-subsub':'named-character-references','entity-Re':'named-character-references','entity-Equal':'named-character-references','return-value':'user-prompts','list-of-active-timers':'timers','dom-input-indeterminate':'the-input-element','attr-table-summary':'obsolete','entity-gtreqless':'named-character-references','focusable':'editing','override-url':'history','concept-appcache-manifest-network':'offline','text-track-cue-identifier':'media-elements','entity-SuareIntersection':'named-character-references','entity-DoubleLongLeftRightArrow':'named-character-references','ordered-set-of-unique-space-separated-tokens':'common-microsyntaxes','attr-object-code':'obsolete','concept-appcache-obsolete':'offline','concept-row':'attributes-common-to-td-and-th-elements','doctype-public-identifier-single-quoted-state':'tokenization','non-interactive':'infrastructure','entity-zfr':'named-character-references','entity-nLeftrightarrow':'named-character-references','dom-trees':'infrastructure','entity-blacksquare':'named-character-references','entity-Lstrok':'named-character-references','cssstyledeclaration':'infrastructure','temporary-buffer':'tokenization','attr-link-type':'the-link-element','between-doctype-public-and-system-identifiers-state':'tokenization','enabling-and-disabling-scripting':'webappapis','clear-the-stack-back-to-a-table-body-context':'tree-construction','dom-texttrackcuelist-getcuebyid':'media-elements','refsJPEG':'references','concept-bc-script':'webappapis''inline-documentation-for-external-scripts':'the-script-element','toolbar-state':'the-menu-element','increment-the-marquee-current-loop-index':'obsolete','attr-crossorigin-anonymous':'urls','htmlimageelement':'the-img-element','attr-option-value':'the-option-element','entity-star':'named-character-references','dom-base-href':'the-base-element','dom-showmodaldialog':'user-prompts','trackeventinit':'media-elements','entity-Ecy':'named-character-references','handler-mediacontroller-onplaying':'media-elements','the-windowproxy-object':'browsers','popstateevent':'history','entity-between':'named-character-references','attr-iframe-scrolling':'obsolete','link-type-noreferrer':'links','entity-eacute':'named-character-references','entity-operp':'named-character-references','entity-nang':'named-character-references','entity-int':'named-character-references','rules-for-parsing-simple-color-values':'common-microsyntaxes','entity-times':'named-character-references','entity-lbrkslu':'named-character-references','script-dta-double-escape-end-state':'tokenization','concept-id':'infrastructure','dom-object-usemap':'the-object-element','entity-lbrksld':'named-character-references','entity-Bscr':'named-character-references','dom-node-ownerdocument':'infrastructure','attr-track-label':'the-track-element','entity-NegativeMediumSpace':'named-character-references','entity-Jcy':'named-character-references','dom-outerhtml':'infrastructure','the-element-pointers':'parsing','attr-body-marginheight':'obsolete','browsing-context-container':'browsers','refsRFC1922':'references','dom-cva-validationmessage':'constraints','killing-scripts':'webappapis','entity-bullet':'named-character-references','entity-horbar':'named-character-references','guidance-for-markup-generators':'the-img-element','dom-document-location':'history','entity-oscr':'named-character-references','the-ruby-element':'the-ruby-element','concept-navigate-mature':'history','entity-SuchThat':'named-character-references','entity-toea':'named-character-references','focus':'editig','entity-image':'named-character-references','dom-pagetransitionevent-persisted':'history','entity-ang':'named-character-references','entity-and':'named-character-references','handler-window-onoffline':'webappapis','concept-fs-method':'attributes-common-to-form-controls','entity-boxplus':'named-character-references','entity-zdot':'named-character-references','official-playback-position':'media-elements','entity-wr':'named-character-references','entity-Vopf':'named-character-references','entity-wp':'named-character-references','handler-ondurationchange':'webappapis','entity-UnderParenthesis':'named-character-references','dom-iframe-srcdoc':'the-iframe-element','entity-duhar':'named-character-references','entity-gcirc':'named-character-references','concept-fs-target':'attributes-common-to-form-controls','media-resource-specific-text-track':'media-elements','entity-emptyset':'named-character-references','dom-a-name':'obsolete','entity-scedil':'named-character-references','webvtt-file-using-cue-text':'infrastucture','entity-supmult':'named-character-references','entity-dbkarow':'named-character-references','entity-lescc':'named-character-references','sandboxPluginEmbed':'the-embed-element','attr-script-defer':'the-script-element','entity-leqq':'named-character-references','dom-mediacontroller-played':'media-elements','url-encoded-form-data':'form-submission','attr-ol-compact':'obsolete','entity-lfisht':'named-character-references','attr-tbody-align':'obsolete','entity-Otimes':'named-character-references','entity-Tscr':'named-character-references','entity-varkappa':'named-character-references','concept-option-disabled':'the-option-element','entity-ltimes':'named-character-references','entity-curren-legacy':'named-character-references','time-state-type-time':'states-of-the-type-attribute','entity-lessgtr':'named-character-references','the-track-element':'the-track-element','entity-NJcy':'named-character-references','entity-lsaquo':'named-character-references','entity-jsercy':'named-character-references','entity-spdot':'named-character-references','suffering-from-a-step-mismatch':'constraints','dom-button-type':'the-button-element','element-dfn-content-model':'element-definitions','the-i-element':'the-i-element','the-embed-element':'the-embed-element','entity-nearrow':'named-character-references','entity-elsdot':'named-character-references','refsCSSUI':'references','entity-RightTriangleEqual':'named-character-references','dom-keygen-challenge':'the-keygen-element','handler-appcache-onprogress':'offline','dom-videotracklist-gettrackbyid':'media-elements','entity-nshortparallel':'named-character-references','entity-simeq':'named-character-references','entity-Lleftarrow':'named-character-references','writing-cache-manifests':'offline','sandboxPluginNavigate':'history','abort-a-parser':'the-end','has-an-element-in-button-scope':'parsing','frameset-ok-flag':'parsing','dom-location-pathname':'history','dom-media-network_loading':'media-elements','unicode-code-point':'infrastructure','valid-media-query':'common-microsyntaxs','entity-Lacute':'named-character-references','earliest-possible-position-when-the-script-started':'media-elements','concept-form-reset':'form-submission','dom-document-anchors':'obsolete','entity-cemptyv':'named-character-references','entity-caron':'named-character-references','entity-nbsp-legacy':'named-character-references','color-spaces-and-color-correction':'the-canvas-element','dom-popstateevent-state':'history','entity-Verbar':'named-character-references','selector-checked':'links','entity-Zacute':'named-character-references','dom-marquee-hspace':'obsolete','entity-NestedLessLess':'named-character-references','dom-media-networkstate':'media-elements','htmlmodelement':'attributes-common-to-ins-and-del-elements','entity-rationals':'named-character-references','pagetransitioneventinit':'history','entity-xwedge':'named-character-references','edits-and-lists':'edits-and-lists','attr-input-type-date-keyword':'the-input-element','windowproxy':'browsers','handler-onclick':'webappapis','the-nav-element':'th-nav-element','entity-ugrave':'named-character-references','entity-Dfr':'named-character-references','selector-optional':'links','dom-media-autoplay':'media-elements','entity-ntgl':'named-character-references','dom-link-rel':'the-link-element','event-mediacontroller-timeupdate':'media-elements','script-s-url-character-encoding':'webappapis','dom-link-rev':'obsolete','entity-softcy':'named-character-references','handler-onkeyup':'webappapis','dom-texttrack-cues':'media-elements','editing-hosts':'rendering','dom-form-nameditem':'the-form-element','the-select-element':'the-select-element','dom-input-value':'common-input-element-apis','entity-Product':'named-character-references','attr-option-name':'obsolete','attr-blockquote-cite':'the-blockquote-element','security-window':'browsers','handler-onsuspend':'webappapis','dom-media-buffered':'media-elements','uppercase-ascii-letters':'common-microsyntaxes','entity-blk12':'named-character-references','attr-lang':'global-attributes','entity-blk14':'named-character-reerences','entity-Rightarrow':'named-character-references','entity-simrarr':'named-character-references','other-parsing-state-flags':'parsing','entity-Pr':'named-character-references','security-risks-in-the-drag-and-drop-model':'dnd','entity-apos':'named-character-references','entity-Pi':'named-character-references','entity-notinva':'named-character-references','entity-notinvb':'named-character-references','entity-notinvc':'named-character-references','entity-hscr':'named-character-references','using-the-accesskey-attribute-on-a-legend-element-to-define-a-command':'commands','entity-heartsuit':'named-character-references','implementing-the-server-side-processing-for-a-form':'forms','entity-sharp':'named-character-references','attr-a-name':'obsolete','entity-dfr':'named-character-references','events-and-the-window-object':'webappapis','script':'the-script-element','entity-prnE':'named-character-references','entity-oelig':'named-character-references','invalidcharactererror':'infrastructure','entity-Subset':'naed-character-references','dragevent':'dnd','entity-uuml-legacy':'named-character-references','eventtarget':'infrastructure','a-purely-decorative-image-that-doesn-t-add-any-information':'the-img-element','transparent-content-models':'content-models','entity-precnsim':'named-character-references','attribute-value-unquoted-state':'tokenization','dndevents':'dnd','url-host':'urls','before-attribute-name-state':'tokenization','entity-Ccirc':'named-character-references','command-api':'commands','entity-orderof':'named-character-references','entity-ell':'named-character-references','ordinal-value':'the-li-element','warnings-for-obsolete-but-conforming-features':'obsolete','entity-els':'named-character-references','dom-mediacontroller-currenttime':'media-elements','attr-area-shape-keyword-rect':'the-area-element','valid-url-potentially-surrounded-by-spaces':'urls','handler-texttracklist-onaddtrack':'media-elements','dom-datatransfer-dropeffect':'dnd','entity-rfisht':'named-character-references','multipart-form-databoundary-string':'form-submission','the-before-head-insertion-mode':'tree-construction','windows':'browsers','command-facet-label':'commands','attributes-for-form-submission':'attributes-common-to-form-controls','entity-nsucc':'named-character-references','entity-prnap':'named-character-references','change-the-encoding':'parsing','font':'obsolete','attr-option-disabled':'the-option-element','entity-parallel':'named-character-references','dom-frames':'browsers','entry-update':'history','entity-RightTriangle':'named-character-references','webvtt-cue-text-dom-construction-rules':'infrastructure','entity-puncsp':'named-character-references','entity-sdotb':'named-character-references','entity-sdote':'named-character-references','entity-conint':'named-character-references','interactive-elements':'interactive-elements','entity-Gamma':'named-character-references','ix-handler-onloadeddata':'section-index','attr-input-type-tel-keyword':'the-input-element','parsing-main-intabletext':'tree-construction','association-ofcontrols-and-forms':'association-of-controls-and-forms','generic-rcdata-element-parsing-algorithm':'tree-construction','refsSHIFTJIS':'references','the-label-element':'the-label-element','active-parser':'dom','autofocusing-a-form-control':'attributes-common-to-form-controls','entity-oline':'named-character-references','concept-input-checked-dirty-flag':'the-input-element','entity-NotDoubleVerticalBar':'named-character-references','attr-hyperlink-rel':'links','entity-Pfr':'named-character-references','entity-Mscr':'named-character-references','state-object':'history','effectAllowed-initialization':'dnd','attr-input-type-submit-keyword':'the-input-element','entity-harrcir':'named-character-references','script-data-less-than-sign-state':'tokenization','event-media-ended':'media-elements','close-the-cell':'tree-construction','entity-Otilde':'named-character-references','datacloneerror':'infrastructure','dom-navigator':'system-state-and-capabilities','attr-body-vlink':'obsolete','handler-ondragleave':'webappapis,'table-aria-weak':'wai-aria','entity-vangrt':'named-character-references','ix-handler-window-onbeforeprint':'section-index','entity-Uscr':'named-character-references','entity-zcaron':'named-character-references','tag-name-state':'tokenization','entity-yfr':'named-character-references','entity-TildeFullEqual':'named-character-references','current-playback-position':'media-elements','dom-media-play':'media-elements','entity-upharpoonright':'named-character-references','attr-object-codebase':'obsolete','dom-uda-port':'urls','entity-rightthreetimes':'named-character-references','syntax-doctype':'syntax','making-entire-documents-editable:-the-designmode-idl-attribute':'editing','entity-lesg':'named-character-references','entity-Hcirc':'named-character-references','handler-window-onpagehide':'webappapis','entity-npart':'named-character-references','entity-alefsym':'named-character-references','webvtt-file':'infrastructure','following-hyperlinks-0':'links','attr-table-width':'obsolete','entity-raquo':'named-charater-references','concept-meter-actual':'the-meter-element','active-range':'editing-apis','dom-option-label':'the-option-element','ancestor-browsing-context':'browsers','concept-meter-minimum':'the-meter-element','dom-ul-type':'obsolete','attr-fs-formtarget':'attributes-common-to-form-controls','entity-rightarrowtail':'named-character-references','entity-topfork':'named-character-references','attr-iframe-sandbox-allow-top-navigation':'the-iframe-element','entity-RightVectorBar':'named-character-references','entity-Bernoullis':'named-character-references','dom-command-ro-commanddisabled':'commands','attr-dropzone-move':'dnd','dom-location-protocol':'history','text-track-label':'media-elements','compatibility-caseless':'infrastructure','entity-dotsquare':'named-character-references','tables':'rendering','entity-simgE':'named-character-references','entity-kopf':'named-character-references','cors-enabled-fetch':'urls','attr-meter-optimum':'the-meter-element','the-ul-element':'the-ul-element','entity-ngtr':'namedcharacter-references','event-media-abort':'media-elements','attr-hr-size':'obsolete','the-sup-element':'the-sub-and-sup-elements','entity-minus':'named-character-references','entity-checkmark':'named-character-references','entity-cire':'named-character-references','entity-circ':'named-character-references','attr-command-icon':'the-command-element','dom-param-name':'the-param-element','concept-appcache-upgrade':'offline','entity-smte':'named-character-references','entity-cirE':'named-character-references','ignore':'infrastructure','entity-iiiint':'named-character-references','attr-source-media':'the-source-element','has-an-element-in-table-scope':'parsing','entity-lsquor':'named-character-references','strictly-split-a-string':'common-microsyntaxes','entity-comma':'named-character-references','entity-RightTee':'named-character-references','entity-acirc':'named-character-references','selector-disabled':'links','maps-to-the-dimension-property':'rendering','entity-ucirc':'named-character-references','entity-nexit':'named-character-references','the-directionality':'global-attributes','the-list-attribute':'common-input-element-attributes','entity-rceil':'named-character-references','dom-location-search':'history','event-dragleave':'dnd','refsPOLYGLOT':'references','entity-DownLeftTeeVector':'named-character-references','queue-a-task':'webappapis','entity-Iuml':'named-character-references','entity-eopf':'named-character-references','entity-intcal':'named-character-references','parsing-main-inhead':'tree-construction','dom-window-personalbar':'browsers','entity-cap':'named-character-references','ix-handler-oncontextmenu':'section-index','entity-ShortUpArrow':'named-character-references','dom-marquee-start':'obsolete','concept-link-type-sniffing':'the-link-element','entity-rightarrow':'named-character-references','perform-a-microtask-checkpoint':'webappapis','sections':'sections','dom-navigator-registerprotocolhandler':'system-state-and-capabilities','entity-blk34':'named-character-references','dom-textarea-input-selec':'textFieldSelection','naming-form-controls':'attributes-common-to-form-controls','entity-zacute':'named-character-references','refsMAILTO':'references','constraint-validation':'constraints','reload-override-buffer':'dom','dom-table-cellpadding':'obsolete','entity-vfr':'named-character-references','current-entry-of-the-joint-session-history':'history','entity-DoubleUpArrow':'named-character-references','force-async':'the-script-element','entity-UpTee':'named-character-references','entity-micro-legacy':'named-character-references','attribute-value-single-quoted-state':'tokenization','dom-timeranges-start':'media-elements','refsISO885911':'references','dom-fs-formenctype':'attributes-common-to-form-controls','attr-col-char':'obsolete','attr-th-scope-auto':'the-th-element','cors-cross-origin':'urls','entity-UnionPlus':'named-character-references','attr-colgroup-span':'the-colgroup-element','mediaevents':'media-elements','dom-frameset-cols':'obsolete','termination-nesting-level':'history','plain-text-form-data:'form-submission','entity-lnsim':'named-character-references','source-default-media':'the-source-element','an-introduction-to-error-handling-and-strange-cases-in-the-parser':'the-end','entity-LessFullEqual':'named-character-references','event-media-volumechange':'media-elements','entity-yicy':'named-character-references','submit-body':'form-submission','dom-table-cellspacing':'obsolete','entity-eng':'named-character-references','handler-ondragstart':'webappapis','dom-map-images':'the-map-element','dom-texttrack-kind-chapters':'media-elements','entity-LeftTee':'named-character-references','dom-mediacontroller-play':'media-elements','dom-object-vspace':'obsolete','syntax-newlines':'syntax','attr-iframe-seamless':'the-iframe-element','entity-supseteqq':'named-character-references','multipart-form-data':'form-submission','htmltableheadercellelement':'the-th-element','entity-LT-legacy':'named-character-references','fakepath-orly':'common-input-element-apis','other-elements-attributes-and-apis':'obsolete','entit-ecirc-legacy':'named-character-references','handler-onscroll':'webappapis','ix-handler-onloadstart':'section-index','entity-odash':'named-character-references','entity-bsolhsub':'named-character-references','entity-duarr':'named-character-references','entity-sacute':'named-character-references','dom-font-face':'obsolete','entity-igrave-legacy':'named-character-references','dom-script-text':'the-script-element','insert-a-character':'tree-construction','the-hgroup-element':'the-hgroup-element','events-0':'section-index','entity-Acy':'named-character-references','entity-OElig':'named-character-references','entity-gtrapprox':'named-character-references','dom-input-step':'the-input-element','entity-npre':'named-character-references','dom-uda-host':'urls','iframe-content-model':'the-iframe-element','img-good':'the-img-element','entity-ContourIntegral':'named-character-references','entity-ccaron':'named-character-references','a-key-part-of-the-content':'the-img-element','refsSCSU':'references','entity-ograve-legay':'named-character-references','entity-Oslash-legacy':'named-character-references','link-type-next':'links','the-script-block-s-type':'the-script-element','entity-NotLeftTriangle':'named-character-references','entity-Bumpeq':'named-character-references','bindings':'rendering','namespaceerror':'infrastructure','entity-Fcy':'named-character-references','entity-NotSupersetEqual':'named-character-references','dom-texttrackcue-pauseonexit':'media-elements','entity-gsim':'named-character-references','concept-meta-extensions':'the-meta-element','concept-embed-type':'the-embed-element','hyperlink-suffix':'the-a-element','entity-imacr':'named-character-references','read-text':'history','dom-audiotracklist-length':'media-elements','decohints':'rendering','text-that-has-been-rendered-to-a-graphic-for-typographical-effect':'the-img-element','dom-mod-datetime':'attributes-common-to-ins-and-del-elements','htmllielement':'the-li-element','the-toolbar-barprop-object':'browsers','editable':'editing-apis','entity-gneqq':'naed-character-references','dom-cva-setcustomvalidity':'constraints','found-another-video-track':'media-elements','entity-upharpoonleft':'named-character-references','dom-windowtimers-settimeout':'timers','context-menu-state':'the-menu-element','attr-style-media':'the-style-element','attr-input-type-reset-keyword':'the-input-element','submit-get-action':'form-submission','parsing-main-inframeset':'tree-construction','attr-textarea-rows':'the-textarea-element','entity-TRADE':'named-character-references','common-idioms':'links','dom-img-src':'the-img-element','event-mediacontroller-play':'media-elements','entity-Zcaron':'named-character-references','entity-SquareSupersetEqual':'named-character-references','entity-ubrcy':'named-character-references','attr-button-type-reset-state':'the-button-element','dom-media-seekable':'media-elements','entity-Zscr':'named-character-references','entity-gvertneqq':'named-character-references','concept-fs-novalidate':'attributes-common-to-form-controls','entity-emsp13':'named-chracter-references','entity-emsp14':'named-character-references','attr-input-type-file-keyword':'the-input-element','the-base-element':'the-base-element','entity-nsc':'named-character-references','concept-ltr':'global-attributes','entity-nopf':'named-character-references','dom-img-complete':'the-img-element','dom-document-querycommandstate':'editing-apis','entity-ShortRightArrow':'named-character-references','entity-Gscr':'named-character-references','linkTypes':'links','cookie-string':'infrastructure','entity-udblac':'named-character-references','entity-rrarr':'named-character-references','processing-model-0':'attributes-common-to-td-and-th-elements','processing-model-1':'webappapis','processing-model-2':'webappapis','processing-model-3':'editing','refsMATHML':'references','text-track-cue-active-flag':'media-elements','attr-table-cellpadding':'obsolete','entity-excl':'named-character-references','submit-mailto-body':'form-submission','attr-track-kind-keyword-chapters':'the-track-element','unicode-character''infrastructure','dom-texttrackcue-snaptolines':'media-elements','entity-nsubset':'named-character-references','entity-utilde':'named-character-references','dom-document-defaultview':'browsers','dom-domimplementation-createdocument':'infrastructure','concept-meter-high':'the-meter-element','dom-input-size':'the-input-element','footnotes':'links','dom-window-menubar':'browsers','entity-fcy':'named-character-references','entity-setminus':'named-character-references','entity-filig':'named-character-references','suffering-from-an-overflow':'constraints','concept-form-reset-control':'form-submission','entity-clubs':'named-character-references','dom-window':'browsers','sandboxOrigin':'origin-0','entity-yuml-legacy':'named-character-references','attr-br-clear':'obsolete','dom-node-insertbefore':'infrastructure','calling-scripts':'webappapis','entity-lnap':'named-character-references','url-port':'urls','attr-img-longdesc':'obsolete','enumerated-attribute':'common-microsyntaxes','dom-input-defaultchecked':'the-inputelement','the-event-handler-processing-algorithm':'webappapis','dom-contenteditable':'editing','marquee-scroll-distance':'obsolete','space-separated-tokens':'common-microsyntaxes','entity-Leftarrow':'named-character-references','direction-of-playback':'media-elements','dom-col-valign':'obsolete','entity-gtquest':'named-character-references','await-a-stable-state':'webappapis','xml-documents':'infrastructure','the-indicated-part-of-the-document':'history','entity-Gopf':'named-character-references','entity-ForAll':'named-character-references','concept-link-obtain':'the-link-element','metadata-content':'content-models','dom-iframe-seamless':'the-iframe-element','parse-a-date-string':'common-microsyntaxes','dom-body-background':'obsolete','entity-emacr':'named-character-references','entity-eth-legacy':'named-character-references','entity-bigvee':'named-character-references','entity-order':'named-character-references','entity-nrtrie':'named-character-references','script-data-end-tag-open-state':'tokenization','dm-document-querycommandenabled':'editing-apis','code-unit':'infrastructure','entity-HumpDownHump':'named-character-references','attr-command-type-state-radio':'the-command-element','entity-Copf':'named-character-references','dom-navigator-appname':'system-state-and-capabilities','obsolete-permitted-doctype-string':'syntax','entity-gdot':'named-character-references','event-mediacontroller-volumechange':'media-elements','refsCLDR':'references','dom-translate':'global-attributes','entity-boxUR':'named-character-references','entity-rpargt':'named-character-references','entity-check':'named-character-references','html-documents':'infrastructure','entity-vrtri':'named-character-references','entity-boxUL':'named-character-references','entity-wcirc':'named-character-references','categories':'forms','entity-questeq':'named-character-references','sectioning-content':'content-models','dom-location-port':'history','entity-Ograve':'named-character-references','application-cache-download-process':'offline','entity-boxUl''named-character-references','entity-nprec':'named-character-references','entity-NotSubset':'named-character-references','entity-Union':'named-character-references','entity-suphsol':'named-character-references','labeled-control':'the-label-element','attr-ol-type-state-upper-alpha':'the-ol-element','attr-media-preload-auto-state':'media-elements','dom-document-clear':'obsolete','event-mediacontroller-durationchange':'media-elements','refsEUCKR':'references','entity-NonBreakingSpace':'named-character-references','document-s-character-encoding':'infrastructure','entity-lates':'named-character-references','dom-object-codebase':'obsolete','entity-fnof':'named-character-references','the-main-part-of-the-content':'links','entity-tfr':'named-character-references','entity-varsubsetneqq':'named-character-references','entity-umacr':'named-character-references','dom-open':'browsers','x-this':'introduction','entity-aring':'named-character-references','entity-emptyv':'named-character-references','concept-month':'common-mcrosyntaxes','entity-supsup':'named-character-references','entity-rdldhar':'named-character-references','entity-supsub':'named-character-references','entity-Succeeds':'named-character-references','dom-object-name':'the-object-element','entity-cupbrcap':'named-character-references','attr-table-bgcolor':'obsolete','the-datatransferitem-interface':'dnd','dom-meter-high':'the-meter-element','entity-rarrfs':'named-character-references','commands':'commands','entity-Scy':'named-character-references','valid-normalized-local-date-and-time-string':'common-microsyntaxes','webvtt-file-using-chapter-title-text':'infrastructure','dom-object-align':'obsolete','create-a-date-object':'infrastructure','a-serialization-of-the-image-as-a-file':'the-canvas-element','entity-GreaterGreater':'named-character-references','attr-canvas-width':'the-canvas-element','entity-rmoust':'named-character-references','entity-NotSucceedsSlantEqual':'named-character-references','entity-lneqq':'named-character-references','entity-sstarf':'named-haracter-references','entity-Sacute':'named-character-references','resolving-urls':'urls','parsing-main-inhtml':'tree-construction','refsWEBSOCKET':'references','entity-telrec':'named-character-references','entity-nesear':'named-character-references','entity-ReverseUpEquilibrium':'named-character-references','rules-for-parsing-a-list-of-integers':'common-microsyntaxes','entity-Jukcy':'named-character-references','the-applet-element':'obsolete','conforming-html5-documents':'infrastructure','entity-Ccaron':'named-character-references','outline-depth':'headings-and-sections','entity-cularr':'named-character-references','entity-iinfin':'named-character-references','immediate-user-selection':'dnd','indexsizeerror':'infrastructure','attr-tdth-bgcolor':'obsolete','entity-pitchfork':'named-character-references','entity-ofr':'named-character-references','the-tbody-element':'the-tbody-element','link-type-search':'links','named-access-on-the-window-object':'browsers','dom-output-defaultvalue':'the-output-element','tex-track-model':'media-elements','entity-rdquo':'named-character-references','entity-LeftDownVector':'named-character-references','attr-tdth-height':'obsolete','dom-meter-min':'the-meter-element','dom-area-nohref':'obsolete','entity-npolint':'named-character-references','event-media-canplaythrough':'media-elements','entity-NestedGreaterGreater':'named-character-references','dom-object-standby':'obsolete','entity-vert':'named-character-references','designMode':'editing','syntax-end-tag':'syntax','entity-Scirc':'named-character-references','entity-leftrightarrow':'named-character-references','the-text-tracks-are-ready':'media-elements','entity-curlyvee':'named-character-references','dom-function-call':'webappapis','entity-pcy':'named-character-references','how-to-read-this-specification':'introduction','dom-location-reload':'history','entity-LeftVectorBar':'named-character-references','refsUAAG':'references','dom-hr-color':'obsolete','entity-Vvdash':'named-character-references','handler-onblur':'webappapis','th-dir-attribute':'global-attributes','common-microsyntaxes':'common-microsyntaxes','entity-Mopf':'named-character-references','dom-option-t':'the-option-element','entity-top':'named-character-references','entity-homtht':'named-character-references','meta-author':'the-meta-element','entity-Oscr':'named-character-references','entity-NotReverseElement':'named-character-references','acronym':'obsolete','common-input-element-apis':'common-input-element-apis','entity-sqcap':'named-character-references','browsing-context-scope-origin':'browsers','hidden-elements':'rendering','dom-document-domain':'origin-0','entity-DownArrow':'named-character-references','valid-hash-name-reference':'common-microsyntaxes','entity-Icirc':'named-character-references','entity-YIcy':'named-character-references','entity-nbump':'named-character-references','event-input-input':'common-input-element-apis','event-mediacontroller-waiting':'media-elements','selector-read-write':'links','dom-lfe-labels':'the-label-element','column-header':'attrbutes-common-to-td-and-th-elements','dom-hashchangeevent-oldurl':'history','document-level-focus-apis':'editing','the-b-element':'the-b-element','content-models':'content-models','media-data':'media-elements','dom-document-querycommandindeterm':'editing-apis','algorithm-for-processing-row-groups':'attributes-common-to-td-and-th-elements','entity-caret':'named-character-references','refsXSLT10':'references','handler-onseeked':'webappapis','entity-Tcy':'named-character-references','entity-loarr':'named-character-references','entity-hcirc':'named-character-references','entity-egrave':'named-character-references','rateUpdate':'media-elements','attr-textarea-maxlength':'the-textarea-element','concept-rtl':'global-attributes','entity-Oopf':'named-character-references','dom-location-host':'history','comment-start-state':'tokenization','dom-embed-caller':'the-embed-element','entity-loz':'named-character-references','entity-rthree':'named-character-references','dom-marquee-height':'obsolete','valid-lowercase-simple-olor':'common-microsyntaxes','paused-for-in-band-content':'media-elements','rel-icon':'links','dom-menu-label':'the-menu-element','blocked-media-element':'media-elements','initiate-the-drag-and-drop-operation':'dnd','concept-input-checked-dirty':'the-input-element','entity-circleddash':'named-character-references','grouping-content':'grouping-content','dom-fs-method':'attributes-common-to-form-controls','attr-canvas-height':'the-canvas-element','current-entry':'history','text-track-language':'media-elements','entity-Eta':'named-character-references' }; 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: the-span-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-span-element.html,v retrieving revision 1.119 retrieving revision 1.120 diff -u -d -r1.119 -r1.120 --- the-span-element.html 21 Feb 2012 21:59:08 -0000 1.119 +++ the-span-element.html 13 Mar 2012 19:59:01 -0000 1.120 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-bdo-element.html">← 4.6.24 The bdo element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-br-element.html">4.6.26 The br element →</a> </div> - <h4 id="the-span-element"><span class="secno">4.6.25 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>span</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_56" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-span-element"><span class="secno">4.6.25 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>span</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_56" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_93">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_97">Phrasing content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_39">Palpable content</a>.</dd> @@ -367,7 +407,9 @@ </dl><p>The <code><a href="#the-span-element" id="span_10">span</a></code> element doesn't mean anything on its own, but can be useful when used together with the <a href="global-attributes.html#global-attributes" id="global-attributes_57">global attributes</a>, e.g. <code title="attr-class"><a href="global-attributes.html#classes" id="class_8">class</a></code>, <code title="attr-lang"><a href="global-attributes.html#attr-lang" id="lang_9">lang</a></code>, or <code title="attr-dir"><a href="global-attributes.html#the-dir-attribute" id="dir_22">dir</a></code>. - It <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> its children.<div class="example"> + It <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> its children.</p> + + <div class="example"> <p>In this example, a code fragment is marked up using <code><a href="#the-span-element" id="span_11">span</a></code> elements and <code title="attr-class"><a href="global-attributes.html#classes" id="class_9">class</a></code> attributes so that its keywords and @@ -382,4 +424,8 @@ <span class="keyword">break</span>; }</code></pre></pre> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: the-fieldset-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-fieldset-element.html,v retrieving revision 1.143 retrieving revision 1.144 diff -u -d -r1.143 -r1.144 --- the-fieldset-element.html 21 Feb 2012 21:59:04 -0000 1.143 +++ the-fieldset-element.html 13 Mar 2012 19:58:57 -0000 1.144 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-form-element.html">← 4.10.3 The form element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-legend-element.html">4.10.5 The legend element →</a> </div> - <h4 id="the-fieldset-element"><span class="secno">4.10.4 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>fieldset</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_84" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-fieldset-element"><span class="secno">4.10.4 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>fieldset</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_84" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_125">Flow content</a>.</dd> <dd><a href="headings-and-sections.html#sectioning-root" id="sectioning-root_9">Sectioning root</a>.</dd> <dd><a href="forms.html#category-listed" id="category-listed_2" title="category-listed">Listed</a> <a href="forms.html#form-associated-element" id="form-associated-element_4">form-associated element</a>.</dd> @@ -383,16 +423,25 @@ };</pre> </dd> </dl><p>The <code><a href="#the-fieldset-element" id="fieldset_9">fieldset</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a set - of form controls optionally grouped under a common name.<p>The name of the group is given by the first <code><a href="the-legend-element.html#the-legend-element" id="legend_1">legend</a></code> + of form controls optionally grouped under a common name.</p> + + <p>The name of the group is given by the first <code><a href="the-legend-element.html#the-legend-element" id="legend_1">legend</a></code> element that is a child of the <code><a href="#the-fieldset-element" id="fieldset_10">fieldset</a></code> element, if - any. The remainder of the descendants form the group.<p>The <dfn aria-haspopup="true" id="attr-fieldset-disabled" role="button" tabindex="0"><code>disabled</code></dfn> + any. The remainder of the descendants form the group.</p> + + <p>The <dfn aria-haspopup="true" id="attr-fieldset-disabled" role="button" tabindex="0"><code>disabled</code></dfn> attribute, when specified, causes all the form control descendants of the <code><a href="#the-fieldset-element" id="fieldset_11">fieldset</a></code> element, excluding those that are descendants of the <code><a href="#the-fieldset-element" id="fieldset_12">fieldset</a></code> element's first - <code><a href="the-legend-element.html#the-legend-element" id="legend_2">legend</a></code> element child, if any, to be <a href="attributes-common-to-form-controls.html#concept-fe-disabled" id="concept-fe-disabled_1" title="concept-fe-disabled">disabled</a>.<p>The <code title="attr-fae-form"><a href="association-of-controls-and-forms.html#attr-fae-form" id="form_46">form</a></code> attribute is used to + <code><a href="the-legend-element.html#the-legend-element" id="legend_2">legend</a></code> element child, if any, to be <a href="attributes-common-to-form-controls.html#concept-fe-disabled" id="concept-fe-disabled_1" title="concept-fe-disabled">disabled</a>.</p> + + <p>The <code title="attr-fae-form"><a href="association-of-controls-and-forms.html#attr-fae-form" id="form_46">form</a></code> attribute is used to explicitly associate the <code><a href="#the-fieldset-element" id="fieldset_13">fieldset</a></code> element with its <a href="association-of-controls-and-forms.html#form-owner" id="form-owner_2">form owner</a>. The <code title="attr-fe-name"><a href="attributes-common-to-form-controls.html#attr-fe-name" id="name_29">name</a></code> - attribute represents the element's name.<dl class="domintro"><dt><var title="">fieldset</var> . <code id="dom-fieldset-type" title="dom-fieldset-type"><a href="#dom-fieldset-type">type</a></code></dt> + attribute represents the element's name.</p> + + + <dl class="domintro"><dt><var title="">fieldset</var> . <code id="dom-fieldset-type" title="dom-fieldset-type"><a href="#dom-fieldset-type">type</a></code></dt> <dd> @@ -412,7 +461,10 @@ </dl><p>The <dfn aria-haspopup="true" id="dom-fieldset-disabled" role="button" tabindex="0"><code>disabled</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_61">reflect</a> the content attribute of the same name.</p> -<div class="example"> + + + + <div class="example"> <p>This example shows a <code><a href="#the-fieldset-element" id="fieldset_14">fieldset</a></code> element being used to group a set of related controls:</p> @@ -429,7 +481,9 @@ </datalist> </fieldset></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>The following snippet shows a fieldset with a checkbox in the legend that controls whether or not the fieldset is enabled. The @@ -446,7 +500,9 @@ <p><label>Expiry date: <input name=clubexp type=month></label></p> </fieldset></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>You can also nest <code><a href="#the-fieldset-element" id="fieldset_15">fieldset</a></code> elements. Here is an example expanding on the previous one that does so:</p> @@ -481,4 +537,7 @@ let you select which of the two inner <code><a href="#the-fieldset-element" id="fieldset_18">fieldset</a></code>s is to be enabled.</p> - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: the-figure-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-figure-element.html,v retrieving revision 1.119 retrieving revision 1.120 diff -u -d -r1.119 -r1.120 --- the-figure-element.html 21 Feb 2012 21:59:04 -0000 1.119 +++ the-figure-element.html 13 Mar 2012 19:58:57 -0000 1.120 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-dd-element.html">← 4.5.10 The dd element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-figcaption-element.html">4.5.12 The figcaption element →</a> </div> - <h4 id="the-figure-element"><span class="secno">4.5.11 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>figure</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_29" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-figure-element"><span class="secno">4.5.11 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>figure</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_29" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_60">Flow content</a>.</dd> <dd><a href="headings-and-sections.html#sectioning-root" id="sectioning-root_7">Sectioning root</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_15">Palpable content</a>.</dd> @@ -367,14 +407,20 @@ </dl><p>The <code><a href="#the-figure-element" id="figure_5">figure</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> some <a href="content-models.html#flow-content" id="flow-content_65">flow content</a>, optionally with a caption, that is self-contained and is typically referenced as a single unit from the - main flow of the document.<p>The element can thus be used to annotate illustrations, diagrams, + main flow of the document.</p> + + <p>The element can thus be used to annotate illustrations, diagrams, photos, code listings, etc, that are referred to from the main content of the document, but that could, without affecting the flow of the document, be moved away from that primary content, e.g. to - the side of the page, to dedicated pages, or to an appendix.<p>The <code><a href="the-figcaption-element.html#the-figcaption-element" id="figcaption_4">figcaption</a></code> + the side of the page, to dedicated pages, or to an appendix.</p> + + <p>The <code><a href="the-figcaption-element.html#the-figcaption-element" id="figcaption_4">figcaption</a></code> element child of the element, if any, represents the caption of the <code><a href="#the-figure-element" id="figure_6">figure</a></code> element's contents. If there is no child - <code><a href="the-figcaption-element.html#the-figcaption-element" id="figcaption_5">figcaption</a></code> element, then there is no caption.<div class="example"> + <code><a href="the-figcaption-element.html#the-figcaption-element" id="figcaption_5">figcaption</a></code> element, then there is no caption.</p> + + <div class="example"> <p>This example shows the <code><a href="#the-figure-element" id="figure_7">figure</a></code> element to mark up a code listing.</p> @@ -391,7 +437,9 @@ </figure> <p>The API is designed to use UTF-8.</p></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>Here we see a <code><a href="#the-figure-element" id="figure_8">figure</a></code> element to mark up a photo.</p> @@ -403,7 +451,9 @@ <figcaption>Bubbles at work</figcaption> </figure></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>In this example, we see an image that is <em>not</em> a figure, as well as an image and a video that are.</p> @@ -434,7 +484,9 @@ <p>The case was resolved out of court.</pre> - </div><div class="example"> + </div> + + <div class="example"> <p>Here, a part of a poem is marked up using <code><a href="#the-figure-element" id="figure_9">figure</a></code>.</p> @@ -447,7 +499,9 @@ <figcaption><cite>Jabberwocky</cite> (first verse). Lewis Carroll, 1832-98</figcaption> </figure></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>In this example, which could be part of a much larger work discussing a castle, the figure has three images in it.</p> @@ -462,4 +516,7 @@ <figcaption>The castle through the ages: 1423, 1858, and 1999 respectively.</figcaption> </figure></pre> - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: element-definitions.html =================================================================== RCS file: /sources/public/html5/spec-author-view/element-definitions.html,v retrieving revision 1.108 retrieving revision 1.109 diff -u -d -r1.108 -r1.109 --- element-definitions.html 15 Feb 2012 10:14:03 -0000 1.108 +++ element-definitions.html 13 Mar 2012 19:58:38 -0000 1.109 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,15 +380,21 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="global-attributes.html">← 3.2.3 Global attributes</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="content-models.html">3.2.5 Content models →</a> <ol class="toc"><li><ol><li><ol><li><a href="element-definitions.html#element-definitions"><span class="secno">3.2.4 </span>Element definitions</a> <ol><li><a href="element-definitions.html#attributes"><span class="secno">3.2.4.1 </span>Attributes</a></ol></ol></ol></ol></div> - <h4 id="element-definitions"><span class="secno">3.2.4 </span>Element definitions</h4><p>Each element in this specification has a definition that includes - the following information:<dl><dt><dfn aria-haspopup="true" id="element-dfn-categories" role="button" tabindex="0">Categories</dfn></dt> + <h4 id="element-definitions"><span class="secno">3.2.4 </span>Element definitions</h4> + + <p>Each element in this specification has a definition that includes + the following information:</p> + + <dl><dt><dfn aria-haspopup="true" id="element-dfn-categories" role="button" tabindex="0">Categories</dfn></dt> <dd><p>A list of <a href="content-models.html#content-categories" id="content-categories_0" title="content categories">categories</a> to which the element belongs. These are used when defining the @@ -401,7 +443,16 @@ </dl><p>This is then followed by a description of what the element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a>, along with any additional normative conformance criteria that may apply to authors. Examples are sometimes - also included.<h5 id="attributes"><span class="secno">3.2.4.1 </span>Attributes</h5><p id="attribute-text">Except where otherwise specified, attributes + also included.</p> + + + <h5 id="attributes"><span class="secno">3.2.4.1 </span>Attributes</h5> + + <p id="attribute-text">Except where otherwise specified, attributes on <a href="infrastructure.html#html-elements" id="html-elements_17">HTML elements</a> may have any string value, including the empty string. Except where explicitly stated, there is no - restriction on what text can be specified in such attributes. \ No newline at end of file + restriction on what text can be specified in such attributes.</p> + + + + \ No newline at end of file Index: the-script-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-script-element.html,v retrieving revision 1.134 retrieving revision 1.135 diff -u -d -r1.134 -r1.135 --- the-script-element.html 21 Feb 2012 21:59:07 -0000 1.134 +++ the-script-element.html 13 Mar 2012 19:59:01 -0000 1.135 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,14 +380,18 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="scripting-1.html">← 4.3 Scripting</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-noscript-element.html">4.3.2 The noscript element →</a> <ol class="toc"><li><ol><li><ol><li><a href="the-script-element.html#the-script-element" id="4.3.1-the-script-element"><span class="secno">4.3.1 </span>The <code>script</code> element</a> <ol><li><a href="the-script-element.html#scriptingLanguages"><span class="secno">4.3.1.1 </span>Scripting languages</a><li><a href="the-script-element.html#restrictions-for-contents-of-script-elements" id="4.3.1.2-restrictions-for-contents-of-script-elements"><span class="secno">4.3.1.2 </span>Restrictions for contents of <code>script</code> elements</a><li><a href="the-script-element.html#inline-documentation-for-external-scripts" id="4.3.1.3-inline-documentation-for-external-scripts"><span class="secno">4.3.1.3 </span>Inline documentation for external scripts</a></ol></ol></ol></ol></div> - <h4 id="the-script-element"><span class="secno">4.3.1 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>script</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_7" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-script-element"><span class="secno">4.3.1 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>script</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_7" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#metadata-content" id="metadata-content_12">Metadata content</a>.</dd> <dd><a href="content-models.html#flow-content" id="flow-content_14">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_20">Phrasing content</a>.</dd> @@ -386,24 +426,32 @@ </dd> </dl><p>The <code><a href="#the-script-element" id="script_14">script</a></code> element allows authors to include dynamic script and data blocks in their documents. The element does not - <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represent" reference in the full HTML5 spec.'>represent</a> content for the user.<p>When used to include dynamic scripts, the scripts may either be + <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represent" reference in the full HTML5 spec.'>represent</a> content for the user.</p> + + <p>When used to include dynamic scripts, the scripts may either be embedded inline or may be imported from an external file using the <code title="attr-script-src"><a href="#attr-script-src" id="src_4">src</a></code> attribute. If the language is not that described by "<code title="">text/javascript</code>", then the <code title="attr-script-type"><a href="#attr-script-type" id="type_8">type</a></code> attribute must be present, as described below. Whatever language is used, the contents of the <code><a href="#the-script-element" id="script_15">script</a></code> element must conform with the - requirements of that language's specification.<p>When used to include data blocks (as opposed to scripts), the + requirements of that language's specification.</p> + + <p>When used to include data blocks (as opposed to scripts), the data must be embedded inline, the format of the data must be given using the <code title="attr-script-type"><a href="#attr-script-type" id="type_9">type</a></code> attribute, the <code title="attr-script-src"><a href="#attr-script-src" id="src_5">src</a></code> attribute must not be specified, and the contents of the <code><a href="#the-script-element" id="script_16">script</a></code> element must - conform to the requirements defined for the format used.<p>The <dfn aria-haspopup="true" id="attr-script-type" role="button" tabindex="0"><code>type</code></dfn> + conform to the requirements defined for the format used.</p> + + <p>The <dfn aria-haspopup="true" id="attr-script-type" role="button" tabindex="0"><code>type</code></dfn> attribute gives the language of the script or format of the data. If the attribute is present, its value must be a <a href="infrastructure.html#valid-mime-type" id="valid-mime-type_3">valid MIME type</a>. The <code title="">charset</code> parameter must not be specified. The default, which is used if the attribute is absent, - is "<code title="">text/javascript</code>".<p>The <dfn aria-haspopup="true" id="attr-script-src" role="button" tabindex="0"><code>src</code></dfn> + is "<code title="">text/javascript</code>".</p> + + <p>The <dfn aria-haspopup="true" id="attr-script-src" role="button" tabindex="0"><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-potentially-surrounded-by-spaces" id="valid-non-empty-url-potentially-surrounded-by-spaces_2">valid non-empty URL potentially surrounded by spaces</a> identifying a @@ -411,7 +459,9 @@ 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>The <dfn aria-haspopup="true" id="attr-script-charset" role="button" tabindex="0"><code>charset</code></dfn> + conforms with the requirements of that language's specification.</p> + + <p>The <dfn aria-haspopup="true" id="attr-script-charset" role="button" tabindex="0"><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" id="src_6">src</a></code> attribute is not present. If the attribute is set, its value must be a valid character encoding name, @@ -419,12 +469,16 @@ <a href="infrastructure.html#preferred-mime-name" id="preferred-mime-name_1">preferred MIME name</a> for that encoding, and must match the encoding given in the <code title="">charset</code> parameter of the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/urls.html#content-type" title='Read about this "Content-Type metadata" reference in the full HTML5 spec.'>Content-Type metadata</a> of the - external file, if any. <a href="references.html#refsIANACHARSET">[IANACHARSET]</a><p>The <dfn aria-haspopup="true" id="attr-script-async" role="button" tabindex="0"><code>async</code></dfn> and + external file, if any. <a href="references.html#refsIANACHARSET">[IANACHARSET]</a></p> + + <p>The <dfn aria-haspopup="true" id="attr-script-async" role="button" tabindex="0"><code>async</code></dfn> and <dfn aria-haspopup="true" id="attr-script-defer" role="button" tabindex="0"><code>defer</code></dfn> attributes are <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_1" title="boolean attribute">boolean attributes</a> that indicate how the script should be executed. The <code title="attr-script-defer"><a href="#attr-script-defer" id="defer_0">defer</a></code> and <code title="attr-script-async"><a href="#attr-script-async" id="async_0">async</a></code> attributes must not be specified if the <code title="attr-script-src"><a href="#attr-script-src" id="src_7">src</a></code> attribute - is not present.<p>There are three possible modes that can be selected using these + is not present.</p> + + <p>There are three possible modes that can be selected using these attributes. If the <code title="attr-script-async"><a href="#attr-script-async" id="async_1">async</a></code> attribute is present, then the script will be executed asynchronously, as soon as it is available. If the <code title="attr-script-async"><a href="#attr-script-async" id="async_2">async</a></code> attribute is not present but @@ -432,7 +486,9 @@ present, then the script is executed when the page has finished parsing. If neither attribute is present, then the script is fetched and executed immediately, before the user agent continues - parsing the page.<p class="note">The exact processing details for these attributes + parsing the page.</p> + + <p class="note">The exact processing details for these attributes are, for mostly historical reasons, somewhat non-trivial, involving a number of aspects of HTML. The implementation requirements are therefore by necessity scattered throughout the specification. The @@ -440,13 +496,19 @@ processing, but these algorithms reference and are referenced by the parsing rules for <code><a href="#the-script-element" id="script_17">script</a></code> <a class="full-spec-link" href="http://dev.w3.org/html5/spec/tree-construction.html#scriptTag" title='Read about this "start" reference in the full HTML5 spec.'>start</a> and <a class="full-spec-link" href="http://dev.w3.org/html5/spec/tree-construction.html#scriptEndTag" title='Read about this "end" reference in the full HTML5 spec.'>end</a> tags in HTML, <a class="full-spec-link" href="http://dev.w3.org/html5/spec/tree-construction.html#scriptForeignEndTag" title='Read about this "in foreign content" reference in the full HTML5 spec.'>in foreign content</a>, and <a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-xhtml-syntax.html#scriptTagXML" title='Read about this "in XML" reference in the full HTML5 spec.'>in XML</a>, the rules for the <code title="dom-document-write"><a href="dynamic-markup-insertion.html#dom-document-write">document.write()</a></code> method, the - handling of <a href="webappapis.html#scripting">scripting</a>, etc.<p>The <code title="attr-script-defer"><a href="#attr-script-defer" id="defer_2">defer</a></code> attribute may be + handling of <a href="webappapis.html#scripting">scripting</a>, etc.</p> + + <p>The <code title="attr-script-defer"><a href="#attr-script-defer" id="defer_2">defer</a></code> attribute may be specified even if the <code title="attr-script-async"><a href="#attr-script-async" id="async_3">async</a></code> attribute is specified, to cause legacy Web browsers that only support <code title="attr-script-defer"><a href="#attr-script-defer" id="defer_3">defer</a></code> (and not <code title="attr-script-async"><a href="#attr-script-async" id="async_4">async</a></code>) to fall back to the <code title="attr-script-defer"><a href="#attr-script-defer" id="defer_4">defer</a></code> behavior instead of the - synchronous blocking behavior that is the default.<p>Changing the <code title="attr-script-src"><a href="#attr-script-src" id="src_8">src</a></code>, <code title="attr-script-type"><a href="#attr-script-type" id="type_11">type</a></code>, <code title="attr-script-charset"><a href="#attr-script-charset" id="charset_11">charset</a></code>, <code title="attr-script-async"><a href="#attr-script-async" id="async_5">async</a></code>, and <code title="attr-script-defer"><a href="#attr-script-defer" id="defer_5">defer</a></code> attributes dynamically has no + synchronous blocking behavior that is the default.</p> + + <p>Changing the <code title="attr-script-src"><a href="#attr-script-src" id="src_8">src</a></code>, <code title="attr-script-type"><a href="#attr-script-type" id="type_11">type</a></code>, <code title="attr-script-charset"><a href="#attr-script-charset" id="charset_11">charset</a></code>, <code title="attr-script-async"><a href="#attr-script-async" id="async_5">async</a></code>, and <code title="attr-script-defer"><a href="#attr-script-defer" id="defer_5">defer</a></code> attributes dynamically has no direct effect; these attribute are only used at specific times - described below.</p> + described below.</p> + + <p>The IDL attributes <dfn aria-haspopup="true" id="dom-script-src" role="button" tabindex="0"><code>src</code></dfn>, <dfn aria-haspopup="true" id="dom-script-type" role="button" tabindex="0"><code>type</code></dfn>, <dfn aria-haspopup="true" id="dom-script-charset" role="button" tabindex="0"><code>charset</code></dfn>, and <dfn aria-haspopup="true" id="dom-script-defer" role="button" tabindex="0"><code>defer</code></dfn>, each must <a href="common-dom-interfaces.html#reflect" id="reflect_12">reflect</a> the respective content attributes of the same name.</p> @@ -462,7 +524,10 @@ new value is true. If the element's <a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-script-element.html#force-async" title='Read about this ""force-async"" reference in the full HTML5 spec.'>"force-async"</a> flag is <em>not</em> set, the IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_13">reflect</a> the <code title="attr-script-async"><a href="#attr-script-async" id="async_6">async</a></code> content attribute.</p> -<dl class="domintro"><dt><var title="">script</var> . <code id="dom-script-text" title="dom-script-text"><a href="#dom-script-text">text</a></code> [ = <var title="">value</var> ]</dt> + + + + <dl class="domintro"><dt><var title="">script</var> . <code id="dom-script-text" title="dom-script-text"><a href="#dom-script-text">text</a></code> [ = <var title="">value</var> ]</dt> <dd> @@ -477,7 +542,9 @@ </dl><p class="note">When inserted using the <code title="dom-document-write"><a href="dynamic-markup-insertion.html#dom-document-write">document.write()</a></code> method, <code><a href="#the-script-element" id="script_18">script</a></code> elements execute (typically synchronously), but when inserted using <code title="dom-innerHTML"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#dom-innerhtml" title='Read about this "innerHTML" reference in the full HTML5 spec.'>innerHTML</a></code> and <code title="dom-outerHTML"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#dom-outerhtml" title='Read about this "outerHTML" reference in the full HTML5 spec.'>outerHTML</a></code> attributes, they do not - execute at all.<div class="example"> + execute at all.</p> + + <div class="example"> <p>In this example, two <code><a href="#the-script-element" id="script_19">script</a></code> elements are used. One embeds an external script, and the other includes some data.</p> @@ -497,7 +564,9 @@ site's search engine to help users who are looking for particular features in their game maps.</p> - </div><div class="example"> + </div> + + <div class="example"> <p>The following sample shows how a script element can be used to define a function that is then used by other parts of the @@ -537,8 +606,18 @@ </script> </form></pre> - </div><h5 id="scriptingLanguages"><span class="secno">4.3.1.1 </span>Scripting languages</h5><p>The following lists some <a href="infrastructure.html#mime-type" id="mime-type_5">MIME type</a> strings and the - languages to which they refer:<dl><dt>"<code>application/ecmascript</code>"</dt> + </div> + + + + <h5 id="scriptingLanguages"><span class="secno">4.3.1.1 </span>Scripting languages</h5> + + + + <p>The following lists some <a href="infrastructure.html#mime-type" id="mime-type_5">MIME type</a> strings and the + languages to which they refer:</p> + + <dl><dt>"<code>application/ecmascript</code>"</dt> <dt>"<code>application/javascript</code>"</dt> <dt>"<code>application/x-ecmascript</code>"</dt> <dt>"<code>application/x-javascript</code>"</dt> @@ -559,9 +638,13 @@ <dt>"<code>text/javascript;e4x=1</code>"</dt> <dd>JavaScript with ECMAScript for XML. <a href="references.html#refsECMA357">[ECMA357]</a></dd> - </dl><h5 id="restrictions-for-contents-of-script-elements"><span class="secno">4.3.1.2 </span><dfn aria-haspopup="true" role="button" tabindex="0">Restrictions for contents of <code>script</code> elements</dfn></h5><p>The <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#textcontent" title='Read about this "textContent" reference in the full HTML5 spec.'>textContent</a></code> of a <code><a href="#the-script-element" id="script_21">script</a></code> element + </dl><h5 id="restrictions-for-contents-of-script-elements"><span class="secno">4.3.1.2 </span><dfn aria-haspopup="true" role="button" tabindex="0">Restrictions for contents of <code>script</code> elements</dfn></h5> + + <p>The <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#textcontent" title='Read about this "textContent" reference in the full HTML5 spec.'>textContent</a></code> of a <code><a href="#the-script-element" id="script_21">script</a></code> element must match the <code title="">script</code> production in the - following ABNF, the character set for which is Unicode. <a href="references.html#refsABNF">[ABNF]</a><pre>script = data1 *( escape [ script-start data3 ] "-->" data1 ) [ escape ] + following ABNF, the character set for which is Unicode. <a href="references.html#refsABNF">[ABNF]</a></p> + + <pre>script = data1 *( escape [ script-start data3 ] "-->" data1 ) [ escape ] escape = "<!--" data2 *( script-start data3 script-end data2 ) data1 = <any string that doesn't contain a substring that matches not-data1> @@ -577,7 +660,7 @@ script-end = lt slash s c r i p t tag-end lt = %x003C ; U+003C LESS-THAN SIGN character (<) -slash = %x002F ; U+002F SOLIDUS character (/) +slash = %x002F ; "/" (U+002F) character s = %x0053 ; U+0053 LATIN CAPITAL LETTER S s =/ %x0073 ; U+0073 LATIN SMALL LETTER S @@ -592,37 +675,52 @@ t = %x0054 ; U+0054 LATIN CAPITAL LETTER T t =/ %x0074 ; U+0074 LATIN SMALL LETTER T -tag-end = %x0009 ; U+0009 CHARACTER TABULATION (tab) -tag-end =/ %x000A ; U+000A LINE FEED (LF) -tag-end =/ %x000C ; U+000C FORM FEED (FF) +tag-end = %x0009 ; "tab" (U+0009) +tag-end =/ %x000A ; "LF" (U+000A) +tag-end =/ %x000C ; "FF" (U+000C) tag-end =/ %x0020 ; U+0020 SPACE -tag-end =/ %x002F ; U+002F SOLIDUS (/) -tag-end =/ %x003E ; U+003E GREATER-THAN SIGN (>)</pre><p>When a <code><a href="#the-script-element" id="script_22">script</a></code> element contains <a href="#inline-documentation-for-external-scripts" id="script-documentation_0">script +tag-end =/ %x002F ; "/" (U+002F) +tag-end =/ %x003E ; U+003E GREATER-THAN SIGN (>)</pre> + + <p>When a <code><a href="#the-script-element" id="script_22">script</a></code> element contains <a href="#inline-documentation-for-external-scripts" id="script-documentation_0">script documentation</a>, there are further restrictions on the contents - of the element, as described in the section below.<h5 id="inline-documentation-for-external-scripts"><span class="secno">4.3.1.3 </span><dfn aria-haspopup="true" role="button" tabindex="0">Inline documentation for external scripts</dfn></h5><p>If a <code><a href="#the-script-element" id="script_23">script</a></code> element's <code title="attr-script-src"><a href="#attr-script-src" id="src_9">src</a></code> attribute is specified, then the + of the element, as described in the section below.</p> + + + <h5 id="inline-documentation-for-external-scripts"><span class="secno">4.3.1.3 </span><dfn aria-haspopup="true" role="button" tabindex="0">Inline documentation for external scripts</dfn></h5> + + <p>If a <code><a href="#the-script-element" id="script_23">script</a></code> element's <code title="attr-script-src"><a href="#attr-script-src" id="src_9">src</a></code> attribute is specified, then the contents of the <code><a href="#the-script-element" id="script_24">script</a></code> element, if any, must be such that the value of the <code title="dom-script-text"><a href="#dom-script-text">text</a></code> IDL attribute, which is derived from the element's contents, matches the <code title="">documentation</code> production in the following - ABNF, the character set for which is Unicode. <a href="references.html#refsABNF">[ABNF]</a><pre>documentation = *( *( space / tab / comment ) [ line-comment ] newline ) + ABNF, the character set for which is Unicode. <a href="references.html#refsABNF">[ABNF]</a></p> + + <pre>documentation = *( *( space / tab / comment ) [ line-comment ] newline ) comment = slash star *( not-star / star not-slash ) 1*star slash line-comment = slash slash *not-newline ; characters -tab = %x0009 ; U+0009 CHARACTER TABULATION (tab) -newline = %x000A ; U+000A LINE FEED (LF) +tab = %x0009 ; "tab" (U+0009) +newline = %x000A ; "LF" (U+000A) space = %x0020 ; U+0020 SPACE -star = %x002A ; U+002A ASTERISK (*) -slash = %x002F ; U+002F SOLIDUS (/) +star = %x002A ; "*" (U+002A) +slash = %x002F ; "/" (U+002F) not-newline = %x0000-0009 / %x000B-10FFFF - ; a <a href="infrastructure.html#unicode-character" id="unicode-character_2">Unicode character</a> other than U+000A LINE FEED (LF) + ; a <a href="infrastructure.html#unicode-character" id="unicode-character_2">Unicode character</a> other than "LF" (U+000A) not-star = %x0000-0029 / %x002B-10FFFF - ; a <a href="infrastructure.html#unicode-character" id="unicode-character_3">Unicode character</a> other than U+002A ASTERISK (*) + ; a <a href="infrastructure.html#unicode-character" id="unicode-character_3">Unicode character</a> other than "*" (U+002A) not-slash = %x0000-002E / %x0030-10FFFF - ; a <a href="infrastructure.html#unicode-character" id="unicode-character_4">Unicode character</a> other than U+002F SOLIDUS (/)</pre><p class="note">This corresponds to putting the contents of the - element in JavaScript comments.<p class="note">This requirement is in addition to the earlier + ; a <a href="infrastructure.html#unicode-character" id="unicode-character_4">Unicode character</a> other than "/" (U+002F)</pre> + + <p class="note">This corresponds to putting the contents of the + element in JavaScript comments.</p> + + <p class="note">This requirement is in addition to the earlier restrictions on the syntax of contents of <code><a href="#the-script-element" id="script_25">script</a></code> - elements.<div class="example"> + elements.</p> + + <div class="example"> <p>This allows authors to include documentation, such as license information or API information, inside their documents while still @@ -638,4 +736,11 @@ // e.stop(); </script></pre> - </div> \ No newline at end of file + </div> + + + + + + + \ No newline at end of file Index: the-input-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-input-element.html,v retrieving revision 1.603 retrieving revision 1.604 diff -u -d -r1.603 -r1.604 --- the-input-element.html 21 Feb 2012 21:59:05 -0000 1.603 +++ the-input-element.html 13 Mar 2012 19:58:58 -0000 1.604 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-label-element.html">← 4.10.6 The label element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="states-of-the-type-attribute.html">4.10.7.1 States of the type attribute →</a> </div> - <h4 id="the-input-element"><span class="secno">4.10.7 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>input</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_87" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-input-element"><span class="secno">4.10.7 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>input</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_87" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_129">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_136">Phrasing content</a>.</dd> <dd>If the <code title="attr-input-type"><a href="#attr-input-type" id="type_68">type</a></code> attribute is <em>not</em> in the <a href="states-of-the-type-attribute.html#hidden-state-type-hidden" id="attr-input-type-hidden_3" title="attr-input-type-hidden">Hidden</a> state: <a href="content-models.html#interactive-content" id="interactive-content_12">Interactive content</a>.</dd> @@ -452,12 +492,16 @@ };</pre> </dd> </dl><p>The <code><a href="#the-input-element" id="input_61">input</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a typed data field, - usually with a form control to allow the user to edit the data.<p>The <dfn aria-haspopup="true" id="attr-input-type" role="button" tabindex="0"><code>type</code></dfn> + usually with a form control to allow the user to edit the data.</p> + + <p>The <dfn aria-haspopup="true" id="attr-input-type" role="button" tabindex="0"><code>type</code></dfn> attribute controls the data type (and associated control) of the element. It is an <a href="common-microsyntaxes.html#enumerated-attribute" id="enumerated-attribute_9">enumerated attribute</a>. The following table lists the keywords and states for the attribute — the keywords in the left column map to the states in the cell in the - second column on the same row as the keyword.<table id="attr-input-type-keywords"><thead><tr><th> Keyword + second column on the same row as the keyword.</p> + + <table id="attr-input-type-keywords"><thead><tr><th> Keyword <th> State <th> Data type <th> Control type @@ -553,7 +597,9 @@ <td> <a href="states-of-the-type-attribute.html#button-state-type-button" id="attr-input-type-button_0" title="attr-input-type-button">Button</a> <td> n/a <td> A button - </table><p>The <i>missing value default</i> is the <a href="states-of-the-type-attribute.html#text-type-text-state-and-search-state-type-search" id="attr-input-type-text_3" title="attr-input-type-text">Text</a> state.<p>Which of the <code title="attr-input-accept"><a href="states-of-the-type-attribute.html#attr-input-accept" id="accept_0">accept</a></code>, <code title="attr-input-alt"><a href="states-of-the-type-attribute.html#attr-input-alt" id="alt_39">alt</a></code>, <code title="attr-input-autocomplete"><a href="common-input-element-attributes.html#attr-input-autocomplete" id="autocomplete_4">autocomplete</a></code>, <code title="attr-input-checked"><a href="#attr-input-checked" id="checked_1">checked</a></code>, <code title="attr-input-dirname"><a href="common-input-element-attributes.html#attr-input-dirname" id="dirname_0">dirname</a></code>, <code title="attr-fs-formaction"><a href="attributes-common-to-form-controls.html#attr-fs-formaction" id="formaction_0">formaction</a></code>, <code title="atr-fs-formenctype"><a href="attributes-common-to-form-controls.html#attr-fs-formenctype" id="formenctype_0">formenctype</a></code>, <code title="attr-fs-formmethod"><a href="attributes-common-to-form-controls.html#attr-fs-formmethod" id="formmethod_0">formmethod</a></code>, <code title="attr-fs-formnovalidate"><a href="attributes-common-to-form-controls.html#attr-fs-formnovalidate" id="formnovalidate_0">formnovalidate</a></code>, <code title="attr-fs-formtarget"><a href="attributes-common-to-form-controls.html#attr-fs-formtarget" id="formtarget_0">formtarget</a></code>, <code title="attr-dim-height"><a href="dimension-attributes.html#attr-dim-height" id="height_12">height</a></code>, <code title="attr-input-list"><a href="common-input-element-attributes.html#attr-input-list" id="list_1">list</a></code>, <code title="attr-input-max"><a href="common-input-element-attributes.html#attr-input-max" id="max_1">max</a></code>, <code title="attr-input-maxlength"><a href="common-input-element-attributes.html#attr-inpt-maxlength" id="maxlength_1">maxlength</a></code>, <code title="attr-input-min"><a href="common-input-element-attributes.html#attr-input-min" id="min_1">min</a></code>, <code title="attr-input-multiple"><a href="common-input-element-attributes.html#attr-input-multiple" id="multiple_0">multiple</a></code>, <code title="attr-input-pattern"><a href="common-input-element-attributes.html#attr-input-pattern" id="pattern_0">pattern</a></code>, <code title="attr-input-placeholder"><a href="common-input-element-attributes.html#attr-input-placeholder" id="placeholder_0">placeholder</a></code>, <code title="attr-input-readonly"><a href="common-input-element-attributes.html#attr-input-readonly" id="readonly_14">readonly</a></code>, <code title="attr-input-required"><a href="common-input-element-attributes.html#attr-input-required" id="required_1">required</a></code>, <code title="attr-input-size"><a href="common-input-element-attributes.html#attr-input-size" id="size_0">size</a></code>, <code title="attr-input-src"><ahref="states-of-the-type-attribute.html#attr-input-src" id="src_48">src</a></code>, <code title="attr-input-step"><a href="common-input-element-attributes.html#attr-input-step" id="step_1">step</a></code>, and <code title="attr-dim-width"><a href="dimension-attributes.html#attr-dim-width" id="width_12">width</a></code> content attributes, the <code title="dom-input-checked"><a href="common-input-element-apis.html#dom-input-checked">checked</a></code>, <code title="dom-input-files"><a href="common-input-element-apis.html#dom-input-files">files</a></code>, <code title="dom-input-valueAsDate"><a href="common-input-element-apis.html#dom-input-valueasdate">valueAsDate</a></code>, <code title="dom-input-valueAsNumber"><a href="common-input-element-apis.html#dom-input-valueasnumber">valueAsNumber</a></code>, and <code title="dom-input-list"><a href="common-input-element-apis.html#dom-input-list">list</a></code> IDL + </table><p>The <i>missing value default</i> is the <a href="states-of-the-type-attribute.html#text-type-text-state-and-search-state-type-search" id="attr-input-type-text_3" title="attr-input-type-text">Text</a> state.</p> + + <p>Which of the <code title="attr-input-accept"><a href="states-of-the-type-attribute.html#attr-input-accept" id="accept_0">accept</a></code>, <code title="attr-input-alt"><a href="states-of-the-type-attribute.html#attr-input-alt" id="alt_39">alt</a></code>, <code title="attr-input-autocomplete"><a href="common-input-element-attributes.html#attr-input-autocomplete" id="autocomplete_4">autocomplete</a></code>, <code title="attr-input-checked"><a href="#attr-input-checked" id="checked_1">checked</a></code>, <code title="attr-input-dirname"><a href="common-input-element-attributes.html#attr-input-dirname" id="dirname_0">dirname</a></code>, <code title="attr-fs-formaction"><a href="attributes-common-to-form-controls.html#attr-fs-formaction" id="formaction_0">formaction</a></code>, <code title="attr-fs-formenctype"><a href="attributes-common-to-form-controls.html#attr-fs-formenctype" id="formenctype_0">formenctype</a></code>, <code title="attr-fs-formmethod"><a href="attributes-common-to-form-controls.html#atr-fs-formmethod" id="formmethod_0">formmethod</a></code>, <code title="attr-fs-formnovalidate"><a href="attributes-common-to-form-controls.html#attr-fs-formnovalidate" id="formnovalidate_0">formnovalidate</a></code>, <code title="attr-fs-formtarget"><a href="attributes-common-to-form-controls.html#attr-fs-formtarget" id="formtarget_0">formtarget</a></code>, <code title="attr-dim-height"><a href="dimension-attributes.html#attr-dim-height" id="height_12">height</a></code>, <code title="attr-input-list"><a href="common-input-element-attributes.html#attr-input-list" id="list_1">list</a></code>, <code title="attr-input-max"><a href="common-input-element-attributes.html#attr-input-max" id="max_1">max</a></code>, <code title="attr-input-maxlength"><a href="common-input-element-attributes.html#attr-input-maxlength" id="maxlength_1">maxlength</a></code>, <code title="attr-input-min"><a href="common-input-element-attributes.html#attr-input-min" id="min_1">min</a></code>, <code title="attr-input-multiple"><a href="comon-input-element-attributes.html#attr-input-multiple" id="multiple_0">multiple</a></code>, <code title="attr-input-pattern"><a href="common-input-element-attributes.html#attr-input-pattern" id="pattern_0">pattern</a></code>, <code title="attr-input-placeholder"><a href="common-input-element-attributes.html#attr-input-placeholder" id="placeholder_0">placeholder</a></code>, <code title="attr-input-readonly"><a href="common-input-element-attributes.html#attr-input-readonly" id="readonly_14">readonly</a></code>, <code title="attr-input-required"><a href="common-input-element-attributes.html#attr-input-required" id="required_1">required</a></code>, <code title="attr-input-size"><a href="common-input-element-attributes.html#attr-input-size" id="size_0">size</a></code>, <code title="attr-input-src"><a href="states-of-the-type-attribute.html#attr-input-src" id="src_48">src</a></code>, <code title="attr-input-step"><a href="common-input-element-attributes.html#attr-input-step" id="step_1">step</a></code>, and <code itle="attr-dim-width"><a href="dimension-attributes.html#attr-dim-width" id="width_12">width</a></code> content attributes, the <code title="dom-input-checked"><a href="common-input-element-apis.html#dom-input-checked">checked</a></code>, <code title="dom-input-files"><a href="common-input-element-apis.html#dom-input-files">files</a></code>, <code title="dom-input-valueAsDate"><a href="common-input-element-apis.html#dom-input-valueasdate">valueAsDate</a></code>, <code title="dom-input-valueAsNumber"><a href="common-input-element-apis.html#dom-input-valueasnumber">valueAsNumber</a></code>, and <code title="dom-input-list"><a href="common-input-element-apis.html#dom-input-list">list</a></code> IDL attributes, the <code title="dom-textarea/input-select"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/textFieldSelection.html#dom-textarea-input-select" title='Read about this "select()" reference in the full HTML5 spec.'>select()</a></code> method, the <code title="dom-textarea/input-selectionStart"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/textFieldSelection.html#dom-textarea-input-selectionstart" title='Read about this "selectionStart" reference in the full HTML5 spec.'>selectionStart</a></code>, <code title="dom-textarea/input-selectionEnd"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/textFieldSelection.html#dom-textarea-input-selectionend" title='Read about this "selectionEnd" reference in the full HTML5 spec.'>selectionEnd</a></code>, and <code title="dom-textarea/input-selectionDirection"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/textFieldSelection.html#dom-textarea-input-selectiondirection" title='Read about this "selectionDirection" reference in the full HTML5 spec.'>selectionDirection</a></code>, @@ -564,7 +610,9 @@ <code><a href="#the-input-element" id="input_62">input</a></code> element depends on the state of its <code title="attr-input-type"><a href="#attr-input-type" id="type_73">type</a></code> attribute. The following table summarizes which of those content attributes, IDL attributes, methods, and events apply - to each state:<table class="applies" id="input-type-attr-summary"><thead><tr><th> + to each state:</p> + + <table class="applies" id="input-type-attr-summary"><thead><tr><th> <th> <span title=""><a href="states-of-the-type-attribute.html#hidden-state-type-hidden" id="attr-input-type-hidden_8" title="attr-input-type-hidden">Hidden</a></span> <th> <span title=""><a href="states-of-the-type-attribute.html#text-type-text-state-and-search-state-type-search" id="attr-input-type-text_4" title="attr-input-type-text">Text</a>,</span> <span title=""><a href="states-of-the-type-attribute.html#text-type-text-state-and-search-state-type-search" id="attr-input-type-search_3" title="attr-input-type-search">Search</a></span> @@ -1509,16 +1557,28 @@ </table><p>The <dfn aria-haspopup="true" id="attr-input-value" role="button" tabindex="0"><code>value</code></dfn> content attribute gives the default <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-form-controls.html#concept-fe-value" title='Read about this "value" reference in the full HTML5 spec.'>value</a> of the <code><a href="#the-input-element" id="input_63">input</a></code> - element. <p>The <dfn aria-haspopup="true" id="attr-input-checked" role="button" tabindex="0"><code>checked</code></dfn> + element. </p> + + + + <p>The <dfn aria-haspopup="true" id="attr-input-checked" role="button" tabindex="0"><code>checked</code></dfn> content attribute is a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_10">boolean attribute</a> that gives the default <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-form-controls.html#concept-fe-checked" title='Read about this "checkedness" reference in the full HTML5 spec.'>checkedness</a> of the - <code><a href="#the-input-element" id="input_64">input</a></code> element. <hr><p>The <code title="attr-fae-form"><a href="association-of-controls-and-forms.html#attr-fae-form" id="form_50">form</a></code> attribute is used to + <code><a href="#the-input-element" id="input_64">input</a></code> element. </p> + + + + + + <hr><p>The <code title="attr-fae-form"><a href="association-of-controls-and-forms.html#attr-fae-form" id="form_50">form</a></code> attribute is used to explicitly associate the <code><a href="#the-input-element" id="input_65">input</a></code> element with its <a href="association-of-controls-and-forms.html#form-owner" id="form-owner_4">form owner</a>. The <code title="attr-fe-name"><a href="attributes-common-to-form-controls.html#attr-fe-name" id="name_31">name</a></code> attribute represents the element's name. The <code title="attr-fe-disabled"><a href="attributes-common-to-form-controls.html#attr-fe-disabled" id="disabled_12">disabled</a></code> attribute is used to make the control non-interactive and to prevent its value from being submitted. The <code title="attr-fe-autofocus"><a href="attributes-common-to-form-controls.html#attr-fe-autofocus" id="autofocus_0">autofocus</a></code> attribute controls focus.</p> + + <p>The <dfn aria-haspopup="true" id="dom-input-indeterminate" role="button" tabindex="0"><code>indeterminate</code></dfn> IDL attribute must initially be set to false. On getting, it must return the last value it was set to. On setting, it must be set to the new @@ -1543,3 +1603,8 @@ <p>On setting, they must act as if they <a href="common-dom-interfaces.html#reflect" id="reflect_70" title="reflect">reflected</a> the respective content attributes of the same name.</p> + + + + + \ No newline at end of file Index: constraints.html =================================================================== RCS file: /sources/public/html5/spec-author-view/constraints.html,v retrieving revision 1.15 retrieving revision 1.16 diff -u -d -r1.15 -r1.16 --- constraints.html 15 Feb 2012 10:14:02 -0000 1.15 +++ constraints.html 13 Mar 2012 19:58:36 -0000 1.16 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,14 +380,31 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="textFieldSelection.html">← 4.10.20 APIs for the text field selections</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="form-submission.html">4.10.22 Form submission →</a> <ol class="toc"><li><ol><li><ol><li><a href="constraints.html#constraints"><span class="secno">4.10.21 </span>Constraints</a> <ol><li><a href="constraints.html#definitions"><span class="secno">4.10.21.1 </span>Definitions</a><li><a href="constraints.html#the-constraint-validation-api" id="4.10.21.2-the-constraint-validation-api"><span class="secno">4.10.21.2 </span>The constraint validation API</a><li><a href="constraints.html#security-forms"><span class="secno">4.10.21.3 </span>Security</a></ol></ol></ol></ol></div> - <h4 id="constraints"><span class="secno">4.10.21 </span>Constraints</h4><h5 id="definitions"><span class="secno">4.10.21.1 </span>Definitions</h5><h5 id="the-constraint-validation-api"><span class="secno">4.10.21.2 </span>The <dfn aria-haspopup="true" role="button" tabindex="0">constraint validation API</dfn></h5><dl class="domintro"><dt><var title="">element</var> . <code id="dom-cva-willvalidate" title="dom-cva-willValidate"><a href="#dom-cva-willvalidate">willValidate</a></code></dt> + <h4 id="constraints"><span class="secno">4.10.21 </span>Constraints</h4> + + <h5 id="definitions"><span class="secno">4.10.21.1 </span>Definitions</h5> + + + + + + + + + + + <h5 id="the-constraint-validation-api"><span class="secno">4.10.21.2 </span>The <dfn aria-haspopup="true" role="button" tabindex="0">constraint validation API</dfn></h5> + + <dl class="domintro"><dt><var title="">element</var> . <code id="dom-cva-willvalidate" title="dom-cva-willValidate"><a href="#dom-cva-willvalidate">willValidate</a></code></dt> <dd> @@ -484,14 +537,29 @@ </script></pre> </div> + + <p>The <dfn aria-haspopup="true" id="dom-cva-validity" role="button" tabindex="0"><code>validity</code></dfn> attribute must return a <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/constraints.html#validitystate" title='Read about this "ValidityState" reference in the full HTML5 spec.'>ValidityState</a></code> object that represents the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/constraints.html#validity-states" title='Read about this "validity states" reference in the full HTML5 spec.'>validity states</a> of the element. This object is <a href="infrastructure.html#live" id="live_0">live</a>, and the same object must be returned each time the element's <code title="dom-cva-validity"><a href="#dom-cva-validity" id="validity_8">validity</a></code> attribute is retrieved.</p> -<h5 id="security-forms"><span class="secno">4.10.21.3 </span>Security</h5><p id="security-0">Servers should not rely on client-side + + + + + + <h5 id="security-forms"><span class="secno">4.10.21.3 </span>Security</h5> + + <p id="security-0">Servers should not rely on client-side validation. Client-side validation can be intentionally bypassed by hostile users, and unintentionally bypassed by users of older user agents or automated tools that do not implement these features. The constraint validation features are only intended to improve the user - experience, not to provide any kind of security mechanism. \ No newline at end of file + experience, not to provide any kind of security mechanism.</p> + + + + + + \ No newline at end of file Index: the-p-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-p-element.html,v retrieving revision 1.120 retrieving revision 1.121 diff -u -d -r1.120 -r1.121 --- the-p-element.html 21 Feb 2012 21:59:07 -0000 1.120 +++ the-p-element.html 13 Mar 2012 19:59:00 -0000 1.121 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="grouping-content.html">← 4.5 Grouping content</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-hr-element.html">4.5.2 The hr element →</a> </div> - <h4 id="the-p-element"><span class="secno">4.5.1 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>p</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_19" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-p-element"><span class="secno">4.5.1 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>p</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_19" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_42">Flow content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_9">Palpable content</a>.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_19" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> @@ -364,11 +404,15 @@ <pre class="idl">interface <dfn aria-haspopup="true" id="htmlparagraphelement" role="button" tabindex="0">HTMLParagraphElement</dfn> : <a href="elements.html#htmlelement" id="htmlelement_24">HTMLElement</a> {};</pre> </dd> </dl><p>The <code><a href="#the-p-element" id="p_17">p</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a - <a href="content-models.html#paragraph" id="paragraph_6">paragraph</a>.<p class="note">While paragraphs are usually represented in visual + <a href="content-models.html#paragraph" id="paragraph_6">paragraph</a>.</p> + + <p class="note">While paragraphs are usually represented in visual media by blocks of text that are physically separated from adjacent blocks through blank lines, a style sheet or user agent would be equally justified in presenting paragraph breaks in a different - manner, for instance using inline pilcrows (¶).<div class="example"> + manner, for instance using inline pilcrows (¶).</p> + + <div class="example"> <p>The following examples are conforming HTML fragments:</p> <pre><p>The little kitten gently seated himself on a piece of carpet. Later in his life, this would be referred to as the time the @@ -386,8 +430,12 @@ The validator complained,<br> So the author was pained,<br> To move the error from the markup to the rhyming.</p></pre> - </div><p>The <code><a href="#the-p-element" id="p_18">p</a></code> element should not be used when a more - specific element is more appropriate.<div class="example"> + </div> + + <p>The <code><a href="#the-p-element" id="p_18">p</a></code> element should not be used when a more + specific element is more appropriate.</p> + + <div class="example"> <p>The following example is technically correct:</p> @@ -415,7 +463,9 @@ </footer> </section></pre> - </div><div class="note"> + </div> + + <div class="note"> <p>List elements (in particular, <code><a href="the-ol-element.html#the-ol-element" id="ol_6">ol</a></code> and <code><a href="the-ul-element.html#the-ul-element" id="ul_6">ul</a></code> elements) cannot be children of <code><a href="#the-p-element" id="p_19">p</a></code> @@ -472,4 +522,8 @@ </div> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: examples.html =================================================================== RCS file: /sources/public/html5/spec-author-view/examples.html,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- examples.html 15 Feb 2012 10:14:04 -0000 1.13 +++ examples.html 13 Mar 2012 19:58:38 -0000 1.14 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,15 +380,25 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="attributes-common-to-td-and-th-elements.html">← 4.9.11 Attributes common to td and th elements</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="forms.html">4.10 Forms →</a> </div> - <h4 id="examples"><span class="secno">4.9.12 </span>Examples</h4><p>The following shows how might one mark up the bottom part of + <h4 id="examples"><span class="secno">4.9.12 </span>Examples</h4> + + + + <p>The following shows how might one mark up the bottom part of table 45 of the <cite>Smithsonian physical tables, Volume - 71</cite>:<pre><table> + 71</cite>:</p> + + + + <pre><table> <caption>Specification values: <b>Steel</b>, <b>Castings</b>, Ann. A.S.T.M. A27-16, Class B;* P max. 0.06; S max. 0.05.</caption> <thead> @@ -394,7 +440,11 @@ <td>30</td> </tr> </tbody> -</table></pre><p>This table could look like this:<table id="table-example-1"><caption>Specification values: <b>Steel</b>, <b>Castings</b>, +</table></pre> + + <p>This table could look like this:</p> + + <table id="table-example-1"><caption>Specification values: <b>Steel</b>, <b>Castings</b>, Ann. A.S.T.M. A27-16, Class B;* P max. 0.06; S max. 0.05.</caption> <thead><tr><th rowspan="2">Grade.</th> <th rowspan="2">Yield Point.</th> @@ -422,7 +472,9 @@ <td>22</td> <td>30</td> </table><hr><p>The following shows how one might mark up the gross margin table - on page 46 of Apple, Inc's 10-K filing for fiscal year 2008:<pre><table> + on page 46 of Apple, Inc's 10-K filing for fiscal year 2008:</p> + + <pre><table> <thead> <tr> <th> @@ -452,8 +504,13 @@ <td>34.3% <td>34.0% <td>29.0% -</table></pre><hr><p>The following shows how one might mark up the operating expenses - table from lower on the same page of that document:<pre><table> +</table></pre> + + + <hr><p>The following shows how one might mark up the operating expenses + table from lower on the same page of that document:</p> + + <pre><table> <colgroup> <col> <colgroup> <col> <col> <col> <thead> @@ -468,7 +525,11 @@ <td> $ 3,761 <td> $ 2,963 <td> $ 2,433 <tr> <th scope=row> Percentage of net sales <td> 11.6% <td> 12.3% <td> 12.6% -</table></pre><p>This table could look like this:<table class="apple-table-examples e2"><thead><tr><th> <th>2008 <th>2007 <th>2006 +</table></pre> + + <p>This table could look like this:</p> + + <table class="apple-table-examples e2"><thead><tr><th> <th>2008 <th>2007 <th>2006 <tbody><tr><th scope="rowgroup"> Research and development <td> $ 1,109 <td> $ 782 <td> $ 712 <tr><th scope="row"> Percentage of net sales Index: the-map-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-map-element.html,v retrieving revision 1.597 retrieving revision 1.598 diff -u -d -r1.597 -r1.598 --- the-map-element.html 21 Feb 2012 21:59:06 -0000 1.597 +++ the-map-element.html 13 Mar 2012 19:58:59 -0000 1.598 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-canvas-element.html">← 4.8.11 The canvas element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-area-element.html">4.8.13 The area element →</a> </div> - <h4 id="the-map-element"><span class="secno">4.8.12 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>map</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_71" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-map-element"><span class="secno">4.8.12 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>map</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_71" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_110">Flow content</a>.</dd> <dd>When the element only contains <a href="content-models.html#phrasing-content" id="phrasing-content_122">phrasing content</a>: <a href="content-models.html#phrasing-content" id="phrasing-content_123">phrasing content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_48">Palpable content</a>.</dd> @@ -372,7 +412,9 @@ </dd> </dl><p>The <code><a href="#the-map-element" id="map_7">map</a></code> element, in conjunction with any <code><a href="the-area-element.html#the-area-element" id="area_8">area</a></code> element descendants, defines an <a href="image-maps.html#image-map" id="image-map_3">image - map</a>. The element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> its children.<p>The <dfn aria-haspopup="true" id="attr-map-name" role="button" tabindex="0"><code>name</code></dfn> attribute + map</a>. The element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> its children.</p> + + <p>The <dfn aria-haspopup="true" id="attr-map-name" role="button" tabindex="0"><code>name</code></dfn> attribute gives the map a name so that it can be referenced. The attribute must be present and must have a non-empty value with no <a href="common-microsyntaxes.html#space-character" id="space-character_20" title="space character">space characters</a>. The value of the <code title="attr-map-name"><a href="#attr-map-name" id="name_17">name</a></code> attribute must not be a @@ -380,7 +422,10 @@ match for the value of the <code title="attr-map-name"><a href="#attr-map-name" id="name_18">name</a></code> attribute of another <code><a href="#the-map-element" id="map_8">map</a></code> element in the same document. If the <code title="attr-id"><a href="global-attributes.html#the-id-attribute" id="id_2">id</a></code> attribute is also - specified, both attributes must have the same value.<dl class="domintro"><dt><var title="">map</var> . <code id="dom-map-areas" title="dom-map-areas"><a href="#dom-map-areas">areas</a></code></dt> + specified, both attributes must have the same value.</p> + + + <dl class="domintro"><dt><var title="">map</var> . <code id="dom-map-areas" title="dom-map-areas"><a href="#dom-map-areas">areas</a></code></dt> <dd> @@ -398,7 +443,10 @@ </dl><p>The IDL attribute <dfn aria-haspopup="true" id="dom-map-name" role="button" tabindex="0"><code>name</code></dfn> must <a href="common-dom-interfaces.html#reflect" id="reflect_46">reflect</a> the content attribute of the same name.</p> -<div class="example"> + + + + <div class="example"> <p>Image maps can be defined in conjunction with other content on the page, to ease maintenance. This example is of a page with an @@ -428,4 +476,8 @@ </MAP> </FOOTER></pre> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: browsers.html =================================================================== RCS file: /sources/public/html5/spec-author-view/browsers.html,v retrieving revision 1.1200 retrieving revision 1.1201 diff -u -d -r1.1200 -r1.1201 --- browsers.html 15 Feb 2012 10:14:01 -0000 1.1200 +++ browsers.html 13 Mar 2012 19:58:35 -0000 1.1201 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,7 +380,9 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="links.html">← 4.12 Links</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="origin-0.html">5.3 Origin →</a> @@ -355,10 +393,24 @@ <ol><li><a href="browsers.html#navigating-auxiliary-browsing-contexts-in-the-dom"><span class="secno">5.1.2.1 </span>Navigating auxiliary browsing contexts in the DOM</a></ol><li><a href="browsers.html#secondary-browsing-contexts"><span class="secno">5.1.3 </span>Secondary browsing contexts</a><li><a href="browsers.html#browsing-context-names"><span class="secno">5.1.4 </span>Browsing context names</a></ol><li><a href="browsers.html#the-window-object"><span class="secno">5.2 </span>The <code>Window</code> object</a> <ol><li><a href="browsers.html#apis-for-creating-and-navigating-browsing-contexts-by-name"><span class="secno">5.2.1 </span>APIs for creating and navigating browsing contexts by name</a><li><a href="browsers.html#accessing-other-browsing-contexts"><span class="secno">5.2.2 </span>Accessing other browsing contexts</a><li><a href="browsers.html#named-access-on-the-window-object"><span class="secno">5.2.3 </span>Named access on the <code>Window</code> object</a><li><a href="browsers.html#browser-interface-elements"><span class="secno">5.2.4 </span>Browser interface elements</a></ol></ol></ol></div> - <h2 id="browsers"><span class="secno">5 </span>Loading Web pages</h2><h3 id="windows"><span class="secno">5.1 </span>Browsing contexts</h3><p>A <dfn aria-haspopup="true" id="browsing-context" role="button" tabindex="0">browsing context</dfn> is an environment in which - <code><a href="dom.html#document" id="document_72">Document</a></code> objects are presented to the user.<p class="note">A tab or window in a Web browser typically contains - a <a href="#browsing-context" id="browsing-context_11">browsing context</a>, as does an <code><a href="the-iframe-element.html#the-iframe-element" id="iframe_44">iframe</a></code>.<p>Each <a href="#browsing-context" id="browsing-context_12">browsing context</a> has a corresponding - <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/browsers.html#windowproxy" title='Read about this "WindowProxy" reference in the full HTML5 spec.'>WindowProxy</a></code> object.<p>A <a href="#browsing-context" id="browsing-context_13">browsing context</a> has a <a href="history.html#session-history" id="session-history_0">session + <h2 id="browsers"><span class="secno">5 </span>Loading Web pages</h2> + + + + + + <h3 id="windows"><span class="secno">5.1 </span>Browsing contexts</h3> + + <p>A <dfn aria-haspopup="true" id="browsing-context" role="button" tabindex="0">browsing context</dfn> is an environment in which + <code><a href="dom.html#document" id="document_72">Document</a></code> objects are presented to the user.</p> + + <p class="note">A tab or window in a Web browser typically contains + a <a href="#browsing-context" id="browsing-context_11">browsing context</a>, as does an <code><a href="the-iframe-element.html#the-iframe-element" id="iframe_44">iframe</a></code>.</p> + + <p>Each <a href="#browsing-context" id="browsing-context_12">browsing context</a> has a corresponding + <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/browsers.html#windowproxy" title='Read about this "WindowProxy" reference in the full HTML5 spec.'>WindowProxy</a></code> object.</p> + + <p>A <a href="#browsing-context" id="browsing-context_13">browsing context</a> has a <a href="history.html#session-history" id="session-history_0">session history</a>, which lists the <code><a href="dom.html#document" id="document_73">Document</a></code> objects that that <a href="#browsing-context" id="browsing-context_14">browsing context</a> has presented, is presenting, or will present. At any time, one <code><a href="dom.html#document" id="document_74">Document</a></code> in each @@ -367,11 +419,15 @@ context</a> is that <a href="#browsing-context" id="browsing-context_17">browsing context</a> whose <a href="history.html#session-history" id="session-history_1">session history</a> contains the <code><a href="dom.html#document" id="document_76">Document</a></code>, if any. (A <code><a href="dom.html#document" id="document_77">Document</a></code> created using an API such as <code title="dom-DOMImplementation-createDocument"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#dom-domimplementation-createdocument" title='Read about this "createDocument()" reference in the full HTML5 spec.'>createDocument()</a></code> - has no <a href="#browsing-context" id="browsing-context_18">browsing context</a>.)<p>Each <code><a href="dom.html#document" id="document_78">Document</a></code> is associated with a + has no <a href="#browsing-context" id="browsing-context_18">browsing context</a>.)</p> + + <p>Each <code><a href="dom.html#document" id="document_78">Document</a></code> is associated with a <code><a href="#window" id="window_8">Window</a></code> object. A <a href="#browsing-context" id="browsing-context_19">browsing context</a>'s <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/browsers.html#windowproxy" title='Read about this "WindowProxy" reference in the full HTML5 spec.'>WindowProxy</a></code> object forwards everything to the <a href="#browsing-context" id="browsing-context_20">browsing context</a>'s <a href="#active-document" id="active-document_4">active document</a>'s - <code><a href="#window" id="window_9">Window</a></code> object.<p class="note">In general, there is a 1-to-1 mapping from the + <code><a href="#window" id="window_9">Window</a></code> object.</p> + + <p class="note">In general, there is a 1-to-1 mapping from the <code><a href="#window" id="window_10">Window</a></code> object to the <code><a href="dom.html#document" id="document_79">Document</a></code> object. There are two exceptions. First, a <code><a href="#window" id="window_11">Window</a></code> can be reused for the presentation of a second <code><a href="dom.html#document" id="document_80">Document</a></code> in the same @@ -381,10 +437,14 @@ <a class="full-spec-link" href="http://dev.w3.org/html5/spec/history.html#replacement-enabled" title='Read about this "replacement enabled" reference in the full HTML5 spec.'>replacement enabled</a>. Second, a <code><a href="dom.html#document" id="document_82">Document</a></code> can end up being reused for several <code><a href="#window" id="window_12">Window</a></code> objects when the <code title="dom-document-open"><a href="dynamic-markup-insertion.html#dom-document-open" id="document.open()_2">document.open()</a></code> method is - used, such that the mapping is then 1-to-many.<p class="note">A <code><a href="dom.html#document" id="document_83">Document</a></code> does not necessarily have a + used, such that the mapping is then 1-to-many.</p> + + <p class="note">A <code><a href="dom.html#document" id="document_83">Document</a></code> does not necessarily have a <a href="#browsing-context" id="browsing-context_23">browsing context</a> associated with it. In particular, data mining tools are likely to never instantiate browsing - contexts.<hr><p>A <a href="#browsing-context" id="browsing-context_24">browsing context</a> can have a <dfn aria-haspopup="true" id="creator-browsing-context" role="button" tabindex="0">creator browsing + contexts.</p> + + <hr><p>A <a href="#browsing-context" id="browsing-context_24">browsing context</a> can have a <dfn aria-haspopup="true" id="creator-browsing-context" role="button" tabindex="0">creator browsing context</dfn>, the <a href="#browsing-context" id="browsing-context_25">browsing context</a> that was responsible for its creation. If a <a href="#browsing-context" id="browsing-context_26">browsing context</a> has a <a href="#parent-browsing-context" id="parent-browsing-context_0">parent browsing context</a>, then that is its @@ -392,11 +452,20 @@ <a href="#browsing-context" id="browsing-context_27">browsing context</a> has an <a href="#opener-browsing-context" id="opener-browsing-context_0">opener browsing context</a>, then <em>that</em> is its <a href="#creator-browsing-context" id="creator-browsing-context_1">creator browsing context</a>. Otherwise, the <a href="#browsing-context" id="browsing-context_28">browsing context</a> has no - <a href="#creator-browsing-context" id="creator-browsing-context_2">creator browsing context</a>.<p>If a <a href="#browsing-context" id="browsing-context_29">browsing context</a> <var title="">A</var> has a + <a href="#creator-browsing-context" id="creator-browsing-context_2">creator browsing context</a>.</p> + + <p>If a <a href="#browsing-context" id="browsing-context_29">browsing context</a> <var title="">A</var> has a <a href="#creator-browsing-context" id="creator-browsing-context_3">creator browsing context</a>, then the <code><a href="dom.html#document" id="document_84">Document</a></code> that was the <a href="#active-document" id="active-document_5">active document</a> of that <a href="#creator-browsing-context" id="creator-browsing-context_4">creator browsing context</a> at the time <var title="">A</var> was created is the <dfn aria-haspopup="true" id="creator-document" role="button" tabindex="0">creator - <code>Document</code></dfn>.<h4 id="nested-browsing-contexts"><span class="secno">5.1.1 </span>Nested browsing contexts</h4><p>Certain elements (for example, <code><a href="the-iframe-element.html#the-iframe-element" id="iframe_45">iframe</a></code> elements) can + <code>Document</code></dfn>.</p> + + + + + <h4 id="nested-browsing-contexts"><span class="secno">5.1.1 </span>Nested browsing contexts</h4> + + <p>Certain elements (for example, <code><a href="the-iframe-element.html#the-iframe-element" id="iframe_45">iframe</a></code> elements) can instantiate further <a href="#browsing-context" id="browsing-context_30" title="browsing context">browsing contexts</a>. These are called <dfn aria-haspopup="true" id="nested-browsing-context" role="button" tabindex="0">nested browsing contexts</dfn>. If a browsing context <var title="">P</var> has a <code><a href="dom.html#document" id="document_85">Document</a></code> <var title="">D</var> with an element <var title="">E</var> that nests another browsing @@ -410,23 +479,33 @@ context</dfn> of <var title="">C</var> and <var title="">C</var> is said to be a <dfn aria-haspopup="true" id="child-browsing-context" role="button" tabindex="0">child browsing context</dfn> of <var title="">P</var>. Otherwise, the <a href="#nested-browsing-context" id="nested-browsing-context_11">nested browsing context</a> <var title="">C</var> has no <a href="#parent-browsing-context" id="parent-browsing-context_1">parent browsing - context</a>.<p>A browsing context <var title="">A</var> is said to be an <dfn aria-haspopup="true" id="ancestor-browsing-context" role="button" tabindex="0">ancestor</dfn> of a browsing + context</a>.</p> + + <p>A browsing context <var title="">A</var> is said to be an <dfn aria-haspopup="true" id="ancestor-browsing-context" role="button" tabindex="0">ancestor</dfn> of a browsing context <var title="">B</var> if there exists a browsing context <var title="">A'</var> that is a <a href="#child-browsing-context" id="child-browsing-context_1">child browsing context</a> of <var title="">A</var> and that is itself an <a href="#ancestor-browsing-context" id="ancestor-browsing-context_0" title="ancestor browsing context">ancestor</a> of <var title="">B</var>, or if there is a browsing context <var title="">P</var> that is a <a href="#child-browsing-context" id="child-browsing-context_2">child browsing context</a> of <var title="">A</var> and - that is the <a href="#parent-browsing-context" id="parent-browsing-context_2">parent browsing context</a> of <var title="">B</var>.<p>A browsing context that is not a <a href="#nested-browsing-context" id="nested-browsing-context_12">nested browsing + that is the <a href="#parent-browsing-context" id="parent-browsing-context_2">parent browsing context</a> of <var title="">B</var>.</p> + + <p>A browsing context that is not a <a href="#nested-browsing-context" id="nested-browsing-context_12">nested browsing context</a> has no <a href="#parent-browsing-context" id="parent-browsing-context_3">parent browsing context</a>, and is the <dfn aria-haspopup="true" id="top-level-browsing-context" role="button" tabindex="0">top-level browsing context</dfn> of all the browsing contexts for which it is an <a href="#ancestor-browsing-context" id="ancestor-browsing-context_1">ancestor browsing - context</a>.<p>The transitive closure of <a href="#parent-browsing-context" id="parent-browsing-context_4" title="parent browsing + context</a>.</p> + + <p>The transitive closure of <a href="#parent-browsing-context" id="parent-browsing-context_4" title="parent browsing context">parent browsing contexts</a> for a <a href="#nested-browsing-context" id="nested-browsing-context_13">nested browsing context</a> gives the list of <a href="#ancestor-browsing-context" id="ancestor-browsing-context_2" title="ancestor browsing - context">ancestor browsing contexts</a>.<p>The <dfn aria-haspopup="true" id="list-of-the-descendant-browsing-contexts" role="button" tabindex="0">list of the descendant browsing contexts</dfn> of a + context">ancestor browsing contexts</a>.</p> + + <p>The <dfn aria-haspopup="true" id="list-of-the-descendant-browsing-contexts" role="button" tabindex="0">list of the descendant browsing contexts</dfn> of a <code><a href="dom.html#document" id="document_87">Document</a></code> <var title="">d</var> is the (ordered) list - returned by the following algorithm:<ol><li><p>Let <var title="">list</var> be an empty list.</li> + returned by the following algorithm:</p> + + <ol><li><p>Let <var title="">list</var> be an empty list.</li> <li> @@ -453,15 +532,21 @@ browsing context</a>, or it has a <a href="#parent-browsing-context" id="parent-browsing-context_5">parent browsing context</a> and the <code><a href="dom.html#document" id="document_89">Document</a></code> <a href="#browsing-context-nested-through" id="browsing-context-nested-through_1" title="browsing context nested through">through which</a> it is <a href="#nested-browsing-context" id="nested-browsing-context_14" title="nested browsing context">nested</a> is itself <a href="#fully-active" id="fully-active_0">fully - active</a>.<p>Because they are nested through an element, <a href="#child-browsing-context" id="child-browsing-context_6" title="child + active</a>.</p> + + <p>Because they are nested through an element, <a href="#child-browsing-context" id="child-browsing-context_6" title="child browsing context">child browsing contexts</a> are always tied to a specific <code><a href="dom.html#document" id="document_90">Document</a></code> in their <a href="#parent-browsing-context" id="parent-browsing-context_6">parent browsing context</a>. User agents must not allow the user to interact with <a href="#child-browsing-context" id="child-browsing-context_7" title="child browsing context">child browsing contexts</a> of elements that are in <code><a href="dom.html#document" id="document_91">Document</a></code>s that are not - themselves <a href="#fully-active" id="fully-active_1">fully active</a>.<p>A <a href="#nested-browsing-context" id="nested-browsing-context_15">nested browsing context</a> can have a <a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-iframe-element.html#seamless-browsing-context-flag" title='Read about this "seamless browsing context flag" reference in the full HTML5 spec.'>seamless + themselves <a href="#fully-active" id="fully-active_1">fully active</a>.</p> + + <p>A <a href="#nested-browsing-context" id="nested-browsing-context_15">nested browsing context</a> can have a <a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-iframe-element.html#seamless-browsing-context-flag" title='Read about this "seamless browsing context flag" reference in the full HTML5 spec.'>seamless browsing context flag</a> set, if it is embedded through an - <code><a href="the-iframe-element.html#the-iframe-element" id="iframe_46">iframe</a></code> element with a <code title="attr-iframe-seamless"><a href="the-iframe-element.html#attr-iframe-seamless" id="seamless_1">seamless</a></code> attribute.<p class="note">A <a href="#nested-browsing-context" id="nested-browsing-context_16">nested browsing context</a> can in some + <code><a href="the-iframe-element.html#the-iframe-element" id="iframe_46">iframe</a></code> element with a <code title="attr-iframe-seamless"><a href="the-iframe-element.html#attr-iframe-seamless" id="seamless_1">seamless</a></code> attribute.</p> + + <p class="note">A <a href="#nested-browsing-context" id="nested-browsing-context_16">nested browsing context</a> can in some cases be taken out of its <a href="#parent-browsing-context" id="parent-browsing-context_7">parent browsing context</a> (e.g. if an <code><a href="the-iframe-element.html#the-iframe-element" id="iframe_47">iframe</a></code> element is removed from its <code><a href="dom.html#document" id="document_92">Document</a></code>). In such a situation, the <a href="#nested-browsing-context" id="nested-browsing-context_17">nested @@ -475,7 +560,12 @@ Furthermore, if a <a href="#browsing-context-container" id="browsing-context-container_2">browsing context container</a> (such as an <code><a href="the-iframe-element.html#the-iframe-element" id="iframe_48">iframe</a></code>) is moved to another <code><a href="dom.html#document" id="document_95">Document</a></code>, then the <a href="#parent-browsing-context" id="parent-browsing-context_9">parent browsing context</a> of its <a href="#nested-browsing-context" id="nested-browsing-context_19">nested - browsing context</a> will change.<h5 id="navigating-nested-browsing-contexts-in-the-dom"><span class="secno">5.1.1.1 </span>Navigating nested browsing contexts in the DOM</h5><dl class="domintro"><dt><var title="">window</var> . <code id="dom-top" title="dom-top"><a href="#dom-top">top</a></code></dt> + browsing context</a> will change.</p> + + + <h5 id="navigating-nested-browsing-contexts-in-the-dom"><span class="secno">5.1.1.1 </span>Navigating nested browsing contexts in the DOM</h5> + + <dl class="domintro"><dt><var title="">window</var> . <code id="dom-top" title="dom-top"><a href="#dom-top">top</a></code></dt> <dd> @@ -503,14 +593,23 @@ </dd> - </dl><h4 id="auxiliary-browsing-contexts"><span class="secno">5.1.2 </span>Auxiliary browsing contexts</h4><p>It is possible to create new browsing contexts that are related + </dl><h4 id="auxiliary-browsing-contexts"><span class="secno">5.1.2 </span>Auxiliary browsing contexts</h4> + + <p>It is possible to create new browsing contexts that are related to a <a href="#top-level-browsing-context" id="top-level-browsing-context_4">top-level browsing context</a> without being nested through an element. Such browsing contexts are called <dfn aria-haspopup="true" id="auxiliary-browsing-context" role="button" tabindex="0">auxiliary browsing contexts</dfn>. Auxiliary browsing contexts are always <a href="#top-level-browsing-context" id="top-level-browsing-context_5" title="top-level browsing context">top-level browsing - contexts</a>.<p>An <a href="#auxiliary-browsing-context" id="auxiliary-browsing-context_0">auxiliary browsing context</a> has an <dfn aria-haspopup="true" id="opener-browsing-context" role="button" tabindex="0">opener + contexts</a>.</p> + + <p>An <a href="#auxiliary-browsing-context" id="auxiliary-browsing-context_0">auxiliary browsing context</a> has an <dfn aria-haspopup="true" id="opener-browsing-context" role="button" tabindex="0">opener browsing context</dfn>, which is the <a href="#browsing-context" id="browsing-context_33">browsing context</a> from which the <a href="#auxiliary-browsing-context" id="auxiliary-browsing-context_1">auxiliary browsing context</a> was - created.<h5 id="navigating-auxiliary-browsing-contexts-in-the-dom"><span class="secno">5.1.2.1 </span>Navigating auxiliary browsing contexts in the DOM</h5><p>The <dfn aria-haspopup="true" id="dom-opener" role="button" tabindex="0"><code>opener</code></dfn> IDL + created.</p> + + + <h5 id="navigating-auxiliary-browsing-contexts-in-the-dom"><span class="secno">5.1.2.1 </span>Navigating auxiliary browsing contexts in the DOM</h5> + + <p>The <dfn aria-haspopup="true" id="dom-opener" role="button" tabindex="0"><code>opener</code></dfn> IDL attribute on the <code><a href="#window" id="window_13">Window</a></code> object, on getting, must return the <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/browsers.html#windowproxy" title='Read about this "WindowProxy" reference in the full HTML5 spec.'>WindowProxy</a></code> object of the <a href="#browsing-context" id="browsing-context_34">browsing context</a> from which the current <a href="#browsing-context" id="browsing-context_35">browsing context</a> @@ -519,14 +618,42 @@ context</a> has not <i><a href="#disowned-its-opener" id="disowned-its-opener_0">disowned its opener</a></i>; otherwise, it must return null. On setting, if the new value is null then the current <a href="#browsing-context" id="browsing-context_37">browsing context</a> must <dfn aria-haspopup="true" id="disowned-its-opener" role="button" tabindex="0">disown its opener</dfn>; if the new value is anything else - then the user agent must ignore the new value.<h4 id="secondary-browsing-contexts"><span class="secno">5.1.3 </span>Secondary browsing contexts</h4><p>User agents may support <dfn aria-haspopup="true" id="secondary-browsing-context" role="button" tabindex="0">secondary browsing contexts</dfn>, which are <a href="#browsing-context" id="browsing-context_38" title="browsing context">browsing contexts</a> that form part of - the user agent's interface, apart from the main content area.<h4 id="browsing-context-names"><span class="secno">5.1.4 </span>Browsing context names</h4><p>Browsing contexts can have a <dfn aria-haspopup="true" id="browsing-context-name" role="button" tabindex="0">browsing context name</dfn>. By - default, a browsing context has no name (its name is not set).<p>A <dfn aria-haspopup="true" id="valid-browsing-context-name" role="button" tabindex="0">valid browsing context name</dfn> is any string with at + then the user agent must ignore the new value.</p> + + + + <h4 id="secondary-browsing-contexts"><span class="secno">5.1.3 </span>Secondary browsing contexts</h4> + + + + <p>User agents may support <dfn aria-haspopup="true" id="secondary-browsing-context" role="button" tabindex="0">secondary browsing contexts</dfn>, which are <a href="#browsing-context" id="browsing-context_38" title="browsing context">browsing contexts</a> that form part of + the user agent's interface, apart from the main content area.</p> + + + + + + + + + + + + <h4 id="browsing-context-names"><span class="secno">5.1.4 </span>Browsing context names</h4> + + <p>Browsing contexts can have a <dfn aria-haspopup="true" id="browsing-context-name" role="button" tabindex="0">browsing context name</dfn>. By + default, a browsing context has no name (its name is not set).</p> + + <p>A <dfn aria-haspopup="true" id="valid-browsing-context-name" role="button" tabindex="0">valid browsing context name</dfn> is any string with at least one character that does not start with a U+005F LOW LINE character. (Names starting with an underscore are reserved for - special keywords.)<p>A <dfn aria-haspopup="true" id="valid-browsing-context-name-or-keyword" role="button" tabindex="0">valid browsing context name or keyword</dfn> is any string + special keywords.)</p> + + <p>A <dfn aria-haspopup="true" id="valid-browsing-context-name-or-keyword" role="button" tabindex="0">valid browsing context name or keyword</dfn> is any string that is either a <a href="#valid-browsing-context-name" id="valid-browsing-context-name_2">valid browsing context name</a> or that is - an <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_20">ASCII case-insensitive</a> match for one of: <code title="">_blank</code>, <code title="">_self</code>, <code title="">_parent</code>, or <code title="">_top</code>.<p>These values have different meanings based on whether the page is + an <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_20">ASCII case-insensitive</a> match for one of: <code title="">_blank</code>, <code title="">_self</code>, <code title="">_parent</code>, or <code title="">_top</code>.</p> + + <p>These values have different meanings based on whether the page is sandboxed or not, as summarized in the following (non-normative) table. In this table, "current" means the <a href="#browsing-context" id="browsing-context_39">browsing context</a> that the link or script is in, "parent" means the @@ -541,7 +668,9 @@ preferences and user agent policies, "maybe new" means the same as "new" but the requirements for those cases encourage user agents to treat it more like "none", and "none" means that by default nothing - will happen.<table><thead><tr><th rowspan="2">Keyword + will happen.</p> + + <table><thead><tr><th rowspan="2">Keyword <th rowspan="2">Ordinary effect <th colspan="5">Effect in an <code><a href="the-iframe-element.html#the-iframe-element" id="iframe_49">iframe</a></code> with... <tr><th><code title="">seamless=""</code> @@ -671,7 +800,16 @@ <td>none </table><p><small>† This case is only possible if the <code title="attr-iframe-sandbox"><a href="the-iframe-element.html#attr-iframe-sandbox" id="sandbox_9">sandbox</a></code> attribute also allows - scripts.</small><h3 id="the-window-object"><span class="secno">5.2 </span>The <code><a href="#window" id="window_14">Window</a></code> object</h3><pre class="idl">[ReplaceableNamedProperties] + scripts.</small></p> + + + + + + + <h3 id="the-window-object"><span class="secno">5.2 </span>The <code><a href="#window" id="window_14">Window</a></code> object</h3> + + <pre class="idl">[ReplaceableNamedProperties] interface <dfn aria-haspopup="true" id="window" role="button" tabindex="0">Window</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#eventtarget" title='Read about this "EventTarget" reference in the full HTML5 spec.'>EventTarget</a> { // the current browsing context [Unforgeable] readonly attribute <a class="full-spec-link" href="http://dev.w3.org/html5/spec/browsers.html#windowproxy" title='Read about this "WindowProxy" reference in the full HTML5 spec.'>WindowProxy</a> <a href="#dom-window" title="dom-window">window</a>; @@ -782,7 +920,11 @@ [TreatNonCallableAsNull] attribute <a href="webappapis.html#function" id="function_210">Function</a>? <a href="index.html#ix-handler-window-onunload" title="handler-window-onunload">onunload</a>; [TreatNonCallableAsNull] attribute <a href="webappapis.html#function" id="function_211">Function</a>? <a href="index.html#ix-handler-onvolumechange" title="handler-onvolumechange">onvolumechange</a>; [TreatNonCallableAsNull] attribute <a href="webappapis.html#function" id="function_212">Function</a>? <a href="index.html#ix-handler-onwaiting" title="handler-onwaiting">onwaiting</a>; -};</pre><dl class="domintro"><dt><var title="">window</var> . <code id="dom-window" title="dom-window"><a href="#dom-window">window</a></code></dt> +};</pre> + + + + <dl class="domintro"><dt><var title="">window</var> . <code id="dom-window" title="dom-window"><a href="#dom-window">window</a></code></dt> <dt><var title="">window</var> . <code id="dom-frames" title="dom-frames"><a href="#dom-frames">frames</a></code></dt> <dt><var title="">window</var> . <code id="dom-self" title="dom-self"><a href="#dom-self">self</a></code></dt> @@ -810,7 +952,9 @@ </dd> - </dl><h4 id="apis-for-creating-and-navigating-browsing-contexts-by-name"><span class="secno">5.2.1 </span>APIs for creating and navigating browsing contexts by name</h4><dl class="domintro"><dt><var title="">window</var> = <var title="">window</var> . <code id="dom-open" title="dom-open"><a href="#dom-open">open</a></code>( [ <var title="">url</var> [, <var title="">target</var> [, <var title="">features</var> [, <var title="">replace</var> ] ] ] ] )</dt> + </dl><h4 id="apis-for-creating-and-navigating-browsing-contexts-by-name"><span class="secno">5.2.1 </span>APIs for creating and navigating browsing contexts by name</h4> + + <dl class="domintro"><dt><var title="">window</var> = <var title="">window</var> . <code id="dom-open" title="dom-open"><a href="#dom-open">open</a></code>( [ <var title="">url</var> [, <var title="">target</var> [, <var title="">features</var> [, <var title="">replace</var> ] ] ] ] )</dt> <dd> @@ -849,7 +993,9 @@ </dd> - </dl><h4 id="accessing-other-browsing-contexts"><span class="secno">5.2.2 </span>Accessing other browsing contexts</h4><dl class="domintro"><dt><var title="">window</var> . <code id="dom-length" title="dom-length"><a href="#dom-length">length</a></code></dt> + </dl><h4 id="accessing-other-browsing-contexts"><span class="secno">5.2.2 </span>Accessing other browsing contexts</h4> + + <dl class="domintro"><dt><var title="">window</var> . <code id="dom-length" title="dom-length"><a href="#dom-length">length</a></code></dt> <dd> @@ -866,7 +1012,9 @@ </dd> - </dl><h4 id="named-access-on-the-window-object"><span class="secno">5.2.3 </span>Named access on the <code><a href="#window" id="window_16">Window</a></code> object</h4><dl class="domintro"><dt><var title="">window</var>[<var title="">name</var>]</dt> + </dl><h4 id="named-access-on-the-window-object"><span class="secno">5.2.3 </span>Named access on the <code><a href="#window" id="window_16">Window</a></code> object</h4> + + <dl class="domintro"><dt><var title="">window</var>[<var title="">name</var>]</dt> <dd> @@ -874,12 +1022,20 @@ </dd> - </dl><h4 id="browser-interface-elements"><span class="secno">5.2.4 </span>Browser interface elements</h4><p>To allow Web pages to integrate with Web browsers, certain Web + </dl><h4 id="browser-interface-elements"><span class="secno">5.2.4 </span>Browser interface elements</h4> + + <p>To allow Web pages to integrate with Web browsers, certain Web browser interface elements are exposed in a limited way to scripts - in Web pages.<p>Each interface element is represented by a <code><a href="#barprop" id="barprop_6">BarProp</a></code> - object:<pre class="idl">interface <dfn aria-haspopup="true" id="barprop" role="button" tabindex="0">BarProp</dfn> { + in Web pages.</p> + + <p>Each interface element is represented by a <code><a href="#barprop" id="barprop_6">BarProp</a></code> + object:</p> + + <pre class="idl">interface <dfn aria-haspopup="true" id="barprop" role="button" tabindex="0">BarProp</dfn> { attribute boolean <a href="#dom-barprop-visible" title="dom-BarProp-visible">visible</a>; -};</pre><dl class="domintro"><dt><var title="">window</var> . <code id="dom-window-locationbar" title="dom-window-locationbar"><a href="#dom-window-locationbar">locationbar</a></code> . <code id="dom-barprop-visible" title="dom-BarProp-visible"><a href="#dom-barprop-visible">visible</a></code></dt> +};</pre> + + <dl class="domintro"><dt><var title="">window</var> . <code id="dom-window-locationbar" title="dom-window-locationbar"><a href="#dom-window-locationbar">locationbar</a></code> . <code id="dom-barprop-visible" title="dom-BarProp-visible"><a href="#dom-barprop-visible">visible</a></code></dt> <dd> <p>Returns true if the location bar is visible; otherwise, returns false.</p> </dd> Index: the-h4-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-h4-element.html,v retrieving revision 1.117 retrieving revision 1.118 diff -u -d -r1.117 -r1.118 --- the-h4-element.html 5 Mar 2012 05:58:59 -0000 1.117 +++ the-h4-element.html 13 Mar 2012 19:58:58 -0000 1.118 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-aside-element.html">← 4.4.5 The aside element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-hgroup-element.html">4.4.7 The hgroup element →</a> </div> - <h4 id="the-h1-h2-h3-h4-h5-and-h6-elements"><span class="secno">4.4.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>h1</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h2</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h3</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h4</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h5</code></dfn>, and <dfn aria-haspopup="true" role="button" tabindex="0"><code>h6</code></dfn> elements</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_14" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-h1-h2-h3-h4-h5-and-h6-elements"><span class="secno">4.4.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>h1</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h2</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h3</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h4</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h5</code></dfn>, and <dfn aria-haspopup="true" role="button" tabindex="0"><code>h6</code></dfn> elements</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_14" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_29">Flow content</a>.</dd> <dd><a href="content-models.html#heading-content" id="heading-content_2">Heading content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_4">Palpable content</a>.</dd> @@ -366,11 +406,17 @@ <pre class="idl">interface <dfn aria-haspopup="true" id="htmlheadingelement" role="button" tabindex="0">HTMLHeadingElement</dfn> : <a href="elements.html#htmlelement" id="htmlelement_19">HTMLElement</a> {};</pre> </dd> </dl><p>These elements <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represent" reference in the full HTML5 spec.'>represent</a> headings - for their sections.<p>The semantics and meaning of these elements are defined in the - section on <a href="headings-and-sections.html#headings-and-sections" id="headings-and-sections_1">headings and sections</a>.<p>These elements have a <dfn aria-haspopup="true" id="rank" role="button" tabindex="0">rank</dfn> given by the number in + for their sections.</p> + + <p>The semantics and meaning of these elements are defined in the + section on <a href="headings-and-sections.html#headings-and-sections" id="headings-and-sections_1">headings and sections</a>.</p> + + <p>These elements have a <dfn aria-haspopup="true" id="rank" role="button" tabindex="0">rank</dfn> given by the number in their name. The <code><a href="#the-h1-h2-h3-h4-h5-and-h6-elements" id="h1_7">h1</a></code> element is said to have the highest rank, the <code><a href="#the-h1-h2-h3-h4-h5-and-h6-elements" id="h6_3">h6</a></code> element has the lowest rank, and two - elements with the same name have equal rank.<div class="example"> + elements with the same name have equal rank.</p> + + <div class="example"> <p>As far as their respective document outlines (their heading and section structures) are concerned, these two snippets are @@ -408,4 +454,9 @@ latter style for its convenience in the face of heavy editing; which is best is purely an issue of preferred authoring style.</p> - </div> \ No newline at end of file + </div> + + + + + \ No newline at end of file Index: the-head-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-head-element.html,v retrieving revision 1.125 retrieving revision 1.126 diff -u -d -r1.125 -r1.126 --- the-head-element.html 21 Feb 2012 21:59:04 -0000 1.125 +++ the-head-element.html 13 Mar 2012 19:58:58 -0000 1.126 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-html-element.html">← 4.1.1 The html element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-title-element.html">4.2.2 The title element →</a> </div> - <h4 id="the-head-element"><span class="secno">4.2.1 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>head</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_1" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-head-element"><span class="secno">4.2.1 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>head</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_1" title="element-dfn-categories">Categories</a>:</dt> <dd>None.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_1" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>As the first element in an <code><a href="the-html-element.html#the-html-element" id="html_6">html</a></code> element.</dd> @@ -364,7 +404,9 @@ <pre class="idl">interface <dfn aria-haspopup="true" id="htmlheadelement" role="button" tabindex="0">HTMLHeadElement</dfn> : <a href="elements.html#htmlelement" id="htmlelement_6">HTMLElement</a> {};</pre> </dd> </dl><p>The <code><a href="#the-head-element" id="head_7">head</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a - collection of metadata for the <code><a href="dom.html#document" id="document_54">Document</a></code>.<div class="example"> + collection of metadata for the <code><a href="dom.html#document" id="document_54">Document</a></code>.</p> + + <div class="example"> <p>The collection of metadata in a <code><a href="#the-head-element" id="head_8">head</a></code> element can be large or small. Here is an example of a very short one:</p> @@ -393,8 +435,14 @@ <BODY> ...</pre> - </div><p class="note">The <code><a href="the-title-element.html#the-title-element" id="title_45">title</a></code> element is a required child + </div> + + <p class="note">The <code><a href="the-title-element.html#the-title-element" id="title_45">title</a></code> element is a required child in most situations, but when a higher-level protocol provides title information, e.g. in the Subject line of an e-mail when HTML is used as an e-mail authoring format, the <code><a href="the-title-element.html#the-title-element" id="title_46">title</a></code> element can be - omitted. \ No newline at end of file + omitted.</p> + + + + \ No newline at end of file Index: the-s-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-s-element.html,v retrieving revision 1.117 retrieving revision 1.118 diff -u -d -r1.117 -r1.118 --- the-s-element.html 21 Feb 2012 21:59:07 -0000 1.117 +++ the-s-element.html 13 Mar 2012 19:59:00 -0000 1.118 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-small-element.html">← 4.6.4 The small element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-cite-element.html">4.6.6 The cite element →</a> </div> - <h4 id="the-s-element"><span class="secno">4.6.5 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>s</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_36" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-s-element"><span class="secno">4.6.5 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>s</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_36" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_75">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_40">Phrasing content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_21">Palpable content</a>.</dd> @@ -363,9 +403,13 @@ <dt><a href="element-definitions.html#element-dfn-dom" id="element-dfn-dom_36" title="element-dfn-dom">DOM interface</a>:</dt> <dd>Uses <code><a href="elements.html#htmlelement" id="htmlelement_41">HTMLElement</a></code>.</dd> </dl><p>The <code><a href="#the-s-element" id="s_4">s</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> contents that - are no longer accurate or no longer relevant.<p class="note">The <code><a href="#the-s-element" id="s_5">s</a></code> element is not appropriate when + are no longer accurate or no longer relevant.</p> + + <p class="note">The <code><a href="#the-s-element" id="s_5">s</a></code> element is not appropriate when indicating document edits; to mark a span of text as having been - removed from a document, use the <code><a href="the-del-element.html#the-del-element" id="del_9">del</a></code> element.<div class="example"> + removed from a document, use the <code><a href="the-del-element.html#the-del-element" id="del_9">del</a></code> element.</p> + + <div class="example"> <p>In this example a recommended retail price has been marked as no longer relevant as the product in question has a new sale @@ -375,4 +419,7 @@ <p><s>Recommended retail price: $3.99 per bottle</s></p> <p><strong>Now selling for just $2.99 a bottle!</strong></p></pre> - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: the-section-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-section-element.html,v retrieving revision 1.120 retrieving revision 1.121 diff -u -d -r1.120 -r1.121 --- the-section-element.html 21 Feb 2012 21:59:07 -0000 1.120 +++ the-section-element.html 13 Mar 2012 19:59:01 -0000 1.121 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-body-element.html">← 4.4.1 The body element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-nav-element.html">4.4.3 The nav element →</a> </div> - <h4 id="the-section-element"><span class="secno">4.4.2 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>section</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_10" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-section-element"><span class="secno">4.4.2 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>section</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_10" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_17">Flow content</a>.</dd> <dd><a href="content-models.html#sectioning-content" id="sectioning-content_4">Sectioning content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_0">Palpable content</a>.</dd> @@ -365,20 +405,28 @@ </dl><p>The <code><a href="#the-section-element" id="section_5">section</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a generic section of a document or application. A section, in this context, is a thematic grouping of content, typically with a - heading.<p class="example">Examples of sections would be chapters, the + heading.</p> + + <p class="example">Examples of sections would be chapters, the various tabbed pages in a tabbed dialog box, or the numbered sections of a thesis. A Web site's home page could be split into sections for an introduction, news items, and contact - information.<p class="note">Authors are encouraged to use the + information.</p> + + <p class="note">Authors are encouraged to use the <code><a href="the-article-element.html#the-article-element" id="article_4">article</a></code> element instead of the <code><a href="#the-section-element" id="section_6">section</a></code> element when it would make sense to syndicate the contents of the - element.<p class="note" id="use-div-for-wrappers">The <code><a href="#the-section-element" id="section_7">section</a></code> + element.</p> + + <p class="note" id="use-div-for-wrappers">The <code><a href="#the-section-element" id="section_7">section</a></code> element is not a generic container element. When an element is needed only for styling purposes or as a convenience for scripting, authors are encouraged to use the <code><a href="the-div-element.html#the-div-element" id="div_7">div</a></code> element instead. A general rule is that the <code><a href="#the-section-element" id="section_8">section</a></code> element is appropriate only if the element's contents would be listed - explicitly in the document's <a href="headings-and-sections.html#outline" id="outline_2">outline</a>.<div class="example"> + explicitly in the document's <a href="headings-and-sections.html#outline" id="outline_2">outline</a>.</p> + + <div class="example"> <p>In the following example, we see an article (part of a larger Web page) about apples, containing two short sections.</p> @@ -406,7 +454,9 @@ worry about whether a particular section is at the top level, the second level, the third level, and so on.</p> - </div><div class="example"> + </div> + + <div class="example"> <p>Here is a graduation programme with two sections, one for the list of people graduating, and one for the description of the @@ -456,7 +506,9 @@ ></Body ></Html></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>In this example, a book author has marked up some sections as chapters and some as appendices, and uses CSS to style the headers @@ -503,4 +555,8 @@ </section> </article></pre> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: the-article-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-article-element.html,v retrieving revision 1.120 retrieving revision 1.121 diff -u -d -r1.120 -r1.121 --- the-article-element.html 21 Feb 2012 21:59:02 -0000 1.120 +++ the-article-element.html 13 Mar 2012 19:58:55 -0000 1.121 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-nav-element.html">← 4.4.3 The nav element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-aside-element.html">4.4.5 The aside element →</a> </div> - <h4 id="the-article-element"><span class="secno">4.4.4 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>article</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_12" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-article-element"><span class="secno">4.4.4 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>article</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_12" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_23">Flow content</a>.</dd> <dd><a href="content-models.html#sectioning-content" id="sectioning-content_6">Sectioning content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_2">Palpable content</a>.</dd> @@ -368,22 +408,30 @@ e.g. in syndication. This could be a forum post, a magazine or newspaper article, a blog entry, a user-submitted comment, an interactive widget or gadget, or any other independent item of - content.<p>When <code><a href="#the-article-element" id="article_7">article</a></code> elements are nested, the inner + content.</p> + + <p>When <code><a href="#the-article-element" id="article_7">article</a></code> elements are nested, the inner <code><a href="#the-article-element" id="article_8">article</a></code> elements represent articles that are in principle related to the contents of the outer article. For instance, a blog entry on a site that accepts user-submitted comments could represent the comments as <code><a href="#the-article-element" id="article_9">article</a></code> elements nested within the <code><a href="#the-article-element" id="article_10">article</a></code> element for the blog - entry.<p>Author information associated with an <code><a href="#the-article-element" id="article_11">article</a></code> + entry.</p> + + <p>Author information associated with an <code><a href="#the-article-element" id="article_11">article</a></code> element (q.v. the <code><a href="the-address-element.html#the-address-element" id="address_3">address</a></code> element) does not apply to - nested <code><a href="#the-article-element" id="article_12">article</a></code> elements.<p class="note">When used specifically with content to be + nested <code><a href="#the-article-element" id="article_12">article</a></code> elements.</p> + + <p class="note">When used specifically with content to be redistributed in syndication, the <code><a href="#the-article-element" id="article_13">article</a></code> element is similar in purpose to the <code title="">entry</code> element in Atom. <a href="references.html#refsATOM">[ATOM]</a> <p class="note">The schema.org microdata vocabulary can be used to provide the publication date for an <code><a href="#the-article-element" id="article_14">article</a></code> - element, using one of the CreativeWork subtypes.<div class="example" id="article-example"> + element, using one of the CreativeWork subtypes.</p> + + <div class="example" id="article-example"> <p>This example shows a blog post using the <code><a href="#the-article-element" id="article_15">article</a></code> element, with some schema.org annotations:</p> @@ -445,4 +493,9 @@ <code><a href="the-header-element.html#the-header-element" id="header_3">header</a></code> in this case wouldn't be wrong either; it's mostly a matter of authoring preference.)</p> - </div> \ No newline at end of file + </div> + + + + + \ No newline at end of file Index: the-blockquote-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-blockquote-element.html,v retrieving revision 1.128 retrieving revision 1.129 diff -u -d -r1.128 -r1.129 --- the-blockquote-element.html 21 Feb 2012 21:59:02 -0000 1.128 +++ the-blockquote-element.html 13 Mar 2012 19:58:55 -0000 1.129 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-pre-element.html">← 4.5.3 The pre element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-ol-element.html">4.5.5 The ol element →</a> </div> - <h4 id="the-blockquote-element"><span class="secno">4.5.4 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>blockquote</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_22" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-blockquote-element"><span class="secno">4.5.4 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>blockquote</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_22" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_48">Flow content</a>.</dd> <dd><a href="headings-and-sections.html#sectioning-root" id="sectioning-root_6">Sectioning root</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_11">Palpable content</a>.</dd> @@ -370,14 +410,22 @@ also used by the <code><a href="the-q-element.html#the-q-element" id="q_3">q</a></code> element.</p> </dd> </dl><p>The <code><a href="#the-blockquote-element" id="blockquote_4">blockquote</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a - section that is quoted from another source.<p>Content inside a <code><a href="#the-blockquote-element" id="blockquote_5">blockquote</a></code> must be quoted from + section that is quoted from another source.</p> + + <p>Content inside a <code><a href="#the-blockquote-element" id="blockquote_5">blockquote</a></code> must be quoted from another source, whose address, if it has one, may be cited in the <dfn aria-haspopup="true" id="attr-blockquote-cite" role="button" tabindex="0"><code>cite</code></dfn> - attribute.<p>If the <code title="attr-blockquote-cite"><a href="#attr-blockquote-cite" id="cite_0">cite</a></code> attribute + attribute.</p> + + <p>If the <code title="attr-blockquote-cite"><a href="#attr-blockquote-cite" id="cite_0">cite</a></code> attribute is present, it must be a <a href="urls.html#valid-url-potentially-surrounded-by-spaces" id="valid-url-potentially-surrounded-by-spaces_1">valid URL potentially surrounded by - spaces</a>. <p>The content of a <code><a href="#the-blockquote-element" id="blockquote_6">blockquote</a></code> may be abbreviated or + spaces</a>. </p> + + <p>The content of a <code><a href="#the-blockquote-element" id="blockquote_6">blockquote</a></code> may be abbreviated or may have context added in the conventional manner for the text's - language.<div class="example"> + language.</p> + + <div class="example"> <p>For example, in English this is traditionally done using square brackets. Consider a page with the sentence "Fred ate the cracker. @@ -388,8 +436,12 @@ <p>[Fred] then said he liked [...] fish.</p> </blockquote></pre> - </div><p>Attribution for the quotation, if any, must be placed outside the - <code><a href="#the-blockquote-element" id="blockquote_7">blockquote</a></code> element.<div class="example"> + </div> + + <p>Attribution for the quotation, if any, must be placed outside the + <code><a href="#the-blockquote-element" id="blockquote_7">blockquote</a></code> element.</p> + + <div class="example"> <p>For example, here the attribution is given in a paragraph after the quote:</p> @@ -405,9 +457,13 @@ attribution.</p> </div> + + <p>The <dfn aria-haspopup="true" id="dom-quote-cite" role="button" tabindex="0"><code>cite</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_14">reflect</a> the element's <code title="">cite</code> content attribute.</p> -<div class="example"> + + + <div class="example"> <p>Here a <code><a href="#the-blockquote-element" id="blockquote_8">blockquote</a></code> element is used in conjunction with a <code><a href="the-figure-element.html#the-figure-element" id="figure_3">figure</a></code> element and its <code><a href="the-figcaption-element.html#the-figcaption-element" id="figcaption_0">figcaption</a></code> @@ -431,7 +487,9 @@ 1995)</cite></figcaption> </figure></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>This next example shows the use of <code><a href="the-cite-element.html#the-cite-element" id="cite_6">cite</a></code> alongside <code><a href="#the-blockquote-element" id="blockquote_10">blockquote</a></code>:</p> @@ -442,7 +500,9 @@ Coral is far more red, than her lips red,<br> ...</pre> - </div><div class="example"> + </div> + + <div class="example"> <p>This example shows how a forum post could use <code><a href="#the-blockquote-element" id="blockquote_11">blockquote</a></code> to show what post a user is replying @@ -487,7 +547,9 @@ </article> </article></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>This example shows the use of a <code><a href="#the-blockquote-element" id="blockquote_12">blockquote</a></code> for short snippets, demonstrating that one does not have to use @@ -504,7 +566,13 @@ be cowed by the possiblity.</blockquote> <p>We shall now discuss these points...</pre> - </div><p class="note"><a href="links.html#conversations">Examples of how to + </div> + + <p class="note"><a href="links.html#conversations">Examples of how to represent a conversation</a> are shown in a later section; it is not appropriate to use the <code><a href="the-cite-element.html#the-cite-element" id="cite_7">cite</a></code> and <code><a href="#the-blockquote-element" id="blockquote_14">blockquote</a></code> - elements for this purpose. \ No newline at end of file + elements for this purpose.</p> + + + + \ No newline at end of file Index: the-rp-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-rp-element.html,v retrieving revision 1.117 retrieving revision 1.118 diff -u -d -r1.117 -r1.118 --- the-rp-element.html 21 Feb 2012 21:59:07 -0000 1.117 +++ the-rp-element.html 13 Mar 2012 19:59:00 -0000 1.118 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-rt-element.html">← 4.6.21 The rt element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-bdi-element.html">4.6.23 The bdi element →</a> </div> - <h4 id="the-rp-element"><span class="secno">4.6.22 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>rp</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_53" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-rp-element"><span class="secno">4.6.22 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>rp</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_53" title="element-dfn-categories">Categories</a>:</dt> <dd>None.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_53" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>As a child of a <code><a href="the-ruby-element.html#the-ruby-element" id="ruby_10">ruby</a></code> element, either immediately before or immediately after an <code><a href="the-rt-element.html#the-rt-element" id="rt_8">rt</a></code> element.</dd> @@ -363,8 +403,12 @@ <dd>Uses <code><a href="elements.html#htmlelement" id="htmlelement_57">HTMLElement</a></code>.</dd> </dl><p>The <code><a href="#the-rp-element" id="rp_4">rp</a></code> element can be used to provide parentheses around a ruby text component of a ruby annotation, to be shown by - user agents that don't support ruby annotations.<p>An <code><a href="#the-rp-element" id="rp_5">rp</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> - nothing. <div class="example"> + user agents that don't support ruby annotations.</p> + + <p>An <code><a href="#the-rp-element" id="rp_5">rp</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> + nothing. </p> + + <div class="example"> <p>The example above, in which each ideograph in the text <span lang="ja" title="">漢字</span> is annotated with its phonetic reading, could be expanded to use <code><a href="#the-rp-element" id="rp_6">rp</a></code> so that in @@ -380,4 +424,7 @@ <pre lang="ja">... 漢 (かん) 字 (じ) ...</pre> - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: the-details-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-details-element.html,v retrieving revision 1.130 retrieving revision 1.131 diff -u -d -r1.130 -r1.131 --- the-details-element.html 21 Feb 2012 21:59:03 -0000 1.130 +++ the-details-element.html 13 Mar 2012 19:58:56 -0000 1.131 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="interactive-elements.html">← 4.11 Interactive elements</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-summary-element.html">4.11.2 The summary element →</a> </div> - <h4 id="the-details-element"><span class="secno">4.11.1 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>details</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_98" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-details-element"><span class="secno">4.11.1 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>details</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_98" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_138">Flow content</a>.</dd> <dd><a href="headings-and-sections.html#sectioning-root" id="sectioning-root_10">Sectioning root</a>.</dd> <dd><a href="content-models.html#interactive-content" id="interactive-content_18">Interactive content</a>.</dd> @@ -370,19 +410,31 @@ </dd> </dl><p>The <code><a href="#the-details-element" id="details_8">details</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a disclosure widget from which the user can obtain additional - information or controls.<p class="note">The <code><a href="#the-details-element" id="details_9">details</a></code> element is not appropriate + information or controls.</p> + + <p class="note">The <code><a href="#the-details-element" id="details_9">details</a></code> element is not appropriate for footnotes. Please see <a href="links.html#footnotes">the section on - footnotes</a> for details on how to mark up footnotes.<p>The <code><a href="the-summary-element.html#the-summary-element" id="summary_2">summary</a></code> element + footnotes</a> for details on how to mark up footnotes.</p> + + <p>The <code><a href="the-summary-element.html#the-summary-element" id="summary_2">summary</a></code> element child of the element, if any, <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> the summary or - legend of the details. <p>The rest of the element's contents <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> the - additional information or controls.<p>The <dfn aria-haspopup="true" id="attr-details-open" role="button" tabindex="0"><code>open</code></dfn> + legend of the details. </p> + + <p>The rest of the element's contents <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> the + additional information or controls.</p> + + <p>The <dfn aria-haspopup="true" id="attr-details-open" role="button" tabindex="0"><code>open</code></dfn> content attribute is a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_24">boolean attribute</a>. If present, it indicates that both the summary and the additional information is to be shown to the user. If the attribute is absent, only the summary is to be shown.</p> + + <p>The <dfn aria-haspopup="true" id="dom-details-open" role="button" tabindex="0"><code>open</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_92">reflect</a> the <code title="attr-details-open"><a href="#attr-details-open" id="open_1">open</a></code> content attribute.</p> -<div class="example"> + + + <div class="example"> <p>The following example shows the <code><a href="#the-details-element" id="details_10">details</a></code> element being used to hide technical details in a progress report.</p> @@ -402,7 +454,9 @@ </details> </section></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>The following shows how a <code><a href="#the-details-element" id="details_11">details</a></code> element can be used to hide some controls by default:</p> @@ -423,7 +477,9 @@ controls can change, and not the actual values, which is less than ideal.</p> - </div><div class="example"> + </div> + + <div class="example"> <p>Because the <code title="attr-details-open"><a href="#attr-details-open" id="open_2">open</a></code> attribute is added and removed automatically as the user interacts @@ -442,4 +498,7 @@ <p>Direction: North</p> </details></pre> - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: the-aside-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-aside-element.html,v retrieving revision 1.118 retrieving revision 1.119 diff -u -d -r1.118 -r1.119 --- the-aside-element.html 21 Feb 2012 21:59:02 -0000 1.118 +++ the-aside-element.html 13 Mar 2012 19:58:55 -0000 1.119 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-article-element.html">← 4.4.4 The article element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-h1-h2-h3-h4-h5-and-h6-elements.html">4.4.6 The h1, h2, h3, h4, h5, and h6 elements →</a> </div> - <h4 id="the-aside-element"><span class="secno">4.4.5 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>aside</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_13" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-aside-element"><span class="secno">4.4.5 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>aside</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_13" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_26">Flow content</a>.</dd> <dd><a href="content-models.html#sectioning-content" id="sectioning-content_7">Sectioning content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_3">Palpable content</a>.</dd> @@ -366,12 +406,18 @@ of a page that consists of content that is tangentially related to the content around the <code><a href="#the-aside-element" id="aside_5">aside</a></code> element, and which could be considered separate from that content. Such sections are often - represented as sidebars in printed typography.<p>The element can be used for typographical effects like pull + represented as sidebars in printed typography.</p> + + <p>The element can be used for typographical effects like pull quotes or sidebars, for advertising, for groups of <code><a href="the-nav-element.html#the-nav-element" id="nav_9">nav</a></code> elements, and for other content that is considered separate from the - main content of the page.<p class="note">It's not appropriate to use the <code><a href="#the-aside-element" id="aside_6">aside</a></code> + main content of the page.</p> + + <p class="note">It's not appropriate to use the <code><a href="#the-aside-element" id="aside_6">aside</a></code> element just for parentheticals, since those are part of the main - flow of the document.<div class="example"> + flow of the document.</p> + + <div class="example"> <p>The following example shows how an aside is used to mark up background material on Switzerland in a much longer news story on @@ -384,7 +430,9 @@ a signatory to a number of European treaties.</p> </aside></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>The following example shows how an aside is used to mark up a pull quote in a longer article.</p> @@ -408,7 +456,9 @@ ...</pre> - </div><div class="example"> + </div> + + <div class="example"> <p>The following extract shows how <code><a href="#the-aside-element" id="aside_7">aside</a></code> can be used for blogrolls and other side content on a blog:</p> @@ -481,4 +531,8 @@ </footer> </body></pre> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: the-title-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-title-element.html,v retrieving revision 1.123 retrieving revision 1.124 diff -u -d -r1.123 -r1.124 --- the-title-element.html 21 Feb 2012 21:59:09 -0000 1.123 +++ the-title-element.html 13 Mar 2012 19:59:02 -0000 1.124 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-head-element.html">← 4.2.1 The head element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-base-element.html">4.2.3 The base element →</a> </div> - <h4 id="the-title-element"><span class="secno">4.2.2 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>title</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_2" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-title-element"><span class="secno">4.2.2 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>title</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_2" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#metadata-content" id="metadata-content_4">Metadata content</a>.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_2" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>In a <code><a href="the-head-element.html#the-head-element" id="head_9">head</a></code> element containing no other <code><a href="#the-title-element" id="title_47">title</a></code> elements.</dd> @@ -370,8 +410,13 @@ in a user's history or bookmarks, or in search results. The document's title is often different from its first heading, since the first heading does not have to stand alone when taken out of - context.<p>There must be no more than one <code><a href="#the-title-element" id="title_49">title</a></code> element per - document.<dl class="domintro"><dt><var title="">title</var> . <code id="dom-title-text" title="dom-title-text"><a href="#dom-title-text">text</a></code> [ = <var title="">value</var> ]</dt> + context.</p> + + <p>There must be no more than one <code><a href="#the-title-element" id="title_49">title</a></code> element per + document.</p> + + + <dl class="domintro"><dt><var title="">title</var> . <code id="dom-title-text" title="dom-title-text"><a href="#dom-title-text">text</a></code> [ = <var title="">value</var> ]</dt> <dd> @@ -403,4 +448,11 @@ ... <h1>The Dances</h1></pre> - </div><p>The string to use as the document's title is given by the <code title="dom-document-title"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/dom.html#document.title" title='Read about this "document.title" reference in the full HTML5 spec.'>document.title</a></code> IDL attribute. \ No newline at end of file + </div> + + <p>The string to use as the document's title is given by the <code title="dom-document-title"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/dom.html#document.title" title='Read about this "document.title" reference in the full HTML5 spec.'>document.title</a></code> IDL attribute.</p> + + + + + \ No newline at end of file Index: offline.html =================================================================== RCS file: /sources/public/html5/spec-author-view/offline.html,v retrieving revision 1.1161 retrieving revision 1.1162 diff -u -d -r1.1161 -r1.1162 --- offline.html 15 Feb 2012 10:14:12 -0000 1.1161 +++ offline.html 13 Mar 2012 19:58:43 -0000 1.1162 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,7 +380,9 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="history.html">← 5.4 Session history and navigation</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="webappapis.html">6 Web application APIs →</a> @@ -353,16 +391,30 @@ <ol><li><a href="offline.html#appcacheevents"><span class="secno">5.6.1.1 </span>Event summary</a></ol><li><a href="offline.html#manifests"><span class="secno">5.6.2 </span>The cache manifest syntax</a> <ol><li><a href="offline.html#some-sample-manifests"><span class="secno">5.6.2.1 </span>Some sample manifests</a><li><a href="offline.html#writing-cache-manifests"><span class="secno">5.6.2.2 </span>Writing cache manifests</a></ol><li><a href="offline.html#application-cache-api"><span class="secno">5.6.3 </span>Application cache API</a><li><a href="offline.html#browser-state"><span class="secno">5.6.4 </span>Browser state</a></ol></ol></ol></div> - <h3 id="offline"><span class="secno">5.6 </span>Offline Web applications</h3><h4 id="introduction-4"><span class="secno">5.6.1 </span>Introduction</h4><p>In order to enable users to continue interacting with Web + <h3 id="offline"><span class="secno">5.6 </span>Offline Web applications</h3> + + + + <h4 id="introduction-4"><span class="secno">5.6.1 </span>Introduction</h4> + + + + <p>In order to enable users to continue interacting with Web applications and documents even when their network connection is unavailable — for instance, because they are traveling outside of their ISP's coverage area — authors can provide a manifest which lists the files that are needed for the Web application to work offline and which causes the user's browser to keep a copy of - the files for use offline.<p>To illustrate this, consider a simple clock applet consisting of + the files for use offline.</p> + + <p>To illustrate this, consider a simple clock applet consisting of an HTML page "<code title="">clock.html</code>", a CSS style sheet - "<code title="">clock.css</code>", and a JavaScript script "<code title="">clock.js</code>".<p>Before adding the manifest, these three files might look like - this:<pre><!-- clock.html --> + "<code title="">clock.css</code>", and a JavaScript script "<code title="">clock.js</code>".</p> + + <p>Before adding the manifest, these three files might look like + this:</p> + + <pre><!-- clock.html --> <!DOCTYPE HTML> <html> <head> @@ -373,18 +425,30 @@ <body> <p>The time is: <output id="clock"></output></p> </body> -</html></pre><pre>/* clock.css */ -output { font: 2em sans-serif; }</pre><pre>/* clock.js */ +</html></pre> + <pre>/* clock.css */ +output { font: 2em sans-serif; }</pre> + <pre>/* clock.js */ setTimeout(function () { document.getElementById('clock').value = new Date(); -}, 1000);</pre><p>If the user tries to open the "<code title="">clock.html</code>" +}, 1000);</pre> + + <p>If the user tries to open the "<code title="">clock.html</code>" page while offline, though, the user agent (unless it happens to - have it still in the local cache) will fail with an error.<p>The author can instead provide a manifest of the three files, say - "<code title="">clock.appcache</code>":<pre>CACHE MANIFEST + have it still in the local cache) will fail with an error.</p> + + <p>The author can instead provide a manifest of the three files, say + "<code title="">clock.appcache</code>":</p> + + <pre>CACHE MANIFEST clock.html clock.css -clock.js</pre><p>With a small change to the HTML file, the manifest (served as - <code><a href="iana.html#text-cache-manifest" id="text/cache-manifest">text/cache-manifest</a></code>) is linked to the application:<pre><!-- clock.html --> +clock.js</pre> + + <p>With a small change to the HTML file, the manifest (served as + <code><a href="iana.html#text-cache-manifest" id="text/cache-manifest">text/cache-manifest</a></code>) is linked to the application:</p> + + <pre><!-- clock.html --> <!DOCTYPE HTML> <html manifest="clock.appcache"> <head> @@ -395,23 +459,43 @@ <body> <p>The time is: <output id="clock"></output></p> </body> -</html></pre><p>Now, if the user goes to the page, the browser will cache the - files and make them available even when the user is offline.<p class="note">Authors are encouraged to include the main page in +</html></pre> + + <p>Now, if the user goes to the page, the browser will cache the + files and make them available even when the user is offline.</p> + + <p class="note">Authors are encouraged to include the main page in the manifest also, but in practice the page that referenced the manifest is automatically cached even if it isn't explicitly - mentioned.<p class="note">With the exception of "no-store" directive, HTTP + mentioned.</p> + + <p class="note">With the exception of "no-store" directive, HTTP cache headers and restrictions on caching pages served over TLS (encrypted, using <code title="">https:</code>) are overridden by manifests. Thus, pages will not expire from an application cache before the user agent has updated it, and even applications served - over TLS can be made to work offline.<h5 id="appcacheevents"><span class="secno">5.6.1.1 </span>Event summary</h5><p>When the user visits a page that declares a manifest, the browser + over TLS can be made to work offline.</p> + + + + + + <h5 id="appcacheevents"><span class="secno">5.6.1.1 </span>Event summary</h5> + + + + <p>When the user visits a page that declares a manifest, the browser will try to update the cache. It does this by fetching a copy of the manifest and, if the manifest has changed since the user agent last saw it, redownloading all the resources it mentions and caching them - anew.<p>As this is going on, a number of events get fired on the + anew.</p> + + <p>As this is going on, a number of events get fired on the <code><a href="#applicationcache" id="applicationcache_1">ApplicationCache</a></code> object to keep the script updated as to the state of the cache update, so that the user can be notified - appropriately. The events are as follows:<table><thead><tr><th> Event name + appropriately. The events are as follows:</p> + + <table><thead><tr><th> Event name <th> Interface <th> Fired when... <th> Next events @@ -451,7 +535,14 @@ <tr><td> A fatal error occurred while fetching the resources listed in the manifest. <tr><td> The manifest changed while the update was being run. <td> The user agent will try fetching the files again momentarily. - </table><h4 id="manifests"><span class="secno">5.6.2 </span>The cache manifest syntax</h4><h5 id="some-sample-manifests"><span class="secno">5.6.2.1 </span>Some sample manifests</h5><div class="example"> + </table><h4 id="manifests"><span class="secno">5.6.2 </span>The cache manifest syntax</h4> + + + <h5 id="some-sample-manifests"><span class="secno">5.6.2.1 </span>Some sample manifests</h5> + + + + <div class="example"> <p>This example manifest requires two images and a style sheet to be cached and whitelists a CGI script.</p> @@ -494,7 +585,9 @@ images/sound-icon.png images/background.png</pre> - </div><div class="example"> + </div> + + <div class="example"> <p>Offline application cache manifests can use absolute paths or even absolute URLs:</p> @@ -509,7 +602,9 @@ http://img.example.com/check.png http://img.example.com/cross.png</pre> - </div><div class="example"> + </div> + + <div class="example"> <p>The following manifest defines a catch-all error page that is displayed for any page on the site while the user is offline. It @@ -535,36 +630,49 @@ NETWORK: *</pre> - </div><h5 id="writing-cache-manifests"><span class="secno">5.6.2.2 </span>Writing cache manifests</h5><p>Manifests must be served using the + </div> + + + + <h5 id="writing-cache-manifests"><span class="secno">5.6.2.2 </span>Writing cache manifests</h5> + + <p>Manifests must be served using the <code><a href="iana.html#text-cache-manifest" id="text/cache-manifest_0">text/cache-manifest</a></code> <a href="infrastructure.html#mime-type" id="mime-type_14">MIME type</a>. All resources served using the <code><a href="iana.html#text-cache-manifest" id="text/cache-manifest_1">text/cache-manifest</a></code> <a href="infrastructure.html#mime-type" id="mime-type_15">MIME type</a> must follow the syntax of application cache - manifests, as described in this section.<p>An application cache manifest is a text file, whose text is + manifests, as described in this section.</p> + + <p>An application cache manifest is a text file, whose text is encoded using UTF-8. Data in application cache manifests is - line-based. Newlines must be represented by U+000A LINE FEED (LF) - characters, U+000D CARRIAGE RETURN (CR) characters, or U+000D - CARRIAGE RETURN (CR) U+000A LINE FEED (LF) pairs. <a href="references.html#refsRFC3629">[RFC3629]</a><p class="note">This is a <a href="introduction.html#willful-violation" id="willful-violation_2">willful violation</a> of RFC + line-based. Newlines must be represented by "LF" (U+000A) + characters, "CR" (U+000D) characters, or "CR" (U+000D) "LF" (U+000A) pairs. <a href="references.html#refsRFC3629">[RFC3629]</a></p> + + <p class="note">This is a <a href="introduction.html#willful-violation" id="willful-violation_2">willful violation</a> of RFC 2046, which requires all <code title="">text/*</code> types to only allow CRLF line breaks. This requirement, however, is outdated; the use of CR, LF, and CRLF line breaks is commonly supported and indeed - sometimes CRLF is <em>not</em> supported by text editors. <a href="references.html#refsRFC2046">[RFC2046]</a><p>The first line of an application cache manifest must consist of + sometimes CRLF is <em>not</em> supported by text editors. <a href="references.html#refsRFC2046">[RFC2046]</a></p> + + <p>The first line of an application cache manifest must consist of the string "CACHE", a single U+0020 SPACE character, the string - "MANIFEST", and either a U+0020 SPACE character, a U+0009 CHARACTER - TABULATION (tab) character, a U+000A LINE FEED (LF) character, or a - U+000D CARRIAGE RETURN (CR) character. The first line may optionally - be preceded by a U+FEFF BYTE ORDER MARK (BOM) character. If any - other text is found on the first line, it is ignored.<p>Subsequent lines, if any, must all be one of the following:<dl><dt>A blank line + "MANIFEST", and either a U+0020 SPACE character, a "tab" (U+0009) character, a "LF" (U+000A) character, or a + "CR" (U+000D) character. The first line may optionally + be preceded by a "BOM" (U+FEFF) character. If any + other text is found on the first line, it is ignored.</p> + + <p>Subsequent lines, if any, must all be one of the following:</p> + + <dl><dt>A blank line <dd> <p>Blank lines must consist of zero or more U+0020 SPACE and - U+0009 CHARACTER TABULATION (tab) characters only.</p> + "tab" (U+0009) characters only.</p> <dt>A comment <dd> <p>Comment lines must consist of zero or more U+0020 SPACE and - U+0009 CHARACTER TABULATION (tab) characters, followed by a single - U+0023 NUMBER SIGN character (#), followed by zero or more - characters other than U+000A LINE FEED (LF) and U+000D CARRIAGE - RETURN (CR) characters.</p> + "tab" (U+0009) characters, followed by a single + "#" (U+0023) character, followed by zero or more + characters other than "LF" (U+000A) and "CR" (U+000D) characters.</p> <p class="note">Comments must be on a line on their own. If they were to be included on a line with a URL, the "#" would be @@ -585,10 +693,9 @@ <dd>Switches to the <dfn aria-haspopup="true" id="concept-appcache-manifest-network" role="button" tabindex="0">online whitelist section</dfn>. </dl><p>Section header lines must consist of zero or more U+0020 SPACE - and U+0009 CHARACTER TABULATION (tab) characters, followed by one - of the names above (including the U+003A COLON character (:)) - followed by zero or more U+0020 SPACE and U+0009 CHARACTER - TABULATION (tab) characters.</p> + and "tab" (U+0009) characters, followed by one + of the names above (including the ":)" (U+003A) character + followed by zero or more U+0020 SPACE and "tab" (U+0009) characters.</p> <p>Ironically, by default, the current section is the <a href="#concept-appcache-manifest-explicit" id="concept-appcache-manifest-explicit_0" title="concept-appcache-manifest-explicit">explicit section</a>.</p> @@ -600,55 +707,82 @@ <p>When the current section is the <a href="#concept-appcache-manifest-explicit" id="concept-appcache-manifest-explicit_1" title="concept-appcache-manifest-explicit">explicit section</a>, data lines must consist of zero or more U+0020 - SPACE and U+0009 CHARACTER TABULATION (tab) characters, a + SPACE and "tab" (U+0009) characters, a <a href="urls.html#valid-url" id="valid-url_3">valid URL</a> identifying a resource other than the - manifest itself, and then zero or more U+0020 SPACE and U+0009 - CHARACTER TABULATION (tab) characters.</p> + manifest itself, and then zero or more U+0020 SPACE and "tab" (U+0009) characters.</p> <p>When the current section is the <a href="#concept-appcache-manifest-fallback" id="concept-appcache-manifest-fallback_0" title="concept-appcache-manifest-fallback">fallback section</a>, data lines must consist of zero or more U+0020 - SPACE and U+0009 CHARACTER TABULATION (tab) characters, a + SPACE and "tab" (U+0009) characters, a <a href="urls.html#valid-url" id="valid-url_4">valid URL</a> identifying a resource other than the - manifest itself, one or more U+0020 SPACE and U+0009 CHARACTER - TABULATION (tab) characters, another <a href="urls.html#valid-url" id="valid-url_5">valid URL</a> + manifest itself, one or more U+0020 SPACE and "tab" (U+0009) characters, another <a href="urls.html#valid-url" id="valid-url_5">valid URL</a> identifying a resource other than the manifest itself, and then - zero or more U+0020 SPACE and U+0009 CHARACTER TABULATION (tab) + zero or more U+0020 SPACE and "tab" (U+0009) characters.</p> <p>When the current section is the <a href="#concept-appcache-manifest-network" id="concept-appcache-manifest-network_0" title="concept-appcache-manifest-network">online whitelist section</a>, data lines must consist of zero or more U+0020 - SPACE and U+0009 CHARACTER TABULATION (tab) characters, either a - single U+002A ASTERISK character (*) or a <a href="urls.html#valid-url" id="valid-url_6">valid + SPACE and "tab" (U+0009) characters, either a + single "*" (U+002A) character or a <a href="urls.html#valid-url" id="valid-url_6">valid URL</a> identifying a resource other than the manifest itself, - and then zero or more U+0020 SPACE and U+0009 CHARACTER TABULATION - (tab) characters.</p> + and then zero or more U+0020 SPACE and "tab" (U+0009) characters.</p> </dl><p>Manifests may contain sections more than once. Sections may be - empty.<p>URLs that are to be fallback pages associated with <a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#concept-appcache-fallback-ns" title='Read about this "fallback namespaces" reference in the full HTML5 spec.'>fallback namespaces</a>, and + empty.</p> + + <p>URLs that are to be fallback pages associated with <a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#concept-appcache-fallback-ns" title='Read about this "fallback namespaces" reference in the full HTML5 spec.'>fallback namespaces</a>, and those namespaces themselves, must be given in <a href="#concept-appcache-manifest-fallback" id="concept-appcache-manifest-fallback_1" title="concept-appcache-manifest-fallback">fallback sections</a>, with the namespace being the first URL of the data line, and the corresponding fallback page being the second URL. All the other pages to be cached must be listed in <a href="#concept-appcache-manifest-explicit" id="concept-appcache-manifest-explicit_2" title="concept-appcache-manifest-explicit">explicit - sections</a>.<p><a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#concept-appcache-fallback-ns" title='Read about this "Fallback namespaces" reference in the full HTML5 spec.'>Fallback + sections</a>.</p> + + <p><a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#concept-appcache-fallback-ns" title='Read about this "Fallback namespaces" reference in the full HTML5 spec.'>Fallback namespaces</a> and <a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#concept-appcache-fallback" title='Read about this "fallback entries" reference in the full HTML5 spec.'>fallback entries</a> must have - the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/origin-0.html#same-origin" title='Read about this "same origin" reference in the full HTML5 spec.'>same origin</a> as the manifest itself.<p>A <a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#concept-appcache-fallback-ns" title='Read about this "fallback namespace" reference in the full HTML5 spec.'>fallback - namespace</a> must not be listed more than once.<p>Namespaces that the user agent is to put into the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#concept-appcache-onlinewhitelist" title='Read about this "online whitelist" reference in the full HTML5 spec.'>online whitelist</a> + the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/origin-0.html#same-origin" title='Read about this "same origin" reference in the full HTML5 spec.'>same origin</a> as the manifest itself.</p> + + <p>A <a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#concept-appcache-fallback-ns" title='Read about this "fallback namespace" reference in the full HTML5 spec.'>fallback + namespace</a> must not be listed more than once.</p> + + <p>Namespaces that the user agent is to put into the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#concept-appcache-onlinewhitelist" title='Read about this "online whitelist" reference in the full HTML5 spec.'>online whitelist</a> must all be specified in <a href="#concept-appcache-manifest-network" id="concept-appcache-manifest-network_1" title="concept-appcache-manifest-network">online whitelist sections</a>. (This is needed for any URL that the page is intending to use to communicate back to the server.) To specify that - all URLs are automatically whitelisted in this way, a U+002A - ASTERISK character (*) may be specified as one of the URLs. <p>Authors should not include namespaces in the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#concept-appcache-onlinewhitelist" title='Read about this "online whitelist" reference in the full HTML5 spec.'>online whitelist</a> for + all URLs are automatically whitelisted in this way, a "*" (U+002A) character may be specified as one of the URLs. </p> + + <p>Authors should not include namespaces in the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#concept-appcache-onlinewhitelist" title='Read about this "online whitelist" reference in the full HTML5 spec.'>online whitelist</a> for which another namespace in the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#concept-appcache-onlinewhitelist" title='Read about this "online whitelist" reference in the full HTML5 spec.'>online whitelist</a> is - a <a href="infrastructure.html#prefix-match" id="prefix-match_0">prefix match</a>.<p>Relative URLs must be given relative to the manifest's own + a <a href="infrastructure.html#prefix-match" id="prefix-match_0">prefix match</a>.</p> + + <p>Relative URLs must be given relative to the manifest's own URL. All URLs in the manifest must have the same <a class="full-spec-link" href="http://dev.w3.org/html5/spec/urls.html#url-scheme" title='Read about this "<scheme>" reference in the full HTML5 spec.'><scheme></a> as the manifest itself (either explicitly or implicitly, through the use of relative - URLs).<p>URLs in manifests must not have fragment identifiers (i.e. the + URLs).</p> + + <p>URLs in manifests must not have fragment identifiers (i.e. the U+0023 NUMBER SIGN character isn't allowed in URLs in - manifests).<p><a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#concept-appcache-fallback-ns" title='Read about this "Fallback namespaces" reference in the full HTML5 spec.'>Fallback + manifests).</p> + + <p><a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#concept-appcache-fallback-ns" title='Read about this "Fallback namespaces" reference in the full HTML5 spec.'>Fallback namespaces</a> and namespaces in the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#concept-appcache-onlinewhitelist" title='Read about this "online whitelist" reference in the full HTML5 spec.'>online whitelist</a> are - matched by <a href="infrastructure.html#prefix-match" id="prefix-match_1">prefix match</a>.<h4 id="application-cache-api"><span class="secno">5.6.3 </span>Application cache API</h4><pre class="idl">interface <dfn aria-haspopup="true" id="applicationcache" role="button" tabindex="0">ApplicationCache</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#eventtarget" title='Read about this "EventTarget" reference in the full HTML5 spec.'>EventTarget</a> { + matched by <a href="infrastructure.html#prefix-match" id="prefix-match_1">prefix match</a>.</p> + + + + + + + + + + + + + <h4 id="application-cache-api"><span class="secno">5.6.3 </span>Application cache API</h4> + + <pre class="idl">interface <dfn aria-haspopup="true" id="applicationcache" role="button" tabindex="0">ApplicationCache</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#eventtarget" title='Read about this "EventTarget" reference in the full HTML5 spec.'>EventTarget</a> { // <a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#concept-appcache-status" title='Read about this "update status" reference in the full HTML5 spec.'>update status</a> const unsigned short <a href="#dom-appcache-uncached" id="dom-appcache-uncached_0" title="dom-appcache-UNCACHED">UNCACHED</a> = 0; @@ -673,7 +807,9 @@ [TreatNonCallableAsNull] attribute <a href="webappapis.html#function" id="function_218">Function</a>? ; [TreatNonCallableAsNull] attribute <a href="webappapis.html#function" id="function_219">Function</a>? ; [TreatNonCallableAsNull] attribute <a href="webappapis.html#function" id="function_220">Function</a>? ; -};</pre><dl class="domintro"><dt><var title="">cache</var> = <var title="">window</var> . <code title="dom-applicationCache"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#dom-applicationcache" title='Read about this "applicationCache" reference in the full HTML5 spec.'>applicationCache</a></code></dt> +};</pre> + + <dl class="domintro"><dt><var title="">cache</var> = <var title="">window</var> . <code title="dom-applicationCache"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#dom-applicationcache" title='Read about this "applicationCache" reference in the full HTML5 spec.'>applicationCache</a></code></dt> <dd> <p>(In a window.) Returns the <code><a href="#applicationcache" id="applicationcache_2">ApplicationCache</a></code> object that applies to the <a href="browsers.html#active-document" id="active-document_11">active document</a> of that <code><a href="browsers.html#window" id="window_19">Window</a></code>.</p> @@ -804,10 +940,14 @@ host</a> is associated with an <a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#application-cache" title='Read about this "application cache" reference in the full HTML5 spec.'>application cache</a> whose <a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#application-cache-group" title='Read about this "application cache group" reference in the full HTML5 spec.'>application cache group</a> is marked as <a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#concept-appcache-obsolete" title='Read about this "obsolete" reference in the full HTML5 spec.'>obsolete</a>.</dd> - </dl><h4 id="browser-state"><span class="secno">5.6.4 </span>Browser state</h4><pre class="idl">[NoInterfaceObject] + </dl><h4 id="browser-state"><span class="secno">5.6.4 </span>Browser state</h4> + + <pre class="idl">[NoInterfaceObject] interface <dfn aria-haspopup="true" id="navigatoronline" role="button" tabindex="0">NavigatorOnLine</dfn> { readonly attribute boolean <a href="#dom-navigator-online" title="dom-navigator-onLine">onLine</a>; -};</pre><dl class="domintro"><dt><var title="">window</var> . <code id="dom-navigator" title="dom-navigator"><a href="#dom-navigator">navigator</a></code> . <code id="dom-navigator-online" title="dom-navigator-onLine"><a href="#dom-navigator-online">onLine</a></code></dt> +};</pre> + + <dl class="domintro"><dt><var title="">window</var> . <code id="dom-navigator" title="dom-navigator"><a href="#dom-navigator">navigator</a></code> . <code id="dom-navigator-online" title="dom-navigator-onLine"><a href="#dom-navigator-online">onLine</a></code></dt> <dd> @@ -821,7 +961,9 @@ </dd> </dl><p class="note">This attribute is inherently unreliable. A computer - can be connected to a network without having Internet access.<div class="example"> + can be connected to a network without having Internet access.</p> + + <div class="example"> <p>In this example, an indicator is updated as the browser goes online and offline.</p> @@ -841,4 +983,8 @@ </body> </html></pre> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: textFieldSelection.html =================================================================== RCS file: /sources/public/html5/spec-author-view/textFieldSelection.html,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- textFieldSelection.html 15 Feb 2012 10:14:19 -0000 1.19 +++ textFieldSelection.html 13 Mar 2012 19:58:55 -0000 1.20 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,20 +380,33 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="attributes-common-to-form-controls.html">← 4.10.19 Attributes common to form controls</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="constraints.html">4.10.21 Constraints →</a> </div> - <h4 id="textFieldSelection"><span class="secno">4.10.20 </span>APIs for the text field selections</h4><p>The <code><a href="the-input-element.html#the-input-element" id="input_125">input</a></code> and <code><a href="the-textarea-element.html#the-textarea-element" id="textarea_34">textarea</a></code> elements define + <h4 id="textFieldSelection"><span class="secno">4.10.20 </span>APIs for the text field selections</h4> + + + + <p>The <code><a href="the-input-element.html#the-input-element" id="input_125">input</a></code> and <code><a href="the-textarea-element.html#the-textarea-element" id="textarea_34">textarea</a></code> elements define the following members in their DOM interfaces for handling their - selection:<pre class="idl extract"> void <a class="full-spec-link" href="http://dev.w3.org/html5/spec/textFieldSelection.html#dom-textarea-input-select" title='Read about this "select" reference in the full HTML5 spec.'>select</a>(); + selection:</p> + + <pre class="idl extract"> void <a class="full-spec-link" href="http://dev.w3.org/html5/spec/textFieldSelection.html#dom-textarea-input-select" title='Read about this "select" reference in the full HTML5 spec.'>select</a>(); attribute unsigned long <a class="full-spec-link" href="http://dev.w3.org/html5/spec/textFieldSelection.html#dom-textarea-input-selectionstart" title='Read about this "selectionStart" reference in the full HTML5 spec.'>selectionStart</a>; attribute unsigned long <a class="full-spec-link" href="http://dev.w3.org/html5/spec/textFieldSelection.html#dom-textarea-input-selectionend" title='Read about this "selectionEnd" reference in the full HTML5 spec.'>selectionEnd</a>; attribute DOMString <a class="full-spec-link" href="http://dev.w3.org/html5/spec/textFieldSelection.html#dom-textarea-input-selectiondirection" title='Read about this "selectionDirection" reference in the full HTML5 spec.'>selectionDirection</a>; - void <a class="full-spec-link" href="http://dev.w3.org/html5/spec/textFieldSelection.html#dom-textarea-input-setselectionrange" title='Read about this "setSelectionRange" reference in the full HTML5 spec.'>setSelectionRange</a>(unsigned long start, unsigned long end, optional DOMString direction);</pre><p>These methods and attributes expose and control the selection of - <code><a href="the-input-element.html#the-input-element" id="input_126">input</a></code> and <code><a href="the-textarea-element.html#the-textarea-element" id="textarea_35">textarea</a></code> text fields.<dl class="domintro"><dt><var title="">element</var> . <code id="dom-textarea/input-select" title="dom-textarea/input-select"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/textFieldSelection.html#dom-textarea-input-select" title='Read about this "select" reference in the full HTML5 spec.'>select</a></code>()</dt> + void <a class="full-spec-link" href="http://dev.w3.org/html5/spec/textFieldSelection.html#dom-textarea-input-setselectionrange" title='Read about this "setSelectionRange" reference in the full HTML5 spec.'>setSelectionRange</a>(unsigned long start, unsigned long end, optional DOMString direction);</pre> + + + <p>These methods and attributes expose and control the selection of + <code><a href="the-input-element.html#the-input-element" id="input_126">input</a></code> and <code><a href="the-textarea-element.html#the-textarea-element" id="textarea_35">textarea</a></code> text fields.</p> + + <dl class="domintro"><dt><var title="">element</var> . <code id="dom-textarea/input-select" title="dom-textarea/input-select"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/textFieldSelection.html#dom-textarea-input-select" title='Read about this "select" reference in the full HTML5 spec.'>select</a></code>()</dt> <dd> @@ -408,7 +457,9 @@ </dl><p>Characters with no visible rendering, such as U+200D ZERO WIDTH JOINER, still count as characters. Thus, for instance, the selection can include just an invisible character, and the text insertion - cursor can be placed to one side or another of such a character.<div class="example"> + cursor can be placed to one side or another of such a character.</p> + + <div class="example"> <p>To obtain the currently selected text, the following JavaScript suffices:</p> @@ -418,7 +469,9 @@ <p>...where <var title="">control</var> is the <code><a href="the-input-element.html#the-input-element" id="input_127">input</a></code> or <code><a href="the-textarea-element.html#the-textarea-element" id="textarea_36">textarea</a></code> element.</p> - </div><div class="example"> + </div> + + <div class="example"> <p>To add some text at the start of a text control, while maintaining the text selection, the three attributes must be @@ -434,4 +487,9 @@ <p>...where <var title="">control</var> is the <code><a href="the-input-element.html#the-input-element" id="input_128">input</a></code> or <code><a href="the-textarea-element.html#the-textarea-element" id="textarea_37">textarea</a></code> element.</p> - </div> \ No newline at end of file + </div> + + + + + \ No newline at end of file Index: global-attributes.html =================================================================== RCS file: /sources/public/html5/spec-author-view/global-attributes.html,v retrieving revision 1.143 retrieving revision 1.144 diff -u -d -r1.143 -r1.144 --- global-attributes.html 15 Feb 2012 10:14:10 -0000 1.143 +++ global-attributes.html 13 Mar 2012 19:58:40 -0000 1.144 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,7 +380,9 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="elements.html">← 3.2 Elements</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="element-definitions.html">3.2.4 Element definitions →</a> @@ -352,8 +390,12 @@ <ol><li><a href="global-attributes.html#the-id-attribute" id="3.2.3.1-the-id-attribute"><span class="secno">3.2.3.1 </span>The <code>id</code> attribute</a><li><a href="global-attributes.html#the-title-attribute" id="3.2.3.2-the-title-attribute"><span class="secno">3.2.3.2 </span>The <code>title</code> attribute</a><li><a href="global-attributes.html#the-lang-and-xml:lang-attributes"><span class="secno">3.2.3.3 </span>The <code title="attr-lang">lang</code> and <code title="attr-xml-lang">xml:lang</code> attributes</a><li><a href="global-attributes.html#the-translate-attribute"><span class="secno">3.2.3.4 </span>The <code title="attr-translate">translate</code> attribute</a><li><a href="global-attributes.html#the-xml:base-attribute-xml-only" id="3.2.3.5-the-xml:base-attribute-(xml-only)"><span class="secno">3.2.3.5 </span>The <code>xml:base</code> attribute (XML only)</a><li><a href="global-attributes.html#the-dir-attribute" id="3.2.3.6-the-dir-attribute"><span class="secno">3.2.3.6 </span>The <code>dir</code> attribute</a><li><a href="global-attributes.html#classes" id="3.2.3.7-the-class-attribute"><span class="secno">3.2.3.7 </span>The <code>class</code> attribute</a><li><a href="global-attributes.html#the-style-attribute" id="3.2.3.8-the-style-attribute"><span class="secno">3.2.3.8 </span>The <code>style</code> attribute</a><li><a href="global-attributes.html#embedding-custom-non-visible-data-with-the-data-attributes" id="3.2.3.9-embedding-custom-non-visible-data-with-the-data-*-attributes"><span class="secno">3.2.3.9 </span>Embedding custom non-visible data with the <code title="attr-data-*">data-*</code> attributes</a></ol></ol></ol></ol></div> - <h4 id="global-attributes"><span class="secno">3.2.3 </span><dfn aria-haspopup="true" role="button" tabindex="0">Global attributes</dfn></h4><p>The following attributes are common to and may be specified on - all <a href="infrastructure.html#html-elements" id="html-elements_3">HTML elements</a>:<ul class="brief"><li><code title="attr-accesskey"><a href="editing.html#the-accesskey-attribute" id="accesskey">accesskey</a></code></li> + <h4 id="global-attributes"><span class="secno">3.2.3 </span><dfn aria-haspopup="true" role="button" tabindex="0">Global attributes</dfn></h4> + + <p>The following attributes are common to and may be specified on + all <a href="infrastructure.html#html-elements" id="html-elements_3">HTML elements</a>:</p> + + <ul class="brief"><li><code title="attr-accesskey"><a href="editing.html#the-accesskey-attribute" id="accesskey">accesskey</a></code></li> <li><code title="attr-class"><a href="#classes" id="class_0">class</a></code></li> <li><code title="attr-contenteditable"><a href="editing.html#attr-contenteditable" id="contenteditable_0">contenteditable</a></code></li> <li><code title="attr-contextmenu"><a href="the-menu-element.html#attr-contextmenu" id="contextmenu">contextmenu</a></code></li> @@ -370,7 +412,9 @@ <li><code title="attr-translate"><a href="#attr-translate" id="translate">translate</a></code></li> </ul><hr><p>The following <a href="webappapis.html#event-handler-content-attributes" id="event-handler-content-attributes_2">event handler content attributes</a> may be specified on any <a href="infrastructure.html#html-elements" id="html-elements_4" title="HTML elements">HTML - element</a>:<ul class="brief"><li><code title="handler-onabort"><a href="webappapis.html#handler-onabort" id="onabort">onabort</a></code></li> + element</a>:</p> + + <ul class="brief"><li><code title="handler-onabort"><a href="webappapis.html#handler-onabort" id="onabort">onabort</a></code></li> <li><code title="handler-onblur"><a href="webappapis.html#handler-onblur" id="onblur">onblur</a></code>*</li> <li><code title="handler-oncanplay"><a href="webappapis.html#handler-oncanplay" id="oncanplay">oncanplay</a></code></li> <li><code title="handler-oncanplaythrough"><a href="webappapis.html#handler-oncanplaythrough" id="oncanplaythrough">oncanplaythrough</a></code></li> @@ -426,57 +470,97 @@ </ul><p class="note">The attributes marked with an asterisk have a different meaning when specified on <code><a href="the-body-element.html#the-body-element" id="body_6">body</a></code> elements as those elements expose <a href="webappapis.html#event-handlers" id="event-handlers_0">event handlers</a> of the - <code><a href="browsers.html#window" id="window_0">Window</a></code> object with the same names.<p class="note">While these attributes apply to all elements, they + <code><a href="browsers.html#window" id="window_0">Window</a></code> object with the same names.</p> + + <p class="note">While these attributes apply to all elements, they are not useful on all elements. For example, only <a href="media-elements.html#media-element" id="media-element_0" title="media element">media elements</a> will ever receive a <code title="event-media-volumechange"><a href="media-elements.html#event-media-volumechange" id="volumechange">volumechange</a></code> event fired by - the user agent.<hr><p><a href="#custom-data-attribute" id="custom-data-attribute_0" title="custom data attribute">Custom data attributes</a> + the user agent.</p> + + <hr><p><a href="#custom-data-attribute" id="custom-data-attribute_0" title="custom data attribute">Custom data attributes</a> (e.g. <code title="">data-foldername</code> or <code title="">data-msgid</code>) can be specified on any <a href="infrastructure.html#html-elements" id="html-elements_5" title="HTML elements">HTML element</a>, to store custom data - specific to the page.<hr><p>In <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#html-documents" title='Read about this "HTML documents" reference in the full HTML5 spec.'>HTML documents</a>, elements in the <a href="namespaces.html#html-namespace-0" id="html-namespace_4">HTML + specific to the page.</p> + + <hr><p>In <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#html-documents" title='Read about this "HTML documents" reference in the full HTML5 spec.'>HTML documents</a>, elements in the <a href="namespaces.html#html-namespace-0" id="html-namespace_4">HTML namespace</a> may have an <code title="">xmlns</code> attribute specified, if, and only if, it has the exact value "<code>http://www.w3.org/1999/xhtml</code>". This does not apply to - <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#xml-documents" title='Read about this "XML documents" reference in the full HTML5 spec.'>XML documents</a>.<p class="note">In HTML, the <code title="">xmlns</code> attribute + <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#xml-documents" title='Read about this "XML documents" reference in the full HTML5 spec.'>XML documents</a>.</p> + + <p class="note">In HTML, the <code title="">xmlns</code> attribute has absolutely no effect. It is basically a talisman. It is allowed merely to make migration to and from XHTML mildly easier. When parsed by an <a class="full-spec-link" href="http://dev.w3.org/html5/spec/parsing.html#html-parser" title='Read about this "HTML parser" reference in the full HTML5 spec.'>HTML parser</a>, the attribute ends up in no namespace, not the "<code>http://www.w3.org/2000/xmlns/</code>" - namespace like namespace declaration attributes in XML do.<p class="note">In XML, an <code title="">xmlns</code> attribute is + namespace like namespace declaration attributes in XML do.</p> + + <p class="note">In XML, an <code title="">xmlns</code> attribute is part of the namespace declaration mechanism, and an element cannot actually have an <code title="">xmlns</code> attribute in no - namespace specified.<hr><p>The XML specification also allows the use of the <code title="attr-xml-space">xml:space</code> attribute in the <a href="namespaces.html#xml-namespace" id="xml-namespace_0">XML + namespace specified.</p> + + <hr><p>The XML specification also allows the use of the <code title="attr-xml-space">xml:space</code> attribute in the <a href="namespaces.html#xml-namespace" id="xml-namespace_0">XML namespace</a> on any element in an <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#xml-documents" title='Read about this "XML document" reference in the full HTML5 spec.'>XML document</a>. This attribute has no effect on <a href="infrastructure.html#html-elements" id="html-elements_6">HTML elements</a>, as the default behavior in HTML is to - preserve whitespace. <a href="references.html#refsXML">[XML]</a><p class="note">There is no way to serialize the <code title="attr-xml-space">xml:space</code> attribute on <a href="infrastructure.html#html-elements" id="html-elements_7">HTML - elements</a> in the <code><a href="iana.html#text-html" id="text/html_2">text/html</a></code> syntax.<hr><p>To enable assistive technology products to expose a more + preserve whitespace. <a href="references.html#refsXML">[XML]</a></p> + + <p class="note">There is no way to serialize the <code title="attr-xml-space">xml:space</code> attribute on <a href="infrastructure.html#html-elements" id="html-elements_7">HTML + elements</a> in the <code><a href="iana.html#text-html" id="text/html_2">text/html</a></code> syntax.</p> + + <hr><p>To enable assistive technology products to expose a more fine-grained interface than is otherwise possible with HTML elements and attributes, a set of <a href="wai-aria.html#wai-aria" id="wai-aria_0" title="WAI-ARIA">annotations for assistive technology products</a> can be specified (the ARIA - <code title="attr-aria-role">role</code> and <code title="attr-aria-*">aria-*</code> attributes).<h5 id="the-id-attribute"><span class="secno">3.2.3.1 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>id</code></dfn> attribute</h5><p>The <code title="attr-id"><a href="#the-id-attribute" id="id_1">id</a></code> attribute specifies its - element's <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#concept-id" title='Read about this "unique identifier (ID)" reference in the full HTML5 spec.'>unique identifier (ID)</a>. <a href="references.html#refsDOMCORE">[DOMCORE]</a><p>The value must be unique amongst all the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#concept-id" title='Read about this "IDs" reference in the full HTML5 spec.'>IDs</a> in the element's <a href="infrastructure.html#home-subtree" id="home-subtree_1">home + <code title="attr-aria-role">role</code> and <code title="attr-aria-*">aria-*</code> attributes).</p> + + + <h5 id="the-id-attribute"><span class="secno">3.2.3.1 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>id</code></dfn> attribute</h5> + + <p>The <code title="attr-id"><a href="#the-id-attribute" id="id_1">id</a></code> attribute specifies its + element's <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#concept-id" title='Read about this "unique identifier (ID)" reference in the full HTML5 spec.'>unique identifier (ID)</a>. <a href="references.html#refsDOMCORE">[DOMCORE]</a></p> + + <p>The value must be unique amongst all the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#concept-id" title='Read about this "IDs" reference in the full HTML5 spec.'>IDs</a> in the element's <a href="infrastructure.html#home-subtree" id="home-subtree_1">home subtree</a> and must contain at least one character. The value must not contain any <a href="common-microsyntaxes.html#space-character" id="space-character_11" title="space character">space - characters</a>.<p class="note">An element's <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#concept-id" title='Read about this "unique identifier" reference in the full HTML5 spec.'>unique + characters</a>.</p> + + + + <p class="note">An element's <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#concept-id" title='Read about this "unique identifier" reference in the full HTML5 spec.'>unique identifier</a> can be used for a variety of purposes, most notably as a way to link to specific parts of a document using fragment identifiers, as a way to target an element when scripting, - and as a way to style a specific element from CSS.<h5 id="the-title-attribute"><span class="secno">3.2.3.2 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>title</code></dfn> attribute</h5><p>The <code title="attr-title"><a href="#the-title-attribute" id="title_0">title</a></code> attribute + and as a way to style a specific element from CSS.</p> + + + + + <h5 id="the-title-attribute"><span class="secno">3.2.3.2 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>title</code></dfn> attribute</h5> + + <p>The <code title="attr-title"><a href="#the-title-attribute" id="title_0">title</a></code> attribute <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> advisory information for the element, such as would be appropriate for a tooltip. On a link, this could be the title or a description of the target resource; on an image, it could be the image credit or a description of the image; on a paragraph, it could be a footnote or commentary on the text; on a citation, it could be further information about the source; and so forth. The - value is text.<p>If this attribute is omitted from an element, then it implies + value is text.</p> + + <p>If this attribute is omitted from an element, then it implies that the <code title="attr-title"><a href="#the-title-attribute" id="title_1">title</a></code> attribute of the nearest ancestor <a href="infrastructure.html#html-elements" id="html-elements_8" title="HTML elements">HTML element</a> with a <code title="attr-title"><a href="#the-title-attribute" id="title_2">title</a></code> attribute set is also relevant to this element. Setting the attribute overrides this, explicitly stating that the advisory information of any ancestors is not relevant to this element. Setting the attribute to the empty - string indicates that the element has no advisory information.<p>If the <code title="attr-title"><a href="#the-title-attribute" id="title_3">title</a></code> attribute's value - contains U+000A LINE FEED (LF) characters, the content is split into - multiple lines. Each U+000A LINE FEED (LF) character represents a - line break.<div class="example"> + string indicates that the element has no advisory information.</p> + + <p>If the <code title="attr-title"><a href="#the-title-attribute" id="title_3">title</a></code> attribute's value + contains "LF" (U+000A) characters, the content is split into + multiple lines. Each "LF" (U+000A) character represents a + line break.</p> + + <div class="example"> <p>Caution is advised with respect to the use of newlines in <code title="attr-title"><a href="#the-title-attribute" id="title_4">title</a></code> attributes.</p> @@ -486,23 +570,41 @@ <pre class="bad"><p>My logs show that there was some interest in <abbr title="Hypertext Transport Protocol">HTTP</abbr> today.</p></pre> - </div><p>Some elements, such as <code><a href="the-link-element.html#the-link-element" id="link_1">link</a></code>, <code><a href="the-abbr-element.html#the-abbr-element" id="abbr">abbr</a></code>, and + </div> + + <p>Some elements, such as <code><a href="the-link-element.html#the-link-element" id="link_1">link</a></code>, <code><a href="the-abbr-element.html#the-abbr-element" id="abbr">abbr</a></code>, and <code><a href="the-input-element.html#the-input-element" id="input_13">input</a></code>, define additional semantics for the <code title="attr-title"><a href="#the-title-attribute" id="title_5">title</a></code> attribute beyond the semantics described above.</p> + + <p>The <dfn aria-haspopup="true" id="dom-title" role="button" tabindex="0"><code>title</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_1">reflect</a> the <code title="attr-title"><a href="#the-title-attribute" id="title_6">title</a></code> content attribute.</p> -<h5 id="the-lang-and-xml:lang-attributes"><span class="secno">3.2.3.3 </span>The <code title="attr-lang"><a href="#attr-lang" id="lang_2">lang</a></code> and <code title="attr-xml-lang"><a href="#attr-xml-lang" id="xml:lang_0">xml:lang</a></code> attributes</h5><p>The <dfn aria-haspopup="true" id="attr-lang" role="button" tabindex="0"><code>lang</code></dfn> attribute (in + + + + + <h5 id="the-lang-and-xml:lang-attributes"><span class="secno">3.2.3.3 </span>The <code title="attr-lang"><a href="#attr-lang" id="lang_2">lang</a></code> and <code title="attr-xml-lang"><a href="#attr-xml-lang" id="xml:lang_0">xml:lang</a></code> attributes</h5> + + <p>The <dfn aria-haspopup="true" id="attr-lang" role="button" tabindex="0"><code>lang</code></dfn> attribute (in no namespace) specifies the primary language for the element's contents and for any of the element's attributes that contain text. Its value must be a valid BCP 47 language tag, or the empty string. Setting the attribute to the empty string indicates that the - primary language is unknown. <a href="references.html#refsBCP47">[BCP47]</a><p>The <dfn aria-haspopup="true" id="attr-xml-lang" role="button" tabindex="0"><code title="">lang</code></dfn> - attribute in the <a href="namespaces.html#xml-namespace" id="xml-namespace_1">XML namespace</a> is defined in XML. <a href="references.html#refsXML">[XML]</a><p>If these attributes are omitted from an element, then the + primary language is unknown. <a href="references.html#refsBCP47">[BCP47]</a></p> + + <p>The <dfn aria-haspopup="true" id="attr-xml-lang" role="button" tabindex="0"><code title="">lang</code></dfn> + attribute in the <a href="namespaces.html#xml-namespace" id="xml-namespace_1">XML namespace</a> is defined in XML. <a href="references.html#refsXML">[XML]</a></p> + + <p>If these attributes are omitted from an element, then the language of this element is the same as the language of its parent - element, if any.<p>The <code title="attr-lang"><a href="#attr-lang" id="lang_3">lang</a></code> attribute in no namespace + element, if any.</p> + + <p>The <code title="attr-lang"><a href="#attr-lang" id="lang_3">lang</a></code> attribute in no namespace may be used on any <a href="infrastructure.html#html-elements" id="html-elements_9" title="HTML elements">HTML - element</a>.<p>The <a href="#attr-xml-lang" id="attr-xml-lang_0" title="attr-xml-lang"><code title="">lang</code> + element</a>.</p> + + <p>The <a href="#attr-xml-lang" id="attr-xml-lang_0" title="attr-xml-lang"><code title="">lang</code> attribute in the <span>XML namespace</span></a> may be used on <a href="infrastructure.html#html-elements" id="html-elements_10">HTML elements</a> in <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#xml-documents" title='Read about this "XML documents" reference in the full HTML5 spec.'>XML documents</a>, as well as elements in other namespaces if the relevant specifications allow it @@ -512,7 +614,9 @@ in no namespace and the <a href="#attr-xml-lang" id="attr-xml-lang_2" title="attr-xml-lang"><code title="">lang</code> attribute in the <span>XML namespace</span></a> are specified on the same element, they must have exactly the same value when compared in an <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_4">ASCII - case-insensitive</a> manner.<p>Authors must not use the <a href="#attr-xml-lang" id="attr-xml-lang_3" title="attr-xml-lang"><code title="">lang</code> attribute in the <span>XML + case-insensitive</a> manner.</p> + + <p>Authors must not use the <a href="#attr-xml-lang" id="attr-xml-lang_3" title="attr-xml-lang"><code title="">lang</code> attribute in the <span>XML namespace</span></a> on <a href="infrastructure.html#html-elements" id="html-elements_11">HTML elements</a> in <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#html-documents" title='Read about this "HTML documents" reference in the full HTML5 spec.'>HTML documents</a>. To ease migration to and from XHTML, authors may specify an attribute in no namespace with no prefix and with the @@ -521,22 +625,36 @@ must only be specified if a <code title="attr-lang"><a href="#attr-lang" id="lang_5">lang</a></code> attribute in no namespace is also specified, and both attributes must have the same value when compared in an <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_5">ASCII - case-insensitive</a> manner.<p class="note">The attribute in no namespace with no prefix and + case-insensitive</a> manner.</p> + + <p class="note">The attribute in no namespace with no prefix and with the literal localname "<code title="">xml:lang</code>" has no effect on language processing.</p> + + <p>The <dfn aria-haspopup="true" id="dom-lang" role="button" tabindex="0"><code>lang</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_2">reflect</a> the <code title="attr-lang"><a href="#attr-lang" id="lang_6">lang</a></code> content attribute in no namespace.</p> -<h5 id="the-translate-attribute"><span class="secno">3.2.3.4 </span>The <code title="attr-translate"><a href="#attr-translate" id="translate_0">translate</a></code> attribute</h5><p>The <dfn aria-haspopup="true" id="attr-translate" role="button" tabindex="0"><code>translate</code></dfn> + + + + + <h5 id="the-translate-attribute"><span class="secno">3.2.3.4 </span>The <code title="attr-translate"><a href="#attr-translate" id="translate_0">translate</a></code> attribute</h5> + + <p>The <dfn aria-haspopup="true" id="attr-translate" role="button" tabindex="0"><code>translate</code></dfn> attribute is an <a href="common-microsyntaxes.html#enumerated-attribute" id="enumerated-attribute_1">enumerated attribute</a> that is used to specify whether an element's attribute values and the values of its <code><a href="obsolete.html#text">Text</a></code> node children are to be translated when the page - is localized, or whether to leave them unchanged.<p>The attribute's keywords are the empty string, <code title="">yes</code>, and <code title="">no</code>. The empty string + is localized, or whether to leave them unchanged.</p> + + <p>The attribute's keywords are the empty string, <code title="">yes</code>, and <code title="">no</code>. The empty string and the <code title="">yes</code> keyword map to the <i>yes</i> state. The <code title="">no</code> keyword maps to the <i>no</i> state. In addition, there is a third state, the <i>inherit</i> state, which is the <i>missing value default</i> (and the <i>invalid - value default</i>).<p>Each element has a <dfn aria-haspopup="true" id="translation-mode" role="button" tabindex="0">translation mode</dfn>, which is in + value default</i>).</p> + + <p>Each element has a <dfn aria-haspopup="true" id="translation-mode" role="button" tabindex="0">translation mode</dfn>, which is in either the <a href="#translate-enabled" id="translate-enabled_0">translate-enabled</a> state or the <a href="#no-translate" id="no-translate_0">no-translate</a> state. If the element's <code title="attr-translate"><a href="#attr-translate" id="translate_1">translate</a></code> attribute is in the <i>yes</i> state, then the element's <a href="#translation-mode" id="translation-mode_0">translation mode</a> @@ -548,13 +666,21 @@ attribute is in the <i>inherit</i> state; in that case, the element's <a href="#translation-mode" id="translation-mode_2">translation mode</a> is in the same state as its parent element, if any, or in the <a href="#translate-enabled" id="translate-enabled_2">translate-enabled</a> - state, if the element is a <a href="infrastructure.html#root-element" id="root-element_8">root element</a>.<p>When an element is in the <dfn aria-haspopup="true" id="translate-enabled" role="button" tabindex="0">translate-enabled</dfn> state, the + state, if the element is a <a href="infrastructure.html#root-element" id="root-element_8">root element</a>.</p> + + <p>When an element is in the <dfn aria-haspopup="true" id="translate-enabled" role="button" tabindex="0">translate-enabled</dfn> state, the element's attribute values and the values of its <code><a href="obsolete.html#text">Text</a></code> - node children are to be translated when the page is localized.<p>When an element is in the <dfn aria-haspopup="true" id="no-translate" role="button" tabindex="0">no-translate</dfn> state, the + node children are to be translated when the page is localized.</p> + + <p>When an element is in the <dfn aria-haspopup="true" id="no-translate" role="button" tabindex="0">no-translate</dfn> state, the element's attribute values and the values of its <code><a href="obsolete.html#text">Text</a></code> node children are to be left as-is when the page is localized, e.g. because the element contains a person's name or a the name of a - computer program.<div class="example"> + computer program.</p> + + + + <div class="example"> <p>In this example, everything in the document is to be translated when the page is localised, except the sample keyboard input and @@ -573,14 +699,29 @@ </body> </html></pre> - </div><h5 id="the-xml:base-attribute-xml-only"><span class="secno">3.2.3.5 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>xml:base</code></dfn> - attribute (XML only)</h5><p>The <code title="attr-xml-base"><a href="#the-xml:base-attribute-xml-only" id="xml:base">xml:base</a></code> attribute is - defined in XML Base. <a href="references.html#refsXMLBASE">[XMLBASE]</a><p>The <code title="attr-xml-base"><a href="#the-xml:base-attribute-xml-only" id="xml:base_0">xml:base</a></code> attribute may be + </div> + + + + <h5 id="the-xml:base-attribute-xml-only"><span class="secno">3.2.3.5 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>xml:base</code></dfn> + attribute (XML only)</h5> + + <p>The <code title="attr-xml-base"><a href="#the-xml:base-attribute-xml-only" id="xml:base">xml:base</a></code> attribute is + defined in XML Base. <a href="references.html#refsXMLBASE">[XMLBASE]</a></p> + + <p>The <code title="attr-xml-base"><a href="#the-xml:base-attribute-xml-only" id="xml:base_0">xml:base</a></code> attribute may be used on elements of <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#xml-documents" title='Read about this "XML documents" reference in the full HTML5 spec.'>XML documents</a>. Authors must not use the <code title="attr-xml-base"><a href="#the-xml:base-attribute-xml-only" id="xml:base_1">xml:base</a></code> attribute in - <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#html-documents" title='Read about this "HTML documents" reference in the full HTML5 spec.'>HTML documents</a>.<h5 id="the-dir-attribute"><span class="secno">3.2.3.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>dir</code></dfn> attribute</h5><p>The <code title="attr-dir"><a href="#the-dir-attribute" id="dir_2">dir</a></code> attribute specifies the + <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#html-documents" title='Read about this "HTML documents" reference in the full HTML5 spec.'>HTML documents</a>.</p> + + + <h5 id="the-dir-attribute"><span class="secno">3.2.3.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>dir</code></dfn> attribute</h5> + + <p>The <code title="attr-dir"><a href="#the-dir-attribute" id="dir_2">dir</a></code> attribute specifies the element's text directionality. The attribute is an <a href="common-microsyntaxes.html#enumerated-attribute" id="enumerated-attribute_2">enumerated - attribute</a> with the following keywords and states:<dl><dt>The <dfn aria-haspopup="true" id="attr-dir-ltr" role="button" tabindex="0"><code>ltr</code></dfn> keyword, which maps to the <dfn aria-haspopup="true" id="attr-dir-ltr-state" role="button" tabindex="0">ltr</dfn> state</dt> + attribute</a> with the following keywords and states:</p> + + <dl><dt>The <dfn aria-haspopup="true" id="attr-dir-ltr" role="button" tabindex="0"><code>ltr</code></dfn> keyword, which maps to the <dfn aria-haspopup="true" id="attr-dir-ltr-state" role="button" tabindex="0">ltr</dfn> state</dt> <dd> @@ -620,8 +761,12 @@ </dd> </dl><p>The attribute has no <i>invalid value default</i> and no - <i>missing value default</i>.<p><dfn aria-haspopup="true" id="the-directionality" role="button" tabindex="0">The directionality</dfn> of an element is either '<dfn aria-haspopup="true" id="concept-ltr" role="button" tabindex="0">ltr</dfn>' or '<dfn aria-haspopup="true" id="concept-rtl" role="button" tabindex="0">rtl</dfn>', and is determined as per the first - appropriate set of steps from the following list:<dl class="switch"><dt>If the element's <code title="attr-dir"><a href="#the-dir-attribute" id="dir_3">dir</a></code> attribute is + <i>missing value default</i>.</p> + + <p><dfn aria-haspopup="true" id="the-directionality" role="button" tabindex="0">The directionality</dfn> of an element is either '<dfn aria-haspopup="true" id="concept-ltr" role="button" tabindex="0">ltr</dfn>' or '<dfn aria-haspopup="true" id="concept-rtl" role="button" tabindex="0">rtl</dfn>', and is determined as per the first + appropriate set of steps from the following list:</p> + + <dl class="switch"><dt>If the element's <code title="attr-dir"><a href="#the-dir-attribute" id="dir_3">dir</a></code> attribute is in the <a href="#attr-dir-ltr-state" id="attr-dir-ltr-state_0" title="attr-dir-ltr-state">ltr</a> state</dt> <dd><p><a href="#the-directionality" id="the-directionality_0">The directionality</a> of the element is '<a href="#concept-ltr" id="concept-ltr_0" title="concept-ltr">ltr</a>'.</dd> @@ -710,7 +855,9 @@ layer. For example, the rendering section in this specification defines a mapping from this attribute to the CSS 'direction' and 'unicode-bidi' properties, and CSS defines rendering in terms of - those properties.<hr><dl class="domintro"><dt><var title="">document</var> . <code title="dom-dir"><a href="#dom-dir" id="dir_24">dir</a></code> [ = <var title="">value</var> ]</dt> + those properties.</p> + + <hr><dl class="domintro"><dt><var title="">document</var> . <code title="dom-dir"><a href="#dom-dir" id="dir_24">dir</a></code> [ = <var title="">value</var> ]</dt> <dd> <p>Returns <a href="dom.html#the-html-element-0" id="the-html-element_2">the <code>html</code> element</a>'s <code title="attr-dir"><a href="#the-dir-attribute" id="dir_12">dir</a></code> attribute's value, if any.</p> <p>Can be set, to either "<code title="">ltr</code>", "<code title="">rtl</code>", or "<code title="">auto</code>" to replace <a href="dom.html#the-html-element-0" id="the-html-element_3">the <code>html</code> element</a>'s <code title="attr-dir"><a href="#the-dir-attribute" id="dir_13">dir</a></code> attribute's value.</p> @@ -728,10 +875,14 @@ <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-dom-interfaces.html#limited-to-only-known-values" title='Read about this "limited to only known values" reference in the full HTML5 spec.'>limited to only known values</a>. If there is no such element, then the attribute must return the empty string and do nothing on setting.</p> -<p class="note">Authors are strongly encouraged to use the <code title="attr-dir"><a href="#the-dir-attribute" id="dir_16">dir</a></code> attribute to indicate text direction + + + <p class="note">Authors are strongly encouraged to use the <code title="attr-dir"><a href="#the-dir-attribute" id="dir_16">dir</a></code> attribute to indicate text direction rather than using CSS, since that way their documents will continue to render correctly even in the absence of CSS (e.g. as interpreted - by search engines).<div class="example"> + by search engines).</p> + + <div class="example"> <p>This markup fragment is of an IM conversation.</p> @@ -757,26 +908,56 @@ Arabic character, which causes the "right?" to be to the left of the Arabic text.</p> - </div><h5 id="classes"><span class="secno">3.2.3.7 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>class</code></dfn> attribute</h5><p>Every <a href="infrastructure.html#html-elements" id="html-elements_13" title="HTML elements">HTML element</a> may have a - <code title="attr-class"><a href="#classes" id="class_1">class</a></code> attribute specified.<p>The attribute, if specified, must have a value that is a + </div> + + + + <h5 id="classes"><span class="secno">3.2.3.7 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>class</code></dfn> attribute</h5> + + <p>Every <a href="infrastructure.html#html-elements" id="html-elements_13" title="HTML elements">HTML element</a> may have a + <code title="attr-class"><a href="#classes" id="class_1">class</a></code> attribute specified.</p> + + <p>The attribute, if specified, must have a value that is a <a href="common-microsyntaxes.html#set-of-space-separated-tokens" id="set-of-space-separated-tokens_5">set of space-separated tokens</a> representing the various - classes that the element belongs to.<p class="note">Assigning classes to an element affects class + classes that the element belongs to.</p> + + + + <p class="note">Assigning classes to an element affects class matching in selectors in CSS, the <code title="dom-document-getElementsByClassName">getElementsByClassName()</code> - method in the DOM, and other such features.<p>There are no additional restrictions on the tokens authors can + method in the DOM, and other such features.</p> + + <p>There are no additional restrictions on the tokens authors can use in the <code title="attr-class"><a href="#classes" id="class_2">class</a></code> attribute, but authors are encouraged to use values that describe the nature of the content, rather than values that describe the desired presentation of the content.</p> + + <p>The <dfn aria-haspopup="true" id="dom-classname" role="button" tabindex="0"><code>className</code></dfn> and <dfn aria-haspopup="true" id="dom-classlist" role="button" tabindex="0"><code>classList</code></dfn> IDL attributes must both <a href="common-dom-interfaces.html#reflect" id="reflect_5">reflect</a> the <code title="attr-class"><a href="#classes" id="class_3">class</a></code> content attribute.</p> -<h5 id="the-style-attribute"><span class="secno">3.2.3.8 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>style</code></dfn> attribute</h5><p>All <a href="infrastructure.html#html-elements" id="html-elements_14">HTML elements</a> may have the <code title="attr-style"><a href="#the-style-attribute" id="style_4">style</a></code> content attribute set. This is a + + + + + <h5 id="the-style-attribute"><span class="secno">3.2.3.8 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>style</code></dfn> attribute</h5> + + <p>All <a href="infrastructure.html#html-elements" id="html-elements_14">HTML elements</a> may have the <code title="attr-style"><a href="#the-style-attribute" id="style_4">style</a></code> content attribute set. This is a <span>CSS styling attribute</span> as defined by the CSS Styling - Attribute Syntax specification. <a href="references.html#refsCSSATTR">[CSSATTR]</a><p>Documents that use <code title="attr-style"><a href="#the-style-attribute" id="style_5">style</a></code> + Attribute Syntax specification. <a href="references.html#refsCSSATTR">[CSSATTR]</a></p> + + + + <p>Documents that use <code title="attr-style"><a href="#the-style-attribute" id="style_5">style</a></code> attributes on any of their elements must still be comprehensible and - usable if those attributes were removed.<p class="note">In particular, using the <code title="attr-style"><a href="#the-style-attribute" id="style_6">style</a></code> attribute to hide and show content, + usable if those attributes were removed.</p> + + <p class="note">In particular, using the <code title="attr-style"><a href="#the-style-attribute" id="style_6">style</a></code> attribute to hide and show content, or to convey meaning that is otherwise not included in the document, - is non-conforming. (To hide and show content, use the <code title="attr-hidden"><a href="editing.html#the-hidden-attribute" id="hidden_0">hidden</a></code> attribute.)<hr><dl class="domintro"><dt><var title="">element</var> . <code id="dom-style" title="dom-style"><a href="#dom-style">style</a></code></dt> + is non-conforming. (To hide and show content, use the <code title="attr-hidden"><a href="editing.html#the-hidden-attribute" id="hidden_0">hidden</a></code> attribute.)</p> + + <hr><dl class="domintro"><dt><var title="">element</var> . <code id="dom-style" title="dom-style"><a href="#dom-style">style</a></code></dt> <dd> <p>Returns a <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#cssstyledeclaration" title='Read about this "CSSStyleDeclaration" reference in the full HTML5 spec.'>CSSStyleDeclaration</a></code> object for the element's <code title="attr-style"><a href="#the-style-attribute" id="style_7">style</a></code> attribute.</p> </dd> @@ -791,18 +972,32 @@ transparent">green</span> and my eyes are <span style="color: blue; background: transparent">blue</span>.</p></pre> - </div><h5 id="embedding-custom-non-visible-data-with-the-data-attributes"><span class="secno">3.2.3.9 </span><dfn aria-haspopup="true" role="button" tabindex="0">Embedding custom non-visible data</dfn> with the <code title="attr-data-*"><a href="#attr-data" id="data-*_0">data-*</a></code> attributes</h5><p>A <dfn aria-haspopup="true" id="custom-data-attribute" role="button" tabindex="0">custom data attribute</dfn> is an attribute in no + </div> + + + + <h5 id="embedding-custom-non-visible-data-with-the-data-attributes"><span class="secno">3.2.3.9 </span><dfn aria-haspopup="true" role="button" tabindex="0">Embedding custom non-visible data</dfn> with the <code title="attr-data-*"><a href="#attr-data" id="data-*_0">data-*</a></code> attributes</h5> + + <p>A <dfn aria-haspopup="true" id="custom-data-attribute" role="button" tabindex="0">custom data attribute</dfn> is an attribute in no namespace whose name starts with the string "<dfn aria-haspopup="true" id="attr-data" role="button" tabindex="0"><code>data-</code></dfn>", has at least one character after the hyphen, is <a href="infrastructure.html#xml-compatible" id="xml-compatible_0">XML-compatible</a>, and contains no characters in the range U+0041 to U+005A (LATIN CAPITAL - LETTER A to LATIN CAPITAL LETTER Z).<p class="note">All attributes on <a href="infrastructure.html#html-elements" id="html-elements_15">HTML elements</a> in + LETTER A to LATIN CAPITAL LETTER Z).</p> + + <p class="note">All attributes on <a href="infrastructure.html#html-elements" id="html-elements_15">HTML elements</a> in <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#html-documents" title='Read about this "HTML documents" reference in the full HTML5 spec.'>HTML documents</a> get ASCII-lowercased automatically, so the restriction on ASCII uppercase letters doesn't affect such - documents.<p><a href="#custom-data-attribute" id="custom-data-attribute_1" title="custom data attribute">Custom data attributes</a> + documents.</p> + + <p><a href="#custom-data-attribute" id="custom-data-attribute_1" title="custom data attribute">Custom data attributes</a> are intended to store custom data private to the page or application, for which there are no more appropriate attributes or - elements.<p>These attributes are not intended for use by software that is - independent of the site that uses the attributes.<div class="example"> + elements.</p> + + <p>These attributes are not intended for use by software that is + independent of the site that uses the attributes.</p> + + <div class="example"> <p>For instance, a site about music could annotate list items representing tracks in an album with custom data attributes @@ -823,9 +1018,13 @@ site's own scripts, and are not a generic extension mechanism for publicly-usable metadata.</p> - </div><p>Every <a href="infrastructure.html#html-elements" id="html-elements_16" title="HTML elements">HTML element</a> may have + </div> + + <p>Every <a href="infrastructure.html#html-elements" id="html-elements_16" title="HTML elements">HTML element</a> may have any number of <a href="#custom-data-attribute" id="custom-data-attribute_2" title="custom data attribute">custom data - attributes</a> specified, with any value.<hr><dl class="domintro"><dt><var title="">element</var> . <code id="dom-dataset" title="dom-dataset"><a href="#dom-dataset">dataset</a></code></dt> + attributes</a> specified, with any value.</p> + + <hr><dl class="domintro"><dt><var title="">element</var> . <code id="dom-dataset" title="dom-dataset"><a href="#dom-dataset">dataset</a></code></dt> <dd> <p>Returns a <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-dom-interfaces.html#domstringmap" title='Read about this "DOMStringMap" reference in the full HTML5 spec.'>DOMStringMap</a></code> object for the element's <code title="attr-data-*"><a href="#attr-data" id="data-*_1">data-*</a></code> attributes.</p> @@ -851,9 +1050,15 @@ <p>Notice how the hyphenated attribute name becomes camel-cased in the API.</p> - </div><p>Authors should carefully design such extensions so that when the + </div> + + <p>Authors should carefully design such extensions so that when the attributes are ignored and any associated CSS dropped, the page is - still usable.<p>JavaScript libraries may use the <a href="#custom-data-attribute" id="custom-data-attribute_3" title="custom data + still usable.</p> + + + + <p>JavaScript libraries may use the <a href="#custom-data-attribute" id="custom-data-attribute_3" title="custom data attribute">custom data attributes</a>, as they are considered to be part of the page on which they are used. Authors of libraries that are reused by many authors are encouraged to include their name @@ -863,7 +1068,9 @@ whose authors unknowingly picked the same name can be used on the same page, and so that multiple versions of a particular library can be used on the same page even when those versions are not mutually - compatible.<div class="example"> + compatible.</p> + + <div class="example"> <p>For example, a library called "DoQuery" could use attribute names like <code title="">data-doquery-range</code>, and a library @@ -871,4 +1078,7 @@ an API to set which prefix to use (e.g. <code title="">J.setDataPrefix('j2')</code>, making the attributes have names like <code title="">data-j2-range</code>).</p> - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: the-bdi-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-bdi-element.html,v retrieving revision 1.119 retrieving revision 1.120 diff -u -d -r1.119 -r1.120 --- the-bdi-element.html 21 Feb 2012 21:59:02 -0000 1.119 +++ the-bdi-element.html 13 Mar 2012 19:58:55 -0000 1.120 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-rp-element.html">← 4.6.22 The rp element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-bdo-element.html">4.6.24 The bdo element →</a> </div> - <h4 id="the-bdi-element"><span class="secno">4.6.23 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>bdi</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_54" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-bdi-element"><span class="secno">4.6.23 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>bdi</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_54" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_91">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_91">Phrasing content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_37">Palpable content</a>.</dd> @@ -365,10 +405,16 @@ <dd>Uses <code><a href="elements.html#htmlelement" id="htmlelement_58">HTMLElement</a></code>.</dd> </dl><p>The <code><a href="#the-bdi-element" id="bdi_6">bdi</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a span of text that is to be isolated from its surroundings for the purposes - of bidirectional text formatting. <a href="references.html#refsBIDI">[BIDI]</a><p class="note">The <code title="attr-dir"><a href="global-attributes.html#the-dir-attribute" id="dir_19">dir</a></code> global + of bidirectional text formatting. <a href="references.html#refsBIDI">[BIDI]</a></p> + + <p class="note">The <code title="attr-dir"><a href="global-attributes.html#the-dir-attribute" id="dir_19">dir</a></code> global attribute defaults to <code title="attr-dir-auto"><a href="global-attributes.html#attr-dir-auto" id="auto_0">auto</a></code> on this element (it never inherits from the parent element like with - other elements).<div class="example"> + other elements).</p> + + + + <div class="example"> <p>This element is especially useful when embedding user-generated content with an unknown directionality.</p> @@ -386,4 +432,7 @@ <li>User <bdi><bdo dir="rtl">إيان</bdo></bdi>: 3 posts. </ul></pre> - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: the-legend-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-legend-element.html,v retrieving revision 1.126 retrieving revision 1.127 diff -u -d -r1.126 -r1.127 --- the-legend-element.html 21 Feb 2012 21:59:06 -0000 1.126 +++ the-legend-element.html 13 Mar 2012 19:58:59 -0000 1.127 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-fieldset-element.html">← 4.10.4 The fieldset element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-label-element.html">4.10.6 The label element →</a> </div> - <h4 id="the-legend-element"><span class="secno">4.10.5 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>legend</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_85" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-legend-element"><span class="secno">4.10.5 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>legend</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_85" title="element-dfn-categories">Categories</a>:</dt> <dd>None.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_85" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>As the first child of a <code><a href="the-fieldset-element.html#the-fieldset-element" id="fieldset_19">fieldset</a></code> element.</dd> @@ -366,7 +406,10 @@ </dd> </dl><p>The <code><a href="#the-legend-element" id="legend_3">legend</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a caption for the rest of the contents of the <code><a href="#the-legend-element" id="legend_4">legend</a></code> element's - parent <code><a href="the-fieldset-element.html#the-fieldset-element" id="fieldset_20">fieldset</a></code> element.<dl class="domintro"><dt><var title="">legend</var> . <code id="dom-legend-form" title="dom-legend-form"><a href="#dom-legend-form">form</a></code></dt> + parent <code><a href="the-fieldset-element.html#the-fieldset-element" id="fieldset_20">fieldset</a></code> element.</p> + + + <dl class="domintro"><dt><var title="">legend</var> . <code id="dom-legend-form" title="dom-legend-form"><a href="#dom-legend-form">form</a></code></dt> <dd> Index: the-dt-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-dt-element.html,v retrieving revision 1.116 retrieving revision 1.117 diff -u -d -r1.116 -r1.117 --- the-dt-element.html 21 Feb 2012 21:59:03 -0000 1.116 +++ the-dt-element.html 13 Mar 2012 19:58:57 -0000 1.117 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-dl-element.html">← 4.5.8 The dl element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-dd-element.html">4.5.10 The dd element →</a> </div> - <h4 id="the-dt-element"><span class="secno">4.5.9 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>dt</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_27" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-dt-element"><span class="secno">4.5.9 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>dt</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_27" title="element-dfn-categories">Categories</a>:</dt> <dd>None.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_27" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>Before <code><a href="the-dd-element.html#the-dd-element" id="dd_3">dd</a></code> or <code><a href="#the-dt-element" id="dt_3">dt</a></code> elements inside <code><a href="the-dl-element.html#the-dl-element" id="dl_8">dl</a></code> elements.</dd> @@ -362,10 +402,14 @@ <dd>Uses <code><a href="elements.html#htmlelement" id="htmlelement_32">HTMLElement</a></code>.</dd> </dl><p>The <code><a href="#the-dt-element" id="dt_4">dt</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> the term, or name, part of a term-description group in a description list - (<code><a href="the-dl-element.html#the-dl-element" id="dl_9">dl</a></code> element).<p class="note">The <code><a href="#the-dt-element" id="dt_5">dt</a></code> element itself, when used in a + (<code><a href="the-dl-element.html#the-dl-element" id="dl_9">dl</a></code> element).</p> + + <p class="note">The <code><a href="#the-dt-element" id="dt_5">dt</a></code> element itself, when used in a <code><a href="the-dl-element.html#the-dl-element" id="dl_10">dl</a></code> element, does not indicate that its contents are a term being defined, but this can be indicated using the - <code><a href="the-dfn-element.html#the-dfn-element" id="dfn_3">dfn</a></code> element.<div class="example"> + <code><a href="the-dfn-element.html#the-dfn-element" id="dfn_3">dfn</a></code> element.</p> + + <div class="example"> <p>This example shows a list of frequently asked questions (a FAQ) marked up using the <code><a href="#the-dt-element" id="dt_6">dt</a></code> element for questions and the @@ -383,4 +427,8 @@ </dl> </article></pre> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: history.html =================================================================== RCS file: /sources/public/html5/spec-author-view/history.html,v retrieving revision 1.1167 retrieving revision 1.1168 diff -u -d -r1.1167 -r1.1168 --- history.html 16 Feb 2012 09:57:39 -0000 1.1167 +++ history.html 13 Mar 2012 19:58:40 -0000 1.1168 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,7 +380,9 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="origin-0.html">← 5.3 Origin</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="offline.html">5.6 Offline Web applications →</a> @@ -352,36 +390,60 @@ <ol><li><a href="history.html#the-session-history-of-browsing-contexts"><span class="secno">5.4.1 </span>The session history of browsing contexts</a><li><a href="history.html#the-history-interface"><span class="secno">5.4.2 </span>The <code>History</code> interface</a><li><a href="history.html#the-location-interface"><span class="secno">5.4.3 </span>The <code>Location</code> interface</a></ol><li><a href="history.html#browsing-the-web"><span class="secno">5.5 </span>Browsing the Web</a> <ol><li><a href="history.html#history-traversal"><span class="secno">5.5.1 </span>History traversal</a><li><a href="history.html#unloading-documents"><span class="secno">5.5.2 </span>Unloading documents</a></ol></ol></ol></div> - <h3 id="history"><span class="secno">5.4 </span>Session history and navigation</h3><h4 id="the-session-history-of-browsing-contexts"><span class="secno">5.4.1 </span>The session history of browsing contexts</h4><p>The sequence of <code><a href="dom.html#document" id="document_97">Document</a></code>s in a <a href="browsers.html#browsing-context" id="browsing-context_40">browsing - context</a> is its <dfn aria-haspopup="true" id="session-history" role="button" tabindex="0">session history</dfn>.<p><code><a href="#history-0" id="history_9">History</a></code> objects provide a representation of the + <h3 id="history"><span class="secno">5.4 </span>Session history and navigation</h3> + + <h4 id="the-session-history-of-browsing-contexts"><span class="secno">5.4.1 </span>The session history of browsing contexts</h4> + + <p>The sequence of <code><a href="dom.html#document" id="document_97">Document</a></code>s in a <a href="browsers.html#browsing-context" id="browsing-context_40">browsing + context</a> is its <dfn aria-haspopup="true" id="session-history" role="button" tabindex="0">session history</dfn>.</p> + + <p><code><a href="#history-0" id="history_9">History</a></code> objects provide a representation of the pages in the session history of <a href="browsers.html#browsing-context" id="browsing-context_41" title="browsing context">browsing contexts</a>. Each <a href="browsers.html#browsing-context" id="browsing-context_42">browsing context</a>, including <a href="browsers.html#nested-browsing-context" id="nested-browsing-context_20" title="nested browsing context">nested browsing contexts</a>, has a distinct session - history.<p>Each <code><a href="dom.html#document" id="document_98">Document</a></code> object in a <a href="browsers.html#browsing-context" id="browsing-context_43">browsing + history.</p> + + <p>Each <code><a href="dom.html#document" id="document_98">Document</a></code> object in a <a href="browsers.html#browsing-context" id="browsing-context_43">browsing context</a>'s <a href="#session-history" id="session-history_2">session history</a> is associated with a unique instance of the <code><a href="#history-0" id="history_10">History</a></code> object, although they all must model the same underlying <a href="#session-history" id="session-history_3">session history</a>.</p> + + <p>The <dfn aria-haspopup="true" id="dom-history" role="button" tabindex="0"><code>history</code></dfn> attribute of the <code><a href="browsers.html#window" id="window_17">Window</a></code> interface must return the object implementing the <code><a href="#history-0" id="history_11">History</a></code> interface for that <code><a href="browsers.html#window" id="window_18">Window</a></code> object's <code><a href="dom.html#document" id="document_99">Document</a></code>.</p> -<p><code><a href="#history-0" id="history_12">History</a></code> objects represent their <a href="browsers.html#browsing-context" id="browsing-context_44">browsing + + + <p><code><a href="#history-0" id="history_12">History</a></code> objects represent their <a href="browsers.html#browsing-context" id="browsing-context_44">browsing context</a>'s session history as a flat list of <a href="#session-history-entry" id="session-history-entry_0" title="session history entry">session history entries</a>. Each <dfn aria-haspopup="true" id="session-history-entry" role="button" tabindex="0">session history entry</dfn> consists of a <a href="urls.html#url" id="url_17">URL</a> and - optionally a <a href="#state-object" id="state-object_0">state object</a>.<p class="note">Titles associated with <a href="#session-history-entry" id="session-history-entry_1" title="session history + optionally a <a href="#state-object" id="state-object_0">state object</a>.</p> + + + + <p class="note">Titles associated with <a href="#session-history-entry" id="session-history-entry_1" title="session history entry">session history entries</a> need not have any relation with the current <code><a href="the-title-element.html#the-title-element" id="title_51">title</a></code> of the <code><a href="dom.html#document" id="document_100">Document</a></code>. The title of a <a href="#session-history-entry" id="session-history-entry_2">session history entry</a> is intended to explain the state of the document at that point, so that the user can navigate the document's - history.<p>URLs without associated <a href="#state-object" id="state-object_1" title="state object">state + history.</p> + + <p>URLs without associated <a href="#state-object" id="state-object_1" title="state object">state objects</a> are added to the session history as the user (or - script) navigates from page to page.<p>A <dfn aria-haspopup="true" id="state-object" role="button" tabindex="0">state object</dfn> is an object representing a user - interface state.<p>Pages can <a href="#dom-history-pushstate" title="dom-history-pushState">add</a> <a href="#state-object" id="state-object_2" title="state object">state objects</a> between their entry in the + script) navigates from page to page.</p> + + <p>A <dfn aria-haspopup="true" id="state-object" role="button" tabindex="0">state object</dfn> is an object representing a user + interface state.</p> + + <p>Pages can <a href="#dom-history-pushstate" title="dom-history-pushState">add</a> <a href="#state-object" id="state-object_2" title="state object">state objects</a> between their entry in the session history and the next ("forward") entry. These are then <a href="#event-popstate" id="event-popstate_0" title="event-popstate">returned to the script</a> when the user (or script) goes back in the history, thus enabling authors to use - the "navigation" metaphor even in one-page applications.<div class="note"> + the "navigation" metaphor even in one-page applications.</p> + + <div class="note"> <p><a href="#state-object" id="state-object_3" title="state object">State objects</a> are intended to be used for two main purposes: first, storing a preparsed @@ -402,32 +464,58 @@ back and forward, the information doesn't have to be fetched again.</p> - </div><hr><p>At any point, one of the entries in the session history is the + </div> + + <hr><p>At any point, one of the entries in the session history is the <dfn aria-haspopup="true" id="current-entry" role="button" tabindex="0">current entry</dfn>. This is the entry representing the <a href="browsers.html#active-document" id="active-document_10">active document</a> of the <a href="browsers.html#browsing-context" id="browsing-context_45">browsing context</a>. Which entry is the <a href="#current-entry" id="current-entry_0">current entry</a> is changed by the - algorithms defined in this specification, e.g. during <a class="full-spec-link" href="http://dev.w3.org/html5/spec/history.html#traverse-the-history" title='Read about this "session history traversal" reference in the full HTML5 spec.'>session history traversal</a>.<p class="note">The <a href="#current-entry" id="current-entry_1">current entry</a> is usually an entry + algorithms defined in this specification, e.g. during <a class="full-spec-link" href="http://dev.w3.org/html5/spec/history.html#traverse-the-history" title='Read about this "session history traversal" reference in the full HTML5 spec.'>session history traversal</a>.</p> + + <p class="note">The <a href="#current-entry" id="current-entry_1">current entry</a> is usually an entry for the <a href="#dom-location-href" title="dom-location-href">location</a> of the <code><a href="dom.html#document" id="document_103">Document</a></code>. However, it can also be one of the entries for <a href="#state-object" id="state-object_4" title="state object">state objects</a> added to the - history by that document.<p><dfn aria-haspopup="true" id="an-entry-with-persisted-user-state" role="button" tabindex="0">An entry with persisted user state</dfn> is one that also + history by that document.</p> + + <p><dfn aria-haspopup="true" id="an-entry-with-persisted-user-state" role="button" tabindex="0">An entry with persisted user state</dfn> is one that also has user-agent defined state. This specification does not specify - what kind of state can be stored.<p class="example">For example, some user agents might want to - persist the scroll position, or the values of form controls.<p class="note">User agents that persist the value of form controls + what kind of state can be stored.</p> + + <p class="example">For example, some user agents might want to + persist the scroll position, or the values of form controls.</p> + + <p class="note">User agents that persist the value of form controls are encouraged to also persist their directionality (the value of the element's <code title="attr-dir"><a href="global-attributes.html#the-dir-attribute" id="dir_23">dir</a></code> attribute). This prevents values from being displayed incorrectly after a history traversal when the user had originally entered the values with an - explicit, non-default directionality.<p>Entries that consist of <a href="#state-object" id="state-object_5" title="state object">state + explicit, non-default directionality.</p> + + <p>Entries that consist of <a href="#state-object" id="state-object_5" title="state object">state objects</a> share the same <code><a href="dom.html#document" id="document_104">Document</a></code> as the entry for - the page that was active when they were added.<p>Contiguous entries that differ just by fragment identifier also - share the same <code><a href="dom.html#document" id="document_105">Document</a></code>.<p class="note">All entries that share the same + the page that was active when they were added.</p> + + <p>Contiguous entries that differ just by fragment identifier also + share the same <code><a href="dom.html#document" id="document_105">Document</a></code>.</p> + + <p class="note">All entries that share the same <code><a href="dom.html#document" id="document_106">Document</a></code> (and that are therefore merely different - states of one particular document) are contiguous by definition.<p>Each <code><a href="dom.html#document" id="document_107">Document</a></code> in a <a href="browsers.html#browsing-context" id="browsing-context_46">browsing context</a> + states of one particular document) are contiguous by definition.</p> + + <p>Each <code><a href="dom.html#document" id="document_107">Document</a></code> in a <a href="browsers.html#browsing-context" id="browsing-context_46">browsing context</a> also has a <dfn aria-haspopup="true" id="latest-entry" role="button" tabindex="0">latest entry</dfn>. This is the entry or that <code><a href="dom.html#document" id="document_108">Document</a></code> that was most the recently traversed to. When a <code><a href="dom.html#document" id="document_109">Document</a></code> is created, it initially has no <a href="#latest-entry" id="latest-entry_0">latest - entry</a>.<h4 id="the-history-interface"><span class="secno">5.4.2 </span>The <code><a href="#history-0" id="history_13">History</a></code> interface</h4><pre class="idl">interface <dfn aria-haspopup="true" id="history-0" role="button" tabindex="0">History</dfn> { + entry</a>.</p> + + + + + + <h4 id="the-history-interface"><span class="secno">5.4.2 </span>The <code><a href="#history-0" id="history_13">History</a></code> interface</h4> + + <pre class="idl">interface <dfn aria-haspopup="true" id="history-0" role="button" tabindex="0">History</dfn> { readonly attribute long <a href="#dom-history-length" title="dom-history-length">length</a>; readonly attribute any <a href="#dom-history-state" title="dom-history-state">state</a>; void <a href="#dom-history-go" title="dom-history-go">go</a>(optional long delta); @@ -435,7 +523,9 @@ void <a href="#dom-history-forward" title="dom-history-forward">forward</a>(); void <a href="#dom-history-pushstate" title="dom-history-pushState">pushState</a>(any data, DOMString title, optional DOMString url); void <a href="#dom-history-replacestate" title="dom-history-replaceState">replaceState</a>(any data, DOMString title, optional DOMString url); -};</pre><dl class="domintro"><dt><var title="">window</var> . <code title="dom-history"><a href="#dom-history" id="history_0">history</a></code> . <code id="dom-history-length" title="dom-history-length"><a href="#dom-history-length">length</a></code></dt> +};</pre> + + <dl class="domintro"><dt><var title="">window</var> . <code title="dom-history"><a href="#dom-history" id="history_0">history</a></code> . <code id="dom-history-length" title="dom-history-length"><a href="#dom-history-length">length</a></code></dt> <dd> @@ -508,9 +598,13 @@ entries that are <a href="#current-entry" id="current-entry_2" title="current entry">current entries</a> in their respective <a href="#session-history" id="session-history_5" title="session history">session histories</a> removed except for the <a href="#current-entry-of-the-joint-session-history" id="current-entry-of-the-joint-session-history_0">current entry of the - joint session history</a>.<p>The <dfn aria-haspopup="true" id="current-entry-of-the-joint-session-history" role="button" tabindex="0">current entry of the joint session history</dfn> is the + joint session history</a>.</p> + + <p>The <dfn aria-haspopup="true" id="current-entry-of-the-joint-session-history" role="button" tabindex="0">current entry of the joint session history</dfn> is the entry that most recently became a <a href="#current-entry" id="current-entry_3">current entry</a> in its - <a href="#session-history" id="session-history_6">session history</a>.<p>Entries in the <a href="#joint-session-history" id="joint-session-history_4">joint session history</a> are ordered + <a href="#session-history" id="session-history_6">session history</a>.</p> + + <p>Entries in the <a href="#joint-session-history" id="joint-session-history_4">joint session history</a> are ordered chronologically by the time they were added to their respective <a href="#session-history" id="session-history_7" title="session history">session histories</a>. (Since all these <a href="browsers.html#browsing-context" id="browsing-context_48" title="browsing context">browsing contexts</a> by @@ -519,7 +613,12 @@ history">session histories</a> had their entries added.) Each entry has an index; the earliest entry has index 0, and the subsequent entries are numbered with consecutively increasing - integers (1, 2, 3, etc).<div class="example"> + integers (1, 2, 3, etc).</p> + + + + + <div class="example"> <p>Consider a game where the user can navigate along a line, such that the user is always at some coordinate, and such that the user @@ -583,7 +682,9 @@ more convenient form, so that the script doesn't have to parse the URL each time the user navigates.</p> - </div><div class="example"> + </div> + + <div class="example"> <p>Applications might not use the same title for a <a href="#session-history-entry" id="session-history-entry_3">session history entry</a> as the value of the document's @@ -612,9 +713,17 @@ State: <OUTPUT NAME=I>1</OUTPUT> <INPUT VALUE="Increment" TYPE=BUTTON ONCLICK="inc()"> </FORM></pre> - </div><h4 id="the-location-interface"><span class="secno">5.4.3 </span>The <code><a href="#location" id="location_2">Location</a></code> interface</h4><p>Each <code><a href="dom.html#document" id="document_111">Document</a></code> object in a <a href="browsers.html#browsing-context" id="browsing-context_49">browsing + </div> + + + + <h4 id="the-location-interface"><span class="secno">5.4.3 </span>The <code><a href="#location" id="location_2">Location</a></code> interface</h4> + + <p>Each <code><a href="dom.html#document" id="document_111">Document</a></code> object in a <a href="browsers.html#browsing-context" id="browsing-context_49">browsing context</a>'s session history is associated with a unique - instance of a <code><a href="#location" id="location_3">Location</a></code> object.<dl class="domintro"><dt><var title="">document</var> . <code id="dom-document-location" title="dom-document-location"><a href="#dom-document-location">location</a></code> [ = <var title="">value</var> ]</dt> + instance of a <code><a href="#location" id="location_3">Location</a></code> object.</p> + + <dl class="domintro"><dt><var title="">document</var> . <code id="dom-document-location" title="dom-document-location"><a href="#dom-document-location">location</a></code> [ = <var title="">value</var> ]</dt> <dt><var title="">window</var> . <code id="dom-location" title="dom-location"><a href="#dom-location">location</a></code> [ = <var title="">value</var> ]</dt> <dd> @@ -628,7 +737,9 @@ </dl><p><code><a href="#location" id="location_5">Location</a></code> objects provide a representation of <a href="dom.html#the-document-s-current-address" id="the-document's-current-address_1" title="the document's current address">their document's current address</a>, and allow the <a href="#current-entry" id="current-entry_4">current entry</a> of the <a href="browsers.html#browsing-context" id="browsing-context_50">browsing context</a>'s session history to be changed, by - adding or replacing entries in the <code title="dom-history"><a href="#dom-history" id="history_7">history</a></code> object.<pre class="idl">interface <dfn aria-haspopup="true" id="location" role="button" tabindex="0">Location</dfn> { + adding or replacing entries in the <code title="dom-history"><a href="#dom-history" id="history_7">history</a></code> object.</p> + + <pre class="idl">interface <dfn aria-haspopup="true" id="location" role="button" tabindex="0">Location</dfn> { stringifier attribute DOMString <a href="#dom-location-href" title="dom-location-href">href</a>; void <a href="#dom-location-assign" title="dom-location-assign">assign</a>(DOMString url); void <a href="#dom-location-replace" title="dom-location-replace">replace</a>(DOMString url); @@ -642,7 +753,9 @@ attribute DOMString <a href="#dom-location-pathname" id="dom-location-pathname_0" title="dom-location-pathname">pathname</a>; attribute DOMString <a href="#dom-location-search" id="dom-location-search_0" title="dom-location-search">search</a>; attribute DOMString <a href="#dom-location-hash" id="dom-location-hash_0" title="dom-location-hash">hash</a>; -};</pre><dl class="domintro"><dt><var title="">location</var> . <code id="dom-location-href" title="dom-location-href"><a href="#dom-location-href">href</a></code> [ = <var title="">value</var> ]</dt> +};</pre> + + <dl class="domintro"><dt><var title="">location</var> . <code id="dom-location-href" title="dom-location-href"><a href="#dom-location-href">href</a></code> [ = <var title="">value</var> ]</dt> <dd> @@ -677,16 +790,42 @@ </dd> </dl><p>The <code><a href="#location" id="location_6">Location</a></code> interface also has the complement of - <a href="urls.html#url-decomposition-idl-attributes" id="url-decomposition-idl-attributes_8">URL decomposition IDL attributes</a>, <dfn aria-haspopup="true" id="dom-location-protocol" role="button" tabindex="0"><code>protocol</code></dfn>, <dfn aria-haspopup="true" id="dom-location-host" role="button" tabindex="0"><code>host</code></dfn>, <dfn aria-haspopup="true" id="dom-location-port" role="button" tabindex="0"><code>port</code></dfn>, <dfn aria-haspopup="true" id="dom-location-hostname" role="button" tabindex="0"><code>hostname</code></dfn>, <dfn aria-haspopup="true" id="dom-location-pathname" role="button" tabindex="0"><code>pathname</code></dfn>, <dfn aria-haspopup="true" id="dom-location-search" role="button" tabindex="0"><code>search</code></dfn>, and <dfn aria-haspopup="true" id="dom-location-hash" role="button" tabindex="0"><code>hash</code></dfn>. <h3 id="browsing-the-web"><span class="secno">5.5 </span>Browsing the Web</h3><h4 id="history-traversal"><span class="secno">5.5.1 </span>History traersal</h4><p>The <dfn aria-haspopup="true" id="event-popstate" role="button" tabindex="0"><code>popstate</code></dfn> event + <a href="urls.html#url-decomposition-idl-attributes" id="url-decomposition-idl-attributes_8">URL decomposition IDL attributes</a>, <dfn aria-haspopup="true" id="dom-location-protocol" role="button" tabindex="0"><code>protocol</code></dfn>, <dfn aria-haspopup="true" id="dom-location-host" role="button" tabindex="0"><code>host</code></dfn>, <dfn aria-haspopup="true" id="dom-location-port" role="button" tabindex="0"><code>port</code></dfn>, <dfn aria-haspopup="true" id="dom-location-hostname" role="button" tabindex="0"><code>hostname</code></dfn>, <dfn aria-haspopup="true" id="dom-location-pathname" role="button" tabindex="0"><code>pathname</code></dfn>, <dfn aria-haspopup="true" id="dom-location-search" role="button" tabindex="0"><code>search</code></dfn>, and <dfn aria-haspopup="true" id="dom-location-hash" role="button" tabindex="0"><code>hash</code></dfn>. </p> + + + + + + + + + + + + <h3 id="browsing-the-web"><span class="secno">5.5 </span>Browsing the Web</h3> + + + + + + <h4 id="history-traversal"><span class="secno">5.5.1 </span>History traversal</h4> + + + + <p>The <dfn aria-haspopup="true" id="event-popstate" role="button" tabindex="0"><code>popstate</code></dfn> event is fired in certain cases when navigating to a <a href="#session-history-entry" id="session-history-entry_4">session history - entry</a>.<pre class="idl">[Constructor(DOMString type, optional <a href="#popstateeventinit" id="popstateeventinit_0">PopStateEventInit</a> eventInitDict)] + entry</a>.</p> + + <pre class="idl">[Constructor(DOMString type, optional <a href="#popstateeventinit" id="popstateeventinit_0">PopStateEventInit</a> eventInitDict)] interface <dfn aria-haspopup="true" id="popstateevent" role="button" tabindex="0">PopStateEvent</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#event" title='Read about this "Event" reference in the full HTML5 spec.'>Event</a> { readonly attribute any <a href="#dom-popstateevent-state" title="dom-PopStateEvent-state">state</a>; }; dictionary <dfn aria-haspopup="true" id="popstateeventinit" role="button" tabindex="0">PopStateEventInit</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#eventinit" title='Read about this "EventInit" reference in the full HTML5 spec.'>EventInit</a> { any state; -};</pre><dl class="domintro"><dt><var title="">event</var> . <code id="dom-popstateevent-state" title="dom-PopStateEvent-state"><a href="#dom-popstateevent-state">state</a></code></dt> +};</pre> + + <dl class="domintro"><dt><var title="">event</var> . <code id="dom-popstateevent-state" title="dom-PopStateEvent-state"><a href="#dom-popstateevent-state">state</a></code></dt> <dd> @@ -697,7 +836,9 @@ </dl><hr><p>The <dfn aria-haspopup="true" id="event-hashchange" role="button" tabindex="0"><code>hashchange</code></dfn> event is fired when navigating to a <a href="#session-history-entry" id="session-history-entry_5">session history entry</a> whose <a href="urls.html#url" id="url_21">URL</a> differs from that of the - previous one only in the fragment identifier.<pre class="idl">[Constructor(DOMString type, optional <a href="#hashchangeeventinit" id="hashchangeeventinit_0">HashChangeEventInit</a> eventInitDict)] + previous one only in the fragment identifier.</p> + + <pre class="idl">[Constructor(DOMString type, optional <a href="#hashchangeeventinit" id="hashchangeeventinit_0">HashChangeEventInit</a> eventInitDict)] interface <dfn aria-haspopup="true" id="hashchangeevent" role="button" tabindex="0">HashChangeEvent</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#event" title='Read about this "Event" reference in the full HTML5 spec.'>Event</a> { readonly attribute DOMString <a href="#dom-hashchangeevent-oldurl" title="dom-HashChangeEvent-oldURL">oldURL</a>; readonly attribute DOMString <a href="#dom-hashchangeevent-newurl" title="dom-HashChangeEvent-newURL">newURL</a>; @@ -706,7 +847,9 @@ dictionary <dfn aria-haspopup="true" id="hashchangeeventinit" role="button" tabindex="0">HashChangeEventInit</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#eventinit" title='Read about this "EventInit" reference in the full HTML5 spec.'>EventInit</a> { DOMString oldURL; DOMString newURL; -};</pre><dl class="domintro"><dt><var title="">event</var> . <code id="dom-hashchangeevent-oldurl" title="dom-HashChangeEvent-oldURL"><a href="#dom-hashchangeevent-oldurl">oldURL</a></code></dt> +};</pre> + + <dl class="domintro"><dt><var title="">event</var> . <code id="dom-hashchangeevent-oldurl" title="dom-HashChangeEvent-oldURL"><a href="#dom-hashchangeevent-oldurl">oldURL</a></code></dt> <dd> @@ -727,16 +870,22 @@ </dl><hr><p>The <dfn aria-haspopup="true" id="event-pageshow" role="button" tabindex="0"><code>pageshow</code></dfn> event is fired when traversing <em>to</em> a <a href="#session-history-entry" id="session-history-entry_8">session history - entry</a>.<p>The <dfn aria-haspopup="true" id="event-pagehide" role="button" tabindex="0"><code>pagehide</code></dfn> + entry</a>.</p> + + <p>The <dfn aria-haspopup="true" id="event-pagehide" role="button" tabindex="0"><code>pagehide</code></dfn> event is fired when traversing <em>from</em> a <a href="#session-history-entry" id="session-history-entry_9">session history - entry</a>.<pre class="idl">[Constructor(DOMString type, optional <a href="#pagetransitioneventinit" id="pagetransitioneventinit_0">PageTransitionEventInit</a> eventInitDict)] + entry</a>.</p> + + <pre class="idl">[Constructor(DOMString type, optional <a href="#pagetransitioneventinit" id="pagetransitioneventinit_0">PageTransitionEventInit</a> eventInitDict)] interface <dfn aria-haspopup="true" id="pagetransitionevent" role="button" tabindex="0">PageTransitionEvent</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#event" title='Read about this "Event" reference in the full HTML5 spec.'>Event</a> { readonly attribute boolean <a href="#dom-pagetransitionevent-persisted" title="dom-PageTransitionEvent-persisted">persisted</a>; }; dictionary <dfn aria-haspopup="true" id="pagetransitioneventinit" role="button" tabindex="0">PageTransitionEventInit</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#eventinit" title='Read about this "EventInit" reference in the full HTML5 spec.'>EventInit</a> { boolean persisted; -};</pre><dl class="domintro"><dt><var title="">event</var> . <code id="dom-pagetransitionevent-persisted" title="dom-PageTransitionEvent-persisted"><a href="#dom-pagetransitionevent-persisted">persisted</a></code></dt> +};</pre> + + <dl class="domintro"><dt><var title="">event</var> . <code id="dom-pagetransitionevent-persisted" title="dom-PageTransitionEvent-persisted"><a href="#dom-pagetransitionevent-persisted">persisted</a></code></dt> <dd> @@ -744,9 +893,15 @@ </dd> - </dl><h4 id="unloading-documents"><span class="secno">5.5.2 </span>Unloading documents</h4><pre class="idl">interface <dfn aria-haspopup="true" id="beforeunloadevent" role="button" tabindex="0">BeforeUnloadEvent</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#event" title='Read about this "Event" reference in the full HTML5 spec.'>Event</a> { + </dl><h4 id="unloading-documents"><span class="secno">5.5.2 </span>Unloading documents</h4> + + + + <pre class="idl">interface <dfn aria-haspopup="true" id="beforeunloadevent" role="button" tabindex="0">BeforeUnloadEvent</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#event" title='Read about this "Event" reference in the full HTML5 spec.'>Event</a> { attribute DOMString <a href="#dom-beforeunloadevent-returnvalue" title="dom-BeforeUnloadEvent-returnValue">returnValue</a>; -};</pre><dl class="domintro"><dt><var title="">event</var> . <code id="dom-beforeunloadevent-returnvalue" title="dom-BeforeUnloadEvent-returnValue"><a href="#dom-beforeunloadevent-returnvalue">returnValue</a></code> [ = <var title="">value</var> ]</dt> +};</pre> + + <dl class="domintro"><dt><var title="">event</var> . <code id="dom-beforeunloadevent-returnvalue" title="dom-BeforeUnloadEvent-returnValue"><a href="#dom-beforeunloadevent-returnvalue">returnValue</a></code> [ = <var title="">value</var> ]</dt> <dd> @@ -757,4 +912,13 @@ </dd> </dl><p class="note">There are no <code><a href="#beforeunloadevent" id="beforeunloadevent_0">BeforeUnloadEvent</a></code>-specific - initialization methods. \ No newline at end of file + initialization methods.</p> + + + + + + + + + \ No newline at end of file Index: svg-0.html =================================================================== RCS file: /sources/public/html5/spec-author-view/svg-0.html,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- svg-0.html 15 Feb 2012 10:14:18 -0000 1.20 +++ svg-0.html 13 Mar 2012 19:58:54 -0000 1.21 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,27 +380,46 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="mathml.html">← 4.8.15 MathML</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="dimension-attributes.html">4.8.17 Dimension attributes →</a> </div> - <h4 id="svg-0"><span class="secno">4.8.16 </span>SVG</h4><p>The <dfn aria-haspopup="true" id="svg" role="button" tabindex="0"><code>svg</code></dfn> element from the <a href="namespaces.html#svg-namespace" id="svg-namespace_0">SVG + <h4 id="svg-0"><span class="secno">4.8.16 </span>SVG</h4> + + <p>The <dfn aria-haspopup="true" id="svg" role="button" tabindex="0"><code>svg</code></dfn> element from the <a href="namespaces.html#svg-namespace" id="svg-namespace_0">SVG namespace</a> falls into the <a href="content-models.html#embedded-content" id="embedded-content_22">embedded content</a>, <a href="content-models.html#phrasing-content" id="phrasing-content_129">phrasing content</a>, and <a href="content-models.html#flow-content" id="flow-content_114">flow content</a> categories for the purposes of the content models in this - specification.<p>When the SVG <code title="">foreignObject</code> element contains + specification.</p> + + + + <p>When the SVG <code title="">foreignObject</code> element contains elements from the <a href="namespaces.html#html-namespace-0" id="html-namespace_6">HTML namespace</a>, such elements must - all be <a href="content-models.html#flow-content" id="flow-content_115">flow content</a>. <a href="references.html#refsSVG">[SVG]</a><p>The content model for <code title="">title</code> elements in the + all be <a href="content-models.html#flow-content" id="flow-content_115">flow content</a>. <a href="references.html#refsSVG">[SVG]</a></p> + + <p>The content model for <code title="">title</code> elements in the <a href="namespaces.html#svg-namespace" id="svg-namespace_1">SVG namespace</a> inside <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#html-documents" title='Read about this "HTML documents" reference in the full HTML5 spec.'>HTML documents</a> is <a href="content-models.html#phrasing-content" id="phrasing-content_130">phrasing content</a>. (This further constrains the - requirements given in the SVG specification.)<p>The semantics of SVG elements are defined by the SVG - specification and <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#other-applicable-specifications" title='Read about this "other applicable specifications" reference in the full HTML5 spec.'>other applicable specifications</a>. <a href="references.html#refsSVG">[SVG]</a><p>The SVG specification includes requirements regarding the + requirements given in the SVG specification.)</p> + + <p>The semantics of SVG elements are defined by the SVG + specification and <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#other-applicable-specifications" title='Read about this "other applicable specifications" reference in the full HTML5 spec.'>other applicable specifications</a>. <a href="references.html#refsSVG">[SVG]</a></p> + + + <p>The SVG specification includes requirements regarding the handling of elements in the DOM that are not in the SVG namespace, that are in SVG fragments, and that are not included in a <code title="">foreignObject</code> element. <em>This</em> specification does not define any processing for elements in SVG fragments that are not in the HTML namespace; they are considered neither conforming nor non-conforming from the perspective of this - specification. \ No newline at end of file + specification.</p> + + + + \ No newline at end of file Index: the-source-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-source-element.html,v retrieving revision 1.134 retrieving revision 1.135 diff -u -d -r1.134 -r1.135 --- the-source-element.html 21 Feb 2012 21:59:08 -0000 1.134 +++ the-source-element.html 13 Mar 2012 19:59:01 -0000 1.135 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-audio-element.html">← 4.8.7 The audio element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-track-element.html">4.8.9 The track element →</a> </div> - <h4 id="the-source-element"><span class="secno">4.8.8 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>source</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_68" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-source-element"><span class="secno">4.8.8 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>source</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_68" title="element-dfn-categories">Categories</a>:</dt> <dd>None.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_68" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>As a child of a <a href="media-elements.html#media-element" id="media-element_7">media element</a>, before any <a href="content-models.html#flow-content" id="flow-content_107">flow content</a> @@ -373,23 +413,31 @@ </dl><p>The <code><a href="#the-source-element" id="source_4">source</a></code> element allows authors to specify multiple alternative <a href="media-elements.html#media-resource" id="media-resource_0" title="media resource">media resources</a> for <a href="media-elements.html#media-element" id="media-element_8" title="media element">media - elements</a>. It does not <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represent" reference in the full HTML5 spec.'>represent</a> anything on its own.<p>The <dfn aria-haspopup="true" id="attr-source-src" role="button" tabindex="0"><code>src</code></dfn> attribute + elements</a>. It does not <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represent" reference in the full HTML5 spec.'>represent</a> anything on its own.</p> + + <p>The <dfn aria-haspopup="true" id="attr-source-src" role="button" tabindex="0"><code>src</code></dfn> attribute gives the address of the <a href="media-elements.html#media-resource" id="media-resource_1">media resource</a>. The value must be a <a href="urls.html#valid-non-empty-url-potentially-surrounded-by-spaces" id="valid-non-empty-url-potentially-surrounded-by-spaces_8">valid non-empty URL potentially surrounded by - spaces</a>. This attribute must be present.<p class="note">Dynamically modifying a <code><a href="#the-source-element" id="source_5">source</a></code> element + spaces</a>. This attribute must be present.</p> + + <p class="note">Dynamically modifying a <code><a href="#the-source-element" id="source_5">source</a></code> element and its attribute when the element is already inserted in a <code><a href="the-video-element.html#the-video-element" id="video_28">video</a></code> or <code><a href="the-audio-element.html#the-audio-element" id="audio_14">audio</a></code> element will have no effect. To change what is playing, just use the <code title="attr-media-src"><a href="media-elements.html#attr-media-src" id="src_40">src</a></code> attribute on the <a href="media-elements.html#media-element" id="media-element_9">media element</a> directly, possibly making use of the <code title="dom-navigator-canPlayType"><a href="media-elements.html#dom-navigator-canplaytype">canPlayType()</a></code> method to pick from amongst available resources. Generally, manipulating <code><a href="#the-source-element" id="source_6">source</a></code> elements manually after the document has been - parsed is an unncessarily complicated approach.<p>The <dfn aria-haspopup="true" id="attr-source-type" role="button" tabindex="0"><code>type</code></dfn> + parsed is an unncessarily complicated approach.</p> + + <p>The <dfn aria-haspopup="true" id="attr-source-type" role="button" tabindex="0"><code>type</code></dfn> attribute gives the type of the <a href="media-elements.html#media-resource" id="media-resource_2">media resource</a>, to help the user agent determine if it can play this <a href="media-elements.html#media-resource" id="media-resource_3">media resource</a> before fetching it. If specified, its value must be a <a href="infrastructure.html#valid-mime-type" id="valid-mime-type_6">valid MIME type</a>. The <code title="">codecs</code> parameter, which certain MIME types define, might be necessary to - specify exactly how the resource is encoded. <a href="references.html#refsRFC4281">[RFC4281]</a><div class="example"> + specify exactly how the resource is encoded. <a href="references.html#refsRFC4281">[RFC4281]</a></p> + + <div class="example"> <p>The following list shows some examples of how to use the <code title="">codecs=</code> MIME parameter in the <code title="attr-source-type"><a href="#attr-source-type" id="type_29">type</a></code> attribute.</p> @@ -444,17 +492,25 @@ - </dl></div><p>The <dfn aria-haspopup="true" id="attr-source-media" role="button" tabindex="0"><code>media</code></dfn> + </dl></div> + + <p>The <dfn aria-haspopup="true" id="attr-source-media" role="button" tabindex="0"><code>media</code></dfn> attribute gives the intended media type of the <a href="media-elements.html#media-resource" id="media-resource_4">media resource</a>, to help the user agent determine if this <a href="media-elements.html#media-resource" id="media-resource_5">media resource</a> is useful to the user before fetching - it. Its value must be a <a href="common-microsyntaxes.html#valid-media-query" id="valid-media-query_2">valid media query</a>.<p id="source-default-media">The default, if the <code title="attr-srouce-media">media</code> attribute is omitted, is + it. Its value must be a <a href="common-microsyntaxes.html#valid-media-query" id="valid-media-query_2">valid media query</a>.</p> + + <p id="source-default-media">The default, if the <code title="attr-srouce-media">media</code> attribute is omitted, is "<code title="">all</code>", meaning that by default the <a href="media-elements.html#media-resource" id="media-resource_6">media resource</a> is suitable for all media.</p> + + <p>The IDL attributes <dfn aria-haspopup="true" id="dom-source-src" role="button" tabindex="0"><code>src</code></dfn>, <dfn aria-haspopup="true" id="dom-source-type" role="button" tabindex="0"><code>type</code></dfn>, and <dfn aria-haspopup="true" id="dom-source-media" role="button" tabindex="0"><code>media</code></dfn> must <a href="common-dom-interfaces.html#reflect" id="reflect_34">reflect</a> the respective content attributes of the same name.</p> -<div class="example"> + + + <div class="example"> <p>If the author isn't sure if the user agents will all be able to render the media resources provided, the author can listen to the @@ -480,4 +536,8 @@ ... </video></pre> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: the-embed-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-embed-element.html,v retrieving revision 1.129 retrieving revision 1.130 diff -u -d -r1.129 -r1.130 --- the-embed-element.html 21 Feb 2012 21:59:04 -0000 1.129 +++ the-embed-element.html 13 Mar 2012 19:58:57 -0000 1.130 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,19 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-iframe-element.html">← 4.8.2 The iframe element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-object-element.html">4.8.4 The object element →</a> </div> - <h4 id="the-embed-element"><span class="secno">4.8.3 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>embed</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_63" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-embed-element"><span class="secno">4.8.3 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>embed</code></dfn> element</h4> + + + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_63" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_102">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_117">Phrasing content</a>.</dd> <dd><a href="content-models.html#embedded-content" id="embedded-content_8">Embedded content</a>.</dd> @@ -380,29 +422,50 @@ </dd> </dl><p>The <code><a href="#the-embed-element" id="embed_9">embed</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> an integration point for an external (typically non-HTML) application - or interactive content.<p>The <dfn aria-haspopup="true" id="attr-embed-src" role="button" tabindex="0"><code>src</code></dfn> attribute + or interactive content.</p> + + <p>The <dfn aria-haspopup="true" id="attr-embed-src" role="button" tabindex="0"><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-potentially-surrounded-by-spaces" id="valid-non-empty-url-potentially-surrounded-by-spaces_5">valid non-empty URL potentially - surrounded by spaces</a>.<p>The <dfn aria-haspopup="true" id="attr-embed-type" role="button" tabindex="0"><code>type</code></dfn> + surrounded by spaces</a>.</p> + + + <p>The <dfn aria-haspopup="true" id="attr-embed-type" role="button" tabindex="0"><code>type</code></dfn> attribute, if present, gives the <a href="infrastructure.html#mime-type" id="mime-type_6">MIME type</a> by which the plugin to instantiate is selected. The value must be a <a href="infrastructure.html#valid-mime-type" id="valid-mime-type_4">valid MIME type</a>. If both the <code title="attr-embed-type"><a href="#attr-embed-type" id="type_18">type</a></code> attribute and the <code title="attr-embed-src"><a href="#attr-embed-src" id="src_24">src</a></code> attribute are present, then the <code title="attr-embed-type"><a href="#attr-embed-type" id="type_19">type</a></code> attribute must specify the same type as the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/urls.html#content-type" title='Read about this "explicit Content-Type metadata" reference in the full HTML5 spec.'>explicit Content-Type - metadata</a> of the resource given by the <code title="attr-embed-src"><a href="#attr-embed-src" id="src_25">src</a></code> attribute.<p>Any namespace-less attribute other than <code title="attr-embed-name"><a href="obsolete.html#attr-embed-name" id="name_58">name</a></code>, <code title="attr-embed-align"><a href="obsolete.html#attr-embed-align" id="align">align</a></code>, <code title="attr-embed-hspace"><a href="obsolete.html#attr-embed-hspace" id="hspace">hspace</a></code>, and <code title="attr-embed-vspace"><a href="obsolete.html#attr-embed-vspace" id="vspace">vspace</a></code> may be specified on the <code><a href="#the-embed-element" id="embed_10">embed</a></code> element, + metadata</a> of the resource given by the <code title="attr-embed-src"><a href="#attr-embed-src" id="src_25">src</a></code> attribute.</p> + + + + <p>Any namespace-less attribute other than <code title="attr-embed-name"><a href="obsolete.html#attr-embed-name" id="name_58">name</a></code>, <code title="attr-embed-align"><a href="obsolete.html#attr-embed-align" id="align">align</a></code>, <code title="attr-embed-hspace"><a href="obsolete.html#attr-embed-hspace" id="hspace">hspace</a></code>, and <code title="attr-embed-vspace"><a href="obsolete.html#attr-embed-vspace" id="vspace">vspace</a></code> may be specified on the <code><a href="#the-embed-element" id="embed_10">embed</a></code> element, so long as its name is <a href="infrastructure.html#xml-compatible" id="xml-compatible_1">XML-compatible</a> and contains no characters in the range U+0041 to U+005A (LATIN CAPITAL LETTER A to LATIN CAPITAL LETTER Z). These attributes are then passed as - parameters to the <a href="infrastructure.html#plugin" id="plugin_1">plugin</a>.<p class="note">All attributes in <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#html-documents" title='Read about this "HTML documents" reference in the full HTML5 spec.'>HTML documents</a> get + parameters to the <a href="infrastructure.html#plugin" id="plugin_1">plugin</a>.</p> + + <p class="note">All attributes in <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#html-documents" title='Read about this "HTML documents" reference in the full HTML5 spec.'>HTML documents</a> get lowercased automatically, so the restriction on uppercase letters - doesn't affect such documents.<p class="note">The four exceptions are to exclude legacy attributes + doesn't affect such documents.</p> + + <p class="note">The four exceptions are to exclude legacy attributes that have side-effects beyond just sending parameters to the - <a href="infrastructure.html#plugin" id="plugin_2">plugin</a>.<p>The <code><a href="#the-embed-element" id="embed_11">embed</a></code> element supports <a href="dimension-attributes.html#dimension-attributes" id="dimension-attributes_2">dimension + <a href="infrastructure.html#plugin" id="plugin_2">plugin</a>.</p> + + + + <p>The <code><a href="#the-embed-element" id="embed_11">embed</a></code> element supports <a href="dimension-attributes.html#dimension-attributes" id="dimension-attributes_2">dimension attributes</a>.</p> + + <p>The IDL attributes <dfn aria-haspopup="true" id="dom-embed-src" role="button" tabindex="0"><code>src</code></dfn> and <dfn aria-haspopup="true" id="dom-embed-type" role="button" tabindex="0"><code>type</code></dfn> each must <a href="common-dom-interfaces.html#reflect" id="reflect_28">reflect</a> the respective content attributes of the same name.</p> -<div class="example"> + + + <div class="example"> <p>Here's a way to embed a resource that requires a proprietary plugin, like Flash:</p> @@ -425,4 +488,9 @@ <param name="quality" value="high"> </object></pre> - </div> \ No newline at end of file + </div> + + + + + \ No newline at end of file Index: the-ins-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-ins-element.html,v retrieving revision 1.121 retrieving revision 1.122 diff -u -d -r1.121 -r1.122 --- the-ins-element.html 15 Feb 2012 10:14:22 -0000 1.121 +++ the-ins-element.html 13 Mar 2012 19:58:59 -0000 1.122 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="edits.html">← 4.7 Edits</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-del-element.html">4.7.2 The del element →</a> </div> - <h4 id="the-ins-element"><span class="secno">4.7.1 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>ins</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_59" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-ins-element"><span class="secno">4.7.1 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>ins</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_59" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_96">Flow content</a>.</dd> <dd>When the element only contains <a href="content-models.html#phrasing-content" id="phrasing-content_104">phrasing content</a>: <a href="content-models.html#phrasing-content" id="phrasing-content_105">phrasing content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_40">Palpable content</a>.</dd> @@ -366,7 +406,9 @@ <dt><a href="element-definitions.html#element-dfn-dom" id="element-dfn-dom_59" title="element-dfn-dom">DOM interface</a>:</dt> <dd>Uses the <code><a href="attributes-common-to-ins-and-del-elements.html#htmlmodelement" id="htmlmodelement_0">HTMLModElement</a></code> interface.</dd> </dl><p>The <code><a href="#the-ins-element" id="ins_14">ins</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> an addition - to the document.<div class="example"> + to the document.</p> + + <div class="example"> <p>The following represents the addition of a single paragraph:</p> @@ -389,7 +431,11 @@ </ins> </aside></pre> - </div><p><code><a href="#the-ins-element" id="ins_15">ins</a></code> elements should not cross <a href="content-models.html#paragraph" id="paragraph_13" title="paragraph">implied paragraph</a> boundaries.<div class="example"> + </div> + + <p><code><a href="#the-ins-element" id="ins_15">ins</a></code> elements should not cross <a href="content-models.html#paragraph" id="paragraph_13" title="paragraph">implied paragraph</a> boundaries.</p> + + <div class="example"> <p>The following example represents the addition of two paragraphs, the second of which was inserted in two parts. The first @@ -424,4 +470,7 @@ - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: the-col-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-col-element.html,v retrieving revision 1.121 retrieving revision 1.122 diff -u -d -r1.121 -r1.122 --- the-col-element.html 15 Feb 2012 10:14:20 -0000 1.121 +++ the-col-element.html 13 Mar 2012 19:58:56 -0000 1.122 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-colgroup-element.html">← 4.9.3 The colgroup element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-tbody-element.html">4.9.5 The tbody element →</a> </div> - <h4 id="the-col-element"><span class="secno">4.9.4 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>col</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_76" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-col-element"><span class="secno">4.9.4 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>col</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_76" title="element-dfn-categories">Categories</a>:</dt> <dd>None.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_76" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>As a child of a <code><a href="the-colgroup-element.html#the-colgroup-element" id="colgroup_2">colgroup</a></code> element that doesn't have @@ -371,10 +411,18 @@ <code><a href="the-colgroup-element.html#the-colgroup-element" id="colgroup_4">colgroup</a></code> element that itself has a parent that is a <code><a href="the-table-element.html#the-table-element" id="table_15">table</a></code> element, then the <code><a href="#the-col-element" id="col_2">col</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> one or more <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-td-and-th-elements.html#concept-column" title='Read about this "columns" reference in the full HTML5 spec.'>columns</a> in the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-td-and-th-elements.html#concept-column-group" title='Read about this "column group" reference in the full HTML5 spec.'>column group</a> represented by that - <code><a href="the-colgroup-element.html#the-colgroup-element" id="colgroup_5">colgroup</a></code>.<p>The element may have a <dfn aria-haspopup="true" id="attr-col-span" role="button" tabindex="0"><code>span</code></dfn> content attribute + <code><a href="the-colgroup-element.html#the-colgroup-element" id="colgroup_5">colgroup</a></code>.</p> + + <p>The element may have a <dfn aria-haspopup="true" id="attr-col-span" role="button" tabindex="0"><code>span</code></dfn> content attribute specified, whose value must be a <a href="common-microsyntaxes.html#valid-non-negative-integer" id="valid-non-negative-integer_7">valid non-negative integer</a> greater than zero.</p> + + <p>The <dfn aria-haspopup="true" id="dom-col-span" role="button" tabindex="0"><code>span</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_53">reflect</a> the content attribute of the same name. The value must be <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-dom-interfaces.html#limited-to-only-non-negative-numbers-greater-than-zero" title='Read about this "limited to only non-negative numbers greater than zero" reference in the full HTML5 spec.'>limited to only non-negative numbers greater than zero</a>.</p> + + + + \ No newline at end of file Index: the-em-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-em-element.html,v retrieving revision 1.118 retrieving revision 1.119 diff -u -d -r1.118 -r1.119 --- the-em-element.html 21 Feb 2012 21:59:04 -0000 1.118 +++ the-em-element.html 13 Mar 2012 19:58:57 -0000 1.119 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-a-element.html">← 4.6.1 The a element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-strong-element.html">4.6.3 The strong element →</a> </div> - <h4 id="the-em-element"><span class="secno">4.6.2 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>em</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_33" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-em-element"><span class="secno">4.6.2 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>em</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_33" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_72">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_31">Phrasing content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_18">Palpable content</a>.</dd> @@ -363,11 +403,17 @@ <dt><a href="element-definitions.html#element-dfn-dom" id="element-dfn-dom_33" title="element-dfn-dom">DOM interface</a>:</dt> <dd>Uses <code><a href="elements.html#htmlelement" id="htmlelement_38">HTMLElement</a></code>.</dd> </dl><p>The <code><a href="#the-em-element" id="em_3">em</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> stress - emphasis of its contents.<p>The level of emphasis that a particular piece of content has is - given by its number of ancestor <code><a href="#the-em-element" id="em_4">em</a></code> elements.<p>The placement of emphasis changes the meaning of the sentence. + emphasis of its contents.</p> + + <p>The level of emphasis that a particular piece of content has is + given by its number of ancestor <code><a href="#the-em-element" id="em_4">em</a></code> elements.</p> + + <p>The placement of emphasis changes the meaning of the sentence. The element thus forms an integral part of the content. The precise way in which emphasis is used in this way depends on the - language.<div class="example"> + language.</p> + + <div class="example"> <p>These examples show how changing the emphasis changes the meaning. First, a general statement of fact, with no emphasis:</p> @@ -409,7 +455,9 @@ <pre><p><em>Cats are <em>cute</em> animals!</em></p></pre> - </div><div class="note"> + </div> + + <div class="note"> <p>The <code><a href="#the-em-element" id="em_5">em</a></code> element isn't a generic "italics" element. Sometimes, text is intended to stand out from the rest of @@ -422,4 +470,8 @@ - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: semantics.html =================================================================== RCS file: /sources/public/html5/spec-author-view/semantics.html,v retrieving revision 1.1134 retrieving revision 1.1135 diff -u -d -r1.1134 -r1.1135 --- semantics.html 15 Feb 2012 10:14:13 -0000 1.1134 +++ semantics.html 13 Mar 2012 19:58:44 -0000 1.1135 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,7 +380,9 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="dynamic-markup-insertion.html">← 3.3 Dynamic markup insertion</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-html-element.html">4.1.1 The html element →</a> @@ -352,4 +390,8 @@ <ol><li><a href="semantics.html#the-root-element"><span class="secno">4.1 </span>The root element</a> </ol></ol></div> - <h2 id="semantics"><span class="secno">4 </span>The elements of HTML</h2><h3 id="the-root-element"><span class="secno">4.1 </span>The root element</h3><p>The <a href="the-html-element.html#the-html-element" id="html_3">html</a> element. \ No newline at end of file + <h2 id="semantics"><span class="secno">4 </span>The elements of HTML</h2> + + <h3 id="the-root-element"><span class="secno">4.1 </span>The root element</h3><p>The <a href="the-html-element.html#the-html-element" id="html_3">html</a> element.</p> + + \ No newline at end of file Index: the-q-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-q-element.html,v retrieving revision 1.115 retrieving revision 1.116 diff -u -d -r1.115 -r1.116 --- the-q-element.html 15 Feb 2012 10:14:24 -0000 1.115 +++ the-q-element.html 13 Mar 2012 19:59:00 -0000 1.116 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-cite-element.html">← 4.6.6 The cite element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-dfn-element.html">4.6.8 The dfn element →</a> </div> - <h4 id="the-q-element"><span class="secno">4.6.7 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>q</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_38" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-q-element"><span class="secno">4.6.7 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>q</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_38" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_77">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_46">Phrasing content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_23">Palpable content</a>.</dd> @@ -364,21 +404,33 @@ <dt><a href="element-definitions.html#element-dfn-dom" id="element-dfn-dom_38" title="element-dfn-dom">DOM interface</a>:</dt> <dd>Uses <code><a href="the-blockquote-element.html#htmlquoteelement" id="htmlquoteelement_1">HTMLQuoteElement</a></code>.</dd> </dl><p>The <code><a href="#the-q-element" id="q_6">q</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> some <a href="content-models.html#phrasing-content" id="phrasing-content_49" title="phrasing content">phrasing content</a> quoted from another - source.<p>Quotation punctuation (such as quotation marks) that is quoting + source.</p> + + <p>Quotation punctuation (such as quotation marks) that is quoting the contents of the element must not appear immediately before, after, or inside <code><a href="#the-q-element" id="q_7">q</a></code> elements; they will be inserted into - the rendering by the user agent.<p>Content inside a <code><a href="#the-q-element" id="q_8">q</a></code> element must be quoted from + the rendering by the user agent.</p> + + <p>Content inside a <code><a href="#the-q-element" id="q_8">q</a></code> element must be quoted from another source, whose address, if it has one, may be cited in the <dfn aria-haspopup="true" id="attr-q-cite" role="button" tabindex="0"><code>cite</code></dfn> attribute. The source may be fictional, as when quoting characters in a novel or - screenplay.<p>If the <code title="attr-q-cite"><a href="#attr-q-cite" id="cite_23">cite</a></code> attribute is + screenplay.</p> + + <p>If the <code title="attr-q-cite"><a href="#attr-q-cite" id="cite_23">cite</a></code> attribute is present, it must be a <a href="urls.html#valid-url-potentially-surrounded-by-spaces" id="valid-url-potentially-surrounded-by-spaces_2">valid URL potentially surrounded by - spaces</a>. <p>The <code><a href="#the-q-element" id="q_9">q</a></code> element must not be used in place of quotation + spaces</a>. </p> + + <p>The <code><a href="#the-q-element" id="q_9">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" id="q_10">q</a></code> element for marking up sarcastic - statements.<p>The use of <code><a href="#the-q-element" id="q_11">q</a></code> elements to mark up quotations is + statements.</p> + + <p>The use of <code><a href="#the-q-element" id="q_11">q</a></code> elements to mark up quotations is entirely optional; using explicit quotation punctuation without - <code><a href="#the-q-element" id="q_12">q</a></code> elements is just as correct.<div class="example"> + <code><a href="#the-q-element" id="q_12">q</a></code> elements is just as correct.</p> + + <div class="example"> <p>Here is a simple example of the use of the <code><a href="#the-q-element" id="q_13">q</a></code> element:</p> @@ -386,7 +438,9 @@ <pre><p>The man said <q>Things that are impossible just take longer</q>. I disagreed with him.</p></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>Here is an example with both an explicit citation link in the <code><a href="#the-q-element" id="q_14">q</a></code> element, and an explicit citation outside:</p> @@ -397,7 +451,9 @@ guidelines that ensure long-term growth for the Web</q>. I disagree with this mission.</p></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>In the following example, the quotation itself contains a quotation:</p> @@ -406,7 +462,9 @@ said <q>Things that are impossible just take longer</q>. I disagreed with him</q>. Well, I disagree even more!</p></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>In the following example, quotation marks are used instead of the <code><a href="#the-q-element" id="q_15">q</a></code> element:</p> @@ -414,7 +472,9 @@ <pre><p>His best argument was ❝I disagree❞, which I thought was laughable.</p></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>In the following example, there is no quote — the quotation marks are used to name a word. Use of the <code><a href="#the-q-element" id="q_16">q</a></code> @@ -423,4 +483,7 @@ <pre><p>The word "ineffable" could have been used to describe the disaster resulting from the campaign's mismanagement.</p></pre> - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: the-style-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-style-element.html,v retrieving revision 1.131 retrieving revision 1.132 diff -u -d -r1.131 -r1.132 --- the-style-element.html 21 Feb 2012 21:59:08 -0000 1.131 +++ the-style-element.html 13 Mar 2012 19:59:01 -0000 1.132 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-meta-element.html">← 4.2.5 The meta element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="styling.html">4.2.7 Styling →</a> </div> - <h4 id="the-style-element"><span class="secno">4.2.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>style</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_6" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-style-element"><span class="secno">4.2.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>style</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_6" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#metadata-content" id="metadata-content_10">Metadata content</a>.</dd> <dd>If the <code title="attr-style-scoped"><a href="#attr-style-scoped" id="scoped_0">scoped</a></code> attribute is present: <a href="content-models.html#flow-content" id="flow-content_9">flow content</a>.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_6" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> @@ -378,51 +418,91 @@ </dl><p>The <code><a href="#the-style-element" id="style_16">style</a></code> element allows authors to embed style information in their documents. The <code><a href="#the-style-element" id="style_17">style</a></code> element is one of several inputs to the <a href="styling.html#styling" id="styling-processing-model_0">styling processing - model</a>. The element does not <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represent" reference in the full HTML5 spec.'>represent</a> content for the user.<p>The <dfn aria-haspopup="true" id="attr-style-type" role="button" tabindex="0"><code>type</code></dfn> + model</a>. The element does not <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represent" reference in the full HTML5 spec.'>represent</a> content for the user.</p> + + <p>The <dfn aria-haspopup="true" id="attr-style-type" role="button" tabindex="0"><code>type</code></dfn> attribute gives the styling language. If the attribute is present, its value must be a <a href="infrastructure.html#valid-mime-type" id="valid-mime-type_2">valid MIME type</a> that designates a styling language. The <code title="">charset</code> parameter must not be specified. The default value for the <code title="attr-style-type"><a href="#attr-style-type" id="type_4">type</a></code> attribute, which is used if the - attribute is absent, is "<code title="">text/css</code>". <a href="references.html#refsRFC2318">[RFC2318]</a><p>The <dfn aria-haspopup="true" id="attr-style-media" role="button" tabindex="0"><code>media</code></dfn> + attribute is absent, is "<code title="">text/css</code>". <a href="references.html#refsRFC2318">[RFC2318]</a></p> + + + + <p>The <dfn aria-haspopup="true" id="attr-style-media" role="button" tabindex="0"><code>media</code></dfn> attribute says which media the styles apply to. The value must be a - <a href="common-microsyntaxes.html#valid-media-query" id="valid-media-query_1">valid media query</a>. <p id="style-default-media">The default, if the <code title="attr-style-media"><a href="#attr-style-media" id="media_4">media</a></code> attribute is omitted, is + <a href="common-microsyntaxes.html#valid-media-query" id="valid-media-query_1">valid media query</a>. </p> + + + + <p id="style-default-media">The default, if the <code title="attr-style-media"><a href="#attr-style-media" id="media_4">media</a></code> attribute is omitted, is "<code title="">all</code>", meaning that by default styles apply to - all media.<p>The <dfn aria-haspopup="true" id="attr-style-scoped" role="button" tabindex="0"><code>scoped</code></dfn> + all media.</p> + + <p>The <dfn aria-haspopup="true" id="attr-style-scoped" role="button" tabindex="0"><code>scoped</code></dfn> attribute is a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_0">boolean attribute</a>. If present, it indicates that the styles are intended just for the subtree rooted at the <code><a href="#the-style-element" id="style_18">style</a></code> element's parent element, as opposed to - the whole <code><a href="dom.html#document" id="document_56">Document</a></code>.<p>If the <code title="attr-style-scoped"><a href="#attr-style-scoped" id="scoped_5">scoped</a></code> attribute is + the whole <code><a href="dom.html#document" id="document_56">Document</a></code>.</p> + + <p>If the <code title="attr-style-scoped"><a href="#attr-style-scoped" id="scoped_5">scoped</a></code> attribute is present and the element has a parent element, then the <code><a href="#the-style-element" id="style_19">style</a></code> element must be the first node of <a href="content-models.html#flow-content" id="flow-content_12">flow content</a> in its parent element other than <a href="content-models.html#inter-element-whitespace" id="inter-element-whitespace_8">inter-element whitespace</a>, and the parent element's content model must not - have a <a href="content-models.html#transparent" id="transparent_2">transparent</a> component.<p class="note">This implies that only one scoped <code><a href="#the-style-element" id="style_20">style</a></code> + have a <a href="content-models.html#transparent" id="transparent_2">transparent</a> component.</p> + + <p class="note">This implies that only one scoped <code><a href="#the-style-element" id="style_20">style</a></code> element is allowed at a time, and that such elements cannot be children of, e.g., <code><a href="the-a-element.html#the-a-element" id="a_13">a</a></code> or <code><a href="the-ins-element.html#the-ins-element" id="ins_12">ins</a></code> elements, even - when those are used as <a href="content-models.html#flow-content" id="flow-content_13">flow content</a> containers.<p id="title-on-style">The <dfn aria-haspopup="true" id="attr-style-title" role="button" tabindex="0"><code>title</code></dfn> attribute on + when those are used as <a href="content-models.html#flow-content" id="flow-content_13">flow content</a> containers.</p> + + + + <p id="title-on-style">The <dfn aria-haspopup="true" id="attr-style-title" role="button" tabindex="0"><code>title</code></dfn> attribute on <code><a href="#the-style-element" id="style_21">style</a></code> elements defines <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#alternative-style-sheet-sets" title='Read about this "alternative style sheet sets" reference in the full HTML5 spec.'>alternative style sheet sets</a>. If the <code><a href="#the-style-element" id="style_22">style</a></code> element has no <code title="attr-style-title"><a href="#attr-style-title" id="title_64">title</a></code> attribute, then it has no title; the <code title="attr-title"><a href="global-attributes.html#the-title-attribute" id="title_8">title</a></code> attribute of - ancestors does not apply to the <code><a href="#the-style-element" id="style_23">style</a></code> element. <a href="references.html#refsCSSOM">[CSSOM]</a><p class="note">The <code title="attr-style-title"><a href="#attr-style-title" id="title_65">title</a></code> + ancestors does not apply to the <code><a href="#the-style-element" id="style_23">style</a></code> element. <a href="references.html#refsCSSOM">[CSSOM]</a></p> + + <p class="note">The <code title="attr-style-title"><a href="#attr-style-title" id="title_65">title</a></code> attribute on <code><a href="#the-style-element" id="style_24">style</a></code> elements, like the <code title="attr-link-title"><a href="the-link-element.html#attr-link-title" id="title_62">title</a></code> attribute on <code><a href="the-link-element.html#the-link-element" id="link_21">link</a></code> elements, differs from the global <code title="attr-title"><a href="global-attributes.html#the-title-attribute" id="title_9">title</a></code> attribute in that a <code><a href="#the-style-element" id="style_25">style</a></code> block without a title does not inherit the title - of the parent element: it merely has no title.<p>The <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#textcontent" title='Read about this "textContent" reference in the full HTML5 spec.'>textContent</a></code> of a <code><a href="#the-style-element" id="style_26">style</a></code> element must + of the parent element: it merely has no title.</p> + + <p>The <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#textcontent" title='Read about this "textContent" reference in the full HTML5 spec.'>textContent</a></code> of a <code><a href="#the-style-element" id="style_26">style</a></code> element must match the <code title="">style</code> production in the following - ABNF, the character set for which is Unicode. <a href="references.html#refsABNF">[ABNF]</a><pre>style = no-c-start *( c-start no-c-end c-end no-c-start ) + ABNF, the character set for which is Unicode. <a href="references.html#refsABNF">[ABNF]</a></p> + + <pre>style = no-c-start *( c-start no-c-end c-end no-c-start ) no-c-start = <any string that doesn't contain a substring that matches c-start > c-start = "<!--" no-c-end = <any string that doesn't contain a substring that matches c-end > -c-end = "-->"</pre><p class="note">This specification does not specify a style system, +c-end = "-->"</pre> + + + + + + <p class="note">This specification does not specify a style system, but CSS is expected to be supported by most Web browsers. <a href="references.html#refsCSS">[CSS]</a></p> + + <p>The <dfn aria-haspopup="true" id="dom-style-media" role="button" tabindex="0"><code>media</code></dfn>, <dfn aria-haspopup="true" id="dom-style-type" role="button" tabindex="0"><code>type</code></dfn> and <dfn aria-haspopup="true" id="dom-style-scoped" role="button" tabindex="0"><code>scoped</code></dfn> IDL attributes must <a href="common-dom-interfaces.html#reflect" id="reflect_11">reflect</a> the respective content attributes of the same name.</p> -<p>The <dfn aria-haspopup="true" id="dom-style-disabled" role="button" tabindex="0"><code>disabled</code></dfn> + + + <p>The <dfn aria-haspopup="true" id="dom-style-disabled" role="button" tabindex="0"><code>disabled</code></dfn> IDL attribute behaves as defined <a class="full-spec-link" href="http://dev.w3.org/html5/spec/styling.html#dom-linkstyle-disabled" title='Read about this "for the alternative style sheets DOM" reference in the full HTML5 spec.'>for the alternative style sheets - DOM</a>.<p>The <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#linkstyle" title='Read about this "LinkStyle" reference in the full HTML5 spec.'>LinkStyle</a></code> interface is also implemented by + DOM</a>.</p> + + <p>The <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#linkstyle" title='Read about this "LinkStyle" reference in the full HTML5 spec.'>LinkStyle</a></code> interface is also implemented by this element; the <a href="styling.html#styling" id="styling-processing-model_1">styling processing model</a> defines - how. <a href="references.html#refsCSSOM">[CSSOM]</a><div class="example"> + how. <a href="references.html#refsCSSOM">[CSSOM]</a></p> + + <div class="example"> <p>The following document has its emphasis styled as bright red text rather than italics text, while leaving titles of works and @@ -445,4 +525,9 @@ </body> </html></pre> - </div> \ No newline at end of file + </div> + + + + + \ No newline at end of file Index: syntax.html =================================================================== RCS file: /sources/public/html5/spec-author-view/syntax.html,v retrieving revision 1.1178 retrieving revision 1.1179 diff -u -d -r1.1178 -r1.1179 --- syntax.html 15 Feb 2012 10:14:18 -0000 1.1178 +++ syntax.html 13 Mar 2012 19:58:54 -0000 1.1179 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,7 +380,9 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="dnd.html">← 7.6 Drag and drop</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="named-character-references.html">8.2 Named character references →</a> @@ -354,11 +392,22 @@ <ol><li><a href="syntax.html#start-tags"><span class="secno">8.1.2.1 </span>Start tags</a><li><a href="syntax.html#end-tags"><span class="secno">8.1.2.2 </span>End tags</a><li><a href="syntax.html#attributes-0"><span class="secno">8.1.2.3 </span>Attributes</a><li><a href="syntax.html#optional-tags"><span class="secno">8.1.2.4 </span>Optional tags</a><li><a href="syntax.html#element-restrictions"><span class="secno">8.1.2.5 </span>Restrictions on content models</a><li><a href="syntax.html#cdata-rcdata-restrictions"><span class="secno">8.1.2.6 </span>Restrictions on the contents of raw text and RCDATA elements</a></ol><li><a href="syntax.html#text-0"><span class="secno">8.1.3 </span>Text</a> <ol><li><a href="syntax.html#newlines"><span class="secno">8.1.3.1 </span>Newlines</a></ol><li><a href="syntax.html#character-references"><span class="secno">8.1.4 </span>Character references</a><li><a href="syntax.html#cdata-sections"><span class="secno">8.1.5 </span>CDATA sections</a><li><a href="syntax.html#comments"><span class="secno">8.1.6 </span>Comments</a></ol></ol></ol></div> - <h2 id="syntax"><span class="secno">8 </span><dfn aria-haspopup="true" role="button" tabindex="0">The HTML syntax</dfn></h2><p class="note">This section only describes the rules for resources + <h2 id="syntax"><span class="secno">8 </span><dfn aria-haspopup="true" role="button" tabindex="0">The HTML syntax</dfn></h2> + + <p class="note">This section only describes the rules for resources labeled with an <a href="infrastructure.html#html-mime-type" id="html-mime-type_0">HTML MIME type</a>. Rules for XML resources are discussed in the section below entitled "<a href="the-xhtml-syntax.html#the-xhtml-syntax">The XHTML - syntax</a>".<h3 id="writing"><span class="secno">8.1 </span>Writing HTML documents</h3><p>Documents must consist of the following parts, in the given - order:<ol><li>Optionally, a single U+FEFF BYTE ORDER MARK (BOM) character.</li> + syntax</a>".</p> + + + <h3 id="writing"><span class="secno">8.1 </span>Writing HTML documents</h3> + + + + <p>Documents must consist of the following parts, in the given + order:</p> + + <ol><li>Optionally, a single "BOM" (U+FEFF) character.</li> <li>Any number of <a href="#syntax-comments" id="syntax-comments_3" title="syntax-comments">comments</a> and <a href="common-microsyntaxes.html#space-character" id="space-character_22" title="space character">space characters</a>.</li> @@ -374,9 +423,13 @@ <a href="common-microsyntaxes.html#space-character" id="space-character_24" title="space character">space characters</a>.</li> </ol><p>The various types of content mentioned above are described in the - next few sections.<p>In addition, there are some restrictions on how <a href="the-meta-element.html#character-encoding-declaration" id="character-encoding-declaration_5" title="character encoding declaration">character encoding + next few sections.</p> + + <p>In addition, there are some restrictions on how <a href="the-meta-element.html#character-encoding-declaration" id="character-encoding-declaration_5" title="character encoding declaration">character encoding declarations</a> are to be serialized, as discussed in the - section on that topic.<div class="note"> + section on that topic.</p> + + <div class="note"> <p>Space characters before the root <code><a href="the-html-element.html#the-html-element" id="html_13">html</a></code> element, and space characters at the start of the <code><a href="the-html-element.html#the-html-element" id="html_14">html</a></code> element and @@ -392,28 +445,45 @@ that are inside the <code><a href="the-html-element.html#the-html-element" id="html_17">html</a></code> element but before the <code><a href="the-head-element.html#the-head-element" id="head_27">head</a></code> element.</p> - </div><p>Many strings in the HTML syntax (e.g. the names of elements and + </div> + + <p>Many strings in the HTML syntax (e.g. the names of elements and their attributes) are case-insensitive, but only for characters in the ranges U+0041 to U+005A (LATIN CAPITAL LETTER A to LATIN CAPITAL LETTER Z) and U+0061 to U+007A (LATIN SMALL LETTER A to LATIN SMALL LETTER Z). For convenience, in this section this is just referred to - as "case-insensitive".<h4 id="the-doctype"><span class="secno">8.1.1 </span>The DOCTYPE</h4><p>A <dfn aria-haspopup="true" id="syntax-doctype" role="button" tabindex="0">DOCTYPE</dfn> is a required preamble.<p class="note">DOCTYPEs are required for legacy reasons. When + as "case-insensitive".</p> + + + <h4 id="the-doctype"><span class="secno">8.1.1 </span>The DOCTYPE</h4> + + <p>A <dfn aria-haspopup="true" id="syntax-doctype" role="button" tabindex="0">DOCTYPE</dfn> is a required preamble.</p> + + <p class="note">DOCTYPEs are required for legacy reasons. When omitted, browsers tend to use a different rendering mode that is incompatible with some specifications. Including the DOCTYPE in a document ensures that the browser makes a best-effort attempt at - following the relevant specifications.<p>A DOCTYPE must consist of the following components, in this - order:<ol class="brief"><li>A string that is an <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_24">ASCII case-insensitive</a> match for the string "<code title=""><!DOCTYPE</code>".</li> + following the relevant specifications.</p> + + <p>A DOCTYPE must consist of the following components, in this + order:</p> + + <ol class="brief"><li>A string that is an <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_24">ASCII case-insensitive</a> match for the string "<code title=""><!DOCTYPE</code>".</li> <li>One or more <a href="common-microsyntaxes.html#space-character" id="space-character_25" title="space character">space characters</a>.</li> <li>A string that is an <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_25">ASCII case-insensitive</a> match for the string "<code title="">html</code>".</li> <li>Optionally, a <a href="#doctype-legacy-string" id="doctype-legacy-string_0">DOCTYPE legacy string</a> or an <a href="#obsolete-permitted-doctype-string" id="obsolete-permitted-doctype-string_0">obsolete permitted DOCTYPE string</a> (defined below).</li> <li>Zero or more <a href="common-microsyntaxes.html#space-character" id="space-character_26" title="space character">space characters</a>.</li> <li>A U+003E GREATER-THAN SIGN character (>).</li> </ol><p class="note">In other words, <code><!DOCTYPE html></code>, - case-insensitively.<hr><p>For the purposes of HTML generators that cannot output HTML + case-insensitively.</p> + + <hr><p>For the purposes of HTML generators that cannot output HTML markup with the short DOCTYPE "<code title=""><!DOCTYPE html></code>", a <dfn aria-haspopup="true" id="doctype-legacy-string" role="button" tabindex="0">DOCTYPE legacy string</dfn> may be inserted into the DOCTYPE (in the position defined above). This string must - consist of:<ol class="brief"><li>One or more <a href="common-microsyntaxes.html#space-character" id="space-character_27" title="space character">space characters</a>.</li> + consist of:</p> + + <ol class="brief"><li>One or more <a href="common-microsyntaxes.html#space-character" id="space-character_27" title="space character">space characters</a>.</li> <li>A string that is an <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_26">ASCII case-insensitive</a> match for the string "<code title="">SYSTEM</code>".</li> <li>One or more <a href="common-microsyntaxes.html#space-character" id="space-character_28" title="space character">space characters</a>.</li> <li>A U+0022 QUOTATION MARK or U+0027 APOSTROPHE character (the <i>quote mark</i>).</li> @@ -422,12 +492,18 @@ </ol><p class="note">In other words, <code><!DOCTYPE html SYSTEM "about:legacy-compat"></code> or <code><!DOCTYPE html SYSTEM 'about:legacy-compat'></code>, case-insensitively except for the - part in single or double quotes.<p>The <a href="#doctype-legacy-string" id="doctype-legacy-string_1">DOCTYPE legacy string</a> should not be used unless + part in single or double quotes.</p> + + <p>The <a href="#doctype-legacy-string" id="doctype-legacy-string_1">DOCTYPE legacy string</a> should not be used unless the document is generated from a system that cannot output the - shorter string.<hr><p>To help authors transition from HTML4 and XHTML1, an + shorter string.</p> + + <hr><p>To help authors transition from HTML4 and XHTML1, an <dfn aria-haspopup="true" id="obsolete-permitted-doctype-string" role="button" tabindex="0">obsolete permitted DOCTYPE string</dfn> can be inserted into the DOCTYPE (in the position defined above). This string must - consist of:<ol class="brief"><li>One or more <a href="common-microsyntaxes.html#space-character" id="space-character_29" title="space character">space characters</a>.</li> + consist of:</p> + + <ol class="brief"><li>One or more <a href="common-microsyntaxes.html#space-character" id="space-character_29" title="space character">space characters</a>.</li> <li>A string that is an <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_27">ASCII case-insensitive</a> match for the string "<code title="">PUBLIC</code>".</li> <li>One or more <a href="common-microsyntaxes.html#space-character" id="space-character_30" title="space character">space characters</a>.</li> <li>A U+0022 QUOTATION MARK or U+0027 APOSTROPHE character (the <i>first quote mark</i>).</li> @@ -457,9 +533,18 @@ </table><p>A <a href="#syntax-doctype" id="syntax-doctype_3" title="syntax-doctype">DOCTYPE</a> containing an <a href="#obsolete-permitted-doctype-string" id="obsolete-permitted-doctype-string_2">obsolete permitted DOCTYPE string</a> is an <dfn aria-haspopup="true" id="obsolete-permitted-doctype" role="button" tabindex="0">obsolete permitted DOCTYPE</dfn>. Authors should not use <a href="#obsolete-permitted-doctype" id="obsolete-permitted-doctype_0" title="obsolete permitted DOCTYPE">obsolete permitted - DOCTYPEs</a>, as they are unnecessarily long.<h4 id="elements-0"><span class="secno">8.1.2 </span>Elements</h4><p>There are five different kinds of <dfn aria-haspopup="true" id="syntax-elements" role="button" tabindex="0">elements</dfn>: <a href="#void-elements" id="void-elements_0">void elements</a>, + DOCTYPEs</a>, as they are unnecessarily long.</p> + + + + + <h4 id="elements-0"><span class="secno">8.1.2 </span>Elements</h4> + + <p>There are five different kinds of <dfn aria-haspopup="true" id="syntax-elements" role="button" tabindex="0">elements</dfn>: <a href="#void-elements" id="void-elements_0">void elements</a>, <a href="#raw-text-elements" id="raw-text-elements_0">raw text elements</a>, <a href="#rcdata-elements" id="rcdata-elements_0">RCDATA elements</a>, - <a href="#foreign-elements" id="foreign-elements_0">foreign elements</a>, and <a href="#normal-elements" id="normal-elements_0">normal elements</a>.<dl><dt><dfn aria-haspopup="true" id="void-elements" role="button" tabindex="0">Void elements</dfn></dt> + <a href="#foreign-elements" id="foreign-elements_0">foreign elements</a>, and <a href="#normal-elements" id="normal-elements_0">normal elements</a>.</p> + + <dl><dt><dfn aria-haspopup="true" id="void-elements" role="button" tabindex="0">Void elements</dfn></dt> <dd><code><a href="the-area-element.html#the-area-element" id="area_50">area</a></code>, <code><a href="the-base-element.html#the-base-element" id="base_15">base</a></code>, <code><a href="the-br-element.html#the-br-element" id="br_10">br</a></code>, <code><a href="the-col-element.html#the-col-element" id="col_3">col</a></code>, <code><a href="the-command-element.html#the-command-element" id="command_11">command</a></code>, <code><a href="the-embed-element.html#the-embed-element" id="embed_14">embed</a></code>, @@ -500,7 +585,9 @@ specified for <a href="#void-elements" id="void-elements_2">void elements</a>. <a href="#foreign-elements" id="foreign-elements_1">Foreign elements</a> must either have a start tag and an end tag, or a start tag that is marked as self-closing, in which case they must - not have an end tag.<p>The contents of the element must be placed between just after the + not have an end tag.</p> + + <p>The contents of the element must be placed between just after the start tag (which <a href="#syntax-tag-omission" id="syntax-tag-omission_3" title="syntax-tag-omission">might be implied, in certain cases</a>) and just before the end tag (which again, <a href="#syntax-tag-omission" id="syntax-tag-omission_4" title="syntax-tag-omission">might be implied in certain @@ -509,18 +596,28 @@ this specification. Elements must not contain content that their content model disallows. In addition to the restrictions placed on the contents by those content models, however, the five types of - elements have additional <em>syntactic</em> requirements.<p><a href="#void-elements" id="void-elements_3">Void elements</a> can't have any contents (since there's + elements have additional <em>syntactic</em> requirements.</p> + + <p><a href="#void-elements" id="void-elements_3">Void elements</a> can't have any contents (since there's no end tag, no content can be put between the start tag and the end - tag).<p><a href="#raw-text-elements" id="raw-text-elements_2">Raw text elements</a> can have <a href="#syntax-text" id="syntax-text_0" title="syntax-text">text</a>, though it has <a href="#cdata-rcdata-restrictions">restrictions</a> described - below.<p><a href="#rcdata-elements" id="rcdata-elements_2">RCDATA elements</a> can have <a href="#syntax-text" id="syntax-text_1" title="syntax-text">text</a> and <a href="#syntax-charref" id="syntax-charref_1" title="syntax-charref">character references</a>, but the text + tag).</p> + + <p><a href="#raw-text-elements" id="raw-text-elements_2">Raw text elements</a> can have <a href="#syntax-text" id="syntax-text_0" title="syntax-text">text</a>, though it has <a href="#cdata-rcdata-restrictions">restrictions</a> described + below.</p> + + <p><a href="#rcdata-elements" id="rcdata-elements_2">RCDATA elements</a> can have <a href="#syntax-text" id="syntax-text_1" title="syntax-text">text</a> and <a href="#syntax-charref" id="syntax-charref_1" title="syntax-charref">character references</a>, but the text must not contain an <a href="#syntax-ambiguous-ampersand" id="syntax-ambiguous-ampersand_0" title="syntax-ambiguous-ampersand">ambiguous ampersand</a>. There are also <a href="#cdata-rcdata-restrictions">further - restrictions</a> described below.<p><a href="#foreign-elements" id="foreign-elements_2">Foreign elements</a> whose start tag is marked as + restrictions</a> described below.</p> + + <p><a href="#foreign-elements" id="foreign-elements_2">Foreign elements</a> whose start tag is marked as self-closing can't have any contents (since, again, as there's no end tag, no content can be put between the start tag and the end tag). <a href="#foreign-elements" id="foreign-elements_3">Foreign elements</a> whose start tag is <em>not</em> marked as self-closing can have <a href="#syntax-text" id="syntax-text_2" title="syntax-text">text</a>, <a href="#syntax-charref" id="syntax-charref_2" title="syntax-charref">character references</a>, <a href="#syntax-cdata" id="syntax-cdata_0" title="syntax-cdata">CDATA sections</a>, other <a href="#syntax-elements" id="syntax-elements_2" title="syntax-elements">elements</a>, and <a href="#syntax-comments" id="syntax-comments_6" title="syntax-comments">comments</a>, but the text must not - contain the character U+003C LESS-THAN SIGN (<) or an <a href="#syntax-ambiguous-ampersand" id="syntax-ambiguous-ampersand_1" title="syntax-ambiguous-ampersand">ambiguous ampersand</a>.<div class="note"> + contain the character U+003C LESS-THAN SIGN (<) or an <a href="#syntax-ambiguous-ampersand" id="syntax-ambiguous-ampersand_1" title="syntax-ambiguous-ampersand">ambiguous ampersand</a>.</p> + + <div class="note"> <p>The HTML syntax does not support namespace declarations, even in <a href="#foreign-elements" id="foreign-elements_4">foreign elements</a>.</p> @@ -542,21 +639,29 @@ fragment is actually non-conforming. This is because the SVG specification does not define any elements called "<code title="">cdr:license</code>" in the SVG namespace.</p> - </div><p><a href="#normal-elements" id="normal-elements_3">Normal elements</a> can have <a href="#syntax-text" id="syntax-text_3" title="syntax-text">text</a>, <a href="#syntax-charref" id="syntax-charref_3" title="syntax-charref">character references</a>, other <a href="#syntax-elements" id="syntax-elements_3" title="syntax-elements">elements</a>, and <a href="#syntax-comments" id="syntax-comments_7" title="syntax-comments">comments</a>, but the text must not + </div> + + <p><a href="#normal-elements" id="normal-elements_3">Normal elements</a> can have <a href="#syntax-text" id="syntax-text_3" title="syntax-text">text</a>, <a href="#syntax-charref" id="syntax-charref_3" title="syntax-charref">character references</a>, other <a href="#syntax-elements" id="syntax-elements_3" title="syntax-elements">elements</a>, and <a href="#syntax-comments" id="syntax-comments_7" title="syntax-comments">comments</a>, but the text must not contain the character U+003C LESS-THAN SIGN (<) or an <a href="#syntax-ambiguous-ampersand" id="syntax-ambiguous-ampersand_2" title="syntax-ambiguous-ampersand">ambiguous ampersand</a>. Some <a href="#normal-elements" id="normal-elements_4">normal elements</a> also have <a href="#element-restrictions">yet more restrictions</a> on what content they are allowed to hold, beyond the restrictions imposed by the content model and those described in this paragraph. Those - restrictions are described below.<p>Tags contain a <dfn aria-haspopup="true" id="syntax-tag-name" role="button" tabindex="0">tag name</dfn>, + restrictions are described below.</p> + + <p>Tags contain a <dfn aria-haspopup="true" id="syntax-tag-name" role="button" tabindex="0">tag name</dfn>, giving the element's name. HTML elements all have names that only - use characters in the range U+0030 DIGIT ZERO (0) to U+0039 DIGIT - NINE (9), U+0061 LATIN SMALL LETTER A to U+007A LATIN SMALL LETTER - Z, and U+0041 LATIN CAPITAL LETTER A to U+005A LATIN CAPITAL LETTER - Z. In the HTML syntax, tag names, even those for <a href="#foreign-elements" id="foreign-elements_5">foreign + use characters in the range <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#ascii-digits" title='Read about this "ASCII digits" reference in the full HTML5 spec.'>ASCII digits</a>, <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#lowercase-ascii-letters" title='Read about this "lowercase ASCII letters" reference in the full HTML5 spec.'>lowercase ASCII letters</a>, and <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#uppercase-ascii-letters" title='Read about this "uppercase ASCII letters" reference in the full HTML5 spec.'>uppercase ASCII letters</a>. In the HTML syntax, tag names, even those for <a href="#foreign-elements" id="foreign-elements_5">foreign elements</a>, may be written with any mix of lower- and uppercase letters that, when converted to all-lowercase, matches the element's - tag name; tag names are case-insensitive.<h5 id="start-tags"><span class="secno">8.1.2.1 </span>Start tags</h5><p><dfn aria-haspopup="true" id="syntax-start-tag" role="button" tabindex="0">Start tags</dfn> must have the - following format:<ol><li>The first character of a start tag must be a U+003C LESS-THAN + tag name; tag names are case-insensitive.</p> + + + <h5 id="start-tags"><span class="secno">8.1.2.1 </span>Start tags</h5> + + <p><dfn aria-haspopup="true" id="syntax-start-tag" role="button" tabindex="0">Start tags</dfn> must have the + following format:</p> + + <ol><li>The first character of a start tag must be a U+003C LESS-THAN SIGN character (<).</li> <li>The next few characters of a start tag must be the element's @@ -586,12 +691,15 @@ <li>Finally, start tags must be closed by a U+003E GREATER-THAN SIGN character (>).</li> - </ol><h5 id="end-tags"><span class="secno">8.1.2.2 </span>End tags</h5><p><dfn aria-haspopup="true" id="syntax-end-tag" role="button" tabindex="0">End tags</dfn> must have the - following format:<ol><li>The first character of an end tag must be a U+003C LESS-THAN + </ol><h5 id="end-tags"><span class="secno">8.1.2.2 </span>End tags</h5> + + <p><dfn aria-haspopup="true" id="syntax-end-tag" role="button" tabindex="0">End tags</dfn> must have the + following format:</p> + + <ol><li>The first character of an end tag must be a U+003C LESS-THAN SIGN character (<).</li> - <li>The second character of an end tag must be a U+002F SOLIDUS - character (/).</li> + <li>The second character of an end tag must be a "/" (U+002F) character.</li> <li>The next few characters of an end tag must be the element's <a href="#syntax-tag-name" id="syntax-tag-name_2" title="syntax-tag-name">tag name</a>.</li> @@ -602,19 +710,28 @@ <li>Finally, end tags must be closed by a U+003E GREATER-THAN SIGN character (>).</li> - </ol><h5 id="attributes-0"><span class="secno">8.1.2.3 </span>Attributes</h5><p><dfn aria-haspopup="true" id="syntax-attributes" role="button" tabindex="0">Attributes</dfn> for an element - are expressed inside the element's start tag.<p>Attributes have a name and a value. <dfn aria-haspopup="true" id="syntax-attribute-name" role="button" tabindex="0">Attribute names</dfn> must consist of + </ol><h5 id="attributes-0"><span class="secno">8.1.2.3 </span>Attributes</h5> + + <p><dfn aria-haspopup="true" id="syntax-attributes" role="button" tabindex="0">Attributes</dfn> for an element + are expressed inside the element's start tag.</p> + + <p>Attributes have a name and a value. <dfn aria-haspopup="true" id="syntax-attribute-name" role="button" tabindex="0">Attribute names</dfn> must consist of one or more characters other than the <a href="common-microsyntaxes.html#space-character" id="space-character_36" title="space - character">space characters</a>, U+0000 NULL, U+0022 QUOTATION - MARK ("), U+0027 APOSTROPHE ('), U+003E GREATER-THAN SIGN - (>), U+002F SOLIDUS (/), and U+003D EQUALS SIGN (=) characters, + character">space characters</a>, U+0000 NULL, """ (U+0022), "'" (U+0027), U+003E GREATER-THAN SIGN + (>), "/" (U+002F), and "=" (U+003D) characters, the control characters, and any characters that are not defined by Unicode. In the HTML syntax, attribute names, even those for <a href="#foreign-elements" id="foreign-elements_8">foreign elements</a>, may be written with any mix of lower- and uppercase letters that are an <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_28">ASCII - case-insensitive</a> match for the attribute's name.<p><dfn aria-haspopup="true" id="syntax-attribute-value" role="button" tabindex="0">Attribute values</dfn> are a + case-insensitive</a> match for the attribute's name.</p> + + <p><dfn aria-haspopup="true" id="syntax-attribute-value" role="button" tabindex="0">Attribute values</dfn> are a mixture of <a href="#syntax-text" id="syntax-text_4" title="syntax-text">text</a> and <a href="#syntax-charref" id="syntax-charref_4" title="syntax-charref">character references</a>, except with the - additional restriction that the text cannot contain an <a href="#syntax-ambiguous-ampersand" id="syntax-ambiguous-ampersand_3" title="syntax-ambiguous-ampersand">ambiguous ampersand</a>.<p>Attributes can be specified in four different ways:<dl><dt>Empty attribute syntax</dt> + additional restriction that the text cannot contain an <a href="#syntax-ambiguous-ampersand" id="syntax-ambiguous-ampersand_3" title="syntax-ambiguous-ampersand">ambiguous ampersand</a>.</p> + + <p>Attributes can be specified in four different ways:</p> + + <dl><dt>Empty attribute syntax</dt> <dd> @@ -647,11 +764,9 @@ character">space characters</a>, followed by the <a href="#syntax-attribute-value" id="syntax-attribute-value_1" title="syntax-attribute-value">attribute value</a>, which, in addition to the requirements given above for attribute values, must not contain any literal <a href="common-microsyntaxes.html#space-character" id="space-character_40" title="space character">space - characters</a>, any U+0022 QUOTATION MARK characters ("), - U+0027 APOSTROPHE characters ('), U+003D EQUALS SIGN - characters (=), U+003C LESS-THAN SIGN characters (<), U+003E - GREATER-THAN SIGN characters (>), or U+0060 GRAVE ACCENT - characters (`), and must not be the empty string.</p> + characters</a>, any """ (U+0022) characters, + "'" (U+0027) characters, "=" (U+003D) characters, U+003C LESS-THAN SIGN characters (<), U+003E + GREATER-THAN SIGN characters (>), or "`" (U+0060) characters, and must not be the empty string.</p> @@ -666,8 +781,7 @@ </div> <p>If an attribute using the unquoted attribute syntax is to be - followed by another attribute or by the optional U+002F SOLIDUS - character (/) allowed in step 6 of the <a href="#syntax-start-tag" id="syntax-start-tag_2" title="syntax-start-tag">start tag</a> syntax above, then there + followed by another attribute or by the optional "/" (U+002F) character allowed in step 6 of the <a href="#syntax-start-tag" id="syntax-start-tag_2" title="syntax-start-tag">start tag</a> syntax above, then there must be a <a href="common-microsyntaxes.html#space-character" id="space-character_41">space character</a> separating the two.</p> </dd> @@ -680,10 +794,9 @@ followed by zero or more <a href="common-microsyntaxes.html#space-character" id="space-character_42" title="space character">space characters</a>, followed by a single U+003D EQUALS SIGN character, followed by zero or more <a href="common-microsyntaxes.html#space-character" id="space-character_43" title="space - character">space characters</a>, followed by a single U+0027 - APOSTROPHE character ('), followed by the <a href="#syntax-attribute-value" id="syntax-attribute-value_2" title="syntax-attribute-value">attribute value</a>, which, in + character">space characters</a>, followed by a single "'" (U+0027) character, followed by the <a href="#syntax-attribute-value" id="syntax-attribute-value_2" title="syntax-attribute-value">attribute value</a>, which, in addition to the requirements given above for attribute values, - must not contain any literal U+0027 APOSTROPHE characters ('), and + must not contain any literal "'" (U+0027) characters, and finally followed by a second single U+0027 APOSTROPHE character (').</p> @@ -710,12 +823,10 @@ followed by zero or more <a href="common-microsyntaxes.html#space-character" id="space-character_45" title="space character">space characters</a>, followed by a single U+003D EQUALS SIGN character, followed by zero or more <a href="common-microsyntaxes.html#space-character" id="space-character_46" title="space - character">space characters</a>, followed by a single U+0022 - QUOTATION MARK character ("), followed by the <a href="#syntax-attribute-value" id="syntax-attribute-value_3" title="syntax-attribute-value">attribute value</a>, which, in + character">space characters</a>, followed by a single """ (U+0022) character, followed by the <a href="#syntax-attribute-value" id="syntax-attribute-value_3" title="syntax-attribute-value">attribute value</a>, which, in addition to the requirements given above for attribute values, - must not contain any literal U+0022 QUOTATION MARK characters ("), - and finally followed by a second single U+0022 QUOTATION MARK - character (").</p> + must not contain any literal """ (U+0022) characters, + and finally followed by a second single """ (U+0022) character.</p> <div class="example"> @@ -734,11 +845,15 @@ </dl><p>There must never be two or more attributes on the same start tag whose names are an <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_29">ASCII case-insensitive</a> match for - each other.<hr><p>When a <a href="#foreign-elements" id="foreign-elements_9" title="foreign elements">foreign element</a> has + each other.</p> + + <hr><p>When a <a href="#foreign-elements" id="foreign-elements_9" title="foreign elements">foreign element</a> has one of the namespaced attributes given by the local name and namespace of the first and second cells of a row from the following table, it must be written using the name given by the third cell - from the same row.<table><thead><tr><th> Local name <th> Namespace <th> Attribute name + from the same row.</p> + + <table><thead><tr><th> Local name <th> Namespace <th> Attribute name <tbody><tr><td> <code title="">actuate</code> <td> <a href="namespaces.html#xlink-namespace" id="xlink-namespace_0">XLink namespace</a> <td> <code title="">xlink:actuate</code> <tr><td> <code title="">arcrole</code> <td> <a href="namespaces.html#xlink-namespace" id="xlink-namespace_1">XLink namespace</a> <td> <code title="">xlink:arcrole</code> <tr><td> <code title="">href</code> <td> <a href="namespaces.html#xlink-namespace" id="xlink-namespace_2">XLink namespace</a> <td> <code title="">xlink:href</code> @@ -752,33 +867,70 @@ <tr><td> <code title="">xmlns</code> <td> <a href="namespaces.html#xmlns-namespace" id="xmlns-namespace_0">XMLNS namespace</a> <td> <code title="">xmlns</code> <tr><td> <code title="">xlink</code> <td> <a href="namespaces.html#xmlns-namespace" id="xmlns-namespace_1">XMLNS namespace</a> <td> <code title="">xmlns:xlink</code> </table><p>No other namespaced attribute can be expressed in <a href="#syntax" id="the-html-syntax_7">the - HTML syntax</a>.<h5 id="optional-tags"><span class="secno">8.1.2.4 </span>Optional tags</h5><p>Certain tags can be <dfn aria-haspopup="true" id="syntax-tag-omission" role="button" tabindex="0">omitted</dfn>.<p class="note">Omitting an element's <a href="#syntax-start-tag" id="syntax-start-tag_3" title="syntax-start-tag">start tag</a> in the situations + HTML syntax</a>.</p> + + + <h5 id="optional-tags"><span class="secno">8.1.2.4 </span>Optional tags</h5> + + <p>Certain tags can be <dfn aria-haspopup="true" id="syntax-tag-omission" role="button" tabindex="0">omitted</dfn>.</p> + + <p class="note">Omitting an element's <a href="#syntax-start-tag" id="syntax-start-tag_3" title="syntax-start-tag">start tag</a> in the situations described below does not mean the element is not present; it is implied, but it is still there. For example, an HTML document always - has a root <code><a href="the-html-element.html#the-html-element" id="html_18">html</a></code> element, even if the string <code title=""><html></code> doesn't appear anywhere in the markup.<p>An <code><a href="the-html-element.html#the-html-element" id="html_19">html</a></code> element's <a href="#syntax-start-tag" id="syntax-start-tag_4" title="syntax-start-tag">start tag</a> may be omitted if the - first thing inside the <code><a href="the-html-element.html#the-html-element" id="html_20">html</a></code> element is not a <a href="#syntax-comments" id="syntax-comments_8" title="syntax-comments">comment</a>.<p>An <code><a href="the-html-element.html#the-html-element" id="html_21">html</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_2" title="syntax-end-tag">end + has a root <code><a href="the-html-element.html#the-html-element" id="html_18">html</a></code> element, even if the string <code title=""><html></code> doesn't appear anywhere in the markup.</p> + + + <p>An <code><a href="the-html-element.html#the-html-element" id="html_19">html</a></code> element's <a href="#syntax-start-tag" id="syntax-start-tag_4" title="syntax-start-tag">start tag</a> may be omitted if the + first thing inside the <code><a href="the-html-element.html#the-html-element" id="html_20">html</a></code> element is not a <a href="#syntax-comments" id="syntax-comments_8" title="syntax-comments">comment</a>.</p> + + + <p>An <code><a href="the-html-element.html#the-html-element" id="html_21">html</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_2" title="syntax-end-tag">end tag</a> may be omitted if the <code><a href="the-html-element.html#the-html-element" id="html_22">html</a></code> element is not - immediately followed by a <a href="#syntax-comments" id="syntax-comments_9" title="syntax-comments">comment</a>.<p>A <code><a href="the-head-element.html#the-head-element" id="head_28">head</a></code> element's <a href="#syntax-start-tag" id="syntax-start-tag_5" title="syntax-start-tag">start tag</a> may be omitted if the + immediately followed by a <a href="#syntax-comments" id="syntax-comments_9" title="syntax-comments">comment</a>.</p> + + + <p>A <code><a href="the-head-element.html#the-head-element" id="head_28">head</a></code> element's <a href="#syntax-start-tag" id="syntax-start-tag_5" title="syntax-start-tag">start tag</a> may be omitted if the element is empty, or if the first thing inside the - <code><a href="the-head-element.html#the-head-element" id="head_29">head</a></code> element is an element.<p>A <code><a href="the-head-element.html#the-head-element" id="head_30">head</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_3" title="syntax-end-tag">end + <code><a href="the-head-element.html#the-head-element" id="head_29">head</a></code> element is an element.</p> + + + <p>A <code><a href="the-head-element.html#the-head-element" id="head_30">head</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_3" title="syntax-end-tag">end tag</a> may be omitted if the <code><a href="the-head-element.html#the-head-element" id="head_31">head</a></code> element is not - immediately followed by a <a href="common-microsyntaxes.html#space-character" id="space-character_48">space character</a> or a <a href="#syntax-comments" id="syntax-comments_10" title="syntax-comments">comment</a>.<p>A <code><a href="the-body-element.html#the-body-element" id="body_30">body</a></code> element's <a href="#syntax-start-tag" id="syntax-start-tag_6" title="syntax-start-tag">start tag</a> may be omitted if the + immediately followed by a <a href="common-microsyntaxes.html#space-character" id="space-character_48">space character</a> or a <a href="#syntax-comments" id="syntax-comments_10" title="syntax-comments">comment</a>.</p> + + + <p>A <code><a href="the-body-element.html#the-body-element" id="body_30">body</a></code> element's <a href="#syntax-start-tag" id="syntax-start-tag_6" title="syntax-start-tag">start tag</a> may be omitted if the element is empty, or if the first thing inside the <code><a href="the-body-element.html#the-body-element" id="body_31">body</a></code> element is not a <a href="common-microsyntaxes.html#space-character" id="space-character_49">space character</a> or a <a href="#syntax-comments" id="syntax-comments_11" title="syntax-comments">comment</a>, except if the first thing inside the <code><a href="the-body-element.html#the-body-element" id="body_32">body</a></code> element is a <code><a href="the-script-element.html#the-script-element" id="script_31">script</a></code> or - <code><a href="the-style-element.html#the-style-element" id="style_34">style</a></code> element. <p>A <code><a href="the-body-element.html#the-body-element" id="body_33">body</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_4" title="syntax-end-tag">end + <code><a href="the-style-element.html#the-style-element" id="style_34">style</a></code> element. </p> + + + <p>A <code><a href="the-body-element.html#the-body-element" id="body_33">body</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_4" title="syntax-end-tag">end tag</a> may be omitted if the <code><a href="the-body-element.html#the-body-element" id="body_34">body</a></code> element is not - immediately followed by a <a href="#syntax-comments" id="syntax-comments_12" title="syntax-comments">comment</a>.<p>An <code><a href="the-li-element.html#the-li-element" id="li_23">li</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_5" title="syntax-end-tag">end + immediately followed by a <a href="#syntax-comments" id="syntax-comments_12" title="syntax-comments">comment</a>.</p> + + + <p>An <code><a href="the-li-element.html#the-li-element" id="li_23">li</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_5" title="syntax-end-tag">end tag</a> may be omitted if the <code><a href="the-li-element.html#the-li-element" id="li_24">li</a></code> element is immediately followed by another <code><a href="the-li-element.html#the-li-element" id="li_25">li</a></code> element or if there - is no more content in the parent element.<p>A <code><a href="the-dt-element.html#the-dt-element" id="dt_9">dt</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_6" title="syntax-end-tag">end + is no more content in the parent element.</p> + + + <p>A <code><a href="the-dt-element.html#the-dt-element" id="dt_9">dt</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_6" title="syntax-end-tag">end tag</a> may be omitted if the <code><a href="the-dt-element.html#the-dt-element" id="dt_10">dt</a></code> element is immediately followed by another <code><a href="the-dt-element.html#the-dt-element" id="dt_11">dt</a></code> element or a - <code><a href="the-dd-element.html#the-dd-element" id="dd_8">dd</a></code> element.<p>A <code><a href="the-dd-element.html#the-dd-element" id="dd_9">dd</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_7" title="syntax-end-tag">end + <code><a href="the-dd-element.html#the-dd-element" id="dd_8">dd</a></code> element.</p> + + + <p>A <code><a href="the-dd-element.html#the-dd-element" id="dd_9">dd</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_7" title="syntax-end-tag">end tag</a> may be omitted if the <code><a href="the-dd-element.html#the-dd-element" id="dd_10">dd</a></code> element is immediately followed by another <code><a href="the-dd-element.html#the-dd-element" id="dd_11">dd</a></code> element or a <code><a href="the-dt-element.html#the-dt-element" id="dt_12">dt</a></code> element, or if there is no more content in the - parent element.<p>A <code><a href="the-p-element.html#the-p-element" id="p_28">p</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_8" title="syntax-end-tag">end + parent element.</p> + + + <p>A <code><a href="the-p-element.html#the-p-element" id="p_28">p</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_8" title="syntax-end-tag">end tag</a> may be omitted if the <code><a href="the-p-element.html#the-p-element" id="p_29">p</a></code> element is immediately followed by an <code><a href="the-address-element.html#the-address-element" id="address_11">address</a></code>, <code><a href="the-article-element.html#the-article-element" id="article_24">article</a></code>, <code><a href="the-aside-element.html#the-aside-element" id="aside_11">aside</a></code>, <code><a href="the-blockquote-element.html#the-blockquote-element" id="blockquote_15">blockquote</a></code>, @@ -790,57 +942,108 @@ <code><a href="the-nav-element.html#the-nav-element" id="nav_14">nav</a></code>, <code><a href="the-ol-element.html#the-ol-element" id="ol_19">ol</a></code>, <code><a href="the-p-element.html#the-p-element" id="p_30">p</a></code>, <code><a href="the-pre-element.html#the-pre-element" id="pre_14">pre</a></code>, <code><a href="the-section-element.html#the-section-element" id="section_17">section</a></code>, <code><a href="the-table-element.html#the-table-element" id="table_32">table</a></code>, or <code><a href="the-ul-element.html#the-ul-element" id="ul_17">ul</a></code>, element, or if there is no more content in the parent element and - the parent element is not an <code><a href="the-a-element.html#the-a-element" id="a_59">a</a></code> element.<p>An <code><a href="the-rt-element.html#the-rt-element" id="rt_10">rt</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_9" title="syntax-end-tag">end + the parent element is not an <code><a href="the-a-element.html#the-a-element" id="a_59">a</a></code> element.</p> + + + <p>An <code><a href="the-rt-element.html#the-rt-element" id="rt_10">rt</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_9" title="syntax-end-tag">end tag</a> may be omitted if the <code><a href="the-rt-element.html#the-rt-element" id="rt_11">rt</a></code> element is immediately followed by an <code><a href="the-rt-element.html#the-rt-element" id="rt_12">rt</a></code> or <code><a href="the-rp-element.html#the-rp-element" id="rp_8">rp</a></code> - element, or if there is no more content in the parent element.<p>An <code><a href="the-rp-element.html#the-rp-element" id="rp_9">rp</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_10" title="syntax-end-tag">end + element, or if there is no more content in the parent element.</p> + + + <p>An <code><a href="the-rp-element.html#the-rp-element" id="rp_9">rp</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_10" title="syntax-end-tag">end tag</a> may be omitted if the <code><a href="the-rp-element.html#the-rp-element" id="rp_10">rp</a></code> element is immediately followed by an <code><a href="the-rt-element.html#the-rt-element" id="rt_13">rt</a></code> or <code><a href="the-rp-element.html#the-rp-element" id="rp_11">rp</a></code> - element, or if there is no more content in the parent element.<p>An <code><a href="the-optgroup-element.html#the-optgroup-element" id="optgroup_9">optgroup</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_11" title="syntax-end-tag">end tag</a> may be omitted if the + element, or if there is no more content in the parent element.</p> + + + <p>An <code><a href="the-optgroup-element.html#the-optgroup-element" id="optgroup_9">optgroup</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_11" title="syntax-end-tag">end tag</a> may be omitted if the <code><a href="the-optgroup-element.html#the-optgroup-element" id="optgroup_10">optgroup</a></code> element is immediately followed by another <code><a href="the-optgroup-element.html#the-optgroup-element" id="optgroup_11">optgroup</a></code> element, or if there is no - more content in the parent element.<p>An <code><a href="the-option-element.html#the-option-element" id="option_31">option</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_12" title="syntax-end-tag">end + more content in the parent element.</p> + + + + <p>An <code><a href="the-option-element.html#the-option-element" id="option_31">option</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_12" title="syntax-end-tag">end tag</a> may be omitted if the <code><a href="the-option-element.html#the-option-element" id="option_32">option</a></code> element is immediately followed by another <code><a href="the-option-element.html#the-option-element" id="option_33">option</a></code> element, or if it is immediately followed by an <code><a href="the-optgroup-element.html#the-optgroup-element" id="optgroup_12">optgroup</a></code> element, or - if there is no more content in the parent element.<p>A <code><a href="the-colgroup-element.html#the-colgroup-element" id="colgroup_11">colgroup</a></code> element's <a href="#syntax-start-tag" id="syntax-start-tag_7" title="syntax-start-tag">start tag</a> may be omitted if the + if there is no more content in the parent element.</p> + + + <p>A <code><a href="the-colgroup-element.html#the-colgroup-element" id="colgroup_11">colgroup</a></code> element's <a href="#syntax-start-tag" id="syntax-start-tag_7" title="syntax-start-tag">start tag</a> may be omitted if the first thing inside the <code><a href="the-colgroup-element.html#the-colgroup-element" id="colgroup_12">colgroup</a></code> element is a <code><a href="the-col-element.html#the-col-element" id="col_4">col</a></code> element, and if the element is not immediately preceded by another <code><a href="the-colgroup-element.html#the-colgroup-element" id="colgroup_13">colgroup</a></code> element whose <a href="#syntax-end-tag" id="syntax-end-tag_13" title="syntax-end-tag">end tag</a> has been omitted. (It can't be - omitted if the element is empty.)<p>A <code><a href="the-colgroup-element.html#the-colgroup-element" id="colgroup_14">colgroup</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_14" title="syntax-end-tag">end tag</a> may be omitted if the + omitted if the element is empty.)</p> + + + <p>A <code><a href="the-colgroup-element.html#the-colgroup-element" id="colgroup_14">colgroup</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_14" title="syntax-end-tag">end tag</a> may be omitted if the <code><a href="the-colgroup-element.html#the-colgroup-element" id="colgroup_15">colgroup</a></code> element is not immediately followed by a - <a href="common-microsyntaxes.html#space-character" id="space-character_50">space character</a> or a <a href="#syntax-comments" id="syntax-comments_13" title="syntax-comments">comment</a>.<p>A <code><a href="the-thead-element.html#the-thead-element" id="thead_17">thead</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_15" title="syntax-end-tag">end + <a href="common-microsyntaxes.html#space-character" id="space-character_50">space character</a> or a <a href="#syntax-comments" id="syntax-comments_13" title="syntax-comments">comment</a>.</p> + + + <p>A <code><a href="the-thead-element.html#the-thead-element" id="thead_17">thead</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_15" title="syntax-end-tag">end tag</a> may be omitted if the <code><a href="the-thead-element.html#the-thead-element" id="thead_18">thead</a></code> element is immediately followed by a <code><a href="the-tbody-element.html#the-tbody-element" id="tbody_13">tbody</a></code> or <code><a href="the-tfoot-element.html#the-tfoot-element" id="tfoot_15">tfoot</a></code> - element.<p>A <code><a href="the-tbody-element.html#the-tbody-element" id="tbody_14">tbody</a></code> element's <a href="#syntax-start-tag" id="syntax-start-tag_8" title="syntax-start-tag">start tag</a> may be omitted if the + element.</p> + + + <p>A <code><a href="the-tbody-element.html#the-tbody-element" id="tbody_14">tbody</a></code> element's <a href="#syntax-start-tag" id="syntax-start-tag_8" title="syntax-start-tag">start tag</a> may be omitted if the first thing inside the <code><a href="the-tbody-element.html#the-tbody-element" id="tbody_15">tbody</a></code> element is a <code><a href="the-tr-element.html#the-tr-element" id="tr_20">tr</a></code> element, and if the element is not immediately preceded by a <code><a href="the-tbody-element.html#the-tbody-element" id="tbody_16">tbody</a></code>, <code><a href="the-thead-element.html#the-thead-element" id="thead_19">thead</a></code>, or <code><a href="the-tfoot-element.html#the-tfoot-element" id="tfoot_16">tfoot</a></code> element whose <a href="#syntax-end-tag" id="syntax-end-tag_16" title="syntax-end-tag">end tag</a> has been omitted. (It can't be omitted if the element is - empty.)<p>A <code><a href="the-tbody-element.html#the-tbody-element" id="tbody_17">tbody</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_17" title="syntax-end-tag">end + empty.)</p> + + + <p>A <code><a href="the-tbody-element.html#the-tbody-element" id="tbody_17">tbody</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_17" title="syntax-end-tag">end tag</a> may be omitted if the <code><a href="the-tbody-element.html#the-tbody-element" id="tbody_18">tbody</a></code> element is immediately followed by a <code><a href="the-tbody-element.html#the-tbody-element" id="tbody_19">tbody</a></code> or <code><a href="the-tfoot-element.html#the-tfoot-element" id="tfoot_17">tfoot</a></code> - element, or if there is no more content in the parent element.<p>A <code><a href="the-tfoot-element.html#the-tfoot-element" id="tfoot_18">tfoot</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_18" title="syntax-end-tag">end + element, or if there is no more content in the parent element.</p> + + + <p>A <code><a href="the-tfoot-element.html#the-tfoot-element" id="tfoot_18">tfoot</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_18" title="syntax-end-tag">end tag</a> may be omitted if the <code><a href="the-tfoot-element.html#the-tfoot-element" id="tfoot_19">tfoot</a></code> element is immediately followed by a <code><a href="the-tbody-element.html#the-tbody-element" id="tbody_20">tbody</a></code> element, or if there is - no more content in the parent element.<p>A <code><a href="the-tr-element.html#the-tr-element" id="tr_21">tr</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_19" title="syntax-end-tag">end + no more content in the parent element.</p> + + + <p>A <code><a href="the-tr-element.html#the-tr-element" id="tr_21">tr</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_19" title="syntax-end-tag">end tag</a> may be omitted if the <code><a href="the-tr-element.html#the-tr-element" id="tr_22">tr</a></code> element is immediately followed by another <code><a href="the-tr-element.html#the-tr-element" id="tr_23">tr</a></code> element, or if there - is no more content in the parent element.<p>A <code><a href="the-td-element.html#the-td-element" id="td_21">td</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_20" title="syntax-end-tag">end + is no more content in the parent element.</p> + + + <p>A <code><a href="the-td-element.html#the-td-element" id="td_21">td</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_20" title="syntax-end-tag">end tag</a> may be omitted if the <code><a href="the-td-element.html#the-td-element" id="td_22">td</a></code> element is immediately followed by a <code><a href="the-td-element.html#the-td-element" id="td_23">td</a></code> or <code><a href="the-th-element.html#the-th-element" id="th_23">th</a></code> - element, or if there is no more content in the parent element.<p>A <code><a href="the-th-element.html#the-th-element" id="th_24">th</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_21" title="syntax-end-tag">end + element, or if there is no more content in the parent element.</p> + + + <p>A <code><a href="the-th-element.html#the-th-element" id="th_24">th</a></code> element's <a href="#syntax-end-tag" id="syntax-end-tag_21" title="syntax-end-tag">end tag</a> may be omitted if the <code><a href="the-th-element.html#the-th-element" id="th_25">th</a></code> element is immediately followed by a <code><a href="the-td-element.html#the-td-element" id="td_24">td</a></code> or <code><a href="the-th-element.html#the-th-element" id="th_26">th</a></code> - element, or if there is no more content in the parent element.<p><strong>However</strong>, a <a href="#syntax-start-tag" id="syntax-start-tag_9" title="syntax-start-tag">start - tag</a> must never be omitted if it has any attributes.<h5 id="element-restrictions"><span class="secno">8.1.2.5 </span>Restrictions on content models</h5><p>For historical reasons, certain elements have extra restrictions - beyond even the restrictions given by their content model.<p>A <code><a href="the-table-element.html#the-table-element" id="table_33">table</a></code> element must not contain <code><a href="the-tr-element.html#the-tr-element" id="tr_24">tr</a></code> + element, or if there is no more content in the parent element.</p> + + <p><strong>However</strong>, a <a href="#syntax-start-tag" id="syntax-start-tag_9" title="syntax-start-tag">start + tag</a> must never be omitted if it has any attributes.</p> + + + <h5 id="element-restrictions"><span class="secno">8.1.2.5 </span>Restrictions on content models</h5> + + <p>For historical reasons, certain elements have extra restrictions + beyond even the restrictions given by their content model.</p> + + <p>A <code><a href="the-table-element.html#the-table-element" id="table_33">table</a></code> element must not contain <code><a href="the-tr-element.html#the-tr-element" id="tr_24">tr</a></code> elements, even though these elements are technically allowed inside <code><a href="the-table-element.html#the-table-element" id="table_34">table</a></code> elements according to the content models described in this specification. (If a <code><a href="the-tr-element.html#the-tr-element" id="tr_25">tr</a></code> element is put inside a <code><a href="the-table-element.html#the-table-element" id="table_35">table</a></code> in the markup, it will in fact imply - a <code><a href="the-tbody-element.html#the-tbody-element" id="tbody_21">tbody</a></code> start tag before it.)<p>A single <a href="#syntax-newlines" id="syntax-newlines_0" title="syntax-newlines">newline</a> may be + a <code><a href="the-tbody-element.html#the-tbody-element" id="tbody_21">tbody</a></code> start tag before it.)</p> + + <p>A single <a href="#syntax-newlines" id="syntax-newlines_0" title="syntax-newlines">newline</a> may be placed immediately after the <a href="#syntax-start-tag" id="syntax-start-tag_10" title="syntax-start-tag">start tag</a> of <code><a href="the-pre-element.html#the-pre-element" id="pre_15">pre</a></code> and <code><a href="the-textarea-element.html#the-textarea-element" id="textarea_39">textarea</a></code> elements. This does not affect the processing of the element. The @@ -848,31 +1051,56 @@ <em>must</em> be included if the element's contents themselves start with a <a href="#syntax-newlines" id="syntax-newlines_2" title="syntax-newlines">newline</a> (because otherwise the leading newline in the contents would be treated like - the optional newline, and ignored).<div class="example"> + the optional newline, and ignored).</p> + + <div class="example"> <p>The following two <code><a href="the-pre-element.html#the-pre-element" id="pre_16">pre</a></code> blocks are equivalent:</p> <pre><pre>Hello</pre></pre> <pre><pre><br>Hello</pre></pre> - </div><h5 id="cdata-rcdata-restrictions"><span class="secno">8.1.2.6 </span>Restrictions on the contents of raw text and RCDATA elements</h5><p>The text in <a href="#raw-text-elements" id="raw-text-elements_3" title="raw text elements">raw text</a> and + </div> + + + <h5 id="cdata-rcdata-restrictions"><span class="secno">8.1.2.6 </span>Restrictions on the contents of raw text and RCDATA elements</h5> + + <p>The text in <a href="#raw-text-elements" id="raw-text-elements_3" title="raw text elements">raw text</a> and <a href="#rcdata-elements" id="rcdata-elements_3">RCDATA elements</a> must not contain any occurrences of the string "<code title=""></</code>" (U+003C LESS-THAN SIGN, U+002F SOLIDUS) followed by characters that case-insensitively match the - tag name of the element followed by one of U+0009 CHARACTER - TABULATION (tab), U+000A LINE FEED (LF), U+000C FORM FEED (FF), U+000D - CARRIAGE RETURN (CR), U+0020 SPACE, U+003E GREATER-THAN SIGN (>), or - U+002F SOLIDUS (/).<h4 id="text-0"><span class="secno">8.1.3 </span>Text</h4><p><dfn aria-haspopup="true" id="syntax-text" role="button" tabindex="0">Text</dfn> is allowed inside elements, + tag name of the element followed by one of "tab" (U+0009), "LF" (U+000A), "FF" (U+000C), "CR" (U+000D), U+0020 SPACE, U+003E GREATER-THAN SIGN (>), or + "/" (U+002F).</p> + + + <h4 id="text-0"><span class="secno">8.1.3 </span>Text</h4> + + <p><dfn aria-haspopup="true" id="syntax-text" role="button" tabindex="0">Text</dfn> is allowed inside elements, attribute values, and comments. Extra constraints are placed on what is and what is not allowed in text based on where the text is to be - put, as described in the other sections.<h5 id="newlines"><span class="secno">8.1.3.1 </span>Newlines</h5><p><dfn aria-haspopup="true" id="syntax-newlines" role="button" tabindex="0">Newlines</dfn> in HTML may be - represented either as U+000D CARRIAGE RETURN (CR) characters, U+000A - LINE FEED (LF) characters, or pairs of U+000D CARRIAGE RETURN (CR), - U+000A LINE FEED (LF) characters in that order.<p>Where <a href="#syntax-charref" id="syntax-charref_5" title="syntax-charref">character references</a> - are allowed, a character reference of a U+000A LINE FEED (LF) - character (but not a U+000D CARRIAGE RETURN (CR) character) also - represents a <a href="#syntax-newlines" id="syntax-newlines_3" title="syntax-newlines">newline</a>.<h4 id="character-references"><span class="secno">8.1.4 </span>Character references</h4><p>In certain cases described in other sections, <a href="#syntax-text" id="syntax-text_5" title="syntax-text">text</a> may be mixed with <dfn aria-haspopup="true" id="syntax-charref" role="button" tabindex="0">character references</dfn>. These can be used + put, as described in the other sections.</p> + + + <h5 id="newlines"><span class="secno">8.1.3.1 </span>Newlines</h5> + + <p><dfn aria-haspopup="true" id="syntax-newlines" role="button" tabindex="0">Newlines</dfn> in HTML may be + represented either as "CR" (U+000D) characters, "LF" (U+000A) characters, or pairs of "CR" (U+000D), + "LF" (U+000A) characters in that order.</p> + + <p>Where <a href="#syntax-charref" id="syntax-charref_5" title="syntax-charref">character references</a> + are allowed, a character reference of a "LF" (U+000A) + character (but not a "CR" (U+000D) character) also + represents a <a href="#syntax-newlines" id="syntax-newlines_3" title="syntax-newlines">newline</a>.</p> + + + <h4 id="character-references"><span class="secno">8.1.4 </span>Character references</h4> + + <p>In certain cases described in other sections, <a href="#syntax-text" id="syntax-text_5" title="syntax-text">text</a> may be mixed with <dfn aria-haspopup="true" id="syntax-charref" role="button" tabindex="0">character references</dfn>. These can be used to escape characters that couldn't otherwise legally be included in - <a href="#syntax-text" id="syntax-text_6" title="syntax-text">text</a>.<p>Character references must start with a U+0026 AMPERSAND character + <a href="#syntax-text" id="syntax-text_6" title="syntax-text">text</a>.</p> + + <p>Character references must start with a U+0026 AMPERSAND character (&). Following this, there are three possible kinds of character - references:<dl><dt>Named character references</dt> + references:</p> + + <dl><dt>Named character references</dt> <dd>The ampersand must be followed by one of the names given in the <a href="named-character-references.html#named-character-references" id="named-character-references_0">named character references</a> section, using the same @@ -881,21 +1109,16 @@ <dt>Decimal numeric character reference</dt> - <dd>The ampersand must be followed by a U+0023 NUMBER SIGN - character (#), followed by one or more digits in the range U+0030 - DIGIT ZERO (0) to U+0039 DIGIT NINE (9), representing a base-ten + <dd>The ampersand must be followed by a "#" (U+0023) character, followed by one or more digits in the range <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#ascii-digits" title='Read about this "ASCII digits" reference in the full HTML5 spec.'>ASCII digits</a>, representing a base-ten integer that corresponds to a Unicode code point that is allowed according to the definition below. The digits must then be followed - by a U+003B SEMICOLON character (;).</dd> + by a ";" (U+003B) character.</dd> <dt>Hexadecimal numeric character reference</dt> - <dd>The ampersand must be followed by a U+0023 NUMBER SIGN - character (#), which must be followed by either a U+0078 LATIN - SMALL LETTER X character (x) or a U+0058 LATIN CAPITAL LETTER X - character (X), which must then be followed by one or more digits in - the range U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9), U+0061 + <dd>The ampersand must be followed by a "#" (U+0023) character, which must be followed by either a "x" (U+0078) character or a "X" (U+0058) character, which must then be followed by one or more digits in + the range <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#ascii-digits" title='Read about this "ASCII digits" reference in the full HTML5 spec.'>ASCII digits</a>, U+0061 LATIN SMALL LETTER A to U+0066 LATIN SMALL LETTER F, and U+0041 LATIN CAPITAL LETTER A to U+0046 LATIN CAPITAL LETTER F, representing a base-sixteen integer that corresponds to a Unicode @@ -907,15 +1130,21 @@ to reference any Unicode code point other than U+0000, U+000D, permanently undefined Unicode characters (noncharacters), and control characters other than <a href="common-microsyntaxes.html#space-character" id="space-character_51" title="space character">space - characters</a>.<p>An <dfn aria-haspopup="true" id="syntax-ambiguous-ampersand" role="button" tabindex="0">ambiguous + characters</a>.</p> + + <p>An <dfn aria-haspopup="true" id="syntax-ambiguous-ampersand" role="button" tabindex="0">ambiguous ampersand</dfn> is a U+0026 AMPERSAND character (&) that is - followed by one or more characters in the range U+0030 DIGIT ZERO - (0) to U+0039 DIGIT NINE (9), U+0061 LATIN SMALL LETTER A to U+007A - LATIN SMALL LETTER Z, and U+0041 LATIN CAPITAL LETTER A to U+005A - LATIN CAPITAL LETTER Z, followed by a U+003B SEMICOLON character + followed by one or more characters in the range <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#ascii-digits" title='Read about this "ASCII digits" reference in the full HTML5 spec.'>ASCII digits</a>, <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#lowercase-ascii-letters" title='Read about this "lowercase ASCII letters" reference in the full HTML5 spec.'>lowercase ASCII letters</a>, and <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#uppercase-ascii-letters" title='Read about this "uppercase ASCII letters" reference in the full HTML5 spec.'>uppercase ASCII letters</a>, followed by a U+003B SEMICOLON character (;), where these characters do not match any of the names given in - the <a href="named-character-references.html#named-character-references" id="named-character-references_1">named character references</a> section.<h4 id="cdata-sections"><span class="secno">8.1.5 </span>CDATA sections</h4><p><dfn aria-haspopup="true" id="syntax-cdata" role="button" tabindex="0">CDATA sections</dfn> must consist of - the following components, in this order:<ol><li>The string "<code title=""><![CDATA[</code>".</li> + the <a href="named-character-references.html#named-character-references" id="named-character-references_1">named character references</a> section.</p> + + + <h4 id="cdata-sections"><span class="secno">8.1.5 </span>CDATA sections</h4> + + <p><dfn aria-haspopup="true" id="syntax-cdata" role="button" tabindex="0">CDATA sections</dfn> must consist of + the following components, in this order:</p> + + <ol><li>The string "<code title=""><![CDATA[</code>".</li> <li>Optionally, <a href="#syntax-text" id="syntax-text_7" title="syntax-text">text</a>, with the additional restriction that the text must not contain the string @@ -938,15 +1167,50 @@ <ms><![CDATA[x<y3]]></ms> </math></pre> - </div><h4 id="comments"><span class="secno">8.1.6 </span>Comments</h4><p><dfn aria-haspopup="true" id="syntax-comments" role="button" tabindex="0">Comments</dfn> must start with the + </div> + + + <h4 id="comments"><span class="secno">8.1.6 </span>Comments</h4> + + <p><dfn aria-haspopup="true" id="syntax-comments" role="button" tabindex="0">Comments</dfn> must start with the four character sequence U+003C LESS-THAN SIGN, U+0021 EXCLAMATION MARK, U+002D HYPHEN-MINUS, U+002D HYPHEN-MINUS (<code title=""><!--</code>). Following this sequence, the comment may have <a href="#syntax-text" id="syntax-text_8" title="syntax-text">text</a>, with the additional restriction that the text must not start with a single U+003E - GREATER-THAN SIGN character (>), nor start with a U+002D - HYPHEN-MINUS character (-) followed by a U+003E GREATER-THAN SIGN + GREATER-THAN SIGN character (>), nor start with a "-" (U+002D) character followed by a U+003E GREATER-THAN SIGN (>) character, nor contain two consecutive U+002D HYPHEN-MINUS - characters (<code title="">--</code>), nor end with a U+002D - HYPHEN-MINUS character (-). Finally, the comment must be ended by + characters (<code title="">--</code>), nor end with a "-" (U+002D) character. Finally, the comment must be ended by the three character sequence U+002D HYPHEN-MINUS, U+002D - HYPHEN-MINUS, U+003E GREATER-THAN SIGN (<code title="">--></code>). \ No newline at end of file + HYPHEN-MINUS, U+003E GREATER-THAN SIGN (<code title="">--></code>).</p> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file Index: webappapis.html =================================================================== RCS file: /sources/public/html5/spec-author-view/webappapis.html,v retrieving revision 1.600 retrieving revision 1.601 diff -u -d -r1.600 -r1.601 --- webappapis.html 15 Feb 2012 10:14:27 -0000 1.600 +++ webappapis.html 13 Mar 2012 19:59:04 -0000 1.601 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,7 +380,9 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="offline.html">← 5.6 Offline Web applications</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="timers.html">6.3 Timers →</a> @@ -353,9 +391,17 @@ <ol><li><a href="webappapis.html#introduction-5"><span class="secno">6.1.1 </span>Introduction</a><li><a href="webappapis.html#events"><span class="secno">6.1.2 </span>Events</a> <ol><li><a href="webappapis.html#event-handlers-on-elements-document-objects-and-window-objects"><span class="secno">6.1.2.1 </span>Event handlers on elements, <code>Document</code> objects, and <code>Window</code> objects</a></ol></ol><li><a href="webappapis.html#atob"><span class="secno">6.2 </span>Base64 utility methods</a></ol></ol></div> - <h2 id="webappapis"><span class="secno">6 </span>Web application APIs</h2><h3 id="scripting"><span class="secno">6.1 </span>Scripting</h3><h4 id="introduction-5"><span class="secno">6.1.1 </span>Introduction</h4><p>Various mechanisms can cause author-provided executable code to + <h2 id="webappapis"><span class="secno">6 </span>Web application APIs</h2> + + <h3 id="scripting"><span class="secno">6.1 </span>Scripting</h3> + + <h4 id="introduction-5"><span class="secno">6.1.1 </span>Introduction</h4> + + <p>Various mechanisms can cause author-provided executable code to run in the context of a document. These mechanisms include, but are - probably not limited to:<ul><li>Processing of <code><a href="the-script-element.html#the-script-element" id="script_29">script</a></code> elements.</li> + probably not limited to:</p> + + <ul><li>Processing of <code><a href="the-script-element.html#the-script-element" id="script_29">script</a></code> elements.</li> <li>Processing of inline <code title="javascript protocol"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#javascript-protocol" title='Read about this "javascript:" reference in the full HTML5 spec.'>javascript:</a></code> URLs (e.g. the <code title="attr-img-src"><a href="the-img-element.html#attr-img-src" id="src_15">src</a></code> attribute of <code><a href="the-img-element.html#the-img-element" id="img_34">img</a></code> @@ -369,22 +415,50 @@ <li>Processing of technologies like XBL or SVG that have their own scripting features.</li> - </ul><h4 id="events"><span class="secno">6.1.2 </span>Events</h4><p>Many objects can have <dfn aria-haspopup="true" id="event-handlers" role="button" tabindex="0">event handlers</dfn> specified. These + </ul><h4 id="events"><span class="secno">6.1.2 </span>Events</h4> + + + + + + <p>Many objects can have <dfn aria-haspopup="true" id="event-handlers" role="button" tabindex="0">event handlers</dfn> specified. These act as non-capture event listeners for the object on which they are - specified. <a href="references.html#refsDOMCORE">[DOMCORE]</a><p>An <a href="#event-handlers" id="event-handlers_5" title="event handlers">event handler</a> can either + specified. <a href="references.html#refsDOMCORE">[DOMCORE]</a></p> + + <p>An <a href="#event-handlers" id="event-handlers_5" title="event handlers">event handler</a> can either have the value null or be set to a <code><a href="#function" id="function_221">Function</a></code> - object. <p>Event handlers are exposed in one or two ways.<p>The first way, common to all event handlers, is as an <a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#event-handler-idl-attributes" title='Read about this "event handler IDL attribute" reference in the full HTML5 spec.'>event handler IDL - attribute</a>.<p>The second way is as an <a href="#event-handler-content-attributes" id="event-handler-content-attributes_7" title="event handler content + object. </p> + + <p>Event handlers are exposed in one or two ways.</p> + + <p>The first way, common to all event handlers, is as an <a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#event-handler-idl-attributes" title='Read about this "event handler IDL attribute" reference in the full HTML5 spec.'>event handler IDL + attribute</a>.</p> + + <p>The second way is as an <a href="#event-handler-content-attributes" id="event-handler-content-attributes_7" title="event handler content attributes">event handler content attribute</a>. Event handlers on <a href="infrastructure.html#html-elements" id="html-elements_31">HTML elements</a> and some of the event handlers on - <code><a href="browsers.html#window" id="window_20">Window</a></code> objects are exposed in this way.<p><dfn aria-haspopup="true" id="event-handler-content-attributes" role="button" tabindex="0">Event handler content attributes</dfn>, when specified, must + <code><a href="browsers.html#window" id="window_20">Window</a></code> objects are exposed in this way.</p> + + + + <p><dfn aria-haspopup="true" id="event-handler-content-attributes" role="button" tabindex="0">Event handler content attributes</dfn>, when specified, must contain valid JavaScript code which, when parsed, would match the <code title="">FunctionBody</code> production after automatic - semicolon insertion. <a href="references.html#refsECMA262">[ECMA262]</a><p class="note">When an <a href="#event-handler-content-attributes" id="event-handler-content-attributes_8" title="event handler content + semicolon insertion. <a href="references.html#refsECMA262">[ECMA262]</a></p> + + + + <p class="note">When an <a href="#event-handler-content-attributes" id="event-handler-content-attributes_8" title="event handler content attributes">event handler content attribute</a> is set on an element owned by a <code><a href="dom.html#document" id="document_112">Document</a></code> that is not in a <a href="browsers.html#browsing-context" id="browsing-context_51">browsing context</a>, the corresponding event handler is - not changed.<div class="example"> + not changed.</p> + + + + + + <div class="example"> <p>This example demonstrates the order in which event listeners are invoked. If the button in this example is clicked by the user, the @@ -401,14 +475,26 @@ button.addEventListener('click', function () { alert('FOUR') }, false); </script></pre> - </div><hr><p>The <code><a href="#function" id="function_222">Function</a></code> interface represents a function in the + </div> + + + + <hr><p>The <code><a href="#function" id="function_222">Function</a></code> interface represents a function in the scripting language being used. It is represented in Web IDL as - follows:<pre class="idl">[Callback=FunctionOnly, NoInterfaceObject] + follows:</p> + + <pre class="idl">[Callback=FunctionOnly, NoInterfaceObject] interface <dfn aria-haspopup="true" id="function" role="button" tabindex="0">Function</dfn> { any <a href="#dom-function-call" id="dom-function-call_0" title="dom-function-call">call</a>(any... arguments); -};</pre><p>The <dfn aria-haspopup="true" id="dom-function-call" role="button" tabindex="0"><code>call(...)</code></dfn> - method is the object's callback.<p class="note">In JavaScript, any <code title="">Function</code> - object implements this interface.<div class="example"> +};</pre> + + <p>The <dfn aria-haspopup="true" id="dom-function-call" role="button" tabindex="0"><code>call(...)</code></dfn> + method is the object's callback.</p> + + <p class="note">In JavaScript, any <code title="">Function</code> + object implements this interface.</p> + + <div class="example"> <p>For example, the following document fragment:</p> @@ -418,17 +504,26 @@ and an alert saying "<code title="">[object HTMLBodyElement]</code>" whenever the user clicks something in the page.</p> - </div><p class="note">The return value of the function affects whether the + </div> + + <p class="note">The return value of the function affects whether the event is canceled or not: if the return value is false, the event is canceled (except for <code class="event-mouseover">mouseover</code> events, where the return value has to be true to cancel the event). With <code title="event-beforeunload">beforeunload</code> events, the - value is instead used to determine the message to show the user.<h5 id="event-handlers-on-elements-document-objects-and-window-objects"><span class="secno">6.1.2.1 </span>Event handlers on elements, <code><a href="dom.html#document" id="document_113">Document</a></code> objects, and <code><a href="browsers.html#window" id="window_21">Window</a></code> objects</h5><p>The following are the <a href="#event-handlers" id="event-handlers_6">event handlers</a> (and their + value is instead used to determine the message to show the user.</p> + + + <h5 id="event-handlers-on-elements-document-objects-and-window-objects"><span class="secno">6.1.2.1 </span>Event handlers on elements, <code><a href="dom.html#document" id="document_113">Document</a></code> objects, and <code><a href="browsers.html#window" id="window_21">Window</a></code> objects</h5> + + <p>The following are the <a href="#event-handlers" id="event-handlers_6">event handlers</a> (and their corresponding <a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#event-handler-event-type" title='Read about this "event handler event types" reference in the full HTML5 spec.'>event handler event types</a>) supported by all <a href="infrastructure.html#html-elements" id="html-elements_32">HTML elements</a>, as both content attributes and IDL attributes, and on <code><a href="dom.html#document" id="document_114">Document</a></code> and <code><a href="browsers.html#window" id="window_22">Window</a></code> - objects, as IDL attributes.<table><thead><tr><th><a href="#event-handlers" id="event-handlers_7" title="event handlers">Event handler</a> <th><a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#event-handler-event-type" title='Read about this "Event handler event type" reference in the full HTML5 spec.'>Event handler event type</a> + objects, as IDL attributes.</p> + + <table><thead><tr><th><a href="#event-handlers" id="event-handlers_7" title="event handlers">Event handler</a> <th><a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#event-handler-event-type" title='Read about this "Event handler event type" reference in the full HTML5 spec.'>Event handler event type</a> <tbody><tr><td><dfn aria-haspopup="true" id="handler-onabort" role="button" tabindex="0"><code>onabort</code></dfn> <td> <code title="event-abort">abort</code> <tr><td><dfn aria-haspopup="true" id="handler-oncanplay" role="button" tabindex="0"><code>oncanplay</code></dfn> <td> <code title="event-media-canplay"><a href="media-elements.html#event-media-canplay" id="canplay">canplay</a></code> <tr><td><dfn aria-haspopup="true" id="handler-oncanplaythrough" role="button" tabindex="0"><code>oncanplaythrough</code></dfn> <td> <code title="event-media-canplaythrough"><a href="media-elements.html#event-media-canplaythrough" id="canplaythrough">canplaythrough</a></code> @@ -489,7 +584,9 @@ event types</a>) supported by all <a href="infrastructure.html#html-elements" id="html-elements_33">HTML elements</a> other than <code><a href="the-body-element.html#the-body-element" id="body_27">body</a></code>, as both content attributes and IDL attributes, and on - <code><a href="dom.html#document" id="document_115">Document</a></code> objects, as IDL attributes:<table><thead><tr><th><a href="#event-handlers" id="event-handlers_9" title="event handlers">Event handler</a> <th><a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#event-handler-event-type" title='Read about this "Event handler event type" reference in the full HTML5 spec.'>Event handler event type</a> + <code><a href="dom.html#document" id="document_115">Document</a></code> objects, as IDL attributes:</p> + + <table><thead><tr><th><a href="#event-handlers" id="event-handlers_9" title="event handlers">Event handler</a> <th><a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#event-handler-event-type" title='Read about this "Event handler event type" reference in the full HTML5 spec.'>Event handler event type</a> <tbody><tr><td><dfn aria-haspopup="true" id="handler-onblur" role="button" tabindex="0"><code>onblur</code></dfn> <td> <code title="event-blur">blur</code> <tr><td><dfn aria-haspopup="true" id="handler-onerror" role="button" tabindex="0"><code>onerror</code></dfn> <td> <code title="event-error">error</code> <tr><td><dfn aria-haspopup="true" id="handler-onfocus" role="button" tabindex="0"><code>onfocus</code></dfn> <td> <code title="event-focus">focus</code> @@ -501,7 +598,9 @@ by <code><a href="browsers.html#window" id="window_23">Window</a></code> objects, as IDL attributes on the <code><a href="browsers.html#window" id="window_24">Window</a></code> object, and with corresponding content attributes and IDL attributes exposed on the <code><a href="the-body-element.html#the-body-element" id="body_28">body</a></code> and - <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/obsolete.html#frameset" title='Read about this "frameset" reference in the full HTML5 spec.'>frameset</a></code> elements:<table><thead><tr><th><a href="#event-handlers" id="event-handlers_11" title="event handlers">Event handler</a> <th><a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#event-handler-event-type" title='Read about this "Event handler event type" reference in the full HTML5 spec.'>Event handler event type</a> + <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/obsolete.html#frameset" title='Read about this "frameset" reference in the full HTML5 spec.'>frameset</a></code> elements:</p> + + <table><thead><tr><th><a href="#event-handlers" id="event-handlers_11" title="event handlers">Event handler</a> <th><a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#event-handler-event-type" title='Read about this "Event handler event type" reference in the full HTML5 spec.'>Event handler event type</a> <tbody><tr><td><dfn aria-haspopup="true" id="handler-window-onafterprint" role="button" tabindex="0"><code>onafterprint</code></dfn> <td> <code title="event-afterprint">afterprint</code> <tr><td><dfn aria-haspopup="true" id="handler-window-onbeforeprint" role="button" tabindex="0"><code>onbeforeprint</code></dfn> <td> <code title="event-beforeprint">beforeprint</code> <tr><td><dfn aria-haspopup="true" id="handler-window-onbeforeunload" role="button" tabindex="0"><code>onbeforeunload</code></dfn> <td> <code title="event-beforeunload">beforeunload</code> @@ -521,21 +620,35 @@ <tr><td><dfn aria-haspopup="true" id="handler-window-onstorage" role="button" tabindex="0"><code>onstorage</code></dfn> <td> <code title="event-storage">storage</code> <tr><td><dfn aria-haspopup="true" id="handler-window-onunload" role="button" tabindex="0"><code>onunload</code></dfn> <td> <code title="event-unload">unload</code> </table><p class="note">The <code title="handler-window-onerror"><a href="#handler-window-onerror" id="onerror_4">onerror</a></code> - handler is also used for <a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#runtime-script-errors" title='Read about this "reporting script errors" reference in the full HTML5 spec.'>reporting script errors</a>.<hr><p>The following are the <a href="#event-handlers" id="event-handlers_12">event handlers</a> (and their + handler is also used for <a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#runtime-script-errors" title='Read about this "reporting script errors" reference in the full HTML5 spec.'>reporting script errors</a>.</p> + + <hr><p>The following are the <a href="#event-handlers" id="event-handlers_12">event handlers</a> (and their corresponding <a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#event-handler-event-type" title='Read about this "event handler event types" reference in the full HTML5 spec.'>event handler event types</a>) supported - on <code><a href="dom.html#document" id="document_116">Document</a></code> objects as IDL attributes:<table><thead><tr><th><a href="#event-handlers" id="event-handlers_13" title="event handlers">Event handler</a> <th><a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#event-handler-event-type" title='Read about this "Event handler event type" reference in the full HTML5 spec.'>Event handler event type</a> + on <code><a href="dom.html#document" id="document_116">Document</a></code> objects as IDL attributes:</p> + + <table><thead><tr><th><a href="#event-handlers" id="event-handlers_13" title="event handlers">Event handler</a> <th><a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#event-handler-event-type" title='Read about this "Event handler event type" reference in the full HTML5 spec.'>Event handler event type</a> <tbody><tr><td><dfn aria-haspopup="true" id="handler-onreadystatechange" role="button" tabindex="0"><code>onreadystatechange</code></dfn> <td> <code title="event-readystatechange"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/dom.html#event-readystatechange" title='Read about this "readystatechange" reference in the full HTML5 spec.'>readystatechange</a></code> - </table><h3 id="atob"><span class="secno">6.2 </span>Base64 utility methods</h3><p>The <code title="dom-windowbase64-atob"><a href="#dom-windowbase64-atob">atob()</a></code> and <code title="dom-windowbase64-btoa"><a href="#dom-windowbase64-btoa">btoa()</a></code> methods allow authors to - transform content to and from the base64 encoding.<pre class="idl">[NoInterfaceObject] + </table><h3 id="atob"><span class="secno">6.2 </span>Base64 utility methods</h3> + + <p>The <code title="dom-windowbase64-atob"><a href="#dom-windowbase64-atob">atob()</a></code> and <code title="dom-windowbase64-btoa"><a href="#dom-windowbase64-btoa">btoa()</a></code> methods allow authors to + transform content to and from the base64 encoding.</p> + + + + <pre class="idl">[NoInterfaceObject] interface <dfn aria-haspopup="true" id="windowbase64" role="button" tabindex="0">WindowBase64</dfn> { DOMString <a href="#dom-windowbase64-btoa" title="dom-windowbase64-btoa">btoa</a>(DOMString btoa); DOMString <a href="#dom-windowbase64-atob" title="dom-windowbase64-atob">atob</a>(DOMString atob); }; -<a href="browsers.html#window" id="window_25">Window</a> implements <a href="#windowbase64" id="windowbase64_0">WindowBase64</a>;</pre><p class="note">In these APIs, for mnemonic purposes, the "b" can be +<a href="browsers.html#window" id="window_25">Window</a> implements <a href="#windowbase64" id="windowbase64_0">WindowBase64</a>;</pre> + + <p class="note">In these APIs, for mnemonic purposes, the "b" can be considered to stand for "binary", and the "a" for "ASCII". In practice, though, for primarily historical reasons, both the input - and output of these functions are Unicode strings.<dl class="domintro"><dt><var title="">result</var> = <var title="">window</var> . <code id="dom-windowbase64-btoa" title="dom-windowbase64-btoa"><a href="#dom-windowbase64-btoa">btoa</a></code>( <var title="">data</var> )</dt> + and output of these functions are Unicode strings.</p> + + <dl class="domintro"><dt><var title="">result</var> = <var title="">window</var> . <code id="dom-windowbase64-btoa" title="dom-windowbase64-btoa"><a href="#dom-windowbase64-btoa">btoa</a></code>( <var title="">data</var> )</dt> <dd> @@ -569,4 +682,8 @@ exception if its input contains characters other than those described by the regular expression bracket expression <code title="">[+/=0-9A-Za-z]</code>, so other characters need to be removed before <code title="dom-windowbase64-atob"><a href="#dom-windowbase64-atob">atob()</a></code> is - used for decoding. \ No newline at end of file + used for decoding.</p> + + + + \ No newline at end of file Index: fragment-links.xhtml =================================================================== RCS file: /sources/public/html5/spec-author-view/fragment-links.xhtml,v retrieving revision 1.142 retrieving revision 1.143 diff -u -d -r1.142 -r1.143 --- fragment-links.xhtml 2 Mar 2012 23:58:29 -0000 1.142 +++ fragment-links.xhtml 13 Mar 2012 19:58:40 -0000 1.143 @@ -3720,8 +3720,8 @@ <li>named-character-references</li> </ul> <ul> -<li>#attr-br-clear</li> -<li>obsolete</li> +<li>#attr-fs-enctype-formdata</li> +<li>attributes-common-to-form-controls</li> </ul> <ul> <li>#the-strong-element</li> @@ -6936,8 +6936,8 @@ <li>common-dom-interfaces</li> </ul> <ul> -<li>#selecting-specific-audio-and-video-tracks-declaratively</li> -<li>media-elements</li> +<li>#lowercase-ascii-letters</li> +<li>common-microsyntaxes</li> </ul> <ul> <li>#navigatoronline</li> @@ -8520,10 +8520,6 @@ <li>named-character-references</li> </ul> <ul> -<li>#dom-texttrack-cues</li> -<li>media-elements</li> -</ul> -<ul> <li>#entity-capdot</li> <li>named-character-references</li> </ul> @@ -10404,10 +10400,6 @@ <li>rendering</li> </ul> <ul> -<li>#alphanumeric-ascii-characters</li> -<li>common-microsyntaxes</li> -</ul> -<ul> <li>#relevant-namespace-object</li> <li>infrastructure</li> </ul> @@ -17280,6 +17272,10 @@ <li>named-character-references</li> </ul> <ul> +<li>#selecting-specific-audio-and-video-tracks-declaratively</li> +<li>media-elements</li> +</ul> +<ul> <li>#entity-DownRightTeeVector</li> <li>named-character-references</li> </ul> @@ -18428,6 +18424,10 @@ <li>named-character-references</li> </ul> <ul> +<li>#ascii-digits</li> +<li>common-microsyntaxes</li> +</ul> +<ul> <li>#entity-boxDL</li> <li>named-character-references</li> </ul> @@ -21424,8 +21424,8 @@ <li>webappapis</li> </ul> <ul> -<li>#attr-body-vlink</li> -<li>obsolete</li> +<li>#dom-texttrack-cues</li> +<li>media-elements</li> </ul> <ul> <li>#editing-hosts</li> @@ -21468,6 +21468,10 @@ <li>media-elements</li> </ul> <ul> +<li>#uppercase-ascii-letters</li> +<li>common-microsyntaxes</li> +</ul> +<ul> <li>#entity-blk12</li> <li>named-character-references</li> </ul> @@ -21848,6 +21852,10 @@ <li>system-state-and-capabilities</li> </ul> <ul> +<li>#attr-body-vlink</li> +<li>obsolete</li> +</ul> +<ul> <li>#handler-ondragleave</li> <li>webappapis</li> </ul> @@ -22904,8 +22912,8 @@ <li>named-character-references</li> </ul> <ul> -<li>#attr-fs-enctype-formdata</li> -<li>attributes-common-to-form-controls</li> +<li>#attr-br-clear</li> +<li>obsolete</li> </ul> <ul> <li>#dom-node-insertbefore</li> Index: the-h1-h2-h3-h4-h5-and-h6-elements.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-h1-h2-h3-h4-h5-and-h6-elements.html,v retrieving revision 1.120 retrieving revision 1.121 diff -u -d -r1.120 -r1.121 --- the-h1-h2-h3-h4-h5-and-h6-elements.html 5 Mar 2012 05:58:59 -0000 1.120 +++ the-h1-h2-h3-h4-h5-and-h6-elements.html 13 Mar 2012 19:58:57 -0000 1.121 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-aside-element.html">← 4.4.5 The aside element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-hgroup-element.html">4.4.7 The hgroup element →</a> </div> - <h4 id="the-h1-h2-h3-h4-h5-and-h6-elements"><span class="secno">4.4.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>h1</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h2</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h3</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h4</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h5</code></dfn>, and <dfn aria-haspopup="true" role="button" tabindex="0"><code>h6</code></dfn> elements</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_14" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-h1-h2-h3-h4-h5-and-h6-elements"><span class="secno">4.4.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>h1</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h2</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h3</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h4</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h5</code></dfn>, and <dfn aria-haspopup="true" role="button" tabindex="0"><code>h6</code></dfn> elements</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_14" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_29">Flow content</a>.</dd> <dd><a href="content-models.html#heading-content" id="heading-content_2">Heading content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_4">Palpable content</a>.</dd> @@ -366,11 +406,17 @@ <pre class="idl">interface <dfn aria-haspopup="true" id="htmlheadingelement" role="button" tabindex="0">HTMLHeadingElement</dfn> : <a href="elements.html#htmlelement" id="htmlelement_19">HTMLElement</a> {};</pre> </dd> </dl><p>These elements <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represent" reference in the full HTML5 spec.'>represent</a> headings - for their sections.<p>The semantics and meaning of these elements are defined in the - section on <a href="headings-and-sections.html#headings-and-sections" id="headings-and-sections_1">headings and sections</a>.<p>These elements have a <dfn aria-haspopup="true" id="rank" role="button" tabindex="0">rank</dfn> given by the number in + for their sections.</p> + + <p>The semantics and meaning of these elements are defined in the + section on <a href="headings-and-sections.html#headings-and-sections" id="headings-and-sections_1">headings and sections</a>.</p> + + <p>These elements have a <dfn aria-haspopup="true" id="rank" role="button" tabindex="0">rank</dfn> given by the number in their name. The <code><a href="#the-h1-h2-h3-h4-h5-and-h6-elements" id="h1_7">h1</a></code> element is said to have the highest rank, the <code><a href="#the-h1-h2-h3-h4-h5-and-h6-elements" id="h6_3">h6</a></code> element has the lowest rank, and two - elements with the same name have equal rank.<div class="example"> + elements with the same name have equal rank.</p> + + <div class="example"> <p>As far as their respective document outlines (their heading and section structures) are concerned, these two snippets are @@ -408,4 +454,9 @@ latter style for its convenience in the face of heavy editing; which is best is purely an issue of preferred authoring style.</p> - </div> \ No newline at end of file + </div> + + + + + \ No newline at end of file Index: the-abbr-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-abbr-element.html,v retrieving revision 1.124 retrieving revision 1.125 diff -u -d -r1.124 -r1.125 --- the-abbr-element.html 21 Feb 2012 21:59:01 -0000 1.124 +++ the-abbr-element.html 13 Mar 2012 19:58:55 -0000 1.125 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-dfn-element.html">← 4.6.8 The dfn element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-time-element.html">4.6.10 The time element →</a> </div> - <h4 id="the-abbr-element"><span class="secno">4.6.9 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>abbr</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_40" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-abbr-element"><span class="secno">4.6.9 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>abbr</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_40" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_79">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_53">Phrasing content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_25">Palpable content</a>.</dd> @@ -367,7 +407,9 @@ abbreviation or acronym, optionally with its expansion. The <dfn aria-haspopup="true" id="attr-abbr-title" role="button" tabindex="0"><code>title</code></dfn> attribute may be used to provide an expansion of the abbreviation. The attribute, if specified, must contain an expansion of the abbreviation, and - nothing else.<div class="example"> + nothing else.</p> + + <div class="example"> <p>The paragraph below contains an abbreviation marked up with the <code><a href="#the-abbr-element" id="abbr_6">abbr</a></code> element. This paragraph <a href="the-dfn-element.html#defining-term" id="defining-term_1" title="defining term">defines the term</a> "Web Hypertext Application Technology @@ -386,28 +428,38 @@ interested parties who wish to develop new technologies designed to allow authors to write and deploy Applications over the World Wide Web.</p></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>This paragraph has two abbreviations. Notice how only one is defined; the other, with no expansion associated with it, does not use the <code><a href="#the-abbr-element" id="abbr_7">abbr</a></code> element.</p> <pre><p>The <abbr title="Web Hypertext Application Technology Working Group">WHATWG</abbr> started working on HTML5 in 2004.</p></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>This paragraph links an abbreviation to its definition.</p> <pre><p>The <a href="#whatwg"><abbr title="Web Hypertext Application Technology Working Group">WHATWG</abbr></a> community does not have much representation from Asia.</p></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>This paragraph marks up an abbreviation without giving an expansion, possibly as a hook to apply styles for abbreviations (e.g. smallcaps).</p> <pre><p>Philip` and Dashiva both denied that they were going to get the issue counts from past revisions of the specification to backfill the <abbr>WHATWG</abbr> issue graph.</p></pre> - </div><p>If an abbreviation is pluralized, the expansion's grammatical + </div> + + <p>If an abbreviation is pluralized, the expansion's grammatical number (plural vs singular) must match the grammatical number of the - contents of the element.<div class="example"> + contents of the element.</p> + + <div class="example"> <p>Here the plural is outside the element, so the expansion is in the singular:</p> @@ -423,8 +475,12 @@ this specification: the <abbr>WHATWG</abbr> and the <abbr>HTMLWG</abbr>.</p></pre> - </div><p>Abbreviations do not have to be marked up using this element. It - is expected to be useful in the following cases:<ul><li>Abbreviations for which the author wants to give expansions, + </div> + + <p>Abbreviations do not have to be marked up using this element. It + is expected to be useful in the following cases:</p> + + <ul><li>Abbreviations for which the author wants to give expansions, where using the <code><a href="#the-abbr-element" id="abbr_8">abbr</a></code> element with a <code title="attr-title"><a href="global-attributes.html#the-title-attribute" id="title_12">title</a></code> attribute is an alternative to including the expansion inline (e.g. in parentheses).</li> @@ -443,4 +499,12 @@ cause other <code><a href="#the-abbr-element" id="abbr_11">abbr</a></code> elements in the same document with the same contents but without a <code title="attr-title"><a href="global-attributes.html#the-title-attribute" id="title_16">title</a></code> attribute to behave as if they had the same expansion. Every - <code><a href="#the-abbr-element" id="abbr_12">abbr</a></code> element is independent. \ No newline at end of file + <code><a href="#the-abbr-element" id="abbr_12">abbr</a></code> element is independent.</p> + + + + + + + + \ No newline at end of file Index: the-caption-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-caption-element.html,v retrieving revision 1.119 retrieving revision 1.120 diff -u -d -r1.119 -r1.120 --- the-caption-element.html 21 Feb 2012 21:59:03 -0000 1.119 +++ the-caption-element.html 13 Mar 2012 19:58:56 -0000 1.120 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-table-element.html">← 4.9.1 The table element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-colgroup-element.html">4.9.3 The colgroup element →</a> </div> - <h4 id="the-caption-element"><span class="secno">4.9.2 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>caption</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_74" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-caption-element"><span class="secno">4.9.2 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>caption</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_74" title="element-dfn-categories">Categories</a>:</dt> <dd>None.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_74" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>As the first element child of a <code><a href="the-table-element.html#the-table-element" id="table_7">table</a></code> element.</dd> @@ -364,11 +404,19 @@ </dd> </dl><p>The <code><a href="#the-caption-element" id="caption_7">caption</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> the title of the <code><a href="the-table-element.html#the-table-element" id="table_9">table</a></code> that is its parent, if it has a parent and that - is a <code><a href="the-table-element.html#the-table-element" id="table_10">table</a></code> element.<p>When a <code><a href="the-table-element.html#the-table-element" id="table_11">table</a></code> element is the only content in a + is a <code><a href="the-table-element.html#the-table-element" id="table_10">table</a></code> element.</p> + + + + <p>When a <code><a href="the-table-element.html#the-table-element" id="table_11">table</a></code> element is the only content in a <code><a href="the-figure-element.html#the-figure-element" id="figure_18">figure</a></code> element other than the <code><a href="the-figcaption-element.html#the-figcaption-element" id="figcaption_13">figcaption</a></code>, the <code><a href="#the-caption-element" id="caption_8">caption</a></code> element should be omitted in favor of the - <code><a href="the-figcaption-element.html#the-figcaption-element" id="figcaption_14">figcaption</a></code>.<p>A caption can introduce context for a table, making it - significantly easier to understand.<div class="example"> + <code><a href="the-figcaption-element.html#the-figcaption-element" id="figcaption_14">figcaption</a></code>.</p> + + <p>A caption can introduce context for a table, making it + significantly easier to understand.</p> + + <div class="example"> <p>Consider, for instance, the following table:</p> @@ -392,4 +440,9 @@ </caption></pre> - </div> \ No newline at end of file + </div> + + + + + \ No newline at end of file Index: the-h2-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-h2-element.html,v retrieving revision 1.117 retrieving revision 1.118 diff -u -d -r1.117 -r1.118 --- the-h2-element.html 5 Mar 2012 05:58:59 -0000 1.117 +++ the-h2-element.html 13 Mar 2012 19:58:57 -0000 1.118 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-aside-element.html">← 4.4.5 The aside element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-hgroup-element.html">4.4.7 The hgroup element →</a> </div> - <h4 id="the-h1-h2-h3-h4-h5-and-h6-elements"><span class="secno">4.4.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>h1</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h2</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h3</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h4</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h5</code></dfn>, and <dfn aria-haspopup="true" role="button" tabindex="0"><code>h6</code></dfn> elements</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_14" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-h1-h2-h3-h4-h5-and-h6-elements"><span class="secno">4.4.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>h1</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h2</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h3</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h4</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h5</code></dfn>, and <dfn aria-haspopup="true" role="button" tabindex="0"><code>h6</code></dfn> elements</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_14" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_29">Flow content</a>.</dd> <dd><a href="content-models.html#heading-content" id="heading-content_2">Heading content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_4">Palpable content</a>.</dd> @@ -366,11 +406,17 @@ <pre class="idl">interface <dfn aria-haspopup="true" id="htmlheadingelement" role="button" tabindex="0">HTMLHeadingElement</dfn> : <a href="elements.html#htmlelement" id="htmlelement_19">HTMLElement</a> {};</pre> </dd> </dl><p>These elements <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represent" reference in the full HTML5 spec.'>represent</a> headings - for their sections.<p>The semantics and meaning of these elements are defined in the - section on <a href="headings-and-sections.html#headings-and-sections" id="headings-and-sections_1">headings and sections</a>.<p>These elements have a <dfn aria-haspopup="true" id="rank" role="button" tabindex="0">rank</dfn> given by the number in + for their sections.</p> + + <p>The semantics and meaning of these elements are defined in the + section on <a href="headings-and-sections.html#headings-and-sections" id="headings-and-sections_1">headings and sections</a>.</p> + + <p>These elements have a <dfn aria-haspopup="true" id="rank" role="button" tabindex="0">rank</dfn> given by the number in their name. The <code><a href="#the-h1-h2-h3-h4-h5-and-h6-elements" id="h1_7">h1</a></code> element is said to have the highest rank, the <code><a href="#the-h1-h2-h3-h4-h5-and-h6-elements" id="h6_3">h6</a></code> element has the lowest rank, and two - elements with the same name have equal rank.<div class="example"> + elements with the same name have equal rank.</p> + + <div class="example"> <p>As far as their respective document outlines (their heading and section structures) are concerned, these two snippets are @@ -408,4 +454,9 @@ latter style for its convenience in the face of heavy editing; which is best is purely an issue of preferred authoring style.</p> - </div> \ No newline at end of file + </div> + + + + + \ No newline at end of file Index: the-tbody-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-tbody-element.html,v retrieving revision 1.127 retrieving revision 1.128 diff -u -d -r1.127 -r1.128 --- the-tbody-element.html 21 Feb 2012 21:59:08 -0000 1.127 +++ the-tbody-element.html 13 Mar 2012 19:59:02 -0000 1.128 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-col-element.html">← 4.9.4 The col element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-thead-element.html">4.9.6 The thead element →</a> </div> - <h4 id="the-tbody-element"><span class="secno">4.9.5 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>tbody</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_77" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-tbody-element"><span class="secno">4.9.5 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>tbody</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_77" title="element-dfn-categories">Categories</a>:</dt> <dd>None.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_77" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>As a child of a <code><a href="the-table-element.html#the-table-element" id="table_16">table</a></code> element, after any @@ -374,7 +414,12 @@ </dd> </dl><p>The <code><a href="#the-tbody-element" id="tbody_4">tbody</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-td-and-th-elements.html#concept-row-group" title='Read about this "block" reference in the full HTML5 spec.'>block</a> of <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-td-and-th-elements.html#concept-row" title='Read about this "rows" reference in the full HTML5 spec.'>rows</a> that consist of a body of data for the parent <code><a href="the-table-element.html#the-table-element" id="table_18">table</a></code> element, if the <code><a href="#the-tbody-element" id="tbody_5">tbody</a></code> - element has a parent and it is a <code><a href="the-table-element.html#the-table-element" id="table_19">table</a></code>.<dl class="domintro"><dt><var title="">tbody</var> . <code id="dom-tbody-rows" title="dom-tbody-rows"><a href="#dom-tbody-rows">rows</a></code></dt> + element has a parent and it is a <code><a href="the-table-element.html#the-table-element" id="table_19">table</a></code>.</p> + + + + + <dl class="domintro"><dt><var title="">tbody</var> . <code id="dom-tbody-rows" title="dom-tbody-rows"><a href="#dom-tbody-rows">rows</a></code></dt> <dd> <p>Returns an <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#htmlcollection" title='Read about this "HTMLCollection" reference in the full HTML5 spec.'>HTMLCollection</a></code> of the <code><a href="the-tr-element.html#the-tr-element" id="tr_8">tr</a></code> elements of the table section.</p> </dd> Index: the-td-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-td-element.html,v retrieving revision 1.116 retrieving revision 1.117 diff -u -d -r1.116 -r1.117 --- the-td-element.html 15 Feb 2012 10:14:25 -0000 1.116 +++ the-td-element.html 13 Mar 2012 19:59:02 -0000 1.117 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-tr-element.html">← 4.9.8 The tr element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-th-element.html">4.9.10 The th element →</a> </div> - <h4 id="the-td-element"><span class="secno">4.9.9 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>td</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_81" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-td-element"><span class="secno">4.9.9 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>td</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_81" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="headings-and-sections.html#sectioning-root" id="sectioning-root_8">Sectioning root</a>.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_81" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>As a child of a <code><a href="the-tr-element.html#the-tr-element" id="tr_18">tr</a></code> element.</dd> @@ -366,4 +406,9 @@ <dd> <pre class="idl">interface <dfn aria-haspopup="true" id="htmltabledatacellelement" role="button" tabindex="0">HTMLTableDataCellElement</dfn> : <a href="attributes-common-to-td-and-th-elements.html#htmltablecellelement" id="htmltablecellelement_0">HTMLTableCellElement</a> {};</pre> </dd> - </dl><p>The <code><a href="#the-td-element" id="td_12">td</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a data <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-td-and-th-elements.html#concept-cell" title='Read about this "cell" reference in the full HTML5 spec.'>cell</a> in a table. \ No newline at end of file + </dl><p>The <code><a href="#the-td-element" id="td_12">td</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a data <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-td-and-th-elements.html#concept-cell" title='Read about this "cell" reference in the full HTML5 spec.'>cell</a> in a table.</p> + + + + + \ No newline at end of file Index: the-h5-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-h5-element.html,v retrieving revision 1.117 retrieving revision 1.118 diff -u -d -r1.117 -r1.118 --- the-h5-element.html 5 Mar 2012 05:58:59 -0000 1.117 +++ the-h5-element.html 13 Mar 2012 19:58:58 -0000 1.118 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-aside-element.html">← 4.4.5 The aside element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-hgroup-element.html">4.4.7 The hgroup element →</a> </div> - <h4 id="the-h1-h2-h3-h4-h5-and-h6-elements"><span class="secno">4.4.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>h1</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h2</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h3</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h4</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h5</code></dfn>, and <dfn aria-haspopup="true" role="button" tabindex="0"><code>h6</code></dfn> elements</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_14" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-h1-h2-h3-h4-h5-and-h6-elements"><span class="secno">4.4.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>h1</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h2</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h3</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h4</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h5</code></dfn>, and <dfn aria-haspopup="true" role="button" tabindex="0"><code>h6</code></dfn> elements</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_14" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_29">Flow content</a>.</dd> <dd><a href="content-models.html#heading-content" id="heading-content_2">Heading content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_4">Palpable content</a>.</dd> @@ -366,11 +406,17 @@ <pre class="idl">interface <dfn aria-haspopup="true" id="htmlheadingelement" role="button" tabindex="0">HTMLHeadingElement</dfn> : <a href="elements.html#htmlelement" id="htmlelement_19">HTMLElement</a> {};</pre> </dd> </dl><p>These elements <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represent" reference in the full HTML5 spec.'>represent</a> headings - for their sections.<p>The semantics and meaning of these elements are defined in the - section on <a href="headings-and-sections.html#headings-and-sections" id="headings-and-sections_1">headings and sections</a>.<p>These elements have a <dfn aria-haspopup="true" id="rank" role="button" tabindex="0">rank</dfn> given by the number in + for their sections.</p> + + <p>The semantics and meaning of these elements are defined in the + section on <a href="headings-and-sections.html#headings-and-sections" id="headings-and-sections_1">headings and sections</a>.</p> + + <p>These elements have a <dfn aria-haspopup="true" id="rank" role="button" tabindex="0">rank</dfn> given by the number in their name. The <code><a href="#the-h1-h2-h3-h4-h5-and-h6-elements" id="h1_7">h1</a></code> element is said to have the highest rank, the <code><a href="#the-h1-h2-h3-h4-h5-and-h6-elements" id="h6_3">h6</a></code> element has the lowest rank, and two - elements with the same name have equal rank.<div class="example"> + elements with the same name have equal rank.</p> + + <div class="example"> <p>As far as their respective document outlines (their heading and section structures) are concerned, these two snippets are @@ -408,4 +454,9 @@ latter style for its convenience in the face of heavy editing; which is best is purely an issue of preferred authoring style.</p> - </div> \ No newline at end of file + </div> + + + + + \ No newline at end of file Index: spec.html =================================================================== RCS file: /sources/public/html5/spec-author-view/spec.html,v retrieving revision 1.1896 retrieving revision 1.1897 diff -u -d -r1.1896 -r1.1897 --- spec.html 7 Mar 2012 01:01:21 -0000 1.1896 +++ spec.html 13 Mar 2012 19:58:44 -0000 1.1897 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; [...23659 lines suppressed...] + canvas feature was designed.</p> + + <p>Special thanks also to the Microsoft employees who first implemented the event-based drag-and-drop mechanism, <code title="attr-contenteditable"><a href="#attr-contenteditable" id="contenteditable_3">contenteditable</a></code>, and other features first widely deployed by the Windows Internet Explorer - browser.</p><p>Thanks to the many sources that provided inspiration for the - examples used in the specification.</p><p>Thanks also to the Microsoft blogging community for some ideas, + browser.</p> + + + + + <p>Thanks to the many sources that provided inspiration for the + examples used in the specification.</p> + + + <p>Thanks also to the Microsoft blogging community for some ideas, to the attendees of the W3C Workshop on Web Applications and Compound Documents for inspiration, to the #mrt crew, the #mrt.no crew, and the #whatwg crew, and to Pillar and Hedral for their ideas Index: system-state-and-capabilities.html =================================================================== RCS file: /sources/public/html5/spec-author-view/system-state-and-capabilities.html,v retrieving revision 1.27 retrieving revision 1.28 diff -u -d -r1.27 -r1.28 --- system-state-and-capabilities.html 15 Feb 2012 10:14:18 -0000 1.27 +++ system-state-and-capabilities.html 13 Mar 2012 19:58:54 -0000 1.28 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,7 +380,9 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="user-prompts.html">← 6.4 User prompts</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="editing.html">7 User interaction →</a> @@ -352,25 +390,48 @@ <ol><li><a href="system-state-and-capabilities.html#the-navigator-object"><span class="secno">6.5.1 </span>The <code>Navigator</code> object</a> <ol><li><a href="system-state-and-capabilities.html#client-identification"><span class="secno">6.5.1.1 </span>Client identification</a><li><a href="system-state-and-capabilities.html#custom-handlers"><span class="secno">6.5.1.2 </span>Custom scheme and content handlers</a><li><a href="system-state-and-capabilities.html#manually-releasing-the-storage-mutex"><span class="secno">6.5.1.3 </span>Manually releasing the storage mutex</a></ol><li><a href="system-state-and-capabilities.html#the-external-interface"><span class="secno">6.5.2 </span>The <code>External</code> interface</a></ol></ol></ol></div> - <h3 id="system-state-and-capabilities"><span class="secno">6.5 </span>System state and capabilities</h3><h4 id="the-navigator-object"><span class="secno">6.5.1 </span>The <code><a href="#navigator" id="navigator_1">Navigator</a></code> object</h4><pre class="idl">interface <dfn aria-haspopup="true" id="navigator" role="button" tabindex="0">Navigator</dfn> { + <h3 id="system-state-and-capabilities"><span class="secno">6.5 </span>System state and capabilities</h3> + + <h4 id="the-navigator-object"><span class="secno">6.5.1 </span>The <code><a href="#navigator" id="navigator_1">Navigator</a></code> object</h4> + + + + <pre class="idl">interface <dfn aria-haspopup="true" id="navigator" role="button" tabindex="0">Navigator</dfn> { // objects implementing this interface also implement the interfaces given below }; <a href="#navigator" id="navigator_2">Navigator</a> implements <a href="#navigatorid" id="navigatorid_0">NavigatorID</a>; <a href="#navigator" id="navigator_3">Navigator</a> implements <a href="offline.html#navigatoronline" id="navigatoronline_0">NavigatorOnLine</a>; <a href="#navigator" id="navigator_4">Navigator</a> implements <a href="#navigatorcontentutils" id="navigatorcontentutils_0">NavigatorContentUtils</a>; -<a href="#navigator" id="navigator_5">Navigator</a> implements <a href="#navigatorstorageutils" id="navigatorstorageutils_0">NavigatorStorageUtils</a>;</pre><h5 id="client-identification"><span class="secno">6.5.1.1 </span>Client identification</h5><pre class="idl">[NoInterfaceObject] +<a href="#navigator" id="navigator_5">Navigator</a> implements <a href="#navigatorstorageutils" id="navigatorstorageutils_0">NavigatorStorageUtils</a>;</pre> + + + + + + + <h5 id="client-identification"><span class="secno">6.5.1.1 </span>Client identification</h5> + + <pre class="idl">[NoInterfaceObject] interface <dfn aria-haspopup="true" id="navigatorid" role="button" tabindex="0">NavigatorID</dfn> { readonly attribute DOMString <a href="#dom-navigator-appname" title="dom-navigator-appName">appName</a>; readonly attribute DOMString <a href="#dom-navigator-appversion" title="dom-navigator-appVersion">appVersion</a>; readonly attribute DOMString <a href="#dom-navigator-platform" title="dom-navigator-platform">platform</a>; readonly attribute DOMString <a href="#dom-navigator-useragent" title="dom-navigator-userAgent">userAgent</a>; -};</pre><p>In certain cases, despite the best efforts of the entire +};</pre> + + <p>In certain cases, despite the best efforts of the entire industry, Web browsers have bugs and limitations that Web authors - are forced to work around.<p>This section defines a collection of attributes that can be used + are forced to work around.</p> + + <p>This section defines a collection of attributes that can be used to determine, from script, the kind of user agent in use, in order - to work around these issues.<p>Client detection should always be limited to detecting known + to work around these issues.</p> + + <p>Client detection should always be limited to detecting known current versions; future versions and unknown versions should always - be assumed to be fully compliant.<dl class="domintro"><dt><var title="">window</var> . <code title="dom-navigator"><a href="offline.html#dom-navigator">navigator</a></code> . <code id="dom-navigator-appname" title="dom-navigator-appName"><a href="#dom-navigator-appname">appName</a></code></dt> + be assumed to be fully compliant.</p> + + <dl class="domintro"><dt><var title="">window</var> . <code title="dom-navigator"><a href="offline.html#dom-navigator">navigator</a></code> . <code id="dom-navigator-appname" title="dom-navigator-appName"><a href="#dom-navigator-appname">appName</a></code></dt> <dd> <p>Returns the name of the browser.</p> </dd> @@ -390,7 +451,9 @@ <p>Returns the complete User-Agent header.</p> </dd> - </dl><h5 id="custom-handlers"><span class="secno">6.5.1.2 </span>Custom scheme and content handlers</h5><pre class="idl">[NoInterfaceObject] + </dl><h5 id="custom-handlers"><span class="secno">6.5.1.2 </span>Custom scheme and content handlers</h5> + + <pre class="idl">[NoInterfaceObject] interface <dfn aria-haspopup="true" id="navigatorcontentutils" role="button" tabindex="0">NavigatorContentUtils</dfn> { // content handler registration void <a href="#dom-navigator-registerprotocolhandler" id="dom-navigator-registerprotocolhandler_0" title="dom-navigator-registerProtocolHandler">registerProtocolHandler</a>(DOMString scheme, DOMString url, DOMString title); @@ -399,7 +462,9 @@ DOMString <a href="#dom-navigator-iscontenthandlerregistered" title="dom-navigator-isContentHandlerRegistered">isContentHandlerRegistered</a>(DOMString mimeType, DOMString url); void <a href="#dom-navigator-unregisterprotocolhandler" title="dom-navigator-unregisterProtocolHandler">unregisterProtocolHandler</a>(DOMString scheme, DOMString url); void <a href="#dom-navigator-unregistercontenthandler" title="dom-navigator-unregisterContentHandler">unregisterContentHandler</a>(DOMString mimeType, DOMString url); -};</pre><p>The <dfn aria-haspopup="true" id="dom-navigator-registerprotocolhandler" role="button" tabindex="0"><code>registerProtocolHandler()</code></dfn> +};</pre> + + <p>The <dfn aria-haspopup="true" id="dom-navigator-registerprotocolhandler" role="button" tabindex="0"><code>registerProtocolHandler()</code></dfn> method allows Web sites to register themselves as possible handlers for particular schemes. For example, an online telephone messaging service could register itself as a handler of the <code>sms:</code> @@ -412,7 +477,9 @@ no native application capable of handling vCards, his Web browser can instead suggest he use that site to view contact information stored on vCards that he opens. <a href="references.html#refsRFC5724">[RFC5724]</a> - <a href="references.html#refsRFC6350">RFC6350</a><dl class="domintro"><dt><var title="">window</var> . <code title="dom-navigator"><a href="offline.html#dom-navigator">navigator</a></code> . <code title="dom-navigator-registerProtocolHandler"><a href="#dom-navigator-registerprotocolhandler" id="registerprotocolhandler">registerProtocolHandler</a></code>(<var title="">scheme</var>, <var title="">url</var>, <var title="">title</var>)</dt> + <a href="references.html#refsRFC6350">RFC6350</a></p> + + <dl class="domintro"><dt><var title="">window</var> . <code title="dom-navigator"><a href="offline.html#dom-navigator">navigator</a></code> . <code title="dom-navigator-registerProtocolHandler"><a href="#dom-navigator-registerprotocolhandler" id="registerprotocolhandler">registerProtocolHandler</a></code>(<var title="">scheme</var>, <var title="">url</var>, <var title="">title</var>)</dt> <dt><var title="">window</var> . <code title="dom-navigator"><a href="offline.html#dom-navigator">navigator</a></code> . <code title="dom-navigator-registerContentHandler"><a href="#dom-navigator-registercontenthandler" id="registercontenthandler">registerContentHandler</a></code>(<var title="">mimeType</var>, <var title="">url</var>, <var title="">title</var>)</dt> <dd> @@ -434,7 +501,9 @@ </dl><p>In addition to the registration methods, there are also methods for determining if particular handlers have been registered, and for - unregistering handlers.<dl class="domintro"><dt><var title="">state</var> = <var title="">window</var> . <code title="dom-navigator"><a href="offline.html#dom-navigator">navigator</a></code> . <code id="dom-navigator-isprotocolhandlerregistered" title="dom-navigator-isProtocolHandlerRegistered"><a href="#dom-navigator-isprotocolhandlerregistered">isProtocolHandlerRegistered</a></code>(<var title="">scheme</var>, <var title="">url</var>)</dt> + unregistering handlers.</p> + + <dl class="domintro"><dt><var title="">state</var> = <var title="">window</var> . <code title="dom-navigator"><a href="offline.html#dom-navigator">navigator</a></code> . <code id="dom-navigator-isprotocolhandlerregistered" title="dom-navigator-isProtocolHandlerRegistered"><a href="#dom-navigator-isprotocolhandlerregistered">isProtocolHandlerRegistered</a></code>(<var title="">scheme</var>, <var title="">url</var>)</dt> <dt><var title="">state</var> = <var title="">window</var> . <code title="dom-navigator"><a href="offline.html#dom-navigator">navigator</a></code> . <code id="dom-navigator-iscontenthandlerregistered" title="dom-navigator-isContentHandlerRegistered"><a href="#dom-navigator-iscontenthandlerregistered">isContentHandlerRegistered</a></code>(<var title="">mimeType</var>, <var title="">url</var>)</dt> <dd> @@ -469,10 +538,14 @@ </dd> - </dl><h5 id="manually-releasing-the-storage-mutex"><span class="secno">6.5.1.3 </span>Manually releasing the storage mutex</h5><pre class="idl">[NoInterfaceObject] + </dl><h5 id="manually-releasing-the-storage-mutex"><span class="secno">6.5.1.3 </span>Manually releasing the storage mutex</h5> + + <pre class="idl">[NoInterfaceObject] interface <dfn aria-haspopup="true" id="navigatorstorageutils" role="button" tabindex="0">NavigatorStorageUtils</dfn> { void <a href="#dom-navigator-yieldforstorageupdates" title="dom-navigator-yieldForStorageUpdates">yieldForStorageUpdates</a>(); -};</pre><dl class="domintro"><dt><var title="">window</var> . <code title="dom-navigator"><a href="offline.html#dom-navigator">navigator</a></code> . <code id="dom-navigator-yieldforstorageupdates" title="dom-navigator-yieldForStorageUpdates"><a href="#dom-navigator-yieldforstorageupdates">yieldForStorageUpdates</a></code>()</dt> +};</pre> + + <dl class="domintro"><dt><var title="">window</var> . <code title="dom-navigator"><a href="offline.html#dom-navigator">navigator</a></code> . <code id="dom-navigator-yieldforstorageupdates" title="dom-navigator-yieldForStorageUpdates"><a href="#dom-navigator-yieldforstorageupdates">yieldForStorageUpdates</a></code>()</dt> <dd> @@ -500,14 +573,20 @@ </dd> </dl><h4 id="the-external-interface"><span class="secno">6.5.2 </span>The <code><a href="#external" id="external_3">External</a></code> interface</h4> + + <p>The <dfn aria-haspopup="true" id="dom-external" role="button" tabindex="0"><code>external</code></dfn> attribute of the <code><a href="browsers.html#window" id="window_27">Window</a></code> interface must return an instance of the <code><a href="#external" id="external_4">External</a></code> interface. The same object must be returned each time.</p> -<pre class="idl">interface <dfn aria-haspopup="true" id="external" role="button" tabindex="0">External</dfn> { + + + <pre class="idl">interface <dfn aria-haspopup="true" id="external" role="button" tabindex="0">External</dfn> { void <a href="#dom-external-addsearchprovider" title="dom-external-AddSearchProvider">AddSearchProvider</a>(DOMString engineURL); unsigned long <a href="#dom-external-issearchproviderinstalled" title="dom-external-IsSearchProviderInstalled">IsSearchProviderInstalled</a>(DOMString engineURL); -};</pre><dl class="domintro"><dt><var title="">window</var> . <code title="dom-external"><a href="#dom-external" id="external_0">external</a></code> . <code id="dom-external-addsearchprovider" title="dom-external-AddSearchProvider"><a href="#dom-external-addsearchprovider">AddSearchProvider</a></code>( <var title="">url</var> )</dt> +};</pre> + + <dl class="domintro"><dt><var title="">window</var> . <code title="dom-external"><a href="#dom-external" id="external_0">external</a></code> . <code id="dom-external-addsearchprovider" title="dom-external-AddSearchProvider"><a href="#dom-external-addsearchprovider">AddSearchProvider</a></code>( <var title="">url</var> )</dt> <dd> <p>Adds the search engine described by the OpenSearch description @@ -537,4 +616,11 @@ </dl><p class="note">Another way of exposing search engines using OpenSearch description documents is using a <code><a href="the-link-element.html#the-link-element" id="link_52">link</a></code> element with the <code title="rel-search"><a href="links.html#link-type-search" id="search_3">search</a></code> link - type. \ No newline at end of file + type.</p> + + + + + + + \ No newline at end of file Index: origin-0.html =================================================================== RCS file: /sources/public/html5/spec-author-view/origin-0.html,v retrieving revision 1.550 retrieving revision 1.551 diff -u -d -r1.550 -r1.551 --- origin-0.html 15 Feb 2012 10:14:12 -0000 1.550 +++ origin-0.html 13 Mar 2012 19:58:44 -0000 1.551 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,20 +380,35 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="browsers.html">← 5 Loading Web pages</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="history.html">5.4 Session history and navigation →</a> <ol class="toc"><li><ol><li><a href="origin-0.html#origin-0"><span class="secno">5.3 </span>Origin</a> <ol><li><a href="origin-0.html#relaxing-the-same-origin-restriction"><span class="secno">5.3.1 </span>Relaxing the same-origin restriction</a></ol></ol></ol></div> - <h3 id="origin-0"><span class="secno">5.3 </span>Origin</h3><p>The <dfn aria-haspopup="true" id="origin" role="button" tabindex="0">origin</dfn> of a resource and the <dfn aria-haspopup="true" id="effective-script-origin" role="button" tabindex="0">effective script + <h3 id="origin-0"><span class="secno">5.3 </span>Origin</h3> + + + <p>The <dfn aria-haspopup="true" id="origin" role="button" tabindex="0">origin</dfn> of a resource and the <dfn aria-haspopup="true" id="effective-script-origin" role="button" tabindex="0">effective script origin</dfn> of a resource are both either opaque identifiers or tuples consisting of a scheme component, a host component, a port - component, and optionally extra data.<p class="note">The extra data could include the certificate of the + component, and optionally extra data.</p> + + <p class="note">The extra data could include the certificate of the site when using encrypted connections, to ensure that if the site's secure certificate changes, the origin is considered to change as - well.<h4 id="relaxing-the-same-origin-restriction"><span class="secno">5.3.1 </span>Relaxing the same-origin restriction</h4><dl class="domintro"><dt><var title="">document</var> . <code id="dom-document-domain" title="dom-document-domain"><a href="#dom-document-domain">domain</a></code> [ = <var title="">domain</var> ]</dt> + well.</p> + + + + + + <h4 id="relaxing-the-same-origin-restriction"><span class="secno">5.3.1 </span>Relaxing the same-origin restriction</h4> + + <dl class="domintro"><dt><var title="">document</var> . <code id="dom-document-domain" title="dom-document-domain"><a href="#dom-document-domain">domain</a></code> [ = <var title="">domain</var> ]</dt> <dd> @@ -372,10 +423,16 @@ </dl><p class="note">The <code title="dom-document-domain"><a href="#dom-document-domain">domain</a></code> attribute is used to enable pages on different hosts of a domain to - access each others' DOMs.<p class="warning">Do not use the <code title="dom-document-domain"><a href="#dom-document-domain">document.domain</a></code> attribute when + access each others' DOMs.</p> + + <p class="warning">Do not use the <code title="dom-document-domain"><a href="#dom-document-domain">document.domain</a></code> attribute when using shared hosting. If an untrusted third party is able to host an HTTP server at the same IP address but on a different port, then the same-origin protection that normally protects two different sites on the same host will fail, as the ports are ignored when comparing origins after the <code title="dom-document-domain"><a href="#dom-document-domain">document.domain</a></code> attribute has - been used. \ No newline at end of file + been used.</p> + + + + \ No newline at end of file Index: media-elements.html =================================================================== RCS file: /sources/public/html5/spec-author-view/media-elements.html,v retrieving revision 1.62 retrieving revision 1.63 diff -u -d -r1.62 -r1.63 --- media-elements.html 22 Feb 2012 20:59:33 -0000 1.62 +++ media-elements.html 13 Mar 2012 19:58:43 -0000 1.63 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,7 +380,9 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-track-element.html">← 4.8.9 The track element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-canvas-element.html">4.8.11 The canvas element →</a> @@ -354,9 +392,13 @@ <ol><li><a href="media-elements.html#introduction-0"><span class="secno">4.8.10.11.1 </span>Introduction</a><li><a href="media-elements.html#media-controllers"><span class="secno">4.8.10.11.2 </span>Media controllers</a><li><a href="media-elements.html#assigning-a-media-controller-declaratively"><span class="secno">4.8.10.11.3 </span>Assigning a media controller declaratively</a></ol><li><a href="media-elements.html#timed-text-tracks"><span class="secno">4.8.10.12 </span>Timed text tracks</a> <ol><li><a href="media-elements.html#text-track-model"><span class="secno">4.8.10.12.1 </span>Text track model</a><li><a href="media-elements.html#sourcing-in-band-text-tracks"><span class="secno">4.8.10.12.2 </span>Sourcing in-band text tracks</a><li><a href="media-elements.html#text-track-api"><span class="secno">4.8.10.12.3 </span>Text track API</a><li><a href="media-elements.html#text-tracks-describing-chapters"><span class="secno">4.8.10.12.4 </span>Text tracks describing chapters</a></ol><li><a href="media-elements.html#user-interface"><span class="secno">4.8.10.13 </span>User interface</a><li><a href="media-elements.html#time-ranges"><span class="secno">4.8.10.14 </span>Time ranges</a><li><a href="media-elements.html#event-definitions"><span class="secno">4.8.10.15 </span>Event definitions</a><li><a href="media-elements.html#mediaevents"><span class="secno">4.8.10.16 </span>Event summary</a><li><a href="media-elements.html#best-practices-for-authors-using-media-elements"><span class="secno">.8.10.17 </span>Best practices for authors using media elements</a></ol></ol></ol></ol></div> - <h4 id="media-elements"><span class="secno">4.8.10 </span>Media elements</h4><p><dfn aria-haspopup="true" id="media-element" role="button" tabindex="0">Media elements</dfn> + <h4 id="media-elements"><span class="secno">4.8.10 </span>Media elements</h4> + + <p><dfn aria-haspopup="true" id="media-element" role="button" tabindex="0">Media elements</dfn> (<code><a href="the-audio-element.html#the-audio-element" id="audio_15">audio</a></code> and <code><a href="the-video-element.html#the-video-element" id="video_29">video</a></code>, in this specification) - implement the following interface:<pre class="idl">interface <dfn aria-haspopup="true" id="htmlmediaelement" role="button" tabindex="0">HTMLMediaElement</dfn> : <a href="elements.html#htmlelement" id="htmlelement_71">HTMLElement</a> { + implement the following interface:</p> + + <pre class="idl">interface <dfn aria-haspopup="true" id="htmlmediaelement" role="button" tabindex="0">HTMLMediaElement</dfn> : <a href="elements.html#htmlelement" id="htmlelement_71">HTMLElement</a> { // error state readonly attribute <a href="#mediaerror" id="mediaerror_0">MediaError</a>? <a href="#dom-media-error" title="dom-media-error">error</a>; @@ -415,11 +457,19 @@ readonly attribute <a href="#videotracklist" id="videotracklist_0">VideoTrackList</a> <a href="#dom-media-videotracks" title="dom-media-videoTracks">videoTracks</a>; readonly attribute <a href="#texttracklist" id="texttracklist_0">TextTrackList</a> <a class="full-spec-link" href="http://dev.w3.org/html5/spec/media-elements.html#dom-media-texttracks" title='Read about this "textTracks" reference in the full HTML5 spec.'>textTracks</a>; <a href="#texttrack" id="texttrack_2">TextTrack</a> <a href="#dom-media-addtexttrack" title="dom-media-addTextTrack">addTextTrack</a>(DOMString kind, optional DOMString label, optional DOMString language); -};</pre><p>The <dfn aria-haspopup="true" id="media-element-attributes" role="button" tabindex="0">media element attributes</dfn>, <code title="attr-media-src"><a href="#attr-media-src" id="src_41">src</a></code>, <code title="attr-media-crossorigin"><a href="#attr-media-crossorigin" id="crossorigin_4">crossorigin</a></code>, <code title="attr-media-preload"><a href="#attr-media-preload" id="preload_3">preload</a></code>, <code title="attr-media-autoplay"><a href="#attr-media-autoplay" id="autoplay_3">autoplay</a></code>, +};</pre> + + <p>The <dfn aria-haspopup="true" id="media-element-attributes" role="button" tabindex="0">media element attributes</dfn>, <code title="attr-media-src"><a href="#attr-media-src" id="src_41">src</a></code>, <code title="attr-media-crossorigin"><a href="#attr-media-crossorigin" id="crossorigin_4">crossorigin</a></code>, <code title="attr-media-preload"><a href="#attr-media-preload" id="preload_3">preload</a></code>, <code title="attr-media-autoplay"><a href="#attr-media-autoplay" id="autoplay_3">autoplay</a></code>, <code title="attr-media-mediagroup"><a href="#attr-media-mediagroup" id="mediagroup_4">mediagroup</a></code>, <code title="attr-media-loop"><a href="#attr-media-loop" id="loop_3">loop</a></code>, <code title="attr-media-muted"><a href="#attr-media-muted" id="muted_3">muted</a></code>, and <code title="attr-media-controls"><a href="#attr-media-controls" id="controls_9">controls</a></code>, apply to all <a href="#media-element" id="media-element_13" title="media element">media elements</a>. They are defined in - this section.<p><a href="#media-element" id="media-element_14" title="media element">Media elements</a> are used to + this section.</p> + + + + + + <p><a href="#media-element" id="media-element_14" title="media element">Media elements</a> are used to present audio data, or video and audio data, to the user. This is referred to as <dfn aria-haspopup="true" id="media-data" role="button" tabindex="0">media data</dfn> in this section, since this section applies equally to <a href="#media-element" id="media-element_15" title="media element">media @@ -429,6 +479,8 @@ set of media data, e.g. the complete video file, or complete audio file. + </p> + <p>A <a href="#media-resource" id="media-resource_10">media resource</a> can have multiple audio and video tracks. For the purposes of a <a href="#media-element" id="media-element_16">media element</a>, the video data of the <a href="#media-resource" id="media-resource_11">media resource</a> is only that of the @@ -436,11 +488,21 @@ audio data of the <a href="#media-resource" id="media-resource_12">media resource</a> is the result of mixing all the currently enabled tracks (if any) given by the element's <code title="dom-media-audioTracks"><a href="#dom-media-audiotracks">audioTracks</a></code> - attribute.<p class="note">Both <code><a href="the-audio-element.html#the-audio-element" id="audio_16">audio</a></code> and <code><a href="the-video-element.html#the-video-element" id="video_30">video</a></code> + attribute.</p> + + <p class="note">Both <code><a href="the-audio-element.html#the-audio-element" id="audio_16">audio</a></code> and <code><a href="the-video-element.html#the-video-element" id="video_30">video</a></code> elements can be used for both audio and video. The main difference between the two is simply that the <code><a href="the-audio-element.html#the-audio-element" id="audio_17">audio</a></code> element has no playback area for visual content (such as video or captions), - whereas the <code><a href="the-video-element.html#the-video-element" id="video_31">video</a></code> element does.<h5 id="error-codes"><span class="secno">4.8.10.1 </span>Error codes</h5><dl class="domintro"><dt><var title="">media</var> . <code id="dom-media-error" title="dom-media-error"><a href="#dom-media-error">error</a></code></dt> + whereas the <code><a href="the-video-element.html#the-video-element" id="video_31">video</a></code> element does.</p> + + + + + + <h5 id="error-codes"><span class="secno">4.8.10.1 </span>Error codes</h5> + + <dl class="domintro"><dt><var title="">media</var> . <code id="dom-media-error" title="dom-media-error"><a href="#dom-media-error">error</a></code></dt> <dd> @@ -457,7 +519,9 @@ const unsigned short <a href="#dom-mediaerror-media_err_decode" id="dom-mediaerror-media_err_decode_0" title="dom-MediaError-MEDIA_ERR_DECODE">MEDIA_ERR_DECODE</a> = 3; const unsigned short <a href="#dom-mediaerror-media_err_src_not_supported" id="dom-mediaerror-media_err_src_not_supported_0" title="dom-MediaError-MEDIA_ERR_SRC_NOT_SUPPORTED">MEDIA_ERR_SRC_NOT_SUPPORTED</a> = 4; readonly attribute unsigned short <a href="#dom-mediaerror-code" title="dom-MediaError-code">code</a>; -};</pre><dl class="domintro"><dt><var title="">media</var> . <code title="dom-media-error"><a href="#dom-media-error">error</a></code> . <code id="dom-mediaerror-code" title="dom-MediaError-code"><a href="#dom-mediaerror-code">code</a></code></dt> +};</pre> + + <dl class="domintro"><dt><var title="">media</var> . <code title="dom-media-error"><a href="#dom-media-error">error</a></code> . <code id="dom-mediaerror-code" title="dom-MediaError-code"><a href="#dom-mediaerror-code">code</a></code></dt> <dd> @@ -486,13 +550,20 @@ <dd>The <a href="#media-resource" id="media-resource_16">media resource</a> indicated by the <code title="attr-media-src"><a href="#attr-media-src" id="src_42">src</a></code> attribute was not suitable.</dd> - </dl><h5 id="location-of-the-media-resource"><span class="secno">4.8.10.2 </span>Location of the media resource</h5><p>The <dfn aria-haspopup="true" id="attr-media-src" role="button" tabindex="0"><code>src</code></dfn> content + </dl><h5 id="location-of-the-media-resource"><span class="secno">4.8.10.2 </span>Location of the media resource</h5> + + <p>The <dfn aria-haspopup="true" id="attr-media-src" role="button" tabindex="0"><code>src</code></dfn> content attribute on <a href="#media-element" id="media-element_17" 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-potentially-surrounded-by-spaces" id="valid-non-empty-url-potentially-surrounded-by-spaces_10">valid non-empty - URL potentially surrounded by spaces</a>.<p>The <dfn aria-haspopup="true" id="attr-media-crossorigin" role="button" tabindex="0"><code>crossorigin</code></dfn> + URL potentially surrounded by spaces</a>.</p> + + + <p>The <dfn aria-haspopup="true" id="attr-media-crossorigin" role="button" tabindex="0"><code>crossorigin</code></dfn> content attribute on <a href="#media-element" id="media-element_18" title="media element">media elements</a> is a <a href="urls.html#cors-settings-attribute" id="cors-settings-attribute_1">CORS settings attribute</a>.</p> + + <p>The <dfn aria-haspopup="true" id="dom-media-src" role="button" tabindex="0"><code>src</code></dfn> IDL attribute on <a href="#media-element" id="media-element_19" title="media element">media elements</a> must <a href="common-dom-interfaces.html#reflect" id="reflect_37">reflect</a> the content attribute of the same name.</p> @@ -500,7 +571,9 @@ <p>The <dfn aria-haspopup="true" id="dom-media-crossorigin" role="button" tabindex="0"><code>crossOrigin</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_38">reflect</a> the <code title="attr-media-crossorigin"><a href="#attr-media-crossorigin" id="crossorigin_5">crossorigin</a></code> content attribute.</p> -<dl class="domintro"><dt><var title="">media</var> . <code id="dom-media-currentsrc" title="dom-media-currentSrc"><a href="#dom-media-currentsrc">currentSrc</a></code></dt> + + + <dl class="domintro"><dt><var title="">media</var> . <code id="dom-media-currentsrc" title="dom-media-currentSrc"><a href="#dom-media-currentsrc">currentSrc</a></code></dt> <dd> @@ -513,26 +586,40 @@ </dl><p class="note">There are two ways to specify a <a href="#media-resource" id="media-resource_19">media resource</a>, the <code title="attr-media-src"><a href="#attr-media-src" id="src_43">src</a></code> attribute, or <code><a href="the-source-element.html#the-source-element" id="source_8">source</a></code> elements. The attribute overrides - the elements.<h5 id="mime-types"><span class="secno">4.8.10.3 </span>MIME types</h5><p>A <a href="#media-resource" id="media-resource_20">media resource</a> can be described in terms of its + the elements.</p> + + + + <h5 id="mime-types"><span class="secno">4.8.10.3 </span>MIME types</h5> + + <p>A <a href="#media-resource" id="media-resource_20">media resource</a> can be described in terms of its <em>type</em>, specifically a <a href="infrastructure.html#mime-type" id="mime-type_7">MIME type</a>, in some cases with a <code title="">codecs</code> parameter. (Whether the <code title="">codecs</code> parameter is allowed or not depends on the - MIME type.) <a href="references.html#refsRFC4281">[RFC4281]</a><p>Types are usually somewhat incomplete descriptions; for example + MIME type.) <a href="references.html#refsRFC4281">[RFC4281]</a></p> + + <p>Types are usually somewhat incomplete descriptions; for example "<code title="">video/mpeg</code>" doesn't say anything except what the container type is, and even a type like "<code title="">video/mp4; codecs="avc1.42E01E, mp4a.40.2"</code>" doesn't include information like the actual bitrate (only the maximum bitrate). Thus, given a type, a user agent can often only know whether it <em>might</em> be able to play media of that type (with varying levels of confidence), or whether - it definitely <em>cannot</em> play media of that type.<p><dfn aria-haspopup="true" id="a-type-that-the-user-agent-knows-it-cannot-render" role="button" tabindex="0">A type that the user agent knows it cannot render</dfn> is + it definitely <em>cannot</em> play media of that type.</p> + + <p><dfn aria-haspopup="true" id="a-type-that-the-user-agent-knows-it-cannot-render" role="button" tabindex="0">A type that the user agent knows it cannot render</dfn> is one that describes a resource that the user agent definitely does not support, for example because it doesn't recognize the container - type, or it doesn't support the listed codecs.<p>The <a href="infrastructure.html#mime-type" id="mime-type_8">MIME type</a> + type, or it doesn't support the listed codecs.</p> + + <p>The <a href="infrastructure.html#mime-type" id="mime-type_8">MIME type</a> "<code>application/octet-stream</code>" with no parameters is never <a href="#a-type-that-the-user-agent-knows-it-cannot-render" id="a-type-that-the-user-agent-knows-it-cannot-render_0">a type that the user agent knows it cannot render</a>. User agents must treat that type as equivalent to the lack of any explicit <a class="full-spec-link" href="http://dev.w3.org/html5/spec/urls.html#content-type" title='Read about this "Content-Type metadata" reference in the full HTML5 spec.'>Content-Type metadata</a> when it is used to label a potential <a href="#media-resource" id="media-resource_21">media - resource</a>.<p class="note"> + resource</a>.</p> + + <p class="note"> "<code>application/octet-stream</code>" is special-cased here; if any parameter appears with it, it should @@ -544,6 +631,8 @@ + </p> + <dl class="domintro"><dt><var title="">media</var> . <code id="dom-navigator-canplaytype" title="dom-navigator-canPlayType"><a href="#dom-navigator-canplaytype">canPlayType</a></code>(<var title="">type</var>)</dt> <dd> @@ -585,10 +674,17 @@ } </script></pre> - </div><p class="note">The <code title="attr-source-type"><a href="the-source-element.html#attr-source-type" id="type_30">type</a></code> + </div> + + <p class="note">The <code title="attr-source-type"><a href="the-source-element.html#attr-source-type" id="type_30">type</a></code> attribute of the <code><a href="the-source-element.html#the-source-element" id="source_9">source</a></code> element allows the user agent to avoid downloading resources that use formats it cannot - render.<h5 id="network-states"><span class="secno">4.8.10.4 </span>Network states</h5><dl class="domintro"><dt><var title="">media</var> . <code id="dom-media-networkstate" title="dom-media-networkState"><a href="#dom-media-networkstate">networkState</a></code></dt> + render.</p> + + + <h5 id="network-states"><span class="secno">4.8.10.4 </span>Network states</h5> + + <dl class="domintro"><dt><var title="">media</var> . <code id="dom-media-networkstate" title="dom-media-networkState"><a href="#dom-media-networkstate">networkState</a></code></dt> <dd> @@ -615,7 +711,9 @@ <dd>The element has not yet found a <a href="#media-resource" id="media-resource_23" title="media resource">resource</a> to use.</dd> - </dl><h5 id="loading-the-media-resource"><span class="secno">4.8.10.5 </span>Loading the media resource</h5><dl class="domintro"><dt><var title="">media</var> . <code id="dom-media-load" title="dom-media-load"><a href="#dom-media-load">load</a></code>()</dt> + </dl><h5 id="loading-the-media-resource"><span class="secno">4.8.10.5 </span>Loading the media resource</h5> + + <dl class="domintro"><dt><var title="">media</var> . <code id="dom-media-load" title="dom-media-load"><a href="#dom-media-load">load</a></code>()</dt> <dd> @@ -631,7 +729,9 @@ second column on the same row as the keyword. The attribute can be changed even once the <a href="#media-resource" id="media-resource_25">media resource</a> is being buffered or played; the descriptions in the table below are to be interpreted - with that in mind.<table><thead><tr><th> Keyword + with that in mind.</p> + + <table><thead><tr><th> Keyword <th> State <th> Brief description <tbody><tr><td><dfn aria-haspopup="true" id="attr-media-preload-none" role="button" tabindex="0"><code>none</code></dfn> @@ -649,19 +749,27 @@ attribute's <i>missing value default</i> is user-agent defined, though the <a href="#attr-media-preload-metadata-state" id="attr-media-preload-metadata-state_0" title="attr-media-preload-metadata-state">Metadata</a> state is suggested as a compromise between reducing server load and providing - an optimal user experience.<p class="note">Authors might switch the attribute from "<code title="attr-media-preload-none"><a href="#attr-media-preload-none" id="none">none</a></code>" or "<code title="attr-media-preload-metadata"><a href="#attr-media-preload-metadata" id="metadata_0">metadata</a></code>" to "<code title="attr-media-preload-auto"><a href="#attr-media-preload-auto" id="auto_2">auto</a></code>" dynamically once the + an optimal user experience.</p> + + <p class="note">Authors might switch the attribute from "<code title="attr-media-preload-none"><a href="#attr-media-preload-none" id="none">none</a></code>" or "<code title="attr-media-preload-metadata"><a href="#attr-media-preload-metadata" id="metadata_0">metadata</a></code>" to "<code title="attr-media-preload-auto"><a href="#attr-media-preload-auto" id="auto_2">auto</a></code>" dynamically once the user begins playback. For example, on a page with many videos this might be used to indicate that the many videos are not to be downloaded unless requested, but that once one <em>is</em> requested it is to be downloaded aggressively.</p> + + <p>The <dfn aria-haspopup="true" id="dom-media-preload" role="button" tabindex="0"><code>preload</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_39">reflect</a> the content attribute of the same name, <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-dom-interfaces.html#limited-to-only-known-values" title='Read about this "limited to only known values" reference in the full HTML5 spec.'>limited to only known values</a>.</p> -<p class="note">The <code title="attr-media-autoplay"><a href="#attr-media-autoplay" id="autoplay_4">autoplay</a></code> attribute can override + + + <p class="note">The <code title="attr-media-autoplay"><a href="#attr-media-autoplay" id="autoplay_4">autoplay</a></code> attribute can override the <code title="attr-media-preload"><a href="#attr-media-preload" id="preload_4">preload</a></code> attribute (since if the media plays, it naturally has to buffer first, regardless of the hint given by the <code title="attr-media-preload"><a href="#attr-media-preload" id="preload_5">preload</a></code> attribute). Including - both is not an error, however.<hr><dl class="domintro"><dt><var title="">media</var> . <code id="dom-media-buffered" title="dom-media-buffered"><a href="#dom-media-buffered">buffered</a></code></dt> + both is not an error, however.</p> + + <hr><dl class="domintro"><dt><var title="">media</var> . <code id="dom-media-buffered" title="dom-media-buffered"><a href="#dom-media-buffered">buffered</a></code></dt> <dd> @@ -671,7 +779,9 @@ </dd> - </dl><h5 id="offsets-into-the-media-resource"><span class="secno">4.8.10.6 </span>Offsets into the media resource</h5><dl class="domintro"><dt><var title="">media</var> . <code id="dom-media-duration" title="dom-media-duration"><a href="#dom-media-duration">duration</a></code></dt> + </dl><h5 id="offsets-into-the-media-resource"><span class="secno">4.8.10.6 </span>Offsets into the media resource</h5> + + <dl class="domintro"><dt><var title="">media</var> . <code id="dom-media-duration" title="dom-media-duration"><a href="#dom-media-duration">duration</a></code></dt> <dd> @@ -714,16 +824,28 @@ attribute must return <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#create-a-date-object" title='Read about this "a new Date object" reference in the full HTML5 spec.'>a new <code>Date</code> object</a> representing the current <a class="full-spec-link" href="http://dev.w3.org/html5/spec/media-elements.html#timeline-offset" title='Read about this "timeline offset" reference in the full HTML5 spec.'>timeline offset</a>.</p> -<hr><p>The <dfn aria-haspopup="true" id="attr-media-loop" role="button" tabindex="0"><code>loop</code></dfn> + + + <hr><p>The <dfn aria-haspopup="true" id="attr-media-loop" role="button" tabindex="0"><code>loop</code></dfn> attribute is a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_6">boolean attribute</a> that, if specified, indicates that the <a href="#media-element" id="media-element_21">media element</a> is to seek back to the - start of the <a href="#media-resource" id="media-resource_31">media resource</a> upon reaching the end.<p>The <code title="attr-media-loop"><a href="#attr-media-loop" id="loop_4">loop</a></code> attribute has no + start of the <a href="#media-resource" id="media-resource_31">media resource</a> upon reaching the end.</p> + + <p>The <code title="attr-media-loop"><a href="#attr-media-loop" id="loop_4">loop</a></code> attribute has no effect while the element has a <a class="full-spec-link" href="http://dev.w3.org/html5/spec/media-elements.html#current-media-controller" title='Read about this "current media controller" reference in the full HTML5 spec.'>current media controller</a>.</p> + + <p>The <dfn aria-haspopup="true" id="dom-media-loop" role="button" tabindex="0"><code>loop</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_40">reflect</a> the content attribute of the same name.</p> -<h5 id="ready-states"><span class="secno">4.8.10.7 </span>Ready states</h5><dl class="domintro"><dt><var title="">media</var> . <code id="dom-media-readystate" title="dom-media-readyState"><a href="#dom-media-readystate">readyState</a></code></dt> + + + + + <h5 id="ready-states"><span class="secno">4.8.10.7 </span>Ready states</h5> + + <dl class="domintro"><dt><var title="">media</var> . <code id="dom-media-readystate" title="dom-media-readyState"><a href="#dom-media-readystate">readyState</a></code></dt> <dd> @@ -800,25 +922,43 @@ the current frame) and <code title="dom-media-HAVE_FUTURE_DATA"><a href="#dom-media-have_future_data" id="have_future_data_1">HAVE_FUTURE_DATA</a></code> (at least this frame and the next) can be negligible (in the extreme, only one frame). The only time that distinction really matters is when a page - provides an interface for "frame-by-frame" navigation.<p class="note">It is possible for the ready state of a media + provides an interface for "frame-by-frame" navigation.</p> + + + + <p class="note">It is possible for the ready state of a media element to jump between these states discontinuously. For example, the state of a media element can jump straight from <code title="dom-media-HAVE_METADATA"><a href="#dom-media-have_metadata" id="have_metadata_4">HAVE_METADATA</a></code> to <code title="dom-media-HAVE_ENOUGH_DATA"><a href="#dom-media-have_enough_data" id="have_enough_data">HAVE_ENOUGH_DATA</a></code> without passing through the <code title="dom-media-HAVE_CURRENT_DATA"><a href="#dom-media-have_current_data" id="have_current_data_3">HAVE_CURRENT_DATA</a></code> and <code title="dom-media-HAVE_FUTURE_DATA"><a href="#dom-media-have_future_data" id="have_future_data_2">HAVE_FUTURE_DATA</a></code> - states.<p>The <dfn aria-haspopup="true" id="attr-media-autoplay" role="button" tabindex="0"><code>autoplay</code></dfn> + states.</p> + + + + <p>The <dfn aria-haspopup="true" id="attr-media-autoplay" role="button" tabindex="0"><code>autoplay</code></dfn> attribute is a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_7">boolean attribute</a>. When present, the user agent will automatically begin playback of the <a href="#media-resource" id="media-resource_34">media resource</a> as soon as it can do so without - stopping.<p class="note">Authors are urged to use the <code title="attr-media-autoplay"><a href="#attr-media-autoplay" id="autoplay_5">autoplay</a></code> attribute rather than + stopping.</p> + + <p class="note">Authors are urged to use the <code title="attr-media-autoplay"><a href="#attr-media-autoplay" id="autoplay_5">autoplay</a></code> attribute rather than using script to trigger automatic playback, as this allows the user to override the automatic playback when it is not desired, e.g. when using a screen reader. Authors are also encouraged to consider not using the automatic playback behavior at all, and instead to let the user agent wait for the user to start playback explicitly.</p> + + <p>The <dfn aria-haspopup="true" id="dom-media-autoplay" role="button" tabindex="0"><code>autoplay</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_41">reflect</a> the content attribute of the same name.</p> -<h5 id="playing-the-media-resource"><span class="secno">4.8.10.8 </span>Playing the media resource</h5><dl class="domintro"><dt><var title="">media</var> . <code id="dom-media-paused" title="dom-media-paused"><a href="#dom-media-paused">paused</a></code></dt> + + + + + <h5 id="playing-the-media-resource"><span class="secno">4.8.10.8 </span>Playing the media resource</h5> + + <dl class="domintro"><dt><var title="">media</var> . <code id="dom-media-paused" title="dom-media-paused"><a href="#dom-media-paused">paused</a></code></dt> <dd> @@ -903,7 +1043,9 @@ </dd> - </dl><h5 id="seeking"><span class="secno">4.8.10.9 </span>Seeking</h5><dl class="domintro"><dt><var title="">media</var> . <code id="dom-media-seeking" title="dom-media-seeking"><a href="#dom-media-seeking">seeking</a></code></dt> + </dl><h5 id="seeking"><span class="secno">4.8.10.9 </span>Seeking</h5> + + <dl class="domintro"><dt><var title="">media</var> . <code id="dom-media-seeking" title="dom-media-seeking"><a href="#dom-media-seeking">seeking</a></code></dt> <dd> @@ -921,11 +1063,15 @@ </dd> - </dl><h5 id="media-resources-with-multiple-media-tracks"><span class="secno">4.8.10.10 </span>Media resources with multiple media tracks</h5><p>A <a href="#media-resource" id="media-resource_41">media resource</a> can have multiple embedded audio + </dl><h5 id="media-resources-with-multiple-media-tracks"><span class="secno">4.8.10.10 </span>Media resources with multiple media tracks</h5> + + <p>A <a href="#media-resource" id="media-resource_41">media resource</a> can have multiple embedded audio and video tracks. For example, in addition to the primary video and audio tracks, a <a href="#media-resource" id="media-resource_42">media resource</a> could have foreign-language dubbed dialogues, director's commentaries, audio - descriptions, alternative angles, or sign-language overlays.<dl class="domintro"><dt><var title="">media</var> . <code id="dom-media-audiotracks" title="dom-media-audioTracks"><a href="#dom-media-audiotracks">audioTracks</a></code></dt> + descriptions, alternative angles, or sign-language overlays.</p> + + <dl class="domintro"><dt><var title="">media</var> . <code id="dom-media-audiotracks" title="dom-media-audioTracks"><a href="#dom-media-audiotracks">audioTracks</a></code></dt> <dd> @@ -977,9 +1123,16 @@ } </script></pre> - </div><h6 id="audiotracklist-and-videotracklist-objects"><span class="secno">4.8.10.10.1 </span><code><a href="#audiotracklist" id="audiotracklist_2">AudioTrackList</a></code> and <code><a href="#videotracklist" id="videotracklist_2">VideoTrackList</a></code> objects</h6><p>The <code><a href="#audiotracklist" id="audiotracklist_3">AudioTrackList</a></code> and <code><a href="#videotracklist" id="videotracklist_3">VideoTrackList</a></code> + </div> + + + <h6 id="audiotracklist-and-videotracklist-objects"><span class="secno">4.8.10.10.1 </span><code><a href="#audiotracklist" id="audiotracklist_2">AudioTrackList</a></code> and <code><a href="#videotracklist" id="videotracklist_2">VideoTrackList</a></code> objects</h6> + + <p>The <code><a href="#audiotracklist" id="audiotracklist_3">AudioTrackList</a></code> and <code><a href="#videotracklist" id="videotracklist_3">VideoTrackList</a></code> interfaces are used by attributes defined in the previous - section.<pre class="idl">interface <dfn aria-haspopup="true" id="audiotracklist" role="button" tabindex="0">AudioTrackList</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#eventtarget" title='Read about this "EventTarget" reference in the full HTML5 spec.'>EventTarget</a> { + section.</p> + + <pre class="idl">interface <dfn aria-haspopup="true" id="audiotracklist" role="button" tabindex="0">AudioTrackList</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#eventtarget" title='Read about this "EventTarget" reference in the full HTML5 spec.'>EventTarget</a> { readonly attribute unsigned long <a href="#dom-audiotracklist-length" title="dom-AudioTrackList-length">length</a>; getter <a href="#audiotrack" id="audiotrack_0">AudioTrack</a> (unsigned long index); <a href="#audiotrack" id="audiotrack_1">AudioTrack</a>? <a href="#dom-audiotracklist-gettrackbyid" title="dom-AudioTrackList-getTrackById">getTrackById</a>(DOMString id); @@ -1012,7 +1165,9 @@ readonly attribute DOMString <a href="#dom-videotrack-label" title="dom-VideoTrack-label">label</a>; readonly attribute DOMString <a href="#dom-videotrack-language" title="dom-VideoTrack-language">language</a>; attribute boolean <a href="#dom-videotrack-selected" title="dom-VideoTrack-selected">selected</a>; -};</pre><dl class="domintro"><dt><var title="">media</var> . <code title="dom-media-audioTracks"><a href="#dom-media-audiotracks">audioTracks</a></code> . <code id="dom-audiotracklist-length" title="dom-AudioTrackList-length"><a href="#dom-audiotracklist-length">length</a></code></dt> +};</pre> + + <dl class="domintro"><dt><var title="">media</var> . <code title="dom-media-audioTracks"><a href="#dom-media-audiotracks">audioTracks</a></code> . <code id="dom-audiotracklist-length" title="dom-AudioTrackList-length"><a href="#dom-audiotracklist-length">length</a></code></dt> <dt><var title="">media</var> . <code title="dom-media-videoTracks"><a href="#dom-media-videotracks">videoTracks</a></code> . <code id="dom-videotracklist-length" title="dom-VideoTrackList-length"><a href="#dom-videotracklist-length">length</a></code></dt> <dd> @@ -1156,14 +1311,18 @@ <td>Audio and video. <td>Any other track type, track role, or combination of track roles not described above. - </table><h6 id="selecting-specific-audio-and-video-tracks-declaratively"><span class="secno">4.8.10.10.2 </span>Selecting specific audio and video tracks declaratively</h6><p>The <code title="dom-media-audioTracks"><a href="#dom-media-audiotracks">audioTracks</a></code> and + </table><h6 id="selecting-specific-audio-and-video-tracks-declaratively"><span class="secno">4.8.10.10.2 </span>Selecting specific audio and video tracks declaratively</h6> + + <p>The <code title="dom-media-audioTracks"><a href="#dom-media-audiotracks">audioTracks</a></code> and <code title="dom-media-videoTracks"><a href="#dom-media-videotracks">videoTracks</a></code> attributes allow scripts to select which track should play, but it is also possible to select specific tracks declaratively, by specifying particular tracks in the fragment identifier of the <a href="urls.html#url" id="url_13">URL</a> of the <a href="#media-resource" id="media-resource_45">media resource</a>. The format of the fragment identifier depends on the <a href="infrastructure.html#mime-type" id="mime-type_11">MIME type</a> of the <a href="#media-resource" id="media-resource_46">media - resource</a>. <a href="references.html#refsRFC2046">[RFC2046]</a> <a href="references.html#refsRFC3986">[RFC3986]</a><div class="example"> + resource</a>. <a href="references.html#refsRFC2046">[RFC2046]</a> <a href="references.html#refsRFC3986">[RFC3986]</a></p> + + <div class="example"> <p>In this example, a video that uses a format that supports the <cite>Media Fragments URI</cite> fragment identifier syntax is @@ -1174,26 +1333,46 @@ - </div><h5 id="synchronising-multiple-media-elements"><span class="secno">4.8.10.11 </span>Synchronising multiple media elements</h5><h6 id="introduction-0"><span class="secno">4.8.10.11.1 </span>Introduction</h6><p>Each <a href="#media-element" id="media-element_23">media element</a> can have a + </div> + + + <h5 id="synchronising-multiple-media-elements"><span class="secno">4.8.10.11 </span>Synchronising multiple media elements</h5> + + <h6 id="introduction-0"><span class="secno">4.8.10.11.1 </span>Introduction</h6> + + <p>Each <a href="#media-element" id="media-element_23">media element</a> can have a <code><a href="#mediacontroller" id="mediacontroller_2">MediaController</a></code>. A <code><a href="#mediacontroller" id="mediacontroller_3">MediaController</a></code> is an object that coordinates the playback of multiple <a href="#media-element" id="media-element_24" title="media element">media elements</a>, for instance so that a sign-language interpreter track can be overlaid on a video track, with the two - being kept in sync.<p>By default, a <a href="#media-element" id="media-element_25">media element</a> has no + being kept in sync.</p> + + <p>By default, a <a href="#media-element" id="media-element_25">media element</a> has no <code><a href="#mediacontroller" id="mediacontroller_4">MediaController</a></code>. An implicit <code><a href="#mediacontroller" id="mediacontroller_5">MediaController</a></code> can be assigned using the <code title="attr-media-mediagroup"><a href="#attr-media-mediagroup" id="mediagroup_5">mediagroup</a></code> content attribute. An explicit <code><a href="#mediacontroller" id="mediacontroller_6">MediaController</a></code> can be assigned directly using the <code title="dom-media-controller"><a href="#dom-media-controller">controller</a></code> IDL - attribute.<p><a href="#media-element" id="media-element_26" title="media element">Media elements</a> with a + attribute.</p> + + <p><a href="#media-element" id="media-element_26" title="media element">Media elements</a> with a <code><a href="#mediacontroller" id="mediacontroller_7">MediaController</a></code> are said to be <i>slaved</i> to their controller. The <code><a href="#mediacontroller" id="mediacontroller_8">MediaController</a></code> modifies the playback rate and the playback volume of each of the <a href="#media-element" id="media-element_27" title="media element">media elements</a> slaved to it, and ensures that when any of its slaved <a href="#media-element" id="media-element_28" title="media element">media elements</a> - unexpectedly stall, the others are stopped at the same time.<p>When a <a href="#media-element" id="media-element_29">media element</a> is slaved to a + unexpectedly stall, the others are stopped at the same time.</p> + + <p>When a <a href="#media-element" id="media-element_29">media element</a> is slaved to a <code><a href="#mediacontroller" id="mediacontroller_9">MediaController</a></code>, its playback rate is fixed to that of the other tracks in the same <code><a href="#mediacontroller" id="mediacontroller_10">MediaController</a></code>, and any - looping is disabled.<h6 id="media-controllers"><span class="secno">4.8.10.11.2 </span>Media controllers</h6><pre class="idl">[<a href="#dom-mediacontroller" title="dom-MediaController">Constructor</a>] + looping is disabled.</p> + + + + + <h6 id="media-controllers"><span class="secno">4.8.10.11.2 </span>Media controllers</h6> + + <pre class="idl">[<a href="#dom-mediacontroller" title="dom-MediaController">Constructor</a>] interface <dfn aria-haspopup="true" id="mediacontroller" role="button" tabindex="0">MediaController</dfn> { readonly attribute <a href="#timeranges" id="timeranges_6">TimeRanges</a> <a href="#dom-mediacontroller-buffered" title="dom-MediaController-buffered">buffered</a>; readonly attribute <a href="#timeranges" id="timeranges_7">TimeRanges</a> <a href="#dom-mediacontroller-seekable" title="dom-MediaController-seekable">seekable</a>; @@ -1226,7 +1405,9 @@ [TreatNonCallableAsNull] attribute <a href="webappapis.html#function" id="function_140">Function</a>? <a href="index.html#ix-handler-onpause" title="handler-MediaController-onpause">onpause</a>; [TreatNonCallableAsNull] attribute <a href="webappapis.html#function" id="function_141">Function</a>? <a href="index.html#ix-handler-onratechange" title="handler-MediaController-onratechange">onratechange</a>; [TreatNonCallableAsNull] attribute <a href="webappapis.html#function" id="function_142">Function</a>? <a href="index.html#ix-handler-onvolumechange" title="handler-MediaController-onvolumechange">onvolumechange</a>; -};</pre><dl class="domintro"><dt><var title="">controller</var> = new <code id="dom-mediacontroller" title="dom-MediaController"><a href="#dom-mediacontroller">MediaController</a></code>()</dt> +};</pre> + + <dl class="domintro"><dt><var title="">controller</var> = new <code id="dom-mediacontroller" title="dom-MediaController"><a href="#dom-mediacontroller">MediaController</a></code>()</dt> <dd> @@ -1382,18 +1563,24 @@ </dd> - </dl><h6 id="assigning-a-media-controller-declaratively"><span class="secno">4.8.10.11.3 </span>Assigning a media controller declaratively</h6><p>The <dfn aria-haspopup="true" id="attr-media-mediagroup" role="button" tabindex="0"><code>mediagroup</code></dfn> content + </dl><h6 id="assigning-a-media-controller-declaratively"><span class="secno">4.8.10.11.3 </span>Assigning a media controller declaratively</h6> + + <p>The <dfn aria-haspopup="true" id="attr-media-mediagroup" role="button" tabindex="0"><code>mediagroup</code></dfn> content attribute on <a href="#media-element" id="media-element_36" title="media element">media elements</a> can be used to link multiple <a href="#media-element" id="media-element_37" title="media element">media elements</a> together by implicitly creating a <code><a href="#mediacontroller" id="mediacontroller_14">MediaController</a></code>. The value is text; <a href="#media-element" id="media-element_38" title="media element">media elements</a> with the same value are automatically linked by the user agent.</p> + + <p>The <dfn aria-haspopup="true" id="dom-media-mediagroup" role="button" tabindex="0"><code>mediaGroup</code></dfn> IDL attribute on <a href="#media-element" id="media-element_39" title="media element">media elements</a> must <a href="common-dom-interfaces.html#reflect" id="reflect_42">reflect</a> the <code title="attr-media-mediagroup"><a href="#attr-media-mediagroup" id="mediagroup_7">mediagroup</a></code> content attribute.</p> -<div class="example"> + + + <div class="example"> <p>Multiple <a href="#media-element" id="media-element_40" title="media element">media elements</a> referencing the same <a href="#media-resource" id="media-resource_47">media resource</a> will share a @@ -1420,8 +1607,21 @@ </div> </article></pre> - </div><h5 id="timed-text-tracks"><span class="secno">4.8.10.12 </span>Timed text tracks</h5><h6 id="text-track-model"><span class="secno">4.8.10.12.1 </span>Text track model</h6><p>A <a href="#media-element" id="media-element_41">media element</a> can have a group of associated <dfn aria-haspopup="true" id="text-track" role="button" tabindex="0">text tracks</dfn>, known as the <a href="#media-element" id="media-element_42">media - element</a>'s <dfn aria-haspopup="true" id="list-of-text-tracks" role="button" tabindex="0">list of text tracks</dfn>. The <a href="#text-track" id="text-track_2" title="text track">text tracks</a> are sorted as follows:<ol class="brief"><li>The <a href="#text-track" id="text-track_3" title="text track">text tracks</a> corresponding + </div> + + + + + + + <h5 id="timed-text-tracks"><span class="secno">4.8.10.12 </span>Timed text tracks</h5> + + <h6 id="text-track-model"><span class="secno">4.8.10.12.1 </span>Text track model</h6> + + <p>A <a href="#media-element" id="media-element_41">media element</a> can have a group of associated <dfn aria-haspopup="true" id="text-track" role="button" tabindex="0">text tracks</dfn>, known as the <a href="#media-element" id="media-element_42">media + element</a>'s <dfn aria-haspopup="true" id="list-of-text-tracks" role="button" tabindex="0">list of text tracks</dfn>. The <a href="#text-track" id="text-track_2" title="text track">text tracks</a> are sorted as follows:</p> + + <ol class="brief"><li>The <a href="#text-track" id="text-track_3" title="text track">text tracks</a> corresponding to <code><a href="the-track-element.html#the-track-element" id="track_17">track</a></code> element children of the <a href="#media-element" id="media-element_43">media element</a>, in <a href="infrastructure.html#tree-order" id="tree-order_5">tree order</a>.</li> @@ -1434,7 +1634,9 @@ the <a href="#media-resource" id="media-resource_49">media resource</a>), in the order defined by the <a href="#media-resource" id="media-resource_50">media resource</a>'s format specification.</li> - </ol><p>A <a href="#text-track" id="text-track_6">text track</a> consists of:<dl><dt><dfn aria-haspopup="true" id="text-track-kind" role="button" tabindex="0">The kind of text track</dfn> + </ol><p>A <a href="#text-track" id="text-track_6">text track</a> consists of:</p> + + <dl><dt><dfn aria-haspopup="true" id="text-track-kind" role="button" tabindex="0">The kind of text track</dfn> <dd> @@ -1615,17 +1817,25 @@ </dd> </dl><p>Each <a href="#text-track" id="text-track_12">text track</a> has a corresponding - <code><a href="#texttrack" id="texttrack_3">TextTrack</a></code> object.<p>The <a href="#text-track" id="text-track_13" title="text track">text tracks</a> of a + <code><a href="#texttrack" id="texttrack_3">TextTrack</a></code> object.</p> + + <p>The <a href="#text-track" id="text-track_13" title="text track">text tracks</a> of a <a href="#media-element" id="media-element_44">media element</a> are <dfn aria-haspopup="true" id="the-text-tracks-are-ready" role="button" tabindex="0">ready</dfn> if all the <a href="#text-track" id="text-track_14" title="text track">text tracks</a> whose <a href="#text-track-mode" id="text-track-mode_0" title="text track mode">mode</a> was not in the <a href="#text-track-disabled" id="text-track-disabled_0" title="text track disabled">disabled</a> state when the element's <a class="full-spec-link" href="http://dev.w3.org/html5/spec/media-elements.html#concept-media-load-algorithm" title='Read about this "resource selection algorithm" reference in the full HTML5 spec.'>resource selection algorithm</a> last started now have a <a href="#text-track-readiness-state" id="text-track-readiness-state_2">text track readiness state</a> of <a href="#text-track-loaded" id="text-track-loaded_1" title="text track loaded">loaded</a> or - <a href="#text-track-failed-to-load" id="text-track-failed-to-load_1" title="text track failed to load">failed to load</a>.<hr><p>A <dfn aria-haspopup="true" id="text-track-cue" role="button" tabindex="0">text track cue</dfn> is the unit of time-sensitive data + <a href="#text-track-failed-to-load" id="text-track-failed-to-load_1" title="text track failed to load">failed to load</a>.</p> + + <hr><p>A <dfn aria-haspopup="true" id="text-track-cue" role="button" tabindex="0">text track cue</dfn> is the unit of time-sensitive data in a <a href="#text-track" id="text-track_15">text track</a>, corresponding for instance for subtitles and captions to the text that appears at a particular time - and disappears at another time.<p>Each <a href="#text-track-cue" id="text-track-cue_1">text track cue</a> consists of:<dl><dt><dfn aria-haspopup="true" id="text-track-cue-identifier" role="button" tabindex="0">An identifier</dfn> + and disappears at another time.</p> + + <p>Each <a href="#text-track-cue" id="text-track-cue_1">text track cue</a> consists of:</p> + + <dl><dt><dfn aria-haspopup="true" id="text-track-cue-identifier" role="button" tabindex="0">An identifier</dfn> <dd> <p>An arbitrary string.</p> </dd> @@ -1771,8 +1981,12 @@ cue</a> is associated with a particular <a href="#text-track" id="text-track_20">text track</a>, the association is permanent. A <a href="#text-track-cue" id="text-track-cue_7">text track cue</a>'s in-memory representation can be dynamically changed through this - <code><a href="#texttrackcue" id="texttrackcue_1">TextTrackCue</a></code> API.<p>In addition, each <a href="#text-track-cue" id="text-track-cue_8">text track cue</a> has two pieces of - dynamic information:<dl><dt>The <dfn aria-haspopup="true" id="text-track-cue-active-flag" role="button" tabindex="0">active flag</dfn> + <code><a href="#texttrackcue" id="texttrackcue_1">TextTrackCue</a></code> API.</p> + + <p>In addition, each <a href="#text-track-cue" id="text-track-cue_8">text track cue</a> has two pieces of + dynamic information:</p> + + <dl><dt>The <dfn aria-haspopup="true" id="text-track-cue-active-flag" role="button" tabindex="0">active flag</dfn> <dd> <p>This flag must be initially unset. The flag is used to ensure @@ -1826,14 +2040,36 @@ with identical <a href="#text-track-cue-end-time" id="text-track-cue-end-time_1" title="text track cue end time">end times</a> must be sorted in the order they were created (so e.g. for cues from a <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#webvtt" title='Read about this "WebVTT" reference in the full HTML5 spec.'>WebVTT</a> file, that would be the - order in which the cues were listed in the file). <a href="references.html#refsWEBVTT">[WEBVTT]</a><h6 id="sourcing-in-band-text-tracks"><span class="secno">4.8.10.12.2 </span>Sourcing in-band text tracks</h6><p>A <dfn aria-haspopup="true" id="media-resource-specific-text-track" role="button" tabindex="0">media-resource-specific text track</dfn> is a <a href="#text-track" id="text-track_29">text + order in which the cues were listed in the file). <a href="references.html#refsWEBVTT">[WEBVTT]</a></p> + + + <h6 id="sourcing-in-band-text-tracks"><span class="secno">4.8.10.12.2 </span>Sourcing in-band text tracks</h6> + + <p>A <dfn aria-haspopup="true" id="media-resource-specific-text-track" role="button" tabindex="0">media-resource-specific text track</dfn> is a <a href="#text-track" id="text-track_29">text track</a> that corresponds to data found in the <a href="#media-resource" id="media-resource_53">media - resource</a>.<h6 id="text-track-api"><span class="secno">4.8.10.12.3 </span>Text track API</h6><pre class="idl">interface <dfn aria-haspopup="true" id="texttracklist" role="button" tabindex="0">TextTrackList</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#eventtarget" title='Read about this "EventTarget" reference in the full HTML5 spec.'>EventTarget</a> { + resource</a>.</p> + + + + + + + + + + + + + <h6 id="text-track-api"><span class="secno">4.8.10.12.3 </span>Text track API</h6> + + <pre class="idl">interface <dfn aria-haspopup="true" id="texttracklist" role="button" tabindex="0">TextTrackList</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#eventtarget" title='Read about this "EventTarget" reference in the full HTML5 spec.'>EventTarget</a> { readonly attribute unsigned long <a class="full-spec-link" href="http://dev.w3.org/html5/spec/media-elements.html#dom-texttracklist-length" title='Read about this "length" reference in the full HTML5 spec.'>length</a>; getter <a href="#texttrack" id="texttrack_4">TextTrack</a> (unsigned long index); [TreatNonCallableAsNull] attribute <a href="webappapis.html#function" id="function_143">Function</a>? <a class="full-spec-link" href="http://dev.w3.org/html5/spec/.html#ix-handler-onaddtrack" title='Read about this "onaddtrack" reference in the full HTML5 spec.'>onaddtrack</a>; -};</pre><dl class="domintro"><dt><var title="">media</var> . <code title="dom-media-textTracks"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/media-elements.html#dom-media-texttracks" title='Read about this "textTracks" reference in the full HTML5 spec.'>textTracks</a></code> . <code title="">length</code></dt> +};</pre> + + <dl class="domintro"><dt><var title="">media</var> . <code title="dom-media-textTracks"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/media-elements.html#dom-media-texttracks" title='Read about this "textTracks" reference in the full HTML5 spec.'>textTracks</a></code> . <code title="">length</code></dt> <dd> <p>Returns the number of <a href="#text-track" id="text-track_30" title="text track">text tracks</a> associated with the <a href="#media-element" id="media-element_50">media element</a> (e.g. from <code><a href="the-track-element.html#the-track-element" id="track_22">track</a></code> elements). This is the number of <a href="#text-track" id="text-track_31" title="text track">text tracks</a> in the <a href="#media-element" id="media-element_51">media element</a>'s <a href="#list-of-text-tracks" id="list-of-text-tracks_3">list of text tracks</a>.</p> </dd> @@ -1865,7 +2101,9 @@ void <a href="#dom-texttrack-removecue" title="dom-TextTrack-removeCue">removeCue</a>(<a href="#texttrackcue" id="texttrackcue_3">TextTrackCue</a> cue); [TreatNonCallableAsNull] attribute <a href="webappapis.html#function" id="function_144">Function</a>? <a href="index.html#ix-handler-oncuechange" title="handler-TextTrack-oncuechange">oncuechange</a>; -};</pre><dl class="domintro"><dt><var title="">textTrack</var> . <code id="dom-texttrack-kind" title="dom-TextTrack-kind"><a href="#dom-texttrack-kind">kind</a></code></dt> +};</pre> + + <dl class="domintro"><dt><var title="">textTrack</var> . <code id="dom-texttrack-kind" title="dom-TextTrack-kind"><a href="#dom-texttrack-kind">kind</a></code></dt> <dd> <p>Returns the <a href="#text-track-kind" id="text-track-kind_4">text track kind</a> string.</p> </dd> @@ -1956,11 +2194,15 @@ return 'Are you sure you want to leave this awesome page?'; }</pre> - </div><hr><pre class="idl">interface <dfn aria-haspopup="true" id="texttrackcuelist" role="button" tabindex="0">TextTrackCueList</dfn> { + </div> + + <hr><pre class="idl">interface <dfn aria-haspopup="true" id="texttrackcuelist" role="button" tabindex="0">TextTrackCueList</dfn> { readonly attribute unsigned long <a href="#dom-texttrackcuelist-length" title="dom-TextTrackCueList-length">length</a>; getter <a href="#texttrackcue" id="texttrackcue_4">TextTrackCue</a> (unsigned long index); <a href="#texttrackcue" id="texttrackcue_5">TextTrackCue</a>? <a href="#dom-texttrackcuelist-getcuebyid" title="dom-TextTrackCueList-getCueById">getCueById</a>(DOMString id); -};</pre><dl class="domintro"><dt><var title="">cuelist</var> . <code id="dom-texttrackcuelist-length" title="dom-TextTrackCueList-length"><a href="#dom-texttrackcuelist-length">length</a></code></dt> +};</pre> + + <dl class="domintro"><dt><var title="">cuelist</var> . <code id="dom-texttrackcuelist-length" title="dom-TextTrackCueList-length"><a href="#dom-texttrackcuelist-length">length</a></code></dt> <dd> <p>Returns the number of <a href="#text-track-cue" id="text-track-cue_16" title="text track cue">cues</a> in the list.</p> </dd> @@ -1996,7 +2238,9 @@ [TreatNonCallableAsNull] attribute <a href="webappapis.html#function" id="function_145">Function</a>? ; [TreatNonCallableAsNull] attribute <a href="webappapis.html#function" id="function_146">Function</a>? ; -};</pre><dl class="domintro"><dt><var title="">cue</var> = new <code id="dom-texttrackcue" title="dom-TextTrackCue"><a href="#dom-texttrackcue">TextTrackCue</a></code>( <var title="">id</var>, <var title="">startTime</var>, <var title="">endTime</var>, <var title="">text</var> [, <var title="">settings</var> [, <var title="">pauseOnExit</var> ] ] )</dt> +};</pre> + + <dl class="domintro"><dt><var title="">cue</var> = new <code id="dom-texttrackcue" title="dom-TextTrackCue"><a href="#dom-texttrackcue">TextTrackCue</a></code>( <var title="">id</var>, <var title="">startTime</var>, <var title="">endTime</var>, <var title="">text</var> [, <var title="">settings</var> [, <var title="">pauseOnExit</var> ] ] )</dt> <dd> <p>Returns a new <code><a href="#texttrackcue" id="texttrackcue_6">TextTrackCue</a></code> object, for use with the <code title="dom-TextTrack-addCue"><a href="#dom-texttrack-addcue">addCue()</a></code> method.</p> <p>The <var title="">id</var> argument sets the <a href="#text-track-cue-identifier" id="text-track-cue-identifier_1">text track cue identifier</a>.</p> @@ -2099,14 +2343,22 @@ <p>Returns the <a href="#text-track-cue-text" id="text-track-cue-text_2">text track cue text</a> as a <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#documentfragment" title='Read about this "DocumentFragment" reference in the full HTML5 spec.'>DocumentFragment</a></code> of <a href="infrastructure.html#html-elements" id="html-elements_30">HTML elements</a> and other DOM nodes.</p> </dd> - </dl><h6 id="text-tracks-describing-chapters"><span class="secno">4.8.10.12.4 </span>Text tracks describing chapters</h6><p>Chapters are segments of a <a href="#media-resource" id="media-resource_54">media resource</a> with a + </dl><h6 id="text-tracks-describing-chapters"><span class="secno">4.8.10.12.4 </span>Text tracks describing chapters</h6> + + <p>Chapters are segments of a <a href="#media-resource" id="media-resource_54">media resource</a> with a given title. Chapters can be nested, in the same way that sections - in a document outline can have subsections.<p>Each <a href="#text-track-cue" id="text-track-cue_20">text track cue</a> in a <a href="#text-track" id="text-track_36">text track</a> + in a document outline can have subsections.</p> + + <p>Each <a href="#text-track-cue" id="text-track-cue_20">text track cue</a> in a <a href="#text-track" id="text-track_36">text track</a> being used for describing chapters has three key features: the <a href="#text-track-cue-start-time" id="text-track-cue-start-time_4">text track cue start time</a>, giving the start time of the chapter, the <a href="#text-track-cue-end-time" id="text-track-cue-end-time_4">text track cue end time</a>, giving the end time of the chapter, and the <a href="#text-track-cue-text" id="text-track-cue-text_3">text track cue text</a> giving - the chapter title.<div class="example"> + the chapter title.</p> + + + + <div class="example"> <p>The following snippet of a <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#webvtt-file" title='Read about this "WebVTT file" reference in the full HTML5 spec.'>WebVTT file</a> shows how nested chapters can be marked up. The file describes three @@ -2152,14 +2404,27 @@ 02:00:00.000 --> 02:30:00.000 The General Relativistic Field Equations</pre> - </div><h5 id="user-interface"><span class="secno">4.8.10.13 </span>User interface</h5><p>The <dfn aria-haspopup="true" id="attr-media-controls" role="button" tabindex="0"><code>controls</code></dfn> + </div> + + + + + + + <h5 id="user-interface"><span class="secno">4.8.10.13 </span>User interface</h5> + + <p>The <dfn aria-haspopup="true" id="attr-media-controls" role="button" tabindex="0"><code>controls</code></dfn> attribute is a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_8">boolean attribute</a>. If present, it indicates that the author has not provided a scripted controller and would like the user agent to provide its own set of controls.</p> + + <p>The <dfn aria-haspopup="true" id="dom-media-controls" role="button" tabindex="0"><code>controls</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_43">reflect</a> the content attribute of the same name.</p> -<dl class="domintro"><dt><var title="">media</var> . <code id="dom-media-volume" title="dom-media-volume"><a href="#dom-media-volume">volume</a></code> [ = <var title="">value</var> ]</dt> + + + <dl class="domintro"><dt><var title="">media</var> . <code id="dom-media-volume" title="dom-media-volume"><a href="#dom-media-volume">volume</a></code> [ = <var title="">value</var> ]</dt> <dd> @@ -2190,10 +2455,16 @@ <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_9">boolean attribute</a> that controls the default state of the audio output of the <a href="#media-resource" id="media-resource_55">media resource</a>, potentially overriding user preferences.</p> + + <p>The <dfn aria-haspopup="true" id="dom-media-defaultmuted" role="button" tabindex="0"><code>defaultMuted</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_44">reflect</a> the <code title="attr-media-muted"><a href="#attr-media-muted" id="muted_4">muted</a></code> content attribute.</p> -<p class="note">This attribute has no dynamic effect (it only - controls the default state of the element).<div class="example"> + + + <p class="note">This attribute has no dynamic effect (it only + controls the default state of the element).</p> + + <div class="example"> <p>This video (an advertisment) autoplays, but to avoid annoying users, it does so without sound, and allows the user to turn the @@ -2201,12 +2472,23 @@ <pre><video src="adverts.cgi?kind=video" controls autoplay loop muted></video></pre> - </div><h5 id="time-ranges"><span class="secno">4.8.10.14 </span>Time ranges</h5><p>Objects implementing the <code><a href="#timeranges" id="timeranges_12">TimeRanges</a></code> interface - represent a list of ranges (periods) of time.<pre class="idl">interface <dfn aria-haspopup="true" id="timeranges" role="button" tabindex="0">TimeRanges</dfn> { + </div> + + + + + <h5 id="time-ranges"><span class="secno">4.8.10.14 </span>Time ranges</h5> + + <p>Objects implementing the <code><a href="#timeranges" id="timeranges_12">TimeRanges</a></code> interface + represent a list of ranges (periods) of time.</p> + + <pre class="idl">interface <dfn aria-haspopup="true" id="timeranges" role="button" tabindex="0">TimeRanges</dfn> { readonly attribute unsigned long <a href="#dom-timeranges-length" title="dom-TimeRanges-length">length</a>; double <a href="#dom-timeranges-start" title="dom-TimeRanges-start">start</a>(unsigned long index); double <a href="#dom-timeranges-end" title="dom-TimeRanges-end">end</a>(unsigned long index); -};</pre><dl class="domintro"><dt><var title="">media</var> . <code id="dom-timeranges-length" title="dom-TimeRanges-length"><a href="#dom-timeranges-length">length</a></code></dt> +};</pre> + + <dl class="domintro"><dt><var title="">media</var> . <code id="dom-timeranges-length" title="dom-TimeRanges-length"><a href="#dom-timeranges-length">length</a></code></dt> <dd> @@ -2234,14 +2516,18 @@ </dd> - </dl><h5 id="event-definitions"><span class="secno">4.8.10.15 </span>Event definitions</h5><pre class="idl">[Constructor(DOMString type, optional <a href="#trackeventinit" id="trackeventinit_0">TrackEventInit</a> eventInitDict)] + </dl><h5 id="event-definitions"><span class="secno">4.8.10.15 </span>Event definitions</h5> + + <pre class="idl">[Constructor(DOMString type, optional <a href="#trackeventinit" id="trackeventinit_0">TrackEventInit</a> eventInitDict)] interface <dfn aria-haspopup="true" id="trackevent" role="button" tabindex="0">TrackEvent</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#event" title='Read about this "Event" reference in the full HTML5 spec.'>Event</a> { readonly attribute object? <a href="#dom-trackevent-track" title="dom-TrackEvent-track">track</a>; }; dictionary <dfn aria-haspopup="true" id="trackeventinit" role="button" tabindex="0">TrackEventInit</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#eventinit" title='Read about this "EventInit" reference in the full HTML5 spec.'>EventInit</a> { object? track; -};</pre><dl class="domintro"><dt><var title="">event</var> . <code id="dom-trackevent-track" title="dom-TrackEvent-track"><a href="#dom-trackevent-track">track</a></code></dt> +};</pre> + + <dl class="domintro"><dt><var title="">event</var> . <code id="dom-trackevent-track" title="dom-TrackEvent-track"><a href="#dom-trackevent-track">track</a></code></dt> <dd> @@ -2251,8 +2537,14 @@ </dd> - </dl><h5 id="mediaevents"><span class="secno">4.8.10.16 </span>Event summary</h5><p>The following events fire on <a href="#media-element" id="media-element_55" title="media element">media - elements</a> as part of the processing model described above:<table><thead><tr><th>Event name + </dl><h5 id="mediaevents"><span class="secno">4.8.10.16 </span>Event summary</h5> + + + + <p>The following events fire on <a href="#media-element" id="media-element_55" title="media element">media + elements</a> as part of the processing model described above:</p> + + <table><thead><tr><th>Event name <th>Interface <th>Fired when... <th>Preconditions @@ -2354,7 +2646,9 @@ <td><code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#event" title='Read about this "Event" reference in the full HTML5 spec.'>Event</a></code> <td>Either the <code title="dom-media-volume"><a href="#dom-media-volume">volume</a></code> attribute or the <code title="dom-media-muted"><a href="#dom-media-muted">muted</a></code> attribute has changed. Fired after the relevant attribute's setter has returned. <td> - </table><p>The following events fire on <code><a href="#mediacontroller" id="mediacontroller_16">MediaController</a></code> objects:<table><thead><tr><th>Event name + </table><p>The following events fire on <code><a href="#mediacontroller" id="mediacontroller_16">MediaController</a></code> objects:</p> + + <table><thead><tr><th>Event name <th>Interface <th>Fired when... @@ -2404,7 +2698,11 @@ <tr><td><dfn aria-haspopup="true" id="event-mediacontroller-volumechange" role="button" tabindex="0"><code>volumechange</code></dfn> <td><code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#event" title='Read about this "Event" reference in the full HTML5 spec.'>Event</a></code> <td>Either the <code title="dom-MediaController-volume"><a href="#dom-mediacontroller-volume">volume</a></code> attribute or the <code title="dom-MediaController-muted"><a href="#dom-mediacontroller-muted">muted</a></code> attribute has just been updated. - </table><h5 id="best-practices-for-authors-using-media-elements"><span class="secno">4.8.10.17 </span>Best practices for authors using media elements</h5><p>Playing audio and video resources on small devices such as + </table><h5 id="best-practices-for-authors-using-media-elements"><span class="secno">4.8.10.17 </span>Best practices for authors using media elements</h5> + + + + <p>Playing audio and video resources on small devices such as set-top boxes or mobile phones is often constrained by limited hardware resources in the device. For example, a device might only support three simultaneous videos. For this reason, it is a good @@ -2414,6 +2712,16 @@ allowing it to be garbage collected, or, even better, by removing the element's <code title="attr-media-src"><a href="#attr-media-src" id="src_44">src</a></code> attribute and any <code><a href="the-source-element.html#the-source-element" id="source_10">source</a></code> element descendants, and invoking the - element's <code title="dom-media-load"><a href="#dom-media-load">load()</a></code> method.<p>Similarly, when the playback rate is not exactly 1.0, hardware, + element's <code title="dom-media-load"><a href="#dom-media-load">load()</a></code> method.</p> + + <p>Similarly, when the playback rate is not exactly 1.0, hardware, software, or format limitations can cause video frames to be dropped - and audio to be choppy or muted. \ No newline at end of file + and audio to be choppy or muted.</p> + + + + + + + + \ No newline at end of file Index: the-base-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-base-element.html,v retrieving revision 1.131 retrieving revision 1.132 diff -u -d -r1.131 -r1.132 --- the-base-element.html 21 Feb 2012 21:59:02 -0000 1.131 +++ the-base-element.html 13 Mar 2012 19:58:55 -0000 1.132 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-title-element.html">← 4.2.2 The title element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-link-element.html">4.2.4 The link element →</a> </div> - <h4 id="the-base-element"><span class="secno">4.2.3 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>base</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_3" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-base-element"><span class="secno">4.2.3 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>base</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_3" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#metadata-content" id="metadata-content_5">Metadata content</a>.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_3" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>In a <code><a href="the-head-element.html#the-head-element" id="head_10">head</a></code> element containing no other <code><a href="#the-base-element" id="base_3">base</a></code> elements.</dd> @@ -371,22 +411,40 @@ <a class="full-spec-link" href="http://dev.w3.org/html5/spec/urls.html#document-base-url" title='Read about this "document base URL" reference in the full HTML5 spec.'>document base URL</a> for the purposes of <a class="full-spec-link" href="http://dev.w3.org/html5/spec/urls.html#resolve-a-url" title='Read about this "resolving relative URLs" reference in the full HTML5 spec.'>resolving relative URLs</a>, and the name of the default <a href="browsers.html#browsing-context" id="browsing-context_4">browsing context</a> for the purposes of <a class="full-spec-link" href="http://dev.w3.org/html5/spec/links.html#following-hyperlinks" title='Read about this "following hyperlinks" reference in the full HTML5 spec.'>following hyperlinks</a>. The element does not <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represent" reference in the full HTML5 spec.'>represent</a> any content beyond this - information.<p>There must be no more than one <code><a href="#the-base-element" id="base_5">base</a></code> element per - document.<p>A <code><a href="#the-base-element" id="base_6">base</a></code> element must have either an <code title="attr-base-href"><a href="#attr-base-href" id="href_0">href</a></code> attribute, a <code title="attr-base-target"><a href="#attr-base-target" id="target_0">target</a></code> attribute, or both.<p>The <dfn aria-haspopup="true" id="attr-base-href" role="button" tabindex="0"><code>href</code></dfn> content + information.</p> + + <p>There must be no more than one <code><a href="#the-base-element" id="base_5">base</a></code> element per + document.</p> + + <p>A <code><a href="#the-base-element" id="base_6">base</a></code> element must have either an <code title="attr-base-href"><a href="#attr-base-href" id="href_0">href</a></code> attribute, a <code title="attr-base-target"><a href="#attr-base-target" id="target_0">target</a></code> attribute, or both.</p> + + <p>The <dfn aria-haspopup="true" id="attr-base-href" role="button" tabindex="0"><code>href</code></dfn> content attribute, if specified, must contain a <a href="urls.html#valid-url-potentially-surrounded-by-spaces" id="valid-url-potentially-surrounded-by-spaces_0">valid URL potentially - surrounded by spaces</a>.<p>A <code><a href="#the-base-element" id="base_7">base</a></code> element, if it has an <code title="attr-base-href"><a href="#attr-base-href" id="href_1">href</a></code> attribute, must come before any + surrounded by spaces</a>.</p> + + <p>A <code><a href="#the-base-element" id="base_7">base</a></code> element, if it has an <code title="attr-base-href"><a href="#attr-base-href" id="href_1">href</a></code> attribute, must come before any other elements in the tree that have attributes defined as taking <a href="urls.html#url" id="url_9" title="URL">URLs</a>, except the <code><a href="the-html-element.html#the-html-element" id="html_7">html</a></code> element (its <code title="attr-html-manifest"><a href="the-html-element.html#attr-html-manifest" id="manifest_2">manifest</a></code> attribute - isn't affected by <code><a href="#the-base-element" id="base_8">base</a></code> elements).<p>The <dfn aria-haspopup="true" id="attr-base-target" role="button" tabindex="0"><code>target</code></dfn> + isn't affected by <code><a href="#the-base-element" id="base_8">base</a></code> elements).</p> + + + + <p>The <dfn aria-haspopup="true" id="attr-base-target" role="button" tabindex="0"><code>target</code></dfn> attribute, if specified, must contain a <a href="browsers.html#valid-browsing-context-name-or-keyword" id="valid-browsing-context-name-or-keyword_0">valid browsing context name or keyword</a>, which specifies which <a href="browsers.html#browsing-context" id="browsing-context_5">browsing - context</a> is to be used as the default when <a href="links.html#hyperlink" id="hyperlink_4" title="hyperlink">hyperlinks</a> and <a href="the-form-element.html#the-form-element" id="form_11" title="form">forms</a> in the <code><a href="dom.html#document" id="document_55">Document</a></code> cause <a class="full-spec-link" href="http://dev.w3.org/html5/spec/history.html#navigate" title='Read about this "navigation" reference in the full HTML5 spec.'>navigation</a>.<p>A <code><a href="#the-base-element" id="base_9">base</a></code> element, if it has a <code title="attr-base-target"><a href="#attr-base-target" id="target_1">target</a></code> attribute, must come before + context</a> is to be used as the default when <a href="links.html#hyperlink" id="hyperlink_4" title="hyperlink">hyperlinks</a> and <a href="the-form-element.html#the-form-element" id="form_11" title="form">forms</a> in the <code><a href="dom.html#document" id="document_55">Document</a></code> cause <a class="full-spec-link" href="http://dev.w3.org/html5/spec/history.html#navigate" title='Read about this "navigation" reference in the full HTML5 spec.'>navigation</a>.</p> + + <p>A <code><a href="#the-base-element" id="base_9">base</a></code> element, if it has a <code title="attr-base-target"><a href="#attr-base-target" id="target_1">target</a></code> attribute, must come before any elements in the tree that represent <a href="links.html#hyperlink" id="hyperlink_5" title="hyperlink">hyperlinks</a>.</p> + + <p>The <dfn aria-haspopup="true" id="dom-base-href" role="button" tabindex="0"><code>href</code></dfn> and <dfn aria-haspopup="true" id="dom-base-target" role="button" tabindex="0"><code>target</code></dfn> IDL attributes must <a href="common-dom-interfaces.html#reflect" id="reflect_6">reflect</a> the respective content attributes of the same name.</p> -<div class="example"> + + + <div class="example"> <p>In this example, a <code><a href="#the-base-element" id="base_10">base</a></code> element is used to set the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/urls.html#document-base-url" title='Read about this "document base URL" reference in the full HTML5 spec.'>document base URL</a>:</p> @@ -404,4 +462,9 @@ <p>The link in the above example would be a link to "<code title="">http://www.example.com/news/archives.html</code>".</p> - </div> \ No newline at end of file + </div> + + + + + \ No newline at end of file Index: the-menu-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-menu-element.html,v retrieving revision 1.138 retrieving revision 1.139 diff -u -d -r1.138 -r1.139 --- the-menu-element.html 21 Feb 2012 21:59:06 -0000 1.138 +++ the-menu-element.html 13 Mar 2012 19:58:59 -0000 1.139 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,14 +380,18 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-command-element.html">← 4.11.3 The command element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="commands.html">4.11.5 Commands →</a> <ol class="toc"><li><ol><li><ol><li><a href="the-menu-element.html#the-menu-element" id="4.11.4-the-menu-element"><span class="secno">4.11.4 </span>The <code>menu</code> element</a> <ol><li><a href="the-menu-element.html#menus-intro"><span class="secno">4.11.4.1 </span>Introduction</a><li><a href="the-menu-element.html#context-menus" id="4.11.4.2-context-menus"><span class="secno">4.11.4.2 </span>Context menus</a></ol></ol></ol></ol></div> - <h4 id="the-menu-element"><span class="secno">4.11.4 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>menu</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_101" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-menu-element"><span class="secno">4.11.4 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>menu</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_101" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_142">Flow content</a>.</dd> <dd>If the element's <code title="attr-menu-type"><a href="#attr-menu-type" id="type_102">type</a></code> attribute is in the <a href="#toolbar-state" id="toolbar-state_3" title="toolbar state">toolbar</a> state: <a href="content-models.html#interactive-content" id="interactive-content_19">Interactive content</a>.</dd> <dd>If the element's <code title="attr-menu-type"><a href="#attr-menu-type" id="type_103">type</a></code> attribute is in the <a href="#toolbar-state" id="toolbar-state_4" title="toolbar state">toolbar</a> state or the <a href="#list-state" id="list-state_5" title="list state">list</a> state: <a href="content-models.html#palpable-content" id="palpable-content_62">Palpable content</a>.</dd> @@ -370,7 +410,11 @@ attribute DOMString <a href="#dom-menu-type" id="dom-menu-type_0" title="dom-menu-type">type</a>; attribute DOMString <a href="#dom-menu-label" id="dom-menu-label_0" title="dom-menu-label">label</a>; };</pre> - </dl><p>The <code><a href="#the-menu-element" id="menu_15">menu</a></code> element represents a list of commands.<p>The <dfn aria-haspopup="true" id="attr-menu-type" role="button" tabindex="0"><code>type</code></dfn> attribute + </dl><p>The <code><a href="#the-menu-element" id="menu_15">menu</a></code> element represents a list of commands.</p> + + + + <p>The <dfn aria-haspopup="true" id="attr-menu-type" role="button" tabindex="0"><code>type</code></dfn> attribute is an <a href="common-microsyntaxes.html#enumerated-attribute" id="enumerated-attribute_17">enumerated attribute</a> indicating the kind of menu being declared. The attribute has three states. The <code title="attr-menu-type-context">context</code> keyword maps to the <dfn aria-haspopup="true" id="context-menu-state" role="button" tabindex="0">context menu</dfn> state, in which @@ -379,28 +423,50 @@ element is declaring a toolbar. The attribute may also be omitted. The <i>missing value default</i> is the <dfn aria-haspopup="true" id="list-state" role="button" tabindex="0">list</dfn> state, which indicates that the element is merely a list of commands that is neither declaring a context menu nor - defining a toolbar.<p>If a <code><a href="#the-menu-element" id="menu_16">menu</a></code> element's <code title="attr-menu-type"><a href="#attr-menu-type" id="type_105">type</a></code> attribute is in the <a href="#context-menu-state" id="context-menu-state_1" title="context menu state">context menu</a> state, then the + defining a toolbar.</p> + + <p>If a <code><a href="#the-menu-element" id="menu_16">menu</a></code> element's <code title="attr-menu-type"><a href="#attr-menu-type" id="type_105">type</a></code> attribute is in the <a href="#context-menu-state" id="context-menu-state_1" title="context menu state">context menu</a> state, then the element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> the commands of a context menu, and the user can only interact with the commands if that context menu is - activated.<p>If a <code><a href="#the-menu-element" id="menu_17">menu</a></code> element's <code title="attr-menu-type"><a href="#attr-menu-type" id="type_106">type</a></code> attribute is in the <a href="#toolbar-state" id="toolbar-state_5" title="toolbar state">toolbar</a> state, then the element + activated.</p> + + <p>If a <code><a href="#the-menu-element" id="menu_17">menu</a></code> element's <code title="attr-menu-type"><a href="#attr-menu-type" id="type_106">type</a></code> attribute is in the <a href="#toolbar-state" id="toolbar-state_5" title="toolbar state">toolbar</a> state, then the element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a list of active commands that the user can - immediately interact with.<p>If a <code><a href="#the-menu-element" id="menu_18">menu</a></code> element's <code title="attr-menu-type"><a href="#attr-menu-type" id="type_107">type</a></code> attribute is in the <a href="#list-state" id="list-state_6" title="list state">list</a> state, then the element either + immediately interact with.</p> + + <p>If a <code><a href="#the-menu-element" id="menu_18">menu</a></code> element's <code title="attr-menu-type"><a href="#attr-menu-type" id="type_107">type</a></code> attribute is in the <a href="#list-state" id="list-state_6" title="list state">list</a> state, then the element either <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> an unordered list of items (each represented by an <code><a href="the-li-element.html#the-li-element" id="li_20">li</a></code> element), each of which represents a command that the user can perform or activate, or, if the element has no <code><a href="the-li-element.html#the-li-element" id="li_21">li</a></code> element children, <a href="content-models.html#flow-content" id="flow-content_145">flow content</a> - describing available commands.<p>The <dfn aria-haspopup="true" id="attr-menu-label" role="button" tabindex="0"><code>label</code></dfn> + describing available commands.</p> + + <p>The <dfn aria-haspopup="true" id="attr-menu-label" role="button" tabindex="0"><code>label</code></dfn> attribute gives the label of the menu. It is used by user agents to display nested menus in the UI. For example, a context menu containing another menu would use the nested menu's <code title="attr-menu-label"><a href="#attr-menu-label" id="label_43">label</a></code> attribute for the submenu's menu label.</p> + + <p>The <dfn aria-haspopup="true" id="dom-menu-type" role="button" tabindex="0"><code>type</code></dfn> and <dfn aria-haspopup="true" id="dom-menu-label" role="button" tabindex="0"><code>label</code></dfn> IDL attributes must <a href="common-dom-interfaces.html#reflect" id="reflect_95">reflect</a> the respective content attributes of the same name.</p> -<h5 id="menus-intro"><span class="secno">4.11.4.1 </span>Introduction</h5><p>The <code><a href="#the-menu-element" id="menu_19">menu</a></code> element is used to define context menus and - toolbars.<p>For example, the following represents a toolbar with three menu + + + + + <h5 id="menus-intro"><span class="secno">4.11.4.1 </span>Introduction</h5> + + + + <p>The <code><a href="#the-menu-element" id="menu_19">menu</a></code> element is used to define context menus and + toolbars.</p> + + <p>For example, the following represents a toolbar with three menu buttons on it, each of which has a dropdown menu with a series of - options:<pre><menu type="toolbar"> + options:</p> + + <pre><menu type="toolbar"> <li> <menu label="File"> <button type="button" onclick="fnew()">New...</button> @@ -422,11 +488,21 @@ <li><a href="about.html">About</a></li> </menu> </li> -</menu></pre><p>In a supporting user agent, this might look like this:<p><img alt="A toolbar with three buttons, labeled 'File', 'Edit', and 'Help'; where if you select the 'Edit' button you get a drop-down menu with three more options, 'Copy', 'Cut', and 'Paste'." height="101" src="http://dev.w3.org/html5/spec/images/sample-toolbar-1.png" width="303"><p>In a legacy user agent, the above would look like a bulleted list +</menu></pre> + + <p>In a supporting user agent, this might look like this:</p> + + <p><img alt="A toolbar with three buttons, labeled 'File', 'Edit', and 'Help'; where if you select the 'Edit' button you get a drop-down menu with three more options, 'Copy', 'Cut', and 'Paste'." height="101" src="http://dev.w3.org/html5/spec/images/sample-toolbar-1.png" width="303"></p> + + <p>In a legacy user agent, the above would look like a bulleted list with three items, the first of which has four buttons, the second of which has three, and the third of which has two nested bullet points - with two items consisting of links.<hr><p>The following implements a similar toolbar, with a single button - whose values, when selected, redirect the user to Web sites.<pre><form action="redirect.cgi"> + with two items consisting of links.</p> + + <hr><p>The following implements a similar toolbar, with a single button + whose values, when selected, redirect the user to Web sites.</p> + + <pre><form action="redirect.cgi"> <menu type="toolbar"> <label for="goto">Go to...</label> <menu label="Go"> @@ -439,17 +515,34 @@ <span><input type="submit" value="Go"></span> </menu> </menu> -</form></pre><p>The behavior in supporting user agents is similar to the example +</form></pre> + + <p>The behavior in supporting user agents is similar to the example above, but here the legacy behavior consists of a single <code><a href="the-select-element.html#the-select-element" id="select_45">select</a></code> element with a submit button. The submit button doesn't appear in the toolbar, because it is not a child of the - <code><a href="#the-menu-element" id="menu_20">menu</a></code> element or of its <code><a href="the-li-element.html#the-li-element" id="li_22">li</a></code> children.<h5 id="context-menus"><span class="secno">4.11.4.2 </span><dfn aria-haspopup="true" role="button" tabindex="0">Context menus</dfn></h5><p>The <dfn aria-haspopup="true" id="attr-contextmenu" role="button" tabindex="0"><code>contextmenu</code></dfn> + <code><a href="#the-menu-element" id="menu_20">menu</a></code> element or of its <code><a href="the-li-element.html#the-li-element" id="li_22">li</a></code> children.</p> + + + + + + + + + <h5 id="context-menus"><span class="secno">4.11.4.2 </span><dfn aria-haspopup="true" role="button" tabindex="0">Context menus</dfn></h5> + + <p>The <dfn aria-haspopup="true" id="attr-contextmenu" role="button" tabindex="0"><code>contextmenu</code></dfn> attribute gives the element's <a href="#context-menus" id="context-menus_0" title="context menus">context menu</a>. The value must be the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#concept-id" title='Read about this "ID" reference in the full HTML5 spec.'>ID</a> of a <code><a href="#the-menu-element" id="menu_21">menu</a></code> element in the DOM. </p> + + <p>The <dfn aria-haspopup="true" id="dom-contextmenu" role="button" tabindex="0"><code>contextMenu</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_96">reflect</a> the <code title="attr-contextmenu"><a href="#attr-contextmenu" id="contextmenu_0">contextmenu</a></code> content attribute.</p> -<div class="example"> + + + <div class="example"> <p>Here is an example of a context menu for an input control:</p> @@ -466,4 +559,12 @@ name". They invoke scripts that are not shown in the example above.</p> - </div> \ No newline at end of file + </div> + + + + + + + + \ No newline at end of file Index: styling.html =================================================================== RCS file: /sources/public/html5/spec-author-view/styling.html,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- styling.html 15 Feb 2012 10:14:18 -0000 1.16 +++ styling.html 13 Mar 2012 19:58:54 -0000 1.17 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,15 +380,27 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-style-element.html">← 4.2.6 The style element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="scripting-1.html">4.3 Scripting →</a> </div> - <h4 id="styling"><span class="secno">4.2.7 </span><dfn aria-haspopup="true" role="button" tabindex="0">Styling</dfn></h4><p>The <code><a href="the-link-element.html#the-link-element" id="link_22">link</a></code> and <code><a href="the-style-element.html#the-style-element" id="style_27">style</a></code> elements can provide + <h4 id="styling"><span class="secno">4.2.7 </span><dfn aria-haspopup="true" role="button" tabindex="0">Styling</dfn></h4> + + <p>The <code><a href="the-link-element.html#the-link-element" id="link_22">link</a></code> and <code><a href="the-style-element.html#the-style-element" id="style_27">style</a></code> elements can provide styling information for the user agent to use when rendering the document. The CSS and CSSOM specifications specify what styling information is to be used by the user agent and how it is to be - used. <a href="references.html#refsCSS">[CSS]</a> <a href="references.html#refsCSSOM">[CSSOM]</a><p>The <code><a href="the-style-element.html#the-style-element" id="style_28">style</a></code> and <code><a href="the-link-element.html#the-link-element" id="link_23">link</a></code> elements implement - the <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#linkstyle" title='Read about this "LinkStyle" reference in the full HTML5 spec.'>LinkStyle</a></code> interface. <a href="references.html#refsCSSOM">[CSSOM]</a> \ No newline at end of file + used. <a href="references.html#refsCSS">[CSS]</a> <a href="references.html#refsCSSOM">[CSSOM]</a></p> + + <p>The <code><a href="the-style-element.html#the-style-element" id="style_28">style</a></code> and <code><a href="the-link-element.html#the-link-element" id="link_23">link</a></code> elements implement + the <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#linkstyle" title='Read about this "LinkStyle" reference in the full HTML5 spec.'>LinkStyle</a></code> interface. <a href="references.html#refsCSSOM">[CSSOM]</a></p> + + + + + + \ No newline at end of file Index: the-noscript-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-noscript-element.html,v retrieving revision 1.125 retrieving revision 1.126 diff -u -d -r1.125 -r1.126 --- the-noscript-element.html 21 Feb 2012 21:59:06 -0000 1.125 +++ the-noscript-element.html 13 Mar 2012 19:59:00 -0000 1.126 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-script-element.html">← 4.3.1 The script element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="sections.html">4.4 Sections →</a> </div> - <h4 id="the-noscript-element"><span class="secno">4.3.2 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>noscript</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_8" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-noscript-element"><span class="secno">4.3.2 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>noscript</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_8" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#metadata-content" id="metadata-content_14">Metadata content</a>.</dd> <dd><a href="content-models.html#flow-content" id="flow-content_15">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_22">Phrasing content</a>.</dd> @@ -370,8 +410,12 @@ <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> its children if <a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#concept-n-noscript" title='Read about this "scripting is disabled" reference in the full HTML5 spec.'>scripting is disabled</a>. It is used to present different markup to user agents that support scripting and those that don't support scripting, by affecting how the - document is parsed.<p>When used in <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#html-documents" title='Read about this "HTML documents" reference in the full HTML5 spec.'>HTML documents</a>, the allowed content - model is as follows:<dl><dt>In a <code><a href="the-head-element.html#the-head-element" id="head_22">head</a></code> element, if <a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#concept-n-noscript" title='Read about this "scripting is disabled" reference in the full HTML5 spec.'>scripting is disabled</a> for the + document is parsed.</p> + + <p>When used in <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#html-documents" title='Read about this "HTML documents" reference in the full HTML5 spec.'>HTML documents</a>, the allowed content + model is as follows:</p> + + <dl><dt>In a <code><a href="the-head-element.html#the-head-element" id="head_22">head</a></code> element, if <a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#concept-n-noscript" title='Read about this "scripting is disabled" reference in the full HTML5 spec.'>scripting is disabled</a> for the <code><a href="#the-noscript-element" id="noscript_11">noscript</a></code> element</dt> <dd><p>The <code><a href="#the-noscript-element" id="noscript_12">noscript</a></code> element must contain only @@ -456,13 +500,21 @@ </dl><p class="note">All these contortions are required because, for historical reasons, the <code><a href="#the-noscript-element" id="noscript_32">noscript</a></code> element is handled differently by the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/parsing.html#html-parser" title='Read about this "HTML parser" reference in the full HTML5 spec.'>HTML parser</a> based on whether <a class="full-spec-link" href="http://dev.w3.org/html5/spec/parsing.html#scripting-flag" title='Read about this "scripting was enabled or not" reference in the full HTML5 spec.'>scripting was enabled or not</a> when the - parser was invoked.<p>The <code><a href="#the-noscript-element" id="noscript_33">noscript</a></code> element must not be used in <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#xml-documents" title='Read about this "XML documents" reference in the full HTML5 spec.'>XML - documents</a>.<p class="note">The <code><a href="#the-noscript-element" id="noscript_34">noscript</a></code> element is only effective + parser was invoked.</p> + + <p>The <code><a href="#the-noscript-element" id="noscript_33">noscript</a></code> element must not be used in <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#xml-documents" title='Read about this "XML documents" reference in the full HTML5 spec.'>XML + documents</a>.</p> + + <p class="note">The <code><a href="#the-noscript-element" id="noscript_34">noscript</a></code> element is only effective in <a href="syntax.html#syntax" id="the-html-syntax_3">the HTML syntax</a>, it has no effect in <a href="the-xhtml-syntax.html#the-xhtml-syntax">the XHTML syntax</a>. This is because the way it works is by essentially "turning off" the parser when scripts are enabled, so that the contents of the element are treated as pure text and not as real - elements. XML does not define a mechanism by which to do this.<div class="example"> + elements. XML does not define a mechanism by which to do this.</p> + + + + <div class="example"> <p>In the following example, a <code><a href="#the-noscript-element" id="noscript_35">noscript</a></code> element is used to provide fallback for a script.</p> @@ -525,4 +577,8 @@ <code><a href="#the-noscript-element" id="noscript_38">noscript</a></code> is not supported in <a href="the-xhtml-syntax.html#the-xhtml-syntax">the XHTML syntax</a>.</p> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: the-code-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-code-element.html,v retrieving revision 1.117 retrieving revision 1.118 diff -u -d -r1.117 -r1.118 --- the-code-element.html 21 Feb 2012 21:59:03 -0000 1.117 +++ the-code-element.html 13 Mar 2012 19:58:56 -0000 1.118 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-time-element.html">← 4.6.10 The time element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-var-element.html">4.6.12 The var element →</a> </div> - <h4 id="the-code-element"><span class="secno">4.6.11 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>code</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_42" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-code-element"><span class="secno">4.6.11 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>code</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_42" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_81">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_59">Phrasing content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_27">Palpable content</a>.</dd> @@ -365,12 +405,16 @@ </dl><p>The <code><a href="#the-code-element" id="code_4">code</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a fragment of computer code. This could be an XML element name, a filename, a computer program, or any other string that a computer would - recognize.<p>Although there is no formal way to indicate the language of + recognize.</p> + + <p>Although there is no formal way to indicate the language of computer code being marked up, authors who wish to mark <code><a href="#the-code-element" id="code_5">code</a></code> elements with the language used, e.g. so that syntax highlighting scripts can use the right rules, may do so by adding a class prefixed with "<code title="">language-</code>" to - the element.<div class="example"> + the element.</p> + + <div class="example"> <p>The following example shows how the element can be used in a paragraph to mark up element names and computer code, including @@ -387,7 +431,9 @@ keyword, which is followed by the <code>.</code> punctuation character (full stop) to indicate the end of the program.</p></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>The following example shows how a block of code could be marked up using the <code><a href="the-pre-element.html#the-pre-element" id="pre_11">pre</a></code> and <code><a href="#the-code-element" id="code_6">code</a></code> elements.</p> @@ -400,4 +446,9 @@ <p>A class is used in that example to indicate the language used.</p> - </div><p class="note">See the <code><a href="the-pre-element.html#the-pre-element" id="pre_12">pre</a></code> element for more details. \ No newline at end of file + </div> + + <p class="note">See the <code><a href="the-pre-element.html#the-pre-element" id="pre_12">pre</a></code> element for more details.</p> + + + \ No newline at end of file Index: the-command-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-command-element.html,v retrieving revision 1.138 retrieving revision 1.139 diff -u -d -r1.138 -r1.139 --- the-command-element.html 21 Feb 2012 21:59:03 -0000 1.138 +++ the-command-element.html 13 Mar 2012 19:58:56 -0000 1.139 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-summary-element.html">← 4.11.2 The summary element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-menu-element.html">4.11.4 The menu element →</a> </div> - <h4 id="the-command-element"><span class="secno">4.11.3 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>command</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_100" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-command-element"><span class="secno">4.11.3 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>command</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_100" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#metadata-content" id="metadata-content_15">Metadata content</a>.</dd> <dd><a href="content-models.html#flow-content" id="flow-content_141">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_160">Phrasing content</a>.</dd> @@ -383,11 +423,15 @@ };</pre> </dd> </dl><p>The <code><a href="#the-command-element" id="command_4">command</a></code> element represents a command that the user - can invoke.<p>A command can be explicitly part of a context menu or toolbar, + can invoke.</p> + + <p>A command can be explicitly part of a context menu or toolbar, using the <code><a href="the-menu-element.html#the-menu-element" id="menu_13">menu</a></code> element. It can also be put anywhere else on a page, either just to define a keyboard shortcut, or to define a command that is then referenced from other - <code><a href="#the-command-element" id="command_5">command</a></code> elements.<p>A <code><a href="#the-command-element" id="command_6">command</a></code> element that uses the + <code><a href="#the-command-element" id="command_5">command</a></code> elements.</p> + + <p>A <code><a href="#the-command-element" id="command_6">command</a></code> element that uses the <code title="attr-command-type"><a href="#attr-command-type" id="type_88">type</a></code>, <code title="attr-command-label"><a href="#attr-command-label" id="label_38">label</a></code>, <code title="attr-command-icon"><a href="#attr-command-icon" id="icon_0">icon</a></code>, @@ -400,17 +444,23 @@ defines a command by reference to another one. This allows authors to define a command once, and set its state (e.g. whether it is active or disabled) in one place, and have all references to that - command in the user interface change at the same time.<hr><p>The <dfn aria-haspopup="true" id="attr-command-type" role="button" tabindex="0"><code>type</code></dfn> + command in the user interface change at the same time.</p> + + <hr><p>The <dfn aria-haspopup="true" id="attr-command-type" role="button" tabindex="0"><code>type</code></dfn> attribute indicates the kind of command: either a normal command with an associated action, or a state or option that can be toggled, - or a selection of one item from a list of items.<p>The attribute is an <a href="common-microsyntaxes.html#enumerated-attribute" id="enumerated-attribute_16">enumerated attribute</a> with three + or a selection of one item from a list of items.</p> + + <p>The attribute is an <a href="common-microsyntaxes.html#enumerated-attribute" id="enumerated-attribute_16">enumerated attribute</a> with three keywords and states. The "<dfn aria-haspopup="true" id="attr-command-type-keyword-command" role="button" tabindex="0"><code>command</code></dfn>" keyword maps to the <a href="#attr-command-type-state-command" id="attr-command-type-state-command_0" title="attr-command-type-state-command">Command</a> state, the "<dfn aria-haspopup="true" id="attr-command-type-keyword-checkbox" role="button" tabindex="0"><code>checkbox</code></dfn>" keyword maps to the <a href="#attr-command-type-state-checkbox" id="attr-command-type-state-checkbox_0" title="attr-command-type-state-checkbox">Checkbox</a> state, and the "<dfn aria-haspopup="true" id="attr-command-type-keyword-radio" role="button" tabindex="0"><code>radio</code></dfn>" keyword maps to the <a href="#attr-command-type-state-radio" id="attr-command-type-state-radio_0" title="attr-command-type-state-radio">Radio</a> state. The - <i>missing value default</i> is the <a href="#attr-command-type-state-command" id="attr-command-type-state-command_1" title="attr-command-type-state-command">Command</a> state.<dl><dt>The <dfn aria-haspopup="true" id="attr-command-type-state-command" role="button" tabindex="0">Command</dfn> state</dt> + <i>missing value default</i> is the <a href="#attr-command-type-state-command" id="attr-command-type-state-command_1" title="attr-command-type-state-command">Command</a> state.</p> + + <dl><dt>The <dfn aria-haspopup="true" id="attr-command-type-state-command" role="button" tabindex="0">Command</dfn> state</dt> <dd><p>The element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a normal command with an associated action.</dd> @@ -425,31 +475,48 @@ </dl><p>The <dfn aria-haspopup="true" id="attr-command-label" role="button" tabindex="0"><code>label</code></dfn> attribute gives the name of the command, as shown to the user. The <code title="attr-command-label"><a href="#attr-command-label" id="label_39">label</a></code> attribute must be - specified and must have a value that is not the empty string.<p>The <dfn aria-haspopup="true" id="attr-command-title" role="button" tabindex="0"><code>title</code></dfn> + specified and must have a value that is not the empty string.</p> + + <p>The <dfn aria-haspopup="true" id="attr-command-title" role="button" tabindex="0"><code>title</code></dfn> attribute gives a hint describing the command, which might be shown - to the user to help him.<p>The <dfn aria-haspopup="true" id="attr-command-icon" role="button" tabindex="0"><code>icon</code></dfn> + to the user to help him.</p> + + <p>The <dfn aria-haspopup="true" id="attr-command-icon" role="button" tabindex="0"><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-potentially-surrounded-by-spaces" id="valid-non-empty-url-potentially-surrounded-by-spaces_13">valid non-empty URL potentially surrounded by - spaces</a>. <p>The <dfn aria-haspopup="true" id="attr-command-disabled" role="button" tabindex="0"><code>disabled</code></dfn> attribute + spaces</a>. </p> + + + <p>The <dfn aria-haspopup="true" id="attr-command-disabled" role="button" tabindex="0"><code>disabled</code></dfn> attribute is a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_25">boolean attribute</a> that, if present, indicates that - the command is not available in the current state.<p class="note">The distinction between <code title="attr-command-disabled"><a href="#attr-command-disabled" id="disabled_31">disabled</a></code> and <code title="attr-hidden"><a href="editing.html#the-hidden-attribute" id="hidden_3">hidden</a></code> is subtle. A command would be + 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" id="disabled_31">disabled</a></code> and <code title="attr-hidden"><a href="editing.html#the-hidden-attribute" id="hidden_3">hidden</a></code> is subtle. A command would be disabled if, in the same context, it could be enabled if only certain aspects of the situation were changed. A command would be marked as hidden if, in that situation, the command will never be enabled. For example, in the context menu for a water faucet, the command "open" might be disabled if the faucet is already open, but the command "eat" would be marked hidden since the faucet could - never be eaten.<p>The <dfn aria-haspopup="true" id="attr-command-checked" role="button" tabindex="0"><code>checked</code></dfn> + never be eaten.</p> + + <p>The <dfn aria-haspopup="true" id="attr-command-checked" role="button" tabindex="0"><code>checked</code></dfn> attribute is a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_26">boolean attribute</a> that, if present, indicates that the command is selected. The attribute must be omitted unless the <code title="attr-command-type"><a href="#attr-command-type" id="type_89">type</a></code> attribute is in either the <a href="#attr-command-type-state-checkbox" id="attr-command-type-state-checkbox_1" title="attr-command-type-state-checkbox">Checkbox</a> state or the <a href="#attr-command-type-state-radio" id="attr-command-type-state-radio_1" title="attr-command-type-state-radio">Radio</a> - state.<p>The <dfn aria-haspopup="true" id="attr-command-radiogroup" role="button" tabindex="0"><code>radiogroup</code></dfn> + state.</p> + + <p>The <dfn aria-haspopup="true" id="attr-command-radiogroup" role="button" tabindex="0"><code>radiogroup</code></dfn> attribute gives the name of the group of commands that will be toggled when the command itself is toggled, for commands whose <code title="attr-command-type"><a href="#attr-command-type" id="type_90">type</a></code> attribute has the value "<code title="">radio</code>". The scope of the name is the child list of - the parent element. The attribute must be omitted unless the <code title="attr-command-type"><a href="#attr-command-type" id="type_91">type</a></code> attribute is in the <a href="#attr-command-type-state-radio" id="attr-command-type-state-radio_2" title="attr-command-type-state-radio">Radio</a> state.<hr><p>If a <code><a href="#the-command-element" id="command_8">command</a></code> element <var title="">slave</var> has a + the parent element. The attribute must be omitted unless the <code title="attr-command-type"><a href="#attr-command-type" id="type_91">type</a></code> attribute is in the <a href="#attr-command-type-state-radio" id="attr-command-type-state-radio_2" title="attr-command-type-state-radio">Radio</a> state.</p> + + + + <hr><p>If a <code><a href="#the-command-element" id="command_8">command</a></code> element <var title="">slave</var> has a <dfn aria-haspopup="true" id="attr-command-command" role="button" tabindex="0"><code>command</code></dfn> attribute, and <var title="">slave</var> is <a href="infrastructure.html#in-a-document" id="in-a-document_2">in a <code>Document</code></a>, and there is an element in that @@ -458,7 +525,9 @@ such element in <a href="infrastructure.html#tree-order" id="tree-order_8">tree order</a>, hereafter <var title="">master</var>, itself <a href="commands.html#concept-command" id="concept-command_4" title="concept-command">defines a command</a> and either is not a <code><a href="#the-command-element" id="command_9">command</a></code> element or does not itself have a <code title="attr-command-command"><a href="#attr-command-command" id="command_21">command</a></code> attribute, then the - <dfn aria-haspopup="true" id="master-command" role="button" tabindex="0">master command</dfn> of <var title="">slave</var> is <var title="">master</var>.<p>An element with a + <dfn aria-haspopup="true" id="master-command" role="button" tabindex="0">master command</dfn> of <var title="">slave</var> is <var title="">master</var>.</p> + + <p>An element with a <code title="attr-command-command"><a href="#attr-command-command" id="command_22">command</a></code> attribute must have a <a href="#master-command" id="master-command_0">master command</a> and must not have any <code title="attr-command-type"><a href="#attr-command-type" id="type_92">type</a></code>, @@ -467,15 +536,21 @@ <code title="attr-command-disabled"><a href="#attr-command-disabled" id="disabled_32">disabled</a></code>, <code title="attr-command-checked"><a href="#attr-command-checked" id="checked_29">checked</a></code>, or <code title="attr-command-radiogroup"><a href="#attr-command-radiogroup" id="radiogroup_1">radiogroup</a></code> - attributes.<hr><p>The <dfn aria-haspopup="true" id="dom-command-type" role="button" tabindex="0"><code>type</code></dfn> IDL + attributes.</p> + + <hr><p>The <dfn aria-haspopup="true" id="dom-command-type" role="button" tabindex="0"><code>type</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_93">reflect</a> the content attribute of the same name, <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-dom-interfaces.html#limited-to-only-known-values" title='Read about this "limited to only known values" reference in the full HTML5 spec.'>limited to only known values</a>.</p> <p>The <dfn aria-haspopup="true" id="dom-command-label" role="button" tabindex="0"><code>label</code></dfn>, <dfn aria-haspopup="true" id="dom-command-icon" role="button" tabindex="0"><code>icon</code></dfn>, <dfn aria-haspopup="true" id="dom-command-disabled" role="button" tabindex="0"><code>disabled</code></dfn>, <dfn aria-haspopup="true" id="dom-command-checked" role="button" tabindex="0"><code>checked</code></dfn>, and <dfn aria-haspopup="true" id="dom-command-radiogroup" role="button" tabindex="0"><code>radiogroup</code></dfn> IDL attributes must <a href="common-dom-interfaces.html#reflect" id="reflect_94">reflect</a> the respective content attributes of the same name.</p> -<p class="note"><code><a href="#the-command-element" id="command_10">command</a></code> elements are not rendered - unless they <a href="the-menu-element.html#the-menu-element" id="menu_14" title="menu">form part of a menu</a>.<div class="example"> + + + <p class="note"><code><a href="#the-command-element" id="command_10">command</a></code> elements are not rendered + unless they <a href="the-menu-element.html#the-menu-element" id="menu_14" title="menu">form part of a menu</a>.</p> + + <div class="example"> <p>Here is an example of a toolbar with three buttons that let the user toggle between left, center, and right alignment. One could @@ -495,4 +570,8 @@ label="Publish" icon="icons/pub.png" onclick="publish()"> </menu></pre> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: urls.html =================================================================== RCS file: /sources/public/html5/spec-author-view/urls.html,v retrieving revision 1.594 retrieving revision 1.595 diff -u -d -r1.594 -r1.595 --- urls.html 15 Feb 2012 10:14:27 -0000 1.594 +++ urls.html 13 Mar 2012 19:59:03 -0000 1.595 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,24 +380,39 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="common-microsyntaxes.html">← 2.4 Common microsyntaxes</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="common-dom-interfaces.html">2.6 Common DOM interfaces →</a> <ol class="toc"><li><ol><li><a href="urls.html#urls"><span class="secno">2.5 </span>URLs</a> <ol><li><a href="urls.html#terminology-0"><span class="secno">2.5.1 </span>Terminology</a><li><a href="urls.html#resolving-urls"><span class="secno">2.5.2 </span>Resolving URLs</a><li><a href="urls.html#interfaces-for-url-manipulation"><span class="secno">2.5.3 </span>Interfaces for URL manipulation</a><li><a href="urls.html#cors-settings-attributes"><span class="secno">2.5.4 </span>CORS settings attributes</a></ol></ol></ol></div> - <h3 id="urls"><span class="secno">2.5 </span>URLs</h3><p>This specification defines the term <a href="#url" id="url_1">URL</a>, and defines + <h3 id="urls"><span class="secno">2.5 </span>URLs</h3> + + <p>This specification defines the term <a href="#url" id="url_1">URL</a>, and defines various algorithms for dealing with URLs, because for historical reasons the rules defined by the URI and IRI specifications are not a complete description of what HTML user agents need to implement to - be compatible with Web content.<p class="note">The term "URL" in this specification is used in a + be compatible with Web content.</p> + + <p class="note">The term "URL" in this specification is used in a manner distinct from the precise technical meaning it is given in RFC 3986. Readers familiar with that RFC will find it easier to read <em>this</em> specification if they pretend the term "URL" as used herein is really called something else altogether. This is a - <a href="introduction.html#willful-violation" id="willful-violation_0">willful violation</a> of RFC 3986. <a href="references.html#refsRFC3986">[RFC3986]</a><h4 id="terminology-0"><span class="secno">2.5.1 </span>Terminology</h4><p>A <dfn aria-haspopup="true" id="url" role="button" tabindex="0">URL</dfn> is a string used to identify a resource.<p>A <a href="#url" id="url_2">URL</a> is a <dfn aria-haspopup="true" id="valid-url" role="button" tabindex="0">valid URL</dfn> if at least one of - the following conditions holds:<ul><li><p>The <a href="#url" id="url_3">URL</a> is a valid URI reference <a href="references.html#refsRFC3986">[RFC3986]</a>.</li> + <a href="introduction.html#willful-violation" id="willful-violation_0">willful violation</a> of RFC 3986. <a href="references.html#refsRFC3986">[RFC3986]</a></p> + + + <h4 id="terminology-0"><span class="secno">2.5.1 </span>Terminology</h4> + + <p>A <dfn aria-haspopup="true" id="url" role="button" tabindex="0">URL</dfn> is a string used to identify a resource.</p> + + <p>A <a href="#url" id="url_2">URL</a> is a <dfn aria-haspopup="true" id="valid-url" role="button" tabindex="0">valid URL</dfn> if at least one of + the following conditions holds:</p> + + <ul><li><p>The <a href="#url" id="url_3">URL</a> is a valid URI reference <a href="references.html#refsRFC3986">[RFC3986]</a>.</li> <li><p>The <a href="#url" id="url_4">URL</a> is a valid IRI reference and it has no query component. <a href="references.html#refsRFC3987">[RFC3987]</a></li> @@ -374,35 +425,77 @@ encoding</a>. <a href="references.html#refsRFC3987">[RFC3987]</a></li> </ul><p>A string is a <dfn aria-haspopup="true" id="valid-non-empty-url" role="button" tabindex="0">valid non-empty URL</dfn> if it is a - <a href="#valid-url" id="valid-url_0">valid URL</a> but it is not the empty string.<p>A string is a <dfn aria-haspopup="true" id="valid-url-potentially-surrounded-by-spaces" role="button" tabindex="0">valid URL potentially surrounded by + <a href="#valid-url" id="valid-url_0">valid URL</a> but it is not the empty string.</p> + + <p>A string is a <dfn aria-haspopup="true" id="valid-url-potentially-surrounded-by-spaces" role="button" tabindex="0">valid URL potentially surrounded by spaces</dfn> if, after <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#strip-leading-and-trailing-whitespace" title='Read about this "stripping leading and trailing whitespace" reference in the full HTML5 spec.'>stripping leading and trailing whitespace</a> from - it, it is a <a href="#valid-url" id="valid-url_1">valid URL</a>.<p>A string is a <dfn aria-haspopup="true" id="valid-non-empty-url-potentially-surrounded-by-spaces" role="button" tabindex="0">valid non-empty URL potentially surrounded by + it, it is a <a href="#valid-url" id="valid-url_1">valid URL</a>.</p> + + <p>A string is a <dfn aria-haspopup="true" id="valid-non-empty-url-potentially-surrounded-by-spaces" role="button" tabindex="0">valid non-empty URL potentially surrounded by spaces</dfn> if, after <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#strip-leading-and-trailing-whitespace" title='Read about this "stripping leading and trailing whitespace" reference in the full HTML5 spec.'>stripping leading and trailing whitespace</a> from - it, it is a <a href="#valid-non-empty-url" id="valid-non-empty-url_0">valid non-empty URL</a>.<p>This specification defines the URL + it, it is a <a href="#valid-non-empty-url" id="valid-non-empty-url_0">valid non-empty URL</a>.</p> + + <p>This specification defines the URL <dfn aria-haspopup="true" id="about:legacy-compat" role="button" tabindex="0"><code>about:legacy-compat</code></dfn> as a reserved, though unresolvable, <code title="">about:</code> URI, for use in <a href="syntax.html#syntax-doctype" id="syntax-doctype_0" title="syntax-doctype">DOCTYPE</a>s in <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#html-documents" title='Read about this "HTML documents" reference in the full HTML5 spec.'>HTML - documents</a> when needed for compatibility with XML tools. <a href="references.html#refsABOUT">[ABOUT]</a><p>This specification defines the URL + documents</a> when needed for compatibility with XML tools. <a href="references.html#refsABOUT">[ABOUT]</a></p> + + <p>This specification defines the URL <dfn aria-haspopup="true" id="about:srcdoc" role="button" tabindex="0"><code>about:srcdoc</code></dfn> as a reserved, though unresolvable, <code title="">about:</code> URI, that is used as <a href="dom.html#the-document-s-address" id="the-document's-address">the document's address</a> of <a href="the-iframe-element.html#an-iframe-srcdoc-document" id="an-iframe-srcdoc-document_0" title="an iframe srcdoc - document"><code>iframe</code> <code title="attr-iframe-srcdoc">srcdoc</code> documents</a>. <a href="references.html#refsABOUT">[ABOUT]</a><h4 id="resolving-urls"><span class="secno">2.5.2 </span>Resolving URLs</h4><p>Resolving a URL is the process of taking a relative URL and - obtaining the absolute URL that it implies.<p>A <a href="#url" id="url_7">URL</a> is an <dfn aria-haspopup="true" id="absolute-url" role="button" tabindex="0">absolute URL</dfn> if <a class="full-spec-link" href="http://dev.w3.org/html5/spec/urls.html#resolve-a-url" title='Read about this "resolving" reference in the full HTML5 spec.'>resolving</a> it results in the same output + document"><code>iframe</code> <code title="attr-iframe-srcdoc">srcdoc</code> documents</a>. <a href="references.html#refsABOUT">[ABOUT]</a></p> + + + + + + <h4 id="resolving-urls"><span class="secno">2.5.2 </span>Resolving URLs</h4> + + <p>Resolving a URL is the process of taking a relative URL and + obtaining the absolute URL that it implies.</p> + + + + <p>A <a href="#url" id="url_7">URL</a> is an <dfn aria-haspopup="true" id="absolute-url" role="button" tabindex="0">absolute URL</dfn> if <a class="full-spec-link" href="http://dev.w3.org/html5/spec/urls.html#resolve-a-url" title='Read about this "resolving" reference in the full HTML5 spec.'>resolving</a> it results in the same output regardless of what it is resolved relative to, and that output is - not a failure.<p>An <a href="#absolute-url" id="absolute-url_0">absolute URL</a> is a <dfn aria-haspopup="true" id="hierarchical-url" role="button" tabindex="0">hierarchical URL</dfn> if, + not a failure.</p> + + <p>An <a href="#absolute-url" id="absolute-url_0">absolute URL</a> is a <dfn aria-haspopup="true" id="hierarchical-url" role="button" tabindex="0">hierarchical URL</dfn> if, when <a class="full-spec-link" href="http://dev.w3.org/html5/spec/urls.html#resolve-a-url" title='Read about this "resolved" reference in the full HTML5 spec.'>resolved</a> and then <a class="full-spec-link" href="http://dev.w3.org/html5/spec/urls.html#parse-a-url" title='Read about this "parsed" reference in the full HTML5 spec.'>parsed</a>, there is a character immediately after the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/urls.html#url-scheme" title='Read about this "<scheme>" reference in the full HTML5 spec.'><scheme></a> component - and it is a U+002F SOLIDUS character (/).<p>An <a href="#absolute-url" id="absolute-url_1">absolute URL</a> is an <dfn aria-haspopup="true" id="authority-based-url" role="button" tabindex="0">authority-based URL</dfn> + and it is a "/" (U+002F) character.</p> + + <p>An <a href="#absolute-url" id="absolute-url_1">absolute URL</a> is an <dfn aria-haspopup="true" id="authority-based-url" role="button" tabindex="0">authority-based URL</dfn> if, when <a class="full-spec-link" href="http://dev.w3.org/html5/spec/urls.html#resolve-a-url" title='Read about this "resolved" reference in the full HTML5 spec.'>resolved</a> and then <a class="full-spec-link" href="http://dev.w3.org/html5/spec/urls.html#parse-a-url" title='Read about this "parsed" reference in the full HTML5 spec.'>parsed</a>, there are two characters immediately after the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/urls.html#url-scheme" title='Read about this "<scheme>" reference in the full HTML5 spec.'><scheme></a> - component and they are both U+002F SOLIDUS characters (//).<h4 id="interfaces-for-url-manipulation"><span class="secno">2.5.3 </span>Interfaces for URL manipulation</h4><p>An interface that has a complement of <dfn aria-haspopup="true" id="url-decomposition-idl-attributes" role="button" tabindex="0">URL decomposition IDL + component and they are both "//" (U+002F) characters.</p> + + + + + + + + + + + + <h4 id="interfaces-for-url-manipulation"><span class="secno">2.5.3 </span>Interfaces for URL manipulation</h4> + + <p>An interface that has a complement of <dfn aria-haspopup="true" id="url-decomposition-idl-attributes" role="button" tabindex="0">URL decomposition IDL attributes</dfn> has seven attributes with the following - definitions:<pre class="idl extract"> attribute DOMString <a href="#dom-uda-protocol" title="dom-uda-protocol">protocol</a>; + definitions:</p> + +<pre class="idl extract"> attribute DOMString <a href="#dom-uda-protocol" title="dom-uda-protocol">protocol</a>; attribute DOMString <a href="#dom-uda-host" title="dom-uda-host">host</a>; attribute DOMString <a href="#dom-uda-hostname" title="dom-uda-hostname">hostname</a>; attribute DOMString <a href="#dom-uda-port" title="dom-uda-port">port</a>; attribute DOMString <a href="#dom-uda-pathname" title="dom-uda-pathname">pathname</a>; attribute DOMString <a href="#dom-uda-search" title="dom-uda-search">search</a>; - attribute DOMString <a href="#dom-uda-hash" title="dom-uda-hash">hash</a>;</pre><dl class="domintro"><dt><var title="">o</var> . <code id="dom-uda-protocol" title="dom-uda-protocol"><a href="#dom-uda-protocol">protocol</a></code> [ = <var title="">value</var> ]</dt> + attribute DOMString <a href="#dom-uda-hash" title="dom-uda-hash">hash</a>;</pre> + + <dl class="domintro"><dt><var title="">o</var> . <code id="dom-uda-protocol" title="dom-uda-protocol"><a href="#dom-uda-protocol">protocol</a></code> [ = <var title="">value</var> ]</dt> <dd> <p>Returns the current scheme of the underlying URL.</p> <p>Can be set, to change the underlying URL's scheme.</p> @@ -468,7 +561,9 @@ <tr><td> <code title="">http://example.com/?test#</code> <td> <code title="">?test</code> <td> The (empty) <a class="full-spec-link" href="http://dev.w3.org/html5/spec/urls.html#url-fragment" title='Read about this "<fragment>" reference in the full HTML5 spec.'><fragment></a> component is not part of the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/urls.html#url-query" title='Read about this "<query>" reference in the full HTML5 spec.'><query></a> component. - </table></div><div class="example"> + </table></div> + + <div class="example"> <p>The following table is similar; it provides a list of what each of the <a href="#url-decomposition-idl-attributes" id="url-decomposition-idl-attributes_0">URL decomposition IDL attributes</a> returns for a @@ -498,11 +593,22 @@ <td><code title="">/</code> <td><code title="">?</code> <td>(empty string) - </table></div><h4 id="cors-settings-attributes"><span class="secno">2.5.4 </span>CORS settings attributes</h4><p>A <dfn aria-haspopup="true" id="cors-settings-attribute" role="button" tabindex="0">CORS settings attribute</dfn> is an <a href="common-microsyntaxes.html#enumerated-attribute" id="enumerated-attribute_0">enumerated + </table></div> + + + + + + + <h4 id="cors-settings-attributes"><span class="secno">2.5.4 </span>CORS settings attributes</h4> + + <p>A <dfn aria-haspopup="true" id="cors-settings-attribute" role="button" tabindex="0">CORS settings attribute</dfn> is an <a href="common-microsyntaxes.html#enumerated-attribute" id="enumerated-attribute_0">enumerated attribute</a>. The following table lists the keywords and states for the attribute — the keywords in the left column map to the states in the cell in the second column on the same row as the - keyword.<table><thead><tr><th> Keyword + keyword.</p> + + <table><thead><tr><th> Keyword <th> State <th> Brief description <tbody><tr><td><dfn aria-haspopup="true" id="attr-crossorigin-anonymous-keyword" role="button" tabindex="0"><code>anonymous</code></dfn> @@ -514,4 +620,11 @@ </table><p>The empty string is also a valid keyword, and maps to the <a href="#attr-crossorigin-anonymous" id="attr-crossorigin-anonymous_0" title="attr-crossorigin-anonymous">Anonymous</a> state. The attribute's <i>invalid value default</i> is the <a href="#attr-crossorigin-anonymous" id="attr-crossorigin-anonymous_1" title="attr-crossorigin-anonymous">Anonymous</a> state. The <i>missing value default</i>, used when the attribute is omitted, is - the <dfn aria-haspopup="true" id="attr-crossorigin-none" role="button" tabindex="0">No CORS</dfn> state. \ No newline at end of file + the <dfn aria-haspopup="true" id="attr-crossorigin-none" role="button" tabindex="0">No CORS</dfn> state.</p> + + + + + + + \ No newline at end of file Index: the-xhtml-syntax.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-xhtml-syntax.html,v retrieving revision 1.1098 retrieving revision 1.1099 diff -u -d -r1.1098 -r1.1099 --- the-xhtml-syntax.html 15 Feb 2012 10:14:27 -0000 1.1098 +++ the-xhtml-syntax.html 13 Mar 2012 19:59:03 -0000 1.1099 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,22 +380,120 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="named-character-references.html">← 8.2 Named character references</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="obsolete.html">10 Obsolete features →</a> </div> - <h2 id="the-xhtml-syntax"><span class="secno">9 </span><dfn aria-haspopup="true" id="xhtml" role="button" tabindex="0">The XHTML syntax</dfn></h2><p class="note">This section only describes the rules for XML + <h2 id="the-xhtml-syntax"><span class="secno">9 </span><dfn aria-haspopup="true" id="xhtml" role="button" tabindex="0">The XHTML syntax</dfn></h2> + + <p class="note">This section only describes the rules for XML resources. Rules for <code><a href="iana.html#text-html" id="text/html_5">text/html</a></code> resources are discussed - in the section above entitled "<a href="syntax.html#syntax" id="the-html-syntax_8">The HTML syntax</a>".<p>The syntax for using HTML with XML, whether in XHTML documents or + in the section above entitled "<a href="syntax.html#syntax" id="the-html-syntax_8">The HTML syntax</a>".</p> + + + + + <p>The syntax for using HTML with XML, whether in XHTML documents or embedded in other XML documents, is defined in the XML and - Namespaces in XML specifications. <a href="references.html#refsXML">[XML]</a> <a href="references.html#refsXMLNS">[XMLNS]</a><p>This specification does not define any syntax-level requirements - beyond those defined for XML proper.<p>XML documents may contain a <a href="syntax.html#syntax-doctype" id="doctype"><code>DOCTYPE</code></a> if desired, but + Namespaces in XML specifications. <a href="references.html#refsXML">[XML]</a> <a href="references.html#refsXMLNS">[XMLNS]</a></p> + + <p>This specification does not define any syntax-level requirements + beyond those defined for XML proper.</p> + + <p>XML documents may contain a <a href="syntax.html#syntax-doctype" id="doctype"><code>DOCTYPE</code></a> if desired, but this is not required to conform to this specification. This specification does not define a public or system identifier, nor - provide a format DTD.<p class="note">According to the XML specification, XML processors + provide a format DTD.</p> + + <p class="note">According to the XML specification, XML processors are not guaranteed to process the external DTD subset referenced in the DOCTYPE. This means, for example, that using entity references for characters in XHTML documents is unsafe if they are defined in - an external file (except for <code title="">&lt;</code>, <code title="">&gt;</code>, <code title="">&amp;</code>, <code title="">&quot;</code> and <code title="">&apos;</code>). \ No newline at end of file + an external file (except for <code title="">&lt;</code>, <code title="">&gt;</code>, <code title="">&amp;</code>, <code title="">&quot;</code> and <code title="">&apos;</code>).</p> + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file Index: the-div-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-div-element.html,v retrieving revision 1.123 retrieving revision 1.124 diff -u -d -r1.123 -r1.124 --- the-div-element.html 21 Feb 2012 21:59:03 -0000 1.123 +++ the-div-element.html 13 Mar 2012 19:58:57 -0000 1.124 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-figcaption-element.html">← 4.5.12 The figcaption element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="text-level-semantics.html">4.6 Text-level semantics →</a> </div> - <h4 id="the-div-element"><span class="secno">4.5.13 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>div</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_31" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-div-element"><span class="secno">4.5.13 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>div</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_31" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_67">Flow content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_16">Palpable content</a>.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_31" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> @@ -365,11 +405,15 @@ </dd> </dl><p>The <code><a href="#the-div-element" id="div_12">div</a></code> element has no special meaning at all. It <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> its children. It can be used with the <code title="attr-class"><a href="global-attributes.html#classes" id="class_5">class</a></code>, <code title="attr-lang"><a href="global-attributes.html#attr-lang" id="lang_7">lang</a></code>, and <code title="attr-title"><a href="global-attributes.html#the-title-attribute" id="title_10">title</a></code> attributes to mark up semantics - common to a group of consecutive elements.<p class="note">Authors are strongly encouraged to view the + common to a group of consecutive elements.</p> + + <p class="note">Authors are strongly encouraged to view the <code><a href="#the-div-element" id="div_13">div</a></code> element as an element of last resort, for when no other element is suitable. Use of more appropriate elements instead of the <code><a href="#the-div-element" id="div_14">div</a></code> element leads to better accessibility for - readers and easier maintainability for authors.<div class="example"> + readers and easier maintainability for authors.</p> + + <div class="example"> <p>For example, a blog post would be marked up using <code><a href="the-article-element.html#the-article-element" id="article_18">article</a></code>, a chapter using <code><a href="the-section-element.html#the-section-element" id="section_14">section</a></code>, a @@ -400,4 +444,7 @@ <p>I should say "sidewalk" and "apartment" and "color"!</p> </article></pre> - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: the-output-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-output-element.html,v retrieving revision 1.152 retrieving revision 1.153 diff -u -d -r1.152 -r1.153 --- the-output-element.html 21 Feb 2012 21:59:06 -0000 1.152 +++ the-output-element.html 13 Mar 2012 19:59:00 -0000 1.153 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-keygen-element.html">← 4.10.14 The keygen element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-progress-element.html">4.10.16 The progress element →</a> </div> - <h4 id="the-output-element"><span class="secno">4.10.15 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>output</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_95" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-output-element"><span class="secno">4.10.15 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>output</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_95" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_135">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_150">Phrasing content</a>.</dd> <dd><a href="forms.html#category-listed" id="category-listed_9" title="category-listed">Listed</a>, <a href="forms.html#category-label" id="category-label_7" title="category-label">labelable</a>, and <a href="forms.html#category-reset" id="category-reset_5" title="category-reset">resettable</a> <a href="forms.html#form-associated-element" id="form-associated-element_12">form-associated element</a>.</dd> @@ -385,7 +425,9 @@ };</pre> </dd> </dl><p>The <code><a href="#the-output-element" id="output_12">output</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> the result of a - calculation.<p>The <dfn aria-haspopup="true" id="attr-output-for" role="button" tabindex="0"><code>for</code></dfn> content + calculation.</p> + + <p>The <dfn aria-haspopup="true" id="attr-output-for" role="button" tabindex="0"><code>for</code></dfn> content attribute allows an explicit relationship to be made between the result of a calculation and the elements that represent the values that went into the calculation or that otherwise influenced the @@ -394,10 +436,17 @@ set of unique space-separated tokens</a> that are <a href="infrastructure.html#case-sensitive" id="case-sensitive_4">case-sensitive</a>, each of which must have the value of an <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#concept-id" title='Read about this "ID" reference in the full HTML5 spec.'>ID</a> of an element in the same - <code><a href="dom.html#document" id="document_66">Document</a></code>.<p>The <code title="attr-fae-form"><a href="association-of-controls-and-forms.html#attr-fae-form" id="form_60">form</a></code> attribute is used to + <code><a href="dom.html#document" id="document_66">Document</a></code>.</p> + + <p>The <code title="attr-fae-form"><a href="association-of-controls-and-forms.html#attr-fae-form" id="form_60">form</a></code> attribute is used to explicitly associate the <code><a href="#the-output-element" id="output_13">output</a></code> element with its <a href="association-of-controls-and-forms.html#form-owner" id="form-owner_12">form owner</a>. The <code title="attr-fe-name"><a href="attributes-common-to-form-controls.html#attr-fe-name" id="name_46">name</a></code> - attribute represents the element's name.<dl class="domintro"><dt><var title="">output</var> . <code id="dom-output-value" title="dom-output-value"><a href="#dom-output-value">value</a></code> [ = <var title="">value</var> ]</dt> + attribute represents the element's name.</p> + + + + + <dl class="domintro"><dt><var title="">output</var> . <code id="dom-output-value" title="dom-output-value"><a href="#dom-output-value">value</a></code> [ = <var title="">value</var> ]</dt> <dd> @@ -427,7 +476,10 @@ </dl><p>The <dfn aria-haspopup="true" id="dom-output-htmlfor" role="button" tabindex="0"><code>htmlFor</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_83">reflect</a> the <code title="attr-output-for"><a href="#attr-output-for" id="for_5">for</a></code> content attribute.</p> -<div class="example"> + + + + <div class="example"> <p>A simple calculator could use <code><a href="#the-output-element" id="output_14">output</a></code> for its display of calculated results:</p> @@ -438,4 +490,8 @@ <output name=o></output> </form></pre> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: the-label-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-label-element.html,v retrieving revision 1.147 retrieving revision 1.148 diff -u -d -r1.147 -r1.148 --- the-label-element.html 21 Feb 2012 21:59:06 -0000 1.147 +++ the-label-element.html 13 Mar 2012 19:58:59 -0000 1.148 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-legend-element.html">← 4.10.5 The legend element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-input-element.html">4.10.7 The input element →</a> </div> - <h4 id="the-label-element"><span class="secno">4.10.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>label</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_86" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-label-element"><span class="secno">4.10.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>label</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_86" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_128">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_133">Phrasing content</a>.</dd> <dd><a href="content-models.html#interactive-content" id="interactive-content_11">Interactive content</a>.</dd> @@ -375,13 +415,23 @@ </dl><p>The <code><a href="#the-label-element" id="label_15">label</a></code> <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a caption in a user interface. The caption can be associated with a specific form control, either using <code title="attr-label-for"><a href="#attr-label-for" id="for_0">for</a></code> attribute, or by putting the form - control inside the <code><a href="#the-label-element" id="label_16">label</a></code> element itself.<p>The <dfn aria-haspopup="true" id="attr-label-for" role="button" tabindex="0"><code>for</code></dfn> attribute + control inside the <code><a href="#the-label-element" id="label_16">label</a></code> element itself.</p> + + + + <p>The <dfn aria-haspopup="true" id="attr-label-for" role="button" tabindex="0"><code>for</code></dfn> attribute may be specified to indicate a form control with which the caption is to be associated. If the attribute is specified, the attribute's value must be the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#concept-id" title='Read about this "ID" reference in the full HTML5 spec.'>ID</a> of a <a href="forms.html#category-label" id="category-label_1" title="category-label">labelable element</a> in the same - <code><a href="dom.html#document" id="document_65">Document</a></code> as the <code><a href="#the-label-element" id="label_17">label</a></code> element. <p>The <code title="attr-fae-form"><a href="association-of-controls-and-forms.html#attr-fae-form" id="form_48">form</a></code> attribute is used to + <code><a href="dom.html#document" id="document_65">Document</a></code> as the <code><a href="#the-label-element" id="label_17">label</a></code> element. </p> + + + + <p>The <code title="attr-fae-form"><a href="association-of-controls-and-forms.html#attr-fae-form" id="form_48">form</a></code> attribute is used to explicitly associate the <code><a href="#the-label-element" id="label_18">label</a></code> element with its - <a href="association-of-controls-and-forms.html#form-owner" id="form-owner_3">form owner</a>.<div class="example"> + <a href="association-of-controls-and-forms.html#form-owner" id="form-owner_3">form owner</a>.</p> + + <div class="example"> <p>The following example shows three form controls each with a label, two of which have small text showing the right format for @@ -391,7 +441,10 @@ <p><label>Age: <input name=age type=number min=0></label></p> <p><label>Post code: <input name=pc> <small>Format: AB12 3CD</small></label></p></pre> - </div><dl class="domintro"><dt><var title="">label</var> . <code id="dom-label-control" title="dom-label-control"><a href="#dom-label-control">control</a></code></dt> + </div> + + + <dl class="domintro"><dt><var title="">label</var> . <code id="dom-label-control" title="dom-label-control"><a href="#dom-label-control">control</a></code></dt> <dd> @@ -401,7 +454,9 @@ </dl><p>The <dfn aria-haspopup="true" id="dom-label-htmlfor" role="button" tabindex="0"><code>htmlFor</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_62">reflect</a> the <code title="attr-label-for"><a href="#attr-label-for" id="for_1">for</a></code> content attribute.</p> -<hr><dl class="domintro"><dt><var title="">control</var> . <code id="dom-lfe-labels" title="dom-lfe-labels"><a href="#dom-lfe-labels">labels</a></code></dt> + + + <hr><dl class="domintro"><dt><var title="">control</var> . <code id="dom-lfe-labels" title="dom-lfe-labels"><a href="#dom-lfe-labels">labels</a></code></dt> <dd> Index: dnd.html =================================================================== RCS file: /sources/public/html5/spec-author-view/dnd.html,v retrieving revision 1.620 retrieving revision 1.621 diff -u -d -r1.620 -r1.621 --- dnd.html 21 Feb 2012 21:58:41 -0000 1.620 +++ dnd.html 13 Mar 2012 19:58:37 -0000 1.621 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,7 +380,9 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="editing-apis.html">← 7.5.4 Editing APIs</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="syntax.html">8 The HTML syntax →</a> @@ -352,19 +390,44 @@ <ol><li><a href="dnd.html#introduction-7"><span class="secno">7.6.1 </span>Introduction</a><li><a href="dnd.html#the-drag-data-store"><span class="secno">7.6.2 </span>The drag data store</a><li><a href="dnd.html#the-datatransfer-interface"><span class="secno">7.6.3 </span>The <code>DataTransfer</code> interface</a> <ol><li><a href="dnd.html#the-datatransferitemlist-interface"><span class="secno">7.6.3.1 </span>The <code>DataTransferItemList</code> interface</a><li><a href="dnd.html#the-datatransferitem-interface"><span class="secno">7.6.3.2 </span>The <code>DataTransferItem</code> interface</a></ol><li><a href="dnd.html#the-dragevent-interface"><span class="secno">7.6.4 </span>The <code>DragEvent</code> interface</a><li><a href="dnd.html#dndevents"><span class="secno">7.6.5 </span>Events summary</a><li><a href="dnd.html#the-draggable-attribute" id="7.6.6-the-draggable-attribute"><span class="secno">7.6.6 </span>The <code>draggable</code> attribute</a><li><a href="dnd.html#the-dropzone-attribute" id="7.6.7-the-dropzone-attribute"><span class="secno">7.6.7 </span>The <code>dropzone</code> attribute</a></ol></ol></ol></div> - <h3 id="dnd"><span class="secno">7.6 </span><dfn aria-haspopup="true" role="button" tabindex="0">Drag and drop</dfn></h3><p>This section defines an event-based drag-and-drop mechanism.<p>This specification does not define exactly what a - <em>drag-and-drop operation</em> actually is.<p>On a visual medium with a pointing device, a drag operation could + <h3 id="dnd"><span class="secno">7.6 </span><dfn aria-haspopup="true" role="button" tabindex="0">Drag and drop</dfn></h3> + + + + <p>This section defines an event-based drag-and-drop mechanism.</p> + + <p>This specification does not define exactly what a + <em>drag-and-drop operation</em> actually is.</p> + + <p>On a visual medium with a pointing device, a drag operation could be the default action of a <code title="event-mousedown">mousedown</code> event that is followed by a series of <code title="event-mousemove">mousemove</code> events, and - the drop could be triggered by the mouse being released.<p>When using an input modality other than a pointing device, users + the drop could be triggered by the mouse being released.</p> + + <p>When using an input modality other than a pointing device, users would probably have to explicitly indicate their intention to perform a drag-and-drop operation, stating what they wish to drag - and where they wish to drop it, respectively.<h4 id="introduction-7"><span class="secno">7.6.1 </span>Introduction</h4><p>To make an element draggable is simple: give the element a <code title="attr-draggable"><a href="#the-draggable-attribute" id="draggable_0">draggable</a></code> attribute, and set an event + and where they wish to drop it, respectively.</p> + + + + + <h4 id="introduction-7"><span class="secno">7.6.1 </span>Introduction</h4> + + + + <p>To make an element draggable is simple: give the element a <code title="attr-draggable"><a href="#the-draggable-attribute" id="draggable_0">draggable</a></code> attribute, and set an event listener for <code title="event-dragstart"><a href="#event-dragstart" id="dragstart_0">dragstart</a></code> that - stores the data being dragged.<p>The event handler typically needs to check that it's not a text + stores the data being dragged.</p> + + <p>The event handler typically needs to check that it's not a text selection that is being dragged, and then needs to store data into the <code><a href="#datatransfer" id="datatransfer_0">DataTransfer</a></code> object and set the allowed effects - (copy, move, link, or some combination).<p>For example:<pre><p>What fruits do you like?</p> + (copy, move, link, or some combination).</p> + + <p>For example:</p> + + <pre><p>What fruits do you like?</p> <ol ondragstart="dragStartHandler(event)"> <li draggable="true" data-value="fruit-apple">Apples</li> <li draggable="true" data-value="fruit-orange">Oranges</li> @@ -381,20 +444,32 @@ event.preventDefault(); // don't allow selection to be dragged } } -</script></pre><hr><p>To accept a drop, the drop target has to have a <code title="attr-dropzone"><a href="#the-dropzone-attribute" id="dropzone_0">dropzone</a></code> attribute and listen to the - <code title="drop-event">drop</code> event.<p>The value of the <code title="attr-dropzone"><a href="#the-dropzone-attribute" id="dropzone_1">dropzone</a></code> +</script></pre> + + <hr><p>To accept a drop, the drop target has to have a <code title="attr-dropzone"><a href="#the-dropzone-attribute" id="dropzone_0">dropzone</a></code> attribute and listen to the + <code title="drop-event">drop</code> event.</p> + + <p>The value of the <code title="attr-dropzone"><a href="#the-dropzone-attribute" id="dropzone_1">dropzone</a></code> attribute specifies what kind of data to accept (e.g. "<code title="">string:text/plain</code>" to accept any text strings, or "<code>file:image/png</code>" to accept a PNG image file) and what kind of feedback to give (e.g. "<a href="#attr-dropzone-move" id="move"><code>move</code></a>" to indicate that - the data will be moved).<p class="note">Instead of using the <code title="attr-dropzone"><a href="#the-dropzone-attribute" id="dropzone_2">dropzone</a></code> attribute, a drop target can + the data will be moved).</p> + + <p class="note">Instead of using the <code title="attr-dropzone"><a href="#the-dropzone-attribute" id="dropzone_2">dropzone</a></code> attribute, a drop target can handle the <code title="event-dragenter"><a href="#event-dragenter" id="dragenter_0">dragenter</a></code> event (to report whether or not the drop target is to accept the drop) and the <code title="event-dragover"><a href="#event-dragover" id="dragover_0">dragover</a></code> event (to specify what - feedback is to be shown to the user).<p>The <code title="event-drop"><a href="#event-drop" id="drop_0">drop</a></code> event allows the actual + feedback is to be shown to the user).</p> + + <p>The <code title="event-drop"><a href="#event-drop" id="drop_0">drop</a></code> event allows the actual drop to be performed. This event needs to be canceled, so that the <code title="dom-DataTransfer-DropEffect"><a href="#dom-datatransfer-dropeffect">dropEffect</a></code> attribute's value can be used by the source (otherwise it's - reset).<p>For example:<pre><p>Drop your favorite fruits below:</p> + reset).</p> + + <p>For example:</p> + + <pre><p>Drop your favorite fruits below:</p> <ol dropzone="move string:text/x-example" ondrop="dropHandler(event)"> <-- don't forget to change the "text/x-example" type to something specific to your site --> @@ -415,10 +490,16 @@ } event.target.appendChild(li); } -</script></pre><hr><p>To remove the original element (the one that was dragged) from +</script></pre> + + <hr><p>To remove the original element (the one that was dragged) from the display, the <code title="event-dragend"><a href="#event-dragend" id="dragend_0">dragend</a></code> event - can be used.<p>For our example here, that means updating the original markup to - handle that event:<pre><p>What fruits do you like?</p> + can be used.</p> + + <p>For our example here, that means updating the original markup to + handle that event:</p> + + <pre><p>What fruits do you like?</p> <ol ondragstart="dragStartHandler(event)" ondragend="dragEndHandler(event)"> <em>...as before...</em> </ol> @@ -430,8 +511,16 @@ // remove the dragged element event.target.parentNode.removeChild(event.target); } -</script></pre><h4 id="the-drag-data-store"><span class="secno">7.6.2 </span>The drag data store</h4><p>The data that underlies a drag-and-drop operation, known as the - <dfn aria-haspopup="true" id="drag-data-store" role="button" tabindex="0">drag data store</dfn>, consists of the following information:<ul><li><p>A <dfn aria-haspopup="true" id="drag-data-store-item-list" role="button" tabindex="0">drag data store item list</dfn>, which is a list of +</script></pre> + + + + <h4 id="the-drag-data-store"><span class="secno">7.6.2 </span>The drag data store</h4> + + <p>The data that underlies a drag-and-drop operation, known as the + <dfn aria-haspopup="true" id="drag-data-store" role="button" tabindex="0">drag data store</dfn>, consists of the following information:</p> + + <ul><li><p>A <dfn aria-haspopup="true" id="drag-data-store-item-list" role="button" tabindex="0">drag data store item list</dfn>, which is a list of items representing the dragged data, each consisting of the following information:</p> @@ -556,9 +645,16 @@ store elements list</a> is empty, it has no <a href="#drag-data-store-bitmap" id="drag-data-store-bitmap_0">drag data store bitmap</a> / <a href="#drag-data-store-hot-spot-coordinate" id="drag-data-store-hot-spot-coordinate_0">drag data store hot spot coordinate</a>, its <a href="#drag-data-store-mode" id="drag-data-store-mode_0">drag data store mode</a> is <a href="#concept-dnd-p" id="concept-dnd-p_0" title="concept-dnd-p">protected mode</a>, and its <a href="#drag-data-store-allowed-effects-state" id="drag-data-store-allowed-effects-state_0">drag data - store allowed effects state</a> is the string "<code title="">uninitialized</code>".<h4 id="the-datatransfer-interface"><span class="secno">7.6.3 </span>The <code><a href="#datatransfer" id="datatransfer_1">DataTransfer</a></code> interface</h4><p><code><a href="#datatransfer" id="datatransfer_2">DataTransfer</a></code> objects are used to expose the + store allowed effects state</a> is the string "<code title="">uninitialized</code>".</p> + + + <h4 id="the-datatransfer-interface"><span class="secno">7.6.3 </span>The <code><a href="#datatransfer" id="datatransfer_1">DataTransfer</a></code> interface</h4> + + <p><code><a href="#datatransfer" id="datatransfer_2">DataTransfer</a></code> objects are used to expose the <a href="#drag-data-store" id="drag-data-store_3">drag data store</a> that underlies a drag-and-drop - operation.<pre class="idl">interface <dfn aria-haspopup="true" id="datatransfer" role="button" tabindex="0">DataTransfer</dfn> { + operation.</p> + + <pre class="idl">interface <dfn aria-haspopup="true" id="datatransfer" role="button" tabindex="0">DataTransfer</dfn> { attribute DOMString <a href="#dom-datatransfer-dropeffect" title="dom-DataTransfer-dropEffect">dropEffect</a>; attribute DOMString <a href="#dom-datatransfer-effectallowed" title="dom-DataTransfer-effectAllowed">effectAllowed</a>; @@ -573,7 +669,9 @@ void <a href="#dom-datatransfer-setdata" title="dom-DataTransfer-setData">setData</a>(DOMString format, DOMString data); void <a href="#dom-datatransfer-cleardata" title="dom-DataTransfer-clearData">clearData</a>(optional DOMString format); readonly attribute <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#filelist" title='Read about this "FileList" reference in the full HTML5 spec.'>FileList</a> <a href="#dom-datatransfer-files" title="dom-DataTransfer-files">files</a>; -};</pre><dl class="domintro"><dt><var title="">dataTransfer</var> . <code id="dom-datatransfer-dropeffect" title="dom-DataTransfer-dropEffect"><a href="#dom-datatransfer-dropeffect">dropEffect</a></code> [ = <var title="">value</var> ]</dt> +};</pre> + + <dl class="domintro"><dt><var title="">dataTransfer</var> . <code id="dom-datatransfer-dropeffect" title="dom-DataTransfer-dropEffect"><a href="#dom-datatransfer-dropeffect">dropEffect</a></code> [ = <var title="">value</var> ]</dt> <dd> @@ -678,8 +776,17 @@ </dd> </dl><p><code><a href="#datatransfer" id="datatransfer_3">DataTransfer</a></code> objects are used during the <a href="#dndevents">drag-and-drop events</a>, and are only valid while - those events are being fired.<h5 id="the-datatransferitemlist-interface"><span class="secno">7.6.3.1 </span>The <code><a href="#datatransferitemlist" id="datatransferitemlist_2">DataTransferItemList</a></code> interface</h5><p>Each <code><a href="#datatransfer" id="datatransfer_4">DataTransfer</a></code> object is associated with a - <code><a href="#datatransferitemlist" id="datatransferitemlist_3">DataTransferItemList</a></code> object.<pre class="idl">interface <dfn aria-haspopup="true" id="datatransferitemlist" role="button" tabindex="0">DataTransferItemList</dfn> { + those events are being fired.</p> + + + + + <h5 id="the-datatransferitemlist-interface"><span class="secno">7.6.3.1 </span>The <code><a href="#datatransferitemlist" id="datatransferitemlist_2">DataTransferItemList</a></code> interface</h5> + + <p>Each <code><a href="#datatransfer" id="datatransfer_4">DataTransfer</a></code> object is associated with a + <code><a href="#datatransferitemlist" id="datatransferitemlist_3">DataTransferItemList</a></code> object.</p> + + <pre class="idl">interface <dfn aria-haspopup="true" id="datatransferitemlist" role="button" tabindex="0">DataTransferItemList</dfn> { readonly attribute unsigned long <a href="#dom-datatransferitemlist-length" title="dom-DataTransferItemList-length">length</a>; <a class="full-spec-link" href="http://dev.w3.org/html5/spec/dnd.html#dom-datatransferitemlist-item" title='Read about this "getter" reference in the full HTML5 spec.'>getter</a> <a href="#datatransferitem" id="datatransferitem_0">DataTransferItem</a> (unsigned long index); <a class="full-spec-link" href="http://dev.w3.org/html5/spec/dnd.html#dom-datatransferitemlist-removeitem" title='Read about this "deleter" reference in the full HTML5 spec.'>deleter</a> void (unsigned long index); @@ -687,7 +794,9 @@ <a href="#datatransferitem" id="datatransferitem_1">DataTransferItem</a>? <a href="#dom-datatransferitemlist-add" title="dom-DataTransferItemList-add">add</a>(DOMString data, DOMString type); <a href="#datatransferitem" id="datatransferitem_2">DataTransferItem</a>? <a href="#dom-datatransferitemlist-add" title="dom-DataTransferItemList-add">add</a>(<a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#file" title='Read about this "File" reference in the full HTML5 spec.'>File</a> data); -};</pre><dl class="domintro"><dt><var title="">items</var> . <code id="dom-datatransferitemlist-length" title="dom-DataTransferItemList-length"><a href="#dom-datatransferitemlist-length">length</a></code></dt> +};</pre> + + <dl class="domintro"><dt><var title="">items</var> . <code id="dom-datatransferitemlist-length" title="dom-DataTransferItemList-length"><a href="#dom-datatransferitemlist-length">length</a></code></dt> <dd><p>Returns the number of items in the <a href="#drag-data-store" id="drag-data-store_4">drag data store</a>.</dd> @@ -731,8 +840,12 @@ </dd> - </dl><h5 id="the-datatransferitem-interface"><span class="secno">7.6.3.2 </span>The <code><a href="#datatransferitem" id="datatransferitem_4">DataTransferItem</a></code> interface</h5><p>Each <code><a href="#datatransferitem" id="datatransferitem_5">DataTransferItem</a></code> object is associated with a - <code><a href="#datatransfer" id="datatransfer_5">DataTransfer</a></code> object.<pre class="idl">interface <dfn aria-haspopup="true" id="datatransferitem" role="button" tabindex="0">DataTransferItem</dfn> { + </dl><h5 id="the-datatransferitem-interface"><span class="secno">7.6.3.2 </span>The <code><a href="#datatransferitem" id="datatransferitem_4">DataTransferItem</a></code> interface</h5> + + <p>Each <code><a href="#datatransferitem" id="datatransferitem_5">DataTransferItem</a></code> object is associated with a + <code><a href="#datatransfer" id="datatransfer_5">DataTransfer</a></code> object.</p> + + <pre class="idl">interface <dfn aria-haspopup="true" id="datatransferitem" role="button" tabindex="0">DataTransferItem</dfn> { readonly attribute DOMString <a href="#dom-datatransferitem-kind" title="dom-DataTransferItem-kind">kind</a>; readonly attribute DOMString <a href="#dom-datatransferitem-type" title="dom-DataTransferItem-type">type</a>; void <a href="#dom-datatransferitem-getasstring" title="dom-DataTransferItem-getAsString">getAsString</a>(<a href="#functionstringcallback" id="functionstringcallback_0">FunctionStringCallback</a>? _callback); @@ -742,7 +855,9 @@ [Callback, NoInterfaceObject] interface <dfn aria-haspopup="true" id="functionstringcallback" role="button" tabindex="0">FunctionStringCallback</dfn> { void <span title="dom-FunctionStringCallback-handleEvent">handleEvent</span>(DOMString data); -};</pre><dl class="domintro"><dt><var title="">item</var> . <code id="dom-datatransferitem-kind" title="dom-DataTransferItem-kind"><a href="#dom-datatransferitem-kind">kind</a></code></dt> +};</pre> + + <dl class="domintro"><dt><var title="">item</var> . <code id="dom-datatransferitem-kind" title="dom-DataTransferItem-kind"><a href="#dom-datatransferitem-kind">kind</a></code></dt> <dd> <p>Returns <a href="#the-drag-data-item-kind" id="the-drag-data-item-kind_1">the drag data item kind</a>, one of: "string", @@ -775,15 +890,21 @@ - </dl><h4 id="the-dragevent-interface"><span class="secno">7.6.4 </span>The <code><a href="#dragevent" id="dragevent_0">DragEvent</a></code> interface</h4><p>The drag-and-drop processing model involves several events. They - all use the <code><a href="#dragevent" id="dragevent_1">DragEvent</a></code> interface.<pre class="idl">[Constructor(DOMString type, optional <a href="#drageventinit" id="drageventinit_0">DragEventInit</a> eventInitDict)] + </dl><h4 id="the-dragevent-interface"><span class="secno">7.6.4 </span>The <code><a href="#dragevent" id="dragevent_0">DragEvent</a></code> interface</h4> + + <p>The drag-and-drop processing model involves several events. They + all use the <code><a href="#dragevent" id="dragevent_1">DragEvent</a></code> interface.</p> + + <pre class="idl">[Constructor(DOMString type, optional <a href="#drageventinit" id="drageventinit_0">DragEventInit</a> eventInitDict)] interface <dfn aria-haspopup="true" id="dragevent" role="button" tabindex="0">DragEvent</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#mouseevent" title='Read about this "MouseEvent" reference in the full HTML5 spec.'>MouseEvent</a> { readonly attribute <a href="#datatransfer" id="datatransfer_6">DataTransfer</a>? <a href="#dom-dragevent-datatransfer" title="dom-DragEvent-dataTransfer">dataTransfer</a>; }; dictionary <dfn aria-haspopup="true" id="drageventinit" role="button" tabindex="0">DragEventInit</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#mouseeventinit" title='Read about this "MouseEventInit" reference in the full HTML5 spec.'>MouseEventInit</a> { <a href="#datatransfer" id="datatransfer_7">DataTransfer</a>? dataTransfer; -};</pre><dl class="domintro"><dt><var title="">event</var> . <code id="dom-dragevent-datatransfer" title="dom-DragEvent-dataTransfer"><a href="#dom-dragevent-datatransfer">dataTransfer</a></code></dt> +};</pre> + + <dl class="domintro"><dt><var title="">event</var> . <code id="dom-dragevent-datatransfer" title="dom-DragEvent-dataTransfer"><a href="#dom-dragevent-datatransfer">dataTransfer</a></code></dt> <dd> @@ -791,8 +912,14 @@ </dd> - </dl><h4 id="dndevents"><span class="secno">7.6.5 </span>Events summary</h4><p>The following events are involved in the drag-and-drop - model.<table><thead><tr><th> Event Name </th> + </dl><h4 id="dndevents"><span class="secno">7.6.5 </span>Events summary</h4> + + + + <p>The following events are involved in the drag-and-drop + model.</p> + + <table><thead><tr><th> Event Name </th> <th> Target </th> <th> Cancelable? </th> @@ -860,15 +987,25 @@ <code title="dom-DataTransfer-effectAllowed"><a href="#dom-datatransfer-effectallowed">effectAllowed</a></code> attribute always has the value it had after the previous event was fired, defaulting to "<code title="">uninitialized</code>" in the - <code title="event-dragstart"><a href="#event-dragstart" id="dragstart_3">dragstart</a></code> event.<h4 id="the-draggable-attribute"><span class="secno">7.6.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>draggable</code></dfn> attribute</h4><p>All <a href="infrastructure.html#html-elements" id="html-elements_36">HTML elements</a> may have the <code title="attr-draggable"><a href="#the-draggable-attribute" id="draggable_1">draggable</a></code> content attribute set. The + <code title="event-dragstart"><a href="#event-dragstart" id="dragstart_3">dragstart</a></code> event.</p> + + + + <h4 id="the-draggable-attribute"><span class="secno">7.6.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>draggable</code></dfn> attribute</h4> + + <p>All <a href="infrastructure.html#html-elements" id="html-elements_36">HTML elements</a> may have the <code title="attr-draggable"><a href="#the-draggable-attribute" id="draggable_1">draggable</a></code> content attribute set. The <code title="attr-draggable"><a href="#the-draggable-attribute" id="draggable_2">draggable</a></code> attribute is an <a href="common-microsyntaxes.html#enumerated-attribute" id="enumerated-attribute_20">enumerated attribute</a>. It has three states. The first state is <i>true</i> and it has the keyword <code title="">true</code>. The second state is <i>false</i> and it has the keyword <code title="">false</code>. The third state is <a href="the-th-element.html#attr-th-scope-auto" id="auto_6"><i>auto</i></a>; it has no keywords but it is the <i>missing value - default</i>.<p>The <i>true</i> state means the element is draggable; the + default</i>.</p> + + <p>The <i>true</i> state means the element is draggable; the <i>false</i> state means that it is not. The <a href="the-th-element.html#attr-th-scope-auto" id="auto_7"><i>auto</i></a> state - uses the default behavior of the user agent.<dl class="domintro"><dt><var title="">element</var> . <code id="dom-draggable" title="dom-draggable"><a href="#dom-draggable">draggable</a></code> [ = <var title="">value</var> ]</dt> + uses the default behavior of the user agent.</p> + + <dl class="domintro"><dt><var title="">element</var> . <code id="dom-draggable" title="dom-draggable"><a href="#dom-draggable">draggable</a></code> [ = <var title="">value</var> ]</dt> <dd> @@ -879,10 +1016,14 @@ </dd> - </dl><h4 id="the-dropzone-attribute"><span class="secno">7.6.7 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>dropzone</code></dfn> attribute</h4><p>All <a href="infrastructure.html#html-elements" id="html-elements_37">HTML elements</a> may have the <code title="attr-dropzone"><a href="#the-dropzone-attribute" id="dropzone_4">dropzone</a></code> content attribute set. When + </dl><h4 id="the-dropzone-attribute"><span class="secno">7.6.7 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>dropzone</code></dfn> attribute</h4> + + <p>All <a href="infrastructure.html#html-elements" id="html-elements_37">HTML elements</a> may have the <code title="attr-dropzone"><a href="#the-dropzone-attribute" id="dropzone_4">dropzone</a></code> content attribute set. When specified, its value must be an <a href="common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens" id="unordered-set-of-unique-space-separated-tokens_4">unordered set of unique space-separated tokens</a> that are <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_21">ASCII - case-insensitive</a>. The allowed values are the following:<dl><dt><dfn aria-haspopup="true" id="attr-dropzone-copy" role="button" tabindex="0"><code>copy</code></dfn></dt> + case-insensitive</a>. The allowed values are the following:</p> + + <dl><dt><dfn aria-haspopup="true" id="attr-dropzone-copy" role="button" tabindex="0"><code>copy</code></dfn></dt> <dd><p>Indicates that dropping an accepted item on the element will result in a copy of the dragged data.</p> @@ -925,10 +1066,14 @@ values (<code title="attr-dropzone-copy"><a href="#attr-dropzone-copy" id="copy">copy</a></code>, <code title="attr-dropzone-move"><a href="#attr-dropzone-move" id="move_0">move</a></code>, and <code title="attr-dropzone-link"><a href="#attr-dropzone-link" id="link_64">link</a></code>) specified. If none are specified, the <code title="attr-dropzone-copy"><a href="#attr-dropzone-copy" id="copy_0">copy</a></code> value is implied.</p> + + <p>The <dfn aria-haspopup="true" id="dom-dropzone" role="button" tabindex="0"><code>dropzone</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_100">reflect</a> the content attribute of the same name.</p> -<div class="example"> + + + <div class="example"> <p>In this example, a <code><a href="the-div-element.html#the-div-element" id="div_20">div</a></code> element is made into a drop target for image files using the <code title="attr-dropzone"><a href="#the-dropzone-attribute" id="dropzone_6">dropzone</a></code> attribute. Images dropped @@ -950,4 +1095,17 @@ } </script></pre> - </div> \ No newline at end of file + </div> + + + + + + + + + + + + + \ No newline at end of file Index: the-dl-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-dl-element.html,v retrieving revision 1.119 retrieving revision 1.120 diff -u -d -r1.119 -r1.120 --- the-dl-element.html 21 Feb 2012 21:59:03 -0000 1.119 +++ the-dl-element.html 13 Mar 2012 19:58:57 -0000 1.120 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-li-element.html">← 4.5.7 The li element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-dt-element.html">4.5.9 The dt element →</a> </div> - <h4 id="the-dl-element"><span class="secno">4.5.8 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>dl</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_26" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-dl-element"><span class="secno">4.5.8 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>dl</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_26" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_56">Flow content</a>.</dd> <dd>If the element's children include at least one name-value group: <a href="content-models.html#palpable-content" id="palpable-content_14">Palpable content</a>.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_26" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> @@ -371,12 +411,22 @@ (<code><a href="the-dt-element.html#the-dt-element" id="dt_1">dt</a></code> elements) followed by one or more values (<code><a href="the-dd-element.html#the-dd-element" id="dd_1">dd</a></code> elements). Within a single <code><a href="#the-dl-element" id="dl_3">dl</a></code> element, there should not be more than one <code><a href="the-dt-element.html#the-dt-element" id="dt_2">dt</a></code> element for each - name.<p>Name-value groups may be terms and definitions, metadata topics + name.</p> + + <p>Name-value groups may be terms and definitions, metadata topics and values, questions and answers, or any other groups of name-value - data.<p>The values within a group are alternatives; multiple paragraphs + data.</p> + + <p>The values within a group are alternatives; multiple paragraphs forming part of the same value must all be given within the same - <code><a href="the-dd-element.html#the-dd-element" id="dd_2">dd</a></code> element.<p>The order of the list of groups, and of the names and values - within each group, may be significant.<div class="example"> + <code><a href="the-dd-element.html#the-dd-element" id="dd_2">dd</a></code> element.</p> + + <p>The order of the list of groups, and of the names and values + within each group, may be significant.</p> + + + + <div class="example"> <p>In the following example, one entry ("Authors") is linked to two values ("John" and "Luke").</p> <pre><dl> @@ -386,7 +436,9 @@ <dt> Editor <dd> Frank </dl></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>In the following example, one definition is linked to two terms.</p> <pre><dl> @@ -396,7 +448,9 @@ the fine structure of the eye to distinguish three differently filtered analyses of a view. </dd> </dl></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>The following example illustrates the use of the <code><a href="#the-dl-element" id="dl_4">dl</a></code> element to mark up metadata of sorts. At the end of the example, one group has two metadata labels ("Authors" and "Editors") and two @@ -411,7 +465,9 @@ <dd> Robert Rothman </dd> <dd> Daniel Jackson </dd> </dl></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>The following example shows the <code><a href="#the-dl-element" id="dl_5">dl</a></code> element used to give a set of instructions. The order of the instructions here is @@ -430,7 +486,9 @@ <dt> Otherwise </dt> <dd> You get no victory points </dd> </dl></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>The following snippet shows a <code><a href="#the-dl-element" id="dl_6">dl</a></code> element being used as a glossary. Note the use of <code><a href="the-dfn-element.html#the-dfn-element" id="dfn_2">dfn</a></code> to indicate the word being defined.</p> @@ -443,6 +501,12 @@ <dt><dfn>Home</dfn>, n.</dt> <dd>The user's login directory.</dd> </dl></pre> - </div><p class="note">The <code><a href="#the-dl-element" id="dl_7">dl</a></code> element is inappropriate for + </div> + + <p class="note">The <code><a href="#the-dl-element" id="dl_7">dl</a></code> element is inappropriate for marking up dialogue. <a href="links.html#conversations">Examples of how to - mark up dialogue</a> are shown below. \ No newline at end of file + mark up dialogue</a> are shown below.</p> + + + + \ No newline at end of file Index: the-select-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-select-element.html,v retrieving revision 1.153 retrieving revision 1.154 diff -u -d -r1.153 -r1.154 --- the-select-element.html 21 Feb 2012 21:59:07 -0000 1.153 +++ the-select-element.html 13 Mar 2012 19:59:01 -0000 1.154 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-button-element.html">← 4.10.8 The button element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-datalist-element.html">4.10.10 The datalist element →</a> </div> - <h4 id="the-select-element"><span class="secno">4.10.9 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>select</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_89" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-select-element"><span class="secno">4.10.9 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>select</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_89" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_131">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_141">Phrasing content</a>.</dd> <dd><a href="content-models.html#interactive-content" id="interactive-content_15">Interactive content</a>.</dd> @@ -404,25 +444,37 @@ };</pre> </dd> </dl><p>The <code><a href="#the-select-element" id="select_20">select</a></code> element represents a control for - selecting amongst a set of options.<p>The <dfn aria-haspopup="true" id="attr-select-multiple" role="button" tabindex="0"><code>multiple</code></dfn> + selecting amongst a set of options.</p> + + <p>The <dfn aria-haspopup="true" id="attr-select-multiple" role="button" tabindex="0"><code>multiple</code></dfn> attribute is a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_14">boolean attribute</a>. If the attribute is present, then the <code><a href="#the-select-element" id="select_21">select</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a control for selecting zero or more options from the <a href="#concept-select-option-list" id="concept-select-option-list_1" title="concept-select-option-list">list of options</a>. If the attribute is absent, then the <code><a href="#the-select-element" id="select_22">select</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a control for - selecting a single option from the <a href="#concept-select-option-list" id="concept-select-option-list_2" title="concept-select-option-list">list of options</a>.<p>The <dfn aria-haspopup="true" id="attr-select-size" role="button" tabindex="0"><code>size</code></dfn> + selecting a single option from the <a href="#concept-select-option-list" id="concept-select-option-list_2" title="concept-select-option-list">list of options</a>.</p> + + <p>The <dfn aria-haspopup="true" id="attr-select-size" role="button" tabindex="0"><code>size</code></dfn> attribute gives the number of options to show to the user. The <code title="attr-select-size"><a href="#attr-select-size" id="size_29">size</a></code> attribute, if specified, must have a value that is a <a href="common-microsyntaxes.html#valid-non-negative-integer" id="valid-non-negative-integer_11">valid non-negative integer</a> - greater than zero.<p>The <dfn aria-haspopup="true" id="concept-select-option-list" role="button" tabindex="0">list of options</dfn> + greater than zero.</p> + + + + <p>The <dfn aria-haspopup="true" id="concept-select-option-list" role="button" tabindex="0">list of options</dfn> for a <code><a href="#the-select-element" id="select_23">select</a></code> element consists of all the <code><a href="the-option-element.html#the-option-element" id="option_8">option</a></code> element children of the <code><a href="#the-select-element" id="select_24">select</a></code> element, and all the <code><a href="the-option-element.html#the-option-element" id="option_9">option</a></code> element children of all the <code><a href="the-optgroup-element.html#the-optgroup-element" id="optgroup_3">optgroup</a></code> element children of the <code><a href="#the-select-element" id="select_25">select</a></code> - element, in <a href="infrastructure.html#tree-order" id="tree-order_6">tree order</a>.<p>The <dfn aria-haspopup="true" id="attr-select-required" role="button" tabindex="0"><code>required</code></dfn> + element, in <a href="infrastructure.html#tree-order" id="tree-order_6">tree order</a>.</p> + + <p>The <dfn aria-haspopup="true" id="attr-select-required" role="button" tabindex="0"><code>required</code></dfn> attribute is a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_15">boolean attribute</a>. When specified, the user will be required to select a value before submitting the - form.<p>If a <code><a href="#the-select-element" id="select_26">select</a></code> element has a <code title="attr-select-required"><a href="#attr-select-required" id="required_29">required</a></code> attribute specified, + form.</p> + + <p>If a <code><a href="#the-select-element" id="select_26">select</a></code> element has a <code title="attr-select-required"><a href="#attr-select-required" id="required_29">required</a></code> attribute specified, does not have a <code title="attr-select-multiple"><a href="#attr-select-multiple" id="multiple_33">multiple</a></code> attribute specified, and has a <a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-select-element.html#concept-select-size" title='Read about this "display size" reference in the full HTML5 spec.'>display size</a> of 1; and if the <a href="the-option-element.html#concept-option-value" id="concept-option-value_0" title="concept-option-value">value</a> of the @@ -432,17 +484,28 @@ <code><a href="the-option-element.html#the-option-element" id="option_11">option</a></code> element's parent node is the <code><a href="#the-select-element" id="select_28">select</a></code> element (and not an <code><a href="the-optgroup-element.html#the-optgroup-element" id="optgroup_4">optgroup</a></code> element), then that <code><a href="the-option-element.html#the-option-element" id="option_12">option</a></code> is the <code><a href="#the-select-element" id="select_29">select</a></code> element's - <dfn aria-haspopup="true" id="placeholder-label-option" role="button" tabindex="0">placeholder label option</dfn>.<p>If a <code><a href="#the-select-element" id="select_30">select</a></code> element has a <code title="attr-select-required"><a href="#attr-select-required" id="required_30">required</a></code> attribute specified, + <dfn aria-haspopup="true" id="placeholder-label-option" role="button" tabindex="0">placeholder label option</dfn>.</p> + + <p>If a <code><a href="#the-select-element" id="select_30">select</a></code> element has a <code title="attr-select-required"><a href="#attr-select-required" id="required_30">required</a></code> attribute specified, does not have a <code title="attr-select-multiple"><a href="#attr-select-multiple" id="multiple_34">multiple</a></code> attribute specified, and has a <a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-select-element.html#concept-select-size" title='Read about this "display size" reference in the full HTML5 spec.'>display size</a> of 1, then the <code><a href="#the-select-element" id="select_31">select</a></code> element must have a <a href="#placeholder-label-option" id="placeholder-label-option_0">placeholder - label option</a>.<p>The <code title="attr-fae-form"><a href="association-of-controls-and-forms.html#attr-fae-form" id="form_54">form</a></code> attribute is used to + label option</a>.</p> + + + + + + <p>The <code title="attr-fae-form"><a href="association-of-controls-and-forms.html#attr-fae-form" id="form_54">form</a></code> attribute is used to explicitly associate the <code><a href="#the-select-element" id="select_32">select</a></code> element with its <a href="association-of-controls-and-forms.html#form-owner" id="form-owner_9">form owner</a>. The <code title="attr-fe-name"><a href="attributes-common-to-form-controls.html#attr-fe-name" id="name_40">name</a></code> attribute represents the element's name. The <code title="attr-fe-disabled"><a href="attributes-common-to-form-controls.html#attr-fe-disabled" id="disabled_16">disabled</a></code> attribute is used to make the control non-interactive and to prevent its value from being submitted. The <code title="attr-fe-autofocus"><a href="attributes-common-to-form-controls.html#attr-fe-autofocus" id="autofocus_4">autofocus</a></code> - attribute controls focus.<dl class="domintro"><dt><var title="">select</var> . <code id="dom-select-type" title="dom-select-type"><a href="#dom-select-type">type</a></code></dt> + attribute controls focus.</p> + + + <dl class="domintro"><dt><var title="">select</var> . <code id="dom-select-type" title="dom-select-type"><a href="#dom-select-type">type</a></code></dt> <dd> @@ -535,7 +598,10 @@ must <a href="common-dom-interfaces.html#reflect" id="reflect_73">reflect</a> the respective content attributes of the same name. The <code title="dom-select-size"><a href="#dom-select-size" id="size_31">size</a></code> IDL attribute has a default value of zero.</p> -<div class="example"> + + + + <div class="example"> <p>The following example shows how a <code><a href="#the-select-element" id="select_35">select</a></code> element can be used to offer the user with a set of options from which the @@ -565,7 +631,9 @@ <option value="5"> Firebot </option> </select></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>Here, the user is offered a set of options from which he can select any number. By default, all five options are selected.</p> @@ -581,7 +649,9 @@ </select> </p></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>Sometimes, a user has to select one or more items. This example shows such an interface.</p> @@ -601,4 +671,8 @@ <option value="s11">For Now </select></pre> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: editing-apis.html =================================================================== RCS file: /sources/public/html5/spec-author-view/editing-apis.html,v retrieving revision 1.22 retrieving revision 1.23 diff -u -d -r1.22 -r1.23 --- editing-apis.html 15 Feb 2012 10:14:03 -0000 1.22 +++ editing-apis.html 13 Mar 2012 19:58:37 -0000 1.23 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="editing.html">← 7 User interaction</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="dnd.html">7.6 Drag and drop →</a> <ol class="toc"><li><ol><li><ol><li><a href="editing-apis.html#editing-apis"><span class="secno">7.5.4 </span>Editing APIs</a><li><a href="editing-apis.html#spelling-and-grammar-checking"><span class="secno">7.5.5 </span>Spelling and grammar checking</a></ol></ol></ol></div> - <h4 id="editing-apis"><span class="secno">7.5.4 </span>Editing APIs</h4><p>The definition of the terms <dfn aria-haspopup="true" id="active-range" role="button" tabindex="0">active range</dfn>, <dfn aria-haspopup="true" id="editing-host" role="button" tabindex="0">editing + <h4 id="editing-apis"><span class="secno">7.5.4 </span>Editing APIs</h4> + + <p>The definition of the terms <dfn aria-haspopup="true" id="active-range" role="button" tabindex="0">active range</dfn>, <dfn aria-haspopup="true" id="editing-host" role="button" tabindex="0">editing host</dfn>, and <dfn aria-haspopup="true" id="editable" role="button" tabindex="0">editable</dfn>, the user interface requirements of elements that are <a href="#editing-host" id="editing-host_1" title="editing host">editing hosts</a> or <a href="#editable" id="editable_0">editable</a>, the @@ -365,17 +405,33 @@ methods, and text selections are defined in the HTML Editing APIs specification. The interaction of editing and the undo/redo features in user agents is defined by the UndoManager and DOM Transaction - specification. <a href="references.html#refsEDITING">[EDITING]</a> <a href="references.html#refsUNDO">[UNDO]</a><h4 id="spelling-and-grammar-checking"><span class="secno">7.5.5 </span>Spelling and grammar checking</h4><p>The <dfn aria-haspopup="true" id="attr-spellcheck" role="button" tabindex="0"><code>spellcheck</code></dfn> + specification. <a href="references.html#refsEDITING">[EDITING]</a> <a href="references.html#refsUNDO">[UNDO]</a></p> + + + + + + <h4 id="spelling-and-grammar-checking"><span class="secno">7.5.5 </span>Spelling and grammar checking</h4> + + + + <p>The <dfn aria-haspopup="true" id="attr-spellcheck" role="button" tabindex="0"><code>spellcheck</code></dfn> attribute is an <a href="common-microsyntaxes.html#enumerated-attribute" id="enumerated-attribute_19">enumerated attribute</a> whose keywords are the empty string, <code title="">true</code> and <code title="">false</code>. The empty string and the <code title="">true</code> keyword map to the <i>true</i> state. The <code title="">false</code> keyword maps to the <i>false</i> state. In addition, there is a third state, the <a href="common-input-element-attributes.html#attr-input-autocomplete-default-state" id="default_4"><i>default</i></a> state, which is the <i>missing value default</i> (and the <i>invalid value - default</i>).<p class="note">The <i>true</i> state indicates that the element is + default</i>).</p> + + <p class="note">The <i>true</i> state indicates that the element is to have its spelling and grammar checked. The <a href="common-input-element-attributes.html#attr-input-autocomplete-default-state" id="default_5"><i>default</i></a> state indicates that the element is to act according to a default behavior, possibly based on the parent element's own <code title="attr-spellcheck"><a href="#attr-spellcheck" id="spellcheck_0">spellcheck</a></code> state, as defined below. The <i>false</i> state indicates that the element is not to be - checked.<dl class="domintro"><dt><var title="">element</var> . <code id="dom-spellcheck" title="dom-spellcheck"><a href="#dom-spellcheck">spellcheck</a></code> [ = <var title="">value</var> ]</dt> + checked.</p> + + + + <dl class="domintro"><dt><var title="">element</var> . <code id="dom-spellcheck" title="dom-spellcheck"><a href="#dom-spellcheck">spellcheck</a></code> [ = <var title="">value</var> ]</dt> <dd> @@ -389,4 +445,7 @@ </dl><p class="note">This specification does not define the user interface for spelling and grammar checkers. A user agent could offer on-demand checking, could perform continuous checking while - the checking is enabled, or could use other interfaces. \ No newline at end of file + the checking is enabled, or could use other interfaces.</p> + + + \ No newline at end of file Index: dom.html =================================================================== RCS file: /sources/public/html5/spec-author-view/dom.html,v retrieving revision 1.1177 retrieving revision 1.1178 diff -u -d -r1.1177 -r1.1178 --- dom.html 21 Feb 2012 21:58:42 -0000 1.1177 +++ dom.html 13 Mar 2012 19:58:37 -0000 1.1178 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,7 +380,9 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="namespaces.html">← 2.7 Namespaces</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="elements.html">3.2 Elements →</a> @@ -352,26 +390,42 @@ <ol><li><a href="dom.html#documents"><span class="secno">3.1 </span>Documents</a> <ol><li><a href="dom.html#documents-in-the-dom"><span class="secno">3.1.1 </span>Documents in the DOM</a><li><a href="dom.html#security-document"><span class="secno">3.1.2 </span>Security</a><li><a href="dom.html#resource-metadata-management" id="3.1.3-resource-metadata-management"><span class="secno">3.1.3 </span>Resource metadata management</a><li><a href="dom.html#dom-tree-accessors" id="3.1.4-dom-tree-accessors"><span class="secno">3.1.4 </span>DOM tree accessors</a></ol></ol></ol></div> - <h2 id="dom"><span class="secno">3 </span>Semantics, structure, and APIs of HTML documents</h2><h3 id="documents"><span class="secno">3.1 </span>Documents</h3><p>Every XML and HTML document in an HTML UA is represented by a - <code><a href="#document" id="document_21">Document</a></code> object. <a href="references.html#refsDOMCORE">[DOMCORE]</a><p><dfn aria-haspopup="true" id="the-document-s-address" role="button" tabindex="0">The document's address</dfn> is an <a href="urls.html#absolute-url" id="absolute-url_2">absolute URL</a> + <h2 id="dom"><span class="secno">3 </span>Semantics, structure, and APIs of HTML documents</h2> + + <h3 id="documents"><span class="secno">3.1 </span>Documents</h3> + + <p>Every XML and HTML document in an HTML UA is represented by a + <code><a href="#document" id="document_21">Document</a></code> object. <a href="references.html#refsDOMCORE">[DOMCORE]</a></p> + + <p><dfn aria-haspopup="true" id="the-document-s-address" role="button" tabindex="0">The document's address</dfn> is an <a href="urls.html#absolute-url" id="absolute-url_2">absolute URL</a> that is set when the <code><a href="#document" id="document_22">Document</a></code> is created. <dfn aria-haspopup="true" id="the-document-s-current-address" role="button" tabindex="0">The document's current address</dfn> is an <a href="urls.html#absolute-url" id="absolute-url_3">absolute URL</a> that can change during the lifetime of the <code><a href="#document" id="document_23">Document</a></code>, for example when the user <a class="full-spec-link" href="http://dev.w3.org/html5/spec/history.html#navigate" title='Read about this "navigates" reference in the full HTML5 spec.'>navigates</a> to a <a class="full-spec-link" href="http://dev.w3.org/html5/spec/history.html#scroll-to-fragid" title='Read about this "fragment identifier" reference in the full HTML5 spec.'>fragment identifier</a> on the page or when the <code title="dom-history-pushState"><a href="history.html#dom-history-pushstate">pushState()</a></code> method is called - with a new <a href="urls.html#url" id="url_8">URL</a>. <p class="note">Interactive user agents typically expose <a href="#the-document-s-current-address" id="the-document's-current-address">the - document's current address</a> in their user interface.<p>When a <code><a href="#document" id="document_24">Document</a></code> is created by a <a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#concept-script" title='Read about this "script" reference in the full HTML5 spec.'>script</a> using the <code title="dom-DOMImplementation-createDocument"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#dom-domimplementation-createdocument" title='Read about this "createDocument()" reference in the full HTML5 spec.'>createDocument()</a></code> + with a new <a href="urls.html#url" id="url_8">URL</a>. </p> + + <p class="note">Interactive user agents typically expose <a href="#the-document-s-current-address" id="the-document's-current-address">the + document's current address</a> in their user interface.</p> + + <p>When a <code><a href="#document" id="document_24">Document</a></code> is created by a <a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#concept-script" title='Read about this "script" reference in the full HTML5 spec.'>script</a> using the <code title="dom-DOMImplementation-createDocument"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#dom-domimplementation-createdocument" title='Read about this "createDocument()" reference in the full HTML5 spec.'>createDocument()</a></code> or <code title="dom-DOMHTMLImplementation-createHTMLDocument">createHTMLDocument()</code> APIs, <a href="#the-document-s-address" id="the-document's-address_0">the document's address</a> is the same as <a href="#the-document-s-address" id="the-document's-address_1">the document's address</a> of the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#script-s-document" title="Read about this "script's document" reference in the full HTML5 spec.">script's document</a>, and the <code><a href="#document" id="document_25">Document</a></code> is both <a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-end.html#ready-for-post-load-tasks" title='Read about this "ready for post-load tasks" reference in the full HTML5 spec.'>ready for post-load - tasks</a> and <a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-end.html#completely-loaded" title='Read about this "completely loaded" reference in the full HTML5 spec.'>completely loaded</a> immediately.<p>Each <code><a href="#document" id="document_26">Document</a></code> object has a <dfn aria-haspopup="true" id="reload-override-flag" role="button" tabindex="0">reload override + tasks</a> and <a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-end.html#completely-loaded" title='Read about this "completely loaded" reference in the full HTML5 spec.'>completely loaded</a> immediately.</p> + + <p>Each <code><a href="#document" id="document_26">Document</a></code> object has a <dfn aria-haspopup="true" id="reload-override-flag" role="button" tabindex="0">reload override flag</dfn> that is originally unset. The flag is set by the <code title="dom-document-open"><a href="dynamic-markup-insertion.html#dom-document-open" id="document.open()">document.open()</a></code> and <code title="dom-document-open"><a href="dynamic-markup-insertion.html#dom-document-open" id="document.write()">document.write()</a></code> methods in certain situations. When the flag is set, the <code><a href="#document" id="document_27">Document</a></code> also has a <dfn aria-haspopup="true" id="reload-override-buffer" role="button" tabindex="0">reload override buffer</dfn> which is a Unicode string that - is used as the source of the document when it is reloaded.<p>When the user agent is to perform <dfn aria-haspopup="true" id="an-overridden-reload" role="button" tabindex="0">an overridden - reload</dfn>, it must act as follows:<ol><li><p>Let <var title="">source</var> be the value of the + is used as the source of the document when it is reloaded.</p> + + <p>When the user agent is to perform <dfn aria-haspopup="true" id="an-overridden-reload" role="button" tabindex="0">an overridden + reload</dfn>, it must act as follows:</p> + + <ol><li><p>Let <var title="">source</var> be the value of the <a href="browsers.html#browsing-context" id="browsing-context_2">browsing context</a>'s <a href="browsers.html#active-document" id="active-document_0">active document</a>'s <a href="#reload-override-buffer" id="reload-override-buffer_0">reload override buffer</a>.</li> @@ -382,9 +436,13 @@ <a href="#reload-override-flag" id="reload-override-flag_0">reload override flag</a> and set its <a href="#reload-override-buffer" id="reload-override-buffer_1">reload override buffer</a> to <var title="">source</var>.</li> - </ol><h4 id="documents-in-the-dom"><span class="secno">3.1.1 </span>Documents in the DOM</h4><p>The DOM Core specification defines a <code title="DOM + </ol><h4 id="documents-in-the-dom"><span class="secno">3.1.1 </span>Documents in the DOM</h4> + + <p>The DOM Core specification defines a <code title="DOM Document"><a href="browsers.html#dom-document">Document</a></code> interface, which this specification - extends significantly:<pre class="idl">[OverrideBuiltins] + extends significantly:</p> + + <pre class="idl">[OverrideBuiltins] partial interface <dfn aria-haspopup="true" id="document" role="button" tabindex="0">Document</dfn> { // <a href="#resource-metadata-management" id="resource-metadata-management_0">resource metadata management</a> [PutForwards=<a href="history.html#dom-location-href" title="dom-location-href">href</a>] readonly attribute <a href="history.html#location" id="location_0">Location</a>? <a href="history.html#dom-document-location" title="dom-document-location">location</a>; @@ -488,11 +546,24 @@ // special <a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#event-handler-idl-attributes" title='Read about this "event handler IDL attributes" reference in the full HTML5 spec.'>event handler IDL attributes</a> that only apply to Document objects [TreatNonCallableAsNull,LenientThis] attribute <a href="webappapis.html#function" id="function_53">Function</a>? <a class="full-spec-link" href="http://dev.w3.org/html5/spec/.html#ix-handler-onreadystatechange" title='Read about this "onreadystatechange" reference in the full HTML5 spec.'>onreadystatechange</a>; -};</pre><h4 id="security-document"><span class="secno">3.1.2 </span>Security</h4><p id="security">User agents throw a +};</pre> + + + + <h4 id="security-document"><span class="secno">3.1.2 </span>Security</h4> + + <p id="security">User agents throw a <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#securityerror" title='Read about this "SecurityError" reference in the full HTML5 spec.'>SecurityError</a></code> exception whenever any properties of a <code><a href="#document" id="document_31">Document</a></code> object are accessed by scripts whose <a href="origin-0.html#effective-script-origin" id="effective-script-origin_0">effective script origin</a> is not the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/origin-0.html#same-origin" title='Read about this "same" reference in the full HTML5 spec.'>same</a> as the <code><a href="#document" id="document_32">Document</a></code>'s <a href="origin-0.html#effective-script-origin" id="effective-script-origin_1">effective - script origin</a>.<h4 id="resource-metadata-management"><span class="secno">3.1.3 </span><dfn aria-haspopup="true" role="button" tabindex="0">Resource metadata management</dfn></h4><dl class="domintro"><dt><var title="">document</var> . <code id="dom-document-url" title="dom-document-URL"><a href="#dom-document-url">URL</a></code></dt> + script origin</a>.</p> + + + + + <h4 id="resource-metadata-management"><span class="secno">3.1.3 </span><dfn aria-haspopup="true" role="button" tabindex="0">Resource metadata management</dfn></h4> + + <dl class="domintro"><dt><var title="">document</var> . <code id="dom-document-url" title="dom-document-URL"><a href="#dom-document-url">URL</a></code></dt> <dd> <p>Returns <a href="#the-document-s-address" id="the-document's-address_2">the document's address</a>.</p> </dd> @@ -510,10 +581,14 @@ </dl><p class="note">In the case of HTTP, the <code title="dom-document-referrer"><a href="#dom-document-referrer">referrer</a></code> IDL attribute will match the <code title="http-referer">Referer</code> (sic) header that was sent when <a class="full-spec-link" href="http://dev.w3.org/html5/spec/urls.html#fetch" title='Read about this "fetching" reference in the full HTML5 spec.'>fetching</a> the current - page.<p class="note">Typically user agents are configured to not report + page.</p> + + <p class="note">Typically user agents are configured to not report referrers in the case where the referrer uses an encrypted protocol and the current page does not (e.g. when navigating from an <code title="">https:</code> page to an <code title="">http:</code> - page).<hr><dl class="domintro"><dt><var title="">document</var> . <code id="dom-document-cookie" title="dom-document-cookie"><a href="#dom-document-cookie">cookie</a></code> [ = <var title="">value</var> ]</dt> + page).</p> + + <hr><dl class="domintro"><dt><var title="">document</var> . <code id="dom-document-cookie" title="dom-document-cookie"><a href="#dom-document-cookie">cookie</a></code> [ = <var title="">value</var> ]</dt> <dd> <p>Returns the HTTP cookies that apply to the <code><a href="#document" id="document_34">Document</a></code>. If there are no cookies or cookies can't be @@ -541,9 +616,13 @@ <p>The <code title="event-readystatechange"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/dom.html#event-readystatechange" title='Read about this "readystatechange" reference in the full HTML5 spec.'>readystatechange</a></code> event fires on the <code><a href="#document" id="document_36">Document</a></code> object when this value changes.</p> </dd> - </dl><h4 id="dom-tree-accessors"><span class="secno">3.1.4 </span><dfn aria-haspopup="true" role="button" tabindex="0">DOM tree accessors</dfn></h4><p><dfn aria-haspopup="true" id="the-html-element-0" role="button" tabindex="0">The <code>html</code> element</dfn> of a document is the + </dl><h4 id="dom-tree-accessors"><span class="secno">3.1.4 </span><dfn aria-haspopup="true" role="button" tabindex="0">DOM tree accessors</dfn></h4> + + <p><dfn aria-haspopup="true" id="the-html-element-0" role="button" tabindex="0">The <code>html</code> element</dfn> of a document is the document's root element, if there is one and it's an - <code><a href="the-html-element.html#the-html-element" id="html_1">html</a></code> element, or null otherwise.<hr><dl class="domintro"><dt><var title="">document</var> . <code id="dom-document-head" title="dom-document-head"><a href="#dom-document-head">head</a></code></dt> + <code><a href="the-html-element.html#the-html-element" id="html_1">html</a></code> element, or null otherwise.</p> + + <hr><dl class="domintro"><dt><var title="">document</var> . <code id="dom-document-head" title="dom-document-head"><a href="#dom-document-head">head</a></code></dt> <dd> <p>Returns <a href="#the-head-element-0" id="the-head-element_0">the <code>head</code> element</a>.</p> </dd> @@ -551,7 +630,11 @@ </dl><p><dfn aria-haspopup="true" id="the-head-element-0" role="button" tabindex="0">The <code>head</code> element</dfn> of a document is the first <code><a href="the-head-element.html#the-head-element" id="head_4">head</a></code> element that is a child of <a href="#the-html-element-0" id="the-html-element_0">the <code>html</code> element</a>, if there is one, or null - otherwise.<hr><dl class="domintro"><dt><var title="">document</var> . <code id="dom-document-title" title="dom-document-title"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/dom.html#document.title" title='Read about this "title" reference in the full HTML5 spec.'>title</a></code> [ = <var title="">value</var> ]</dt> + otherwise.</p> + + + + <hr><dl class="domintro"><dt><var title="">document</var> . <code id="dom-document-title" title="dom-document-title"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/dom.html#document.title" title='Read about this "title" reference in the full HTML5 spec.'>title</a></code> [ = <var title="">value</var> ]</dt> <dd> <p>Returns the document's title, as given by <a href="#the-title-element-0" id="the-title-element_0">the <code>title</code> element</a>.</p> @@ -565,7 +648,11 @@ </dl><p><dfn aria-haspopup="true" id="the-title-element-0" role="button" tabindex="0">The <code>title</code> element</dfn> of a document is the first <code><a href="the-title-element.html#the-title-element" id="title_41">title</a></code> element in the document (in tree order), if - there is one, or null otherwise.<hr><dl class="domintro"><dt><var title="">document</var> . <code id="dom-document-body" title="dom-document-body"><a href="#dom-document-body">body</a></code> [ = <var title="">value</var> ]</dt> + there is one, or null otherwise.</p> + + + + <hr><dl class="domintro"><dt><var title="">document</var> . <code id="dom-document-body" title="dom-document-body"><a href="#dom-document-body">body</a></code> [ = <var title="">value</var> ]</dt> <dd> <p>Returns <a href="#the-body-element-0" id="the-body-element_0">the body element</a>.</p> <p>Can be set, to replace <a href="#the-body-element-0" id="the-body-element_1">the body element</a>.</p> @@ -575,7 +662,11 @@ </dl><p><dfn aria-haspopup="true" id="the-body-element-0" role="button" tabindex="0">The body element</dfn> of a document is the first child of <a href="#the-html-element-0" id="the-html-element_1">the <code>html</code> element</a> that is either a <code><a href="the-body-element.html#the-body-element" id="body_5">body</a></code> element or a <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/obsolete.html#frameset" title='Read about this "frameset" reference in the full HTML5 spec.'>frameset</a></code> element. If - there is no such element, it is null.<hr><dl class="domintro"><dt><var title="">document</var> . <code id="dom-document-images" title="dom-document-images"><a href="#dom-document-images">images</a></code></dt> + there is no such element, it is null.</p> + + + + <hr><dl class="domintro"><dt><var title="">document</var> . <code id="dom-document-images" title="dom-document-images"><a href="#dom-document-images">images</a></code></dt> <dd> <p>Returns an <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#htmlcollection" title='Read about this "HTMLCollection" reference in the full HTML5 spec.'>HTMLCollection</a></code> of the <code><a href="the-img-element.html#the-img-element" id="img_7">img</a></code> elements in the <code><a href="#document" id="document_37">Document</a></code>.</p> </dd> @@ -611,4 +702,12 @@ </dl><hr><p class="note">The <code title="dom-document-dir"><a href="global-attributes.html#dom-document-dir" id="dir_25">dir</a></code> attribute on the <code><a href="#document" id="document_43">Document</a></code> interface is defined along with the <code title="attr-dir"><a href="global-attributes.html#the-dir-attribute" id="dir_0">dir</a></code> content - attribute. \ No newline at end of file + attribute.</p> + + + + + + + + \ No newline at end of file Index: the-textarea-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-textarea-element.html,v retrieving revision 1.146 retrieving revision 1.147 diff -u -d -r1.146 -r1.147 --- the-textarea-element.html 21 Feb 2012 21:59:08 -0000 1.146 +++ the-textarea-element.html 13 Mar 2012 19:59:02 -0000 1.147 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-option-element.html">← 4.10.12 The option element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-keygen-element.html">4.10.14 The keygen element →</a> </div> - <h4 id="the-textarea-element"><span class="secno">4.10.13 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>textarea</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_93" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-textarea-element"><span class="secno">4.10.13 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>textarea</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_93" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_133">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_146">Phrasing content</a>.</dd> <dd><a href="content-models.html#interactive-content" id="interactive-content_16">Interactive content</a>.</dd> @@ -412,53 +452,104 @@ </dd> </dl><p>The <code><a href="#the-textarea-element" id="textarea_27">textarea</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a multiline plain text edit control. The contents of the control represent the - control's default value.<p>The <dfn aria-haspopup="true" id="attr-textarea-readonly" role="button" tabindex="0"><code>readonly</code></dfn> attribute + control's default value.</p> + + + + <p>The <dfn aria-haspopup="true" id="attr-textarea-readonly" role="button" tabindex="0"><code>readonly</code></dfn> attribute is a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_19">boolean attribute</a> used to control whether the text - can be edited by the user or not.<p>The <dfn aria-haspopup="true" id="attr-textarea-cols" role="button" tabindex="0"><code>cols</code></dfn> + can be edited by the user or not.</p> + + + + <p>The <dfn aria-haspopup="true" id="attr-textarea-cols" role="button" tabindex="0"><code>cols</code></dfn> attribute specifies the expected maximum number of characters per line. If the <code title="attr-textarea-cols"><a href="#attr-textarea-cols" id="cols_0">cols</a></code> attribute is specified, its value must be a <a href="common-microsyntaxes.html#valid-non-negative-integer" id="valid-non-negative-integer_12">valid non-negative - integer</a> greater than zero. <p>The <dfn aria-haspopup="true" id="attr-textarea-rows" role="button" tabindex="0"><code>rows</code></dfn> + integer</a> greater than zero. </p> + + + + <p>The <dfn aria-haspopup="true" id="attr-textarea-rows" role="button" tabindex="0"><code>rows</code></dfn> attribute specifies the number of lines to show. If the <code title="attr-textarea-rows"><a href="#attr-textarea-rows" id="rows_0">rows</a></code> attribute is specified, its value must be a <a href="common-microsyntaxes.html#valid-non-negative-integer" id="valid-non-negative-integer_13">valid non-negative integer</a> greater than - zero. <p>The <dfn aria-haspopup="true" id="attr-textarea-wrap" role="button" tabindex="0"><code>wrap</code></dfn> + zero. </p> + + + + <p>The <dfn aria-haspopup="true" id="attr-textarea-wrap" role="button" tabindex="0"><code>wrap</code></dfn> attribute is an <a href="common-microsyntaxes.html#enumerated-attribute" id="enumerated-attribute_12">enumerated attribute</a> with two keywords and states: the <dfn aria-haspopup="true" id="attr-textarea-wrap-soft" role="button" tabindex="0"><code>soft</code></dfn> keyword which maps to the <a href="#attr-textarea-wrap-soft-state" id="attr-textarea-wrap-soft-state_0" title="attr-textarea-wrap-soft-state">Soft</a> state, and the <dfn aria-haspopup="true" id="attr-textarea-wrap-hard" role="button" tabindex="0"><code>hard</code></dfn> keyword which maps to the <a href="#attr-textarea-wrap-hard-state" id="attr-textarea-wrap-hard-state_0" title="attr-textarea-wrap-hard-state">Hard</a> state. The - <i>missing value default</i> is the <a href="#attr-textarea-wrap-soft-state" id="attr-textarea-wrap-soft-state_1" title="attr-textarea-wrap-soft-state">Soft</a> state.<p>The <dfn aria-haspopup="true" id="attr-textarea-wrap-soft-state" role="button" tabindex="0">Soft</dfn> state + <i>missing value default</i> is the <a href="#attr-textarea-wrap-soft-state" id="attr-textarea-wrap-soft-state_1" title="attr-textarea-wrap-soft-state">Soft</a> state.</p> + + <p>The <dfn aria-haspopup="true" id="attr-textarea-wrap-soft-state" role="button" tabindex="0">Soft</dfn> state indicates that the text in the <code><a href="#the-textarea-element" id="textarea_28">textarea</a></code> is not to be wrapped when it is submitted (though it can still be wrapped in the - rendering).<p>The <dfn aria-haspopup="true" id="attr-textarea-wrap-hard-state" role="button" tabindex="0">Hard</dfn> state + rendering).</p> + + <p>The <dfn aria-haspopup="true" id="attr-textarea-wrap-hard-state" role="button" tabindex="0">Hard</dfn> state indicates that the text in the <code><a href="#the-textarea-element" id="textarea_29">textarea</a></code> is to have newlines added by the user agent so that the text is wrapped when it - is submitted.<p>If the element's <code title="attr-textarea-wrap"><a href="#attr-textarea-wrap" id="wrap_0">wrap</a></code> + is submitted.</p> + + <p>If the element's <code title="attr-textarea-wrap"><a href="#attr-textarea-wrap" id="wrap_0">wrap</a></code> attribute is in the <a href="#attr-textarea-wrap-hard-state" id="attr-textarea-wrap-hard-state_1" title="attr-textarea-wrap-hard-state">Hard</a> state, the <code title="attr-textarea-cols"><a href="#attr-textarea-cols" id="cols_1">cols</a></code> attribute must be - specified.<p>The <dfn aria-haspopup="true" id="attr-textarea-maxlength" role="button" tabindex="0"><code>maxlength</code></dfn> + specified.</p> + + + + + + <p>The <dfn aria-haspopup="true" id="attr-textarea-maxlength" role="button" tabindex="0"><code>maxlength</code></dfn> attribute is a <a href="attributes-common-to-form-controls.html#attr-fe-maxlength" id="attr-fe-maxlength_1" title="attr-fe-maxlength">form control <code title="">maxlength</code> attribute</a> controlled by the - <code><a href="#the-textarea-element" id="textarea_30">textarea</a></code> element's <a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-textarea-element.html#concept-textarea-dirty" title='Read about this "dirty value flag" reference in the full HTML5 spec.'>dirty value flag</a>.<p>If the <code><a href="#the-textarea-element" id="textarea_31">textarea</a></code> element has a <a href="attributes-common-to-form-controls.html#maximum-allowed-value-length" id="maximum-allowed-value-length_2">maximum allowed + <code><a href="#the-textarea-element" id="textarea_30">textarea</a></code> element's <a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-textarea-element.html#concept-textarea-dirty" title='Read about this "dirty value flag" reference in the full HTML5 spec.'>dirty value flag</a>.</p> + + <p>If the <code><a href="#the-textarea-element" id="textarea_31">textarea</a></code> element has a <a href="attributes-common-to-form-controls.html#maximum-allowed-value-length" id="maximum-allowed-value-length_2">maximum allowed value length</a>, then the element's children must be such that the <a href="infrastructure.html#code-point-length" id="code-point-length_1">code-point length</a> of the value of the element's <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#textcontent" title='Read about this "textContent" reference in the full HTML5 spec.'>textContent</a></code> IDL attribute is equal to or less than the - element's <a href="attributes-common-to-form-controls.html#maximum-allowed-value-length" id="maximum-allowed-value-length_3">maximum allowed value length</a>.<p>The <dfn aria-haspopup="true" id="attr-textarea-required" role="button" tabindex="0"><code>required</code></dfn> attribute + element's <a href="attributes-common-to-form-controls.html#maximum-allowed-value-length" id="maximum-allowed-value-length_3">maximum allowed value length</a>.</p> + + <p>The <dfn aria-haspopup="true" id="attr-textarea-required" role="button" tabindex="0"><code>required</code></dfn> attribute is a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_20">boolean attribute</a>. When specified, the user will - be required to enter a value before submitting the form.<p>The <dfn aria-haspopup="true" id="attr-textarea-placeholder" role="button" tabindex="0"><code>placeholder</code></dfn> + be required to enter a value before submitting the form.</p> + + + + + + + <p>The <dfn aria-haspopup="true" id="attr-textarea-placeholder" role="button" tabindex="0"><code>placeholder</code></dfn> attribute represents a hint (a word or short phrase) intended to aid the user with data entry. A hint could be a sample value or a brief description of the expected format. The attribute, if specified, - must have a value that contains no U+000A LINE FEED (LF) or U+000D - CARRIAGE RETURN (CR) characters.<p class="note">For a longer hint or other advisory text, the <code title="attr-title"><a href="global-attributes.html#the-title-attribute" id="title_29">title</a></code> attribute is more appropriate.<p>The <code title="attr-textarea-placeholder"><a href="#attr-textarea-placeholder" id="placeholder_29">placeholder</a></code> + must have a value that contains no "LF" (U+000A) or "CR" (U+000D) characters.</p> + + <p class="note">For a longer hint or other advisory text, the <code title="attr-title"><a href="global-attributes.html#the-title-attribute" id="title_29">title</a></code> attribute is more appropriate.</p> + + <p>The <code title="attr-textarea-placeholder"><a href="#attr-textarea-placeholder" id="placeholder_29">placeholder</a></code> attribute should not be used as an alternative to a - <code><a href="the-label-element.html#the-label-element" id="label_21">label</a></code>.<p>The <dfn aria-haspopup="true" id="attr-textarea-dirname" role="button" tabindex="0"><code>dirname</code></dfn> + <code><a href="the-label-element.html#the-label-element" id="label_21">label</a></code>.</p> + + + + <p>The <dfn aria-haspopup="true" id="attr-textarea-dirname" role="button" tabindex="0"><code>dirname</code></dfn> attribute is a <a href="attributes-common-to-form-controls.html#form-control-dirname-attribute" id="form-control-dirname-attribute_1">form control <code title="">dirname</code> - attribute</a>.<p>The <code title="attr-fae-form"><a href="association-of-controls-and-forms.html#attr-fae-form" id="form_56">form</a></code> attribute is used to + attribute</a>.</p> + + <p>The <code title="attr-fae-form"><a href="association-of-controls-and-forms.html#attr-fae-form" id="form_56">form</a></code> attribute is used to explicitly associate the <code><a href="#the-textarea-element" id="textarea_32">textarea</a></code> element with its <a href="association-of-controls-and-forms.html#form-owner" id="form-owner_10">form owner</a>. The <code title="attr-fe-name"><a href="attributes-common-to-form-controls.html#attr-fe-name" id="name_42">name</a></code> attribute represents the element's name. The <code title="attr-fe-disabled"><a href="attributes-common-to-form-controls.html#attr-fe-disabled" id="disabled_18">disabled</a></code> attribute is used to make the control non-interactive and to prevent its value from being submitted. The <code title="attr-fe-autofocus"><a href="attributes-common-to-form-controls.html#attr-fe-autofocus" id="autofocus_6">autofocus</a></code> - attribute controls focus.<dl class="domintro"><dt><var title="">textarea</var> . <code title="attr-textarea-type">type</code></dt> + attribute controls focus.</p> + + + <dl class="domintro"><dt><var title="">textarea</var> . <code title="attr-textarea-type">type</code></dt> <dd> @@ -489,7 +580,10 @@ <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-dom-interfaces.html#limited-to-only-non-negative-numbers" title='Read about this "limited to only non-negative numbers" reference in the full HTML5 spec.'>limited to only non-negative numbers</a>. The <dfn aria-haspopup="true" id="dom-textarea-readonly" role="button" tabindex="0"><code>readOnly</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_80">reflect</a> the <code title="attr-textarea-readonly"><a href="#attr-textarea-readonly" id="readonly_43">readonly</a></code> content attribute.</p> -<div class="example"> + + + + <div class="example"> <p>Here is an example of a <code><a href="#the-textarea-element" id="textarea_33">textarea</a></code> being used for unrestricted free-form text input in a form:</p> @@ -513,4 +607,8 @@ <pre><p>If you have any comments, please let us know (you may use either English or Hebrew for your comments): <textarea cols=80 name=comments dirname=comments.dir></textarea></p></pre> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: the-colgroup-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-colgroup-element.html,v retrieving revision 1.123 retrieving revision 1.124 diff -u -d -r1.123 -r1.124 --- the-colgroup-element.html 21 Feb 2012 21:59:03 -0000 1.123 +++ the-colgroup-element.html 13 Mar 2012 19:58:56 -0000 1.124 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-caption-element.html">← 4.9.2 The caption element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-col-element.html">4.9.4 The col element →</a> </div> - <h4 id="the-colgroup-element"><span class="secno">4.9.3 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>colgroup</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_75" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-colgroup-element"><span class="secno">4.9.3 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>colgroup</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_75" title="element-dfn-categories">Categories</a>:</dt> <dd>None.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_75" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>As a child of a <code><a href="the-table-element.html#the-table-element" id="table_12">table</a></code> element, after any @@ -371,11 +411,19 @@ </dd> </dl><p>The <code><a href="#the-colgroup-element" id="colgroup_0">colgroup</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-td-and-th-elements.html#concept-column-group" title='Read about this "group" reference in the full HTML5 spec.'>group</a> of one or more <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-td-and-th-elements.html#concept-column" title='Read about this "columns" reference in the full HTML5 spec.'>columns</a> in the <code><a href="the-table-element.html#the-table-element" id="table_13">table</a></code> that is its parent, if it has a parent and that is a <code><a href="the-table-element.html#the-table-element" id="table_14">table</a></code> - element.<p>If the <code><a href="#the-colgroup-element" id="colgroup_1">colgroup</a></code> element contains no <code><a href="the-col-element.html#the-col-element" id="col_0">col</a></code> + element.</p> + + <p>If the <code><a href="#the-colgroup-element" id="colgroup_1">colgroup</a></code> element contains no <code><a href="the-col-element.html#the-col-element" id="col_0">col</a></code> elements, then the element may have a <dfn aria-haspopup="true" id="attr-colgroup-span" role="button" tabindex="0"><code>span</code></dfn> content attribute specified, whose value must be a <a href="common-microsyntaxes.html#valid-non-negative-integer" id="valid-non-negative-integer_6">valid non-negative integer</a> greater than zero.</p> + + <p>The <dfn aria-haspopup="true" id="dom-colgroup-span" role="button" tabindex="0"><code>span</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_52">reflect</a> the content attribute of the same name. The value must be <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-dom-interfaces.html#limited-to-only-non-negative-numbers-greater-than-zero" title='Read about this "limited to only non-negative numbers greater than zero" reference in the full HTML5 spec.'>limited to only non-negative numbers greater than zero</a>.</p> + + + + \ No newline at end of file Index: attributes-common-to-ins-and-del-elements.html =================================================================== RCS file: /sources/public/html5/spec-author-view/attributes-common-to-ins-and-del-elements.html,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- attributes-common-to-ins-and-del-elements.html 21 Feb 2012 21:58:41 -0000 1.18 +++ attributes-common-to-ins-and-del-elements.html 13 Mar 2012 19:58:35 -0000 1.19 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,27 +380,51 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-del-element.html">← 4.7.2 The del element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="edits-and-paragraphs.html">4.7.4 Edits and paragraphs →</a> </div> - <h4 id="attributes-common-to-ins-and-del-elements"><span class="secno">4.7.3 </span>Attributes common to <code><a href="the-ins-element.html#the-ins-element" id="ins_17">ins</a></code> and <code><a href="the-del-element.html#the-del-element" id="del_13">del</a></code> elements</h4><p>The <dfn aria-haspopup="true" id="attr-mod-cite" role="button" tabindex="0"><code>cite</code></dfn> attribute + <h4 id="attributes-common-to-ins-and-del-elements"><span class="secno">4.7.3 </span>Attributes common to <code><a href="the-ins-element.html#the-ins-element" id="ins_17">ins</a></code> and <code><a href="the-del-element.html#the-del-element" id="del_13">del</a></code> elements</h4> + + <p>The <dfn aria-haspopup="true" id="attr-mod-cite" role="button" tabindex="0"><code>cite</code></dfn> attribute may be used to specify the address of a document that explains the change. When that document is long, for instance the minutes of a meeting, authors are encouraged to include a fragment identifier pointing to the specific part of that document that discusses the - change.<p>If the <code title="attr-mod-cite"><a href="#attr-mod-cite" id="cite_27">cite</a></code> attribute is + change.</p> + + <p>If the <code title="attr-mod-cite"><a href="#attr-mod-cite" id="cite_27">cite</a></code> attribute is present, it must be a <a href="urls.html#valid-url-potentially-surrounded-by-spaces" id="valid-url-potentially-surrounded-by-spaces_3">valid URL potentially surrounded by - spaces</a> that explains the change. <p>The <dfn aria-haspopup="true" id="attr-mod-datetime" role="button" tabindex="0"><code>datetime</code></dfn> - attribute may be used to specify the time and date of the change.<p>If present, the <code title="attr-mod-datetime"><a href="#attr-mod-datetime" id="datetime_7">datetime</a></code> + spaces</a> that explains the change. </p> + + + <p>The <dfn aria-haspopup="true" id="attr-mod-datetime" role="button" tabindex="0"><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" id="datetime_7">datetime</a></code> attribute's value must be a <a href="common-microsyntaxes.html#valid-date-string-with-optional-time" id="valid-date-string-with-optional-time_0">valid date string with optional - time</a>.<p>The <code><a href="the-ins-element.html#the-ins-element" id="ins_18">ins</a></code> and <code><a href="the-del-element.html#the-del-element" id="del_14">del</a></code> elements implement the <code><a href="#htmlmodelement" id="htmlmodelement_2">HTMLModElement</a></code> - interface:<pre class="idl">interface <dfn aria-haspopup="true" id="htmlmodelement" role="button" tabindex="0">HTMLModElement</dfn> : <a href="elements.html#htmlelement" id="htmlelement_63">HTMLElement</a> { + time</a>.</p> + + + + <p>The <code><a href="the-ins-element.html#the-ins-element" id="ins_18">ins</a></code> and <code><a href="the-del-element.html#the-del-element" id="del_14">del</a></code> elements implement the <code><a href="#htmlmodelement" id="htmlmodelement_2">HTMLModElement</a></code> + interface:</p> + + <pre class="idl">interface <dfn aria-haspopup="true" id="htmlmodelement" role="button" tabindex="0">HTMLModElement</dfn> : <a href="elements.html#htmlelement" id="htmlelement_63">HTMLElement</a> { attribute DOMString <a href="#dom-mod-cite" id="dom-mod-cite_0" title="dom-mod-cite">cite</a>; attribute DOMString <a href="#dom-mod-datetime" id="dom-mod-datetime_0" title="dom-mod-datetime">dateTime</a>; };</pre> + + <p>The <dfn aria-haspopup="true" id="dom-mod-cite" role="button" tabindex="0"><code>cite</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_20">reflect</a> the element's <code title="attr-mod-cite"><a href="#attr-mod-cite" id="cite_28">cite</a></code> content attribute. The <dfn aria-haspopup="true" id="dom-mod-datetime" role="button" tabindex="0"><code>dateTime</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_21">reflect</a> the element's <code title="attr-mod-datetime"><a href="#attr-mod-datetime" id="datetime_8">datetime</a></code> content attribute.</p> + + + + + \ No newline at end of file Index: the-video-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-video-element.html,v retrieving revision 1.132 retrieving revision 1.133 diff -u -d -r1.132 -r1.133 --- the-video-element.html 15 Feb 2012 10:14:26 -0000 1.132 +++ the-video-element.html 13 Mar 2012 19:59:03 -0000 1.133 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-param-element.html">← 4.8.5 The param element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-audio-element.html">4.8.7 The audio element →</a> </div> - <h4 id="the-video-element"><span class="secno">4.8.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>video</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_66" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-video-element"><span class="secno">4.8.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>video</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_66" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_105">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_119">Phrasing content</a>.</dd> <dd><a href="content-models.html#embedded-content" id="embedded-content_12">Embedded content</a>.</dd> @@ -389,11 +429,15 @@ };</pre> </dd> </dl><p>A <code><a href="#the-video-element" id="video_19">video</a></code> element is used for playing videos or - movies, and audio files with captions.<p>Content may be provided inside the <code><a href="#the-video-element" id="video_20">video</a></code> + movies, and audio files with captions.</p> + + <p>Content may be provided inside the <code><a href="#the-video-element" id="video_20">video</a></code> element; it is intended for older Web browsers which do not support <code><a href="#the-video-element" id="video_21">video</a></code>, so that legacy video plugins can be tried, or to show text to the users of these older browsers informing - them of how to access the video contents.<p class="note">In particular, this content is not intended to + them of how to access the video contents.</p> + + <p class="note">In particular, this content is not intended to address accessibility concerns. To make video content accessible to the partially sighted, the blind, the hard-of-hearing, the deaf, and those with other physical or cognitive disabilities, a variety of @@ -411,20 +455,34 @@ also be used to provide chapter titles. For users who would rather not use a media element at all, transcripts or other textual alternatives can be provided by simply linking to them in the prose - near the <code><a href="#the-video-element" id="video_24">video</a></code> element. <a href="references.html#refsWEBVTT">[WEBVTT]</a><p>The <code><a href="#the-video-element" id="video_25">video</a></code> element is a <a href="media-elements.html#media-element" id="media-element_3">media element</a> + near the <code><a href="#the-video-element" id="video_24">video</a></code> element. <a href="references.html#refsWEBVTT">[WEBVTT]</a></p> + + <p>The <code><a href="#the-video-element" id="video_25">video</a></code> element is a <a href="media-elements.html#media-element" id="media-element_3">media element</a> whose <a href="media-elements.html#media-data" id="media-data_0">media data</a> is ostensibly video data, possibly - with associated audio data.<p>The <code title="attr-media-src"><a href="media-elements.html#attr-media-src" id="src_34">src</a></code>, <code title="attr-media-preload"><a href="media-elements.html#attr-media-preload" id="preload_0">preload</a></code>, <code title="attr-media-autoplay"><a href="media-elements.html#attr-media-autoplay" id="autoplay_0">autoplay</a></code>, + with associated audio data.</p> + + <p>The <code title="attr-media-src"><a href="media-elements.html#attr-media-src" id="src_34">src</a></code>, <code title="attr-media-preload"><a href="media-elements.html#attr-media-preload" id="preload_0">preload</a></code>, <code title="attr-media-autoplay"><a href="media-elements.html#attr-media-autoplay" id="autoplay_0">autoplay</a></code>, <code title="attr-media-mediagroup"><a href="media-elements.html#attr-media-mediagroup" id="mediagroup_1">mediagroup</a></code>, <code title="attr-media-loop"><a href="media-elements.html#attr-media-loop" id="loop_0">loop</a></code>, <code title="attr-media-muted"><a href="media-elements.html#attr-media-muted" id="muted_0">muted</a></code>, and <code title="attr-media-controls"><a href="media-elements.html#attr-media-controls" id="controls_4">controls</a></code> attributes are <a href="media-elements.html#media-element-attributes" id="media-element-attributes_0" title="media element attributes">the attributes common to all media - elements</a>.<p>The <dfn aria-haspopup="true" id="attr-video-poster" role="button" tabindex="0"><code>poster</code></dfn> + elements</a>.</p> + + <p>The <dfn aria-haspopup="true" id="attr-video-poster" role="button" tabindex="0"><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-potentially-surrounded-by-spaces" id="valid-non-empty-url-potentially-surrounded-by-spaces_7">valid non-empty URL potentially surrounded by - spaces</a>.<p class="note">The image given by the <code title="attr-video-poster"><a href="#attr-video-poster" id="poster_0">poster</a></code> attribute, the <i><a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-video-element.html#poster-frame" title='Read about this "poster frame" reference in the full HTML5 spec.'>poster + spaces</a>.</p> + + + + <p class="note">The image given by the <code title="attr-video-poster"><a href="#attr-video-poster" id="poster_0">poster</a></code> attribute, the <i><a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-video-element.html#poster-frame" title='Read about this "poster frame" reference in the full HTML5 spec.'>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 - idea of what the video is like.<dl class="domintro"><dt><var title="">video</var> . <code id="dom-video-videowidth" title="dom-video-videoWidth"><a href="#dom-video-videowidth">videoWidth</a></code></dt> + idea of what the video is like.</p> + + + + <dl class="domintro"><dt><var title="">video</var> . <code id="dom-video-videowidth" title="dom-video-videoWidth"><a href="#dom-video-videowidth">videoWidth</a></code></dt> <dt><var title="">video</var> . <code id="dom-video-videoheight" title="dom-video-videoHeight"><a href="#dom-video-videoheight">videoHeight</a></code></dt> <dd> @@ -436,9 +494,13 @@ </dl><p>The <code><a href="#the-video-element" id="video_26">video</a></code> element supports <a href="dimension-attributes.html#dimension-attributes" id="dimension-attributes_4">dimension attributes</a>.</p> + + <p>The <dfn aria-haspopup="true" id="dom-video-poster" role="button" tabindex="0"><code>poster</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_33">reflect</a> the <code title="attr-video-poster"><a href="#attr-video-poster" id="poster_1">poster</a></code> content attribute.</p> -<div class="example"> + + + <div class="example"> <p>This example shows how to detect when a video has failed to play correctly:</p> @@ -468,4 +530,15 @@ <p><video src="tgif.vid" autoplay controls onerror="failed(event)"></video></p> <p><a href="tgif.vid">Download the video file</a>.</p></pre> - </div> \ No newline at end of file + </div> + + + + + + + + + + + \ No newline at end of file Index: the-table-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-table-element.html,v retrieving revision 1.137 retrieving revision 1.138 diff -u -d -r1.137 -r1.138 --- the-table-element.html 21 Feb 2012 21:59:08 -0000 1.137 +++ the-table-element.html 13 Mar 2012 19:59:01 -0000 1.138 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,14 +380,18 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="tabular-data.html">← 4.9 Tabular data</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-caption-element.html">4.9.2 The caption element →</a> <ol class="toc"><li><ol><li><ol><li><a href="the-table-element.html#the-table-element" id="4.9.1-the-table-element"><span class="secno">4.9.1 </span>The <code>table</code> element</a> <ol><li><a href="the-table-element.html#table-descriptions-techniques"><span class="secno">4.9.1.1 </span>Techniques for describing tables</a><li><a href="the-table-element.html#table-layout-techniques"><span class="secno">4.9.1.2 </span>Techniques for table layout</a></ol></ol></ol></ol></div> - <h4 id="the-table-element"><span class="secno">4.9.1 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>table</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_73" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-table-element"><span class="secno">4.9.1 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>table</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_73" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_116">Flow content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_49">Palpable content</a>.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_73" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> @@ -389,11 +429,22 @@ };</pre> </dd> </dl><p>The <code><a href="#the-table-element" id="table_4">table</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> data with - more than one dimension, in the form of a <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-td-and-th-elements.html#concept-table" title='Read about this "table" reference in the full HTML5 spec.'>table</a>.<p> Tables have rows, columns, and + more than one dimension, in the form of a <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-td-and-th-elements.html#concept-table" title='Read about this "table" reference in the full HTML5 spec.'>table</a>.</p> + + <p> Tables have rows, columns, and cells given by their descendants. The rows and columns form a grid; - a table's cells must completely cover that grid without overlap.<p>Authors are encouraged to provide information describing how to + a table's cells must completely cover that grid without overlap.</p> + + + + <p>Authors are encouraged to provide information describing how to interpret complex tables. Guidance on how <a href="#table-descriptions-techniques">provide such information</a> - is given below.<p>Tables should not be used as layout aids. + is given below.</p> + + + + + <p>Tables should not be used as layout aids. Historically, many Web authors have tables in HTML as a way to control their page layout making it difficult to extract tabular @@ -407,17 +458,33 @@ attribute role="presentation" for a user agent to properly represent the table to an assistive technology and to properly convey the intent of the author to tools that wish to extract tabular data from - the document.<p class="note">There are a variety of alternatives to using HTML + the document.</p> + + + + <p class="note">There are a variety of alternatives to using HTML tables for layout, primarily using CSS positioning and the CSS table - model.<p>The <dfn aria-haspopup="true" id="attr-table-border" role="button" tabindex="0"><code>border</code></dfn> + model.</p> + + <p>The <dfn aria-haspopup="true" id="attr-table-border" role="button" tabindex="0"><code>border</code></dfn> attribute may be specified on a <code><a href="#the-table-element" id="table_5">table</a></code> element to explicitly indicate that the <code><a href="#the-table-element" id="table_6">table</a></code> element is not being used for layout purposes. If specified, the attribute's value must either be the empty string or the value "<code title="">1</code>". The attribute is used by certain user agents as an indication that - borders should be drawn around cells of the table.<p class="note">Authors + borders should be drawn around cells of the table.</p> + + + + + + <p class="note">Authors are encouraged to consider using some of the <a href="#table-layout-techniques">table layout techniques</a> - described below to make tables easier to navigate for users.<hr><dl class="domintro"><dt><var title="">table</var> . <code id="dom-table-caption" title="dom-table-caption"><a href="#dom-table-caption">caption</a></code> [ = <var title="">value</var> ]</dt> + described below to make tables easier to navigate for users.</p> + + + + <hr><dl class="domintro"><dt><var title="">table</var> . <code id="dom-table-caption" title="dom-table-caption"><a href="#dom-table-caption">caption</a></code> [ = <var title="">value</var> ]</dt> <dd> <p>Returns the table's <code><a href="the-caption-element.html#the-caption-element" id="caption_0">caption</a></code> element.</p> <p>Can be set, to replace the <code><a href="the-caption-element.html#the-caption-element" id="caption_1">caption</a></code> element. If the @@ -503,7 +570,10 @@ </dl><p>The <dfn aria-haspopup="true" id="dom-table-border" role="button" tabindex="0"><code>border</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_51">reflect</a> the content attribute of the same name.</p> -<div class="example"> + + + + <div class="example"> <p>Here is an example of a table being used to mark up a Sudoku puzzle. Observe the lack of headers, which are not necessary in @@ -535,15 +605,30 @@ </table> </section></pre> - </div><h5 id="table-descriptions-techniques"><span class="secno">4.9.1.1 </span>Techniques for describing tables</h5><p id="table-descriptions">For tables that consist of more than just + </div> + + + + + <h5 id="table-descriptions-techniques"><span class="secno">4.9.1.1 </span>Techniques for describing tables</h5> + + <p id="table-descriptions">For tables that consist of more than just a grid of cells with headers in the first row and headers in the first column, and for any table in general where the reader might have difficulty understanding the content, authors should include explanatory information introducing the table. This information is useful for all users, but is especially useful for users who cannot - see the table, e.g. users of screen readers.<p>Such explanatory information should introduce the purpose of the + see the table, e.g. users of screen readers.</p> + + <p>Such explanatory information should introduce the purpose of the table, outline its basic cell structure, highlight any trends or - patterns, and generally teach the user how to use the table.<p>For instance, the following table:<table><caption>Characteristics with positive and negative sides</caption> + patterns, and generally teach the user how to use the table.</p> + + + + <p>For instance, the following table:</p> + + <table><caption>Characteristics with positive and negative sides</caption> <thead><tr><th id="n"> Negative <th> Characteristic <th> Positive @@ -556,7 +641,11 @@ </table><p>...might benefit from a description explaining the way the table is laid out, something like "Characteristics are given in the second column, with the negative side in the left column and the - positive side in the right column".<p>There are a variety of ways to include this information, such as:<dl><dt>In prose, surrounding the table</dt> + positive side in the right column".</p> + + <p>There are a variety of ways to include this information, such as:</p> + + <dl><dt>In prose, surrounding the table</dt> <dd> <div class="example"><pre><p>In the following table, characteristics are given in the second @@ -695,9 +784,13 @@ </dd> </dl><p>Authors may also use other techniques, or combinations of the - above techniques, as appropriate.<p>The best option, of course, rather than writing a description + above techniques, as appropriate.</p> + + <p>The best option, of course, rather than writing a description explaining the way the table is laid out, is to adjust the table - such that no explanation is needed.<div class="example"> + such that no explanation is needed.</p> + + <div class="example"> <p>In the case of the table used in the examples above, a simple rearrangement of the table so that the headers are on the top and @@ -722,13 +815,34 @@ <td> Passing </table></pre> - </div><h5 id="table-layout-techniques"><span class="secno">4.9.1.2 </span>Techniques for table layout</h5><p>Good table layout is key to making tables more readable and usable.<p>In visual media, providing column and row borders and alternating + </div> + + + + <h5 id="table-layout-techniques"><span class="secno">4.9.1.2 </span>Techniques for table layout</h5> + + <p>Good table layout is key to making tables more readable and usable.</p> + + <p>In visual media, providing column and row borders and alternating row backgrounds can be very effective to make complicated tables - more readable.<p>For tables with large volumes of numeric content, using + more readable.</p> + + <p>For tables with large volumes of numeric content, using monospaced fonts can help users see patterns, especially in situations where a user agent does not render the borders. (Unfortunately, for historical reasons, not rendering borders on - tables is a common default.)<p>In speech media, table cells can be distinguished by reporting + tables is a common default.)</p> + + <p>In speech media, table cells can be distinguished by reporting the corresponding headers before reading the cell's contents, and by allowing users to navigate the table in a grid fashion, rather than - serializing the entire contents of the table in source order.<p>Authors are encouraged to use CSS to achieve these effects. \ No newline at end of file + serializing the entire contents of the table in source order.</p> + + <p>Authors are encouraged to use CSS to achieve these effects.</p> + + + + + + + \ No newline at end of file Index: the-audio-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-audio-element.html,v retrieving revision 1.130 retrieving revision 1.131 diff -u -d -r1.130 -r1.131 --- the-audio-element.html 15 Feb 2012 10:14:19 -0000 1.130 +++ the-audio-element.html 13 Mar 2012 19:58:55 -0000 1.131 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-video-element.html">← 4.8.6 The video element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-source-element.html">4.8.8 The source element →</a> </div> - <h4 id="the-audio-element"><span class="secno">4.8.7 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>audio</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_67" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-audio-element"><span class="secno">4.8.7 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>audio</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_67" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_106">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_120">Phrasing content</a>.</dd> <dd><a href="content-models.html#embedded-content" id="embedded-content_14">Embedded content</a>.</dd> @@ -382,11 +422,17 @@ interface <dfn aria-haspopup="true" id="htmlaudioelement" role="button" tabindex="0">HTMLAudioElement</dfn> : <a href="media-elements.html#htmlmediaelement" id="htmlmediaelement_1">HTMLMediaElement</a> {};</pre> </dd> </dl><p>An <code><a href="#the-audio-element" id="audio_7">audio</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a sound or - audio stream.<p>Content may be provided inside the <code><a href="#the-audio-element" id="audio_8">audio</a></code> + audio stream.</p> + + + + <p>Content may be provided inside the <code><a href="#the-audio-element" id="audio_8">audio</a></code> element; it is intended for older Web browsers which do not support <code><a href="#the-audio-element" id="audio_9">audio</a></code>, so that legacy audio plugins can be tried, or to show text to the users of these older browsers informing - them of how to access the audio contents.<p class="note">In particular, this content is not intended to + them of how to access the audio contents.</p> + + <p class="note">In particular, this content is not intended to address accessibility concerns. To make audio content accessible to the deaf or to those with other physical or cognitive disabilities, a variety of features are available. If captions or a sign language @@ -396,12 +442,20 @@ be provided to aid navigation, using the <code><a href="the-track-element.html#the-track-element" id="track_11">track</a></code> element and a WebVTT file. And, naturally, transcripts or other textual alternatives can be provided by simply linking to them in the prose - near the <code><a href="#the-audio-element" id="audio_11">audio</a></code> element. <a href="references.html#refsWEBVTT">[WEBVTT]</a><p>The <code><a href="#the-audio-element" id="audio_12">audio</a></code> element is a <a href="media-elements.html#media-element" id="media-element_6">media element</a> - whose <a href="media-elements.html#media-data" id="media-data_1">media data</a> is ostensibly audio data.<p>The <code title="attr-media-src"><a href="media-elements.html#attr-media-src" id="src_38">src</a></code>, <code title="attr-media-preload"><a href="media-elements.html#attr-media-preload" id="preload_2">preload</a></code>, <code title="attr-media-autoplay"><a href="media-elements.html#attr-media-autoplay" id="autoplay_2">autoplay</a></code>, + near the <code><a href="#the-audio-element" id="audio_11">audio</a></code> element. <a href="references.html#refsWEBVTT">[WEBVTT]</a></p> + + <p>The <code><a href="#the-audio-element" id="audio_12">audio</a></code> element is a <a href="media-elements.html#media-element" id="media-element_6">media element</a> + whose <a href="media-elements.html#media-data" id="media-data_1">media data</a> is ostensibly audio data.</p> + + <p>The <code title="attr-media-src"><a href="media-elements.html#attr-media-src" id="src_38">src</a></code>, <code title="attr-media-preload"><a href="media-elements.html#attr-media-preload" id="preload_2">preload</a></code>, <code title="attr-media-autoplay"><a href="media-elements.html#attr-media-autoplay" id="autoplay_2">autoplay</a></code>, <code title="attr-media-mediagroup"><a href="media-elements.html#attr-media-mediagroup" id="mediagroup_3">mediagroup</a></code>, <code title="attr-media-loop"><a href="media-elements.html#attr-media-loop" id="loop_2">loop</a></code>, <code title="attr-media-muted"><a href="media-elements.html#attr-media-muted" id="muted_2">muted</a></code>, and <code title="attr-media-controls"><a href="media-elements.html#attr-media-controls" id="controls_8">controls</a></code> attributes are <a href="media-elements.html#media-element-attributes" id="media-element-attributes_1" title="media element attributes">the attributes common to all media - elements</a>.<dl class="domintro"><dt><var title="">audio</var> = new <code id="dom-audio" title="dom-Audio"><a href="#dom-audio">Audio</a></code>( [ <var title="">url</var> ] )</dt> + elements</a>.</p> + + + + <dl class="domintro"><dt><var title="">audio</var> = new <code id="dom-audio" title="dom-Audio"><a href="#dom-audio">Audio</a></code>( [ <var title="">url</var> ] )</dt> <dd> Index: edits-and-lists.html =================================================================== RCS file: /sources/public/html5/spec-author-view/edits-and-lists.html,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- edits-and-lists.html 15 Feb 2012 10:14:03 -0000 1.18 +++ edits-and-lists.html 13 Mar 2012 19:58:37 -0000 1.19 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,21 +380,31 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="edits-and-paragraphs.html">← 4.7.4 Edits and paragraphs</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="embedded-content-1.html">4.8 Embedded content →</a> <ol class="toc"><li><ol><li><ol><li><a href="edits-and-lists.html#edits-and-lists"><span class="secno">4.7.5 </span>Edits and lists</a><li><a href="edits-and-lists.html#edits-and-tables"><span class="secno">4.7.6 </span>Edits and tables</a></ol></ol></ol></div> - <h4 id="edits-and-lists"><span class="secno">4.7.5 </span>Edits and lists</h4><p>The content models of the <code><a href="the-ol-element.html#the-ol-element" id="ol_17">ol</a></code> and <code><a href="the-ul-element.html#the-ul-element" id="ul_14">ul</a></code> + <h4 id="edits-and-lists"><span class="secno">4.7.5 </span>Edits and lists</h4> + + + + <p>The content models of the <code><a href="the-ol-element.html#the-ol-element" id="ol_17">ol</a></code> and <code><a href="the-ul-element.html#the-ul-element" id="ul_14">ul</a></code> elements do not allow <code><a href="the-ins-element.html#the-ins-element" id="ins_25">ins</a></code> and <code><a href="the-del-element.html#the-del-element" id="del_21">del</a></code> elements as children. Lists always represent all their items, including items - that would otherwise have been marked as deleted.<p>To indicate that an item is inserted or deleted, an + that would otherwise have been marked as deleted.</p> + + <p>To indicate that an item is inserted or deleted, an <code><a href="the-ins-element.html#the-ins-element" id="ins_26">ins</a></code> or <code><a href="the-del-element.html#the-del-element" id="del_22">del</a></code> element can be wrapped around the contents of the <code><a href="the-li-element.html#the-li-element" id="li_17">li</a></code> element. To indicate that an item has been replaced by another, a single <code><a href="the-li-element.html#the-li-element" id="li_18">li</a></code> element can have one or more <code><a href="the-del-element.html#the-del-element" id="del_23">del</a></code> elements followed by one or - more <code><a href="the-ins-element.html#the-ins-element" id="ins_27">ins</a></code> elements.<div class="example"> + more <code><a href="the-ins-element.html#the-ins-element" id="ins_27">ins</a></code> elements.</p> + + <div class="example"> <p>In the following example, a list that started empty had items added and removed from it over time. The bits in the example that @@ -378,7 +424,9 @@ Carbon dioxide emissions detected after startup</ins></del></li> </ol></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>In the following example, a list that started with just fruit was replaced by a list with just colors.</p> @@ -395,13 +443,24 @@ <li><ins>Purple</ins></li> </ul></pre> - </div><h4 id="edits-and-tables"><span class="secno">4.7.6 </span>Edits and tables</h4><p>The elements that form part of the table model have complicated + </div> + + + <h4 id="edits-and-tables"><span class="secno">4.7.6 </span>Edits and tables</h4> + + + + <p>The elements that form part of the table model have complicated content model requirements that do not allow for the <code><a href="the-ins-element.html#the-ins-element" id="ins_28">ins</a></code> and <code><a href="the-del-element.html#the-del-element" id="del_24">del</a></code> elements, so indicating edits - to a table can be difficult.<p>To indicate that an entire row or an entire column has been added + to a table can be difficult.</p> + + <p>To indicate that an entire row or an entire column has been added or removed, the entire contents of each cell in that row or column can be wrapped in <code><a href="the-ins-element.html#the-ins-element" id="ins_29">ins</a></code> or <code><a href="the-del-element.html#the-del-element" id="del_25">del</a></code> elements - (respectively).<div class="example"> + (respectively).</p> + + <div class="example"> <p>Here, a table's row has been added:</p> @@ -425,6 +484,13 @@ <tr> <td> Portal 2 <td> Valve <td> <strong><del cite="/edits/r192" datetime="2011-05-02 14:23Z">10/10</del></strong> </table></pre> - </div><p>Generally speaking, there is no good way to indicate more + </div> + + <p>Generally speaking, there is no good way to indicate more complicated edits (e.g. that a cell was removed, moving all - subsequent cells up or to the left). \ No newline at end of file + subsequent cells up or to the left).</p> + + + + + \ No newline at end of file Index: the-pre-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-pre-element.html,v retrieving revision 1.119 retrieving revision 1.120 diff -u -d -r1.119 -r1.120 --- the-pre-element.html 21 Feb 2012 21:59:07 -0000 1.119 +++ the-pre-element.html 13 Mar 2012 19:59:00 -0000 1.120 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-hr-element.html">← 4.5.2 The hr element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-blockquote-element.html">4.5.4 The blockquote element →</a> </div> - <h4 id="the-pre-element"><span class="secno">4.5.3 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>pre</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_21" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-pre-element"><span class="secno">4.5.3 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>pre</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_21" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_46">Flow content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_10">Palpable content</a>.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_21" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> @@ -365,10 +405,16 @@ </dd> </dl><p>The <code><a href="#the-pre-element" id="pre_3">pre</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a block of preformatted text, in which structure is represented by typographic - conventions rather than by elements.<p class="note">In <a href="syntax.html#syntax" id="the-html-syntax_4">the HTML syntax</a>, a leading + conventions rather than by elements.</p> + + <p class="note">In <a href="syntax.html#syntax" id="the-html-syntax_4">the HTML syntax</a>, a leading newline character immediately following the <code><a href="#the-pre-element" id="pre_4">pre</a></code> element - start tag is stripped.<p>Some examples of cases where the <code><a href="#the-pre-element" id="pre_5">pre</a></code> element could - be used:<ul><li>Including an e-mail, with paragraphs indicated by blank lines, + start tag is stripped.</p> + + <p>Some examples of cases where the <code><a href="#the-pre-element" id="pre_5">pre</a></code> element could + be used:</p> + + <ul><li>Including an e-mail, with paragraphs indicated by blank lines, lists indicated by lines prefixed with a bullet, and so on.</li> <li>Including fragments of computer code, with structure indicated @@ -381,12 +427,18 @@ case for users of speech synthesizers, braille displays, and the like. For cases like ASCII art, it is likely that an alternative presentation, such as a textual description, would be more - universally accessible to the readers of the document.<p>To represent a block of computer code, the <code><a href="#the-pre-element" id="pre_6">pre</a></code> + universally accessible to the readers of the document.</p> + + <p>To represent a block of computer code, the <code><a href="#the-pre-element" id="pre_6">pre</a></code> element can be used with a <code><a href="the-code-element.html#the-code-element" id="code_2">code</a></code> element; to represent a block of computer output the <code><a href="#the-pre-element" id="pre_7">pre</a></code> element can be used with a <code><a href="the-samp-element.html#the-samp-element" id="samp_2">samp</a></code> element. Similarly, the <code><a href="the-kbd-element.html#the-kbd-element" id="kbd_3">kbd</a></code> element can be used within a <code><a href="#the-pre-element" id="pre_8">pre</a></code> element to indicate - text that the user is to enter.<div class="example"> + text that the user is to enter.</p> + + + + <div class="example"> <p>In the following snippet, a sample of computer code is presented.</p> @@ -398,7 +450,9 @@ this.closeHandler = function () { if (closeHandler) closeHandler() }; }</code></pre></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>In the following snippet, <code><a href="the-samp-element.html#the-samp-element" id="samp_3">samp</a></code> and <code><a href="the-kbd-element.html#the-kbd-element" id="kbd_4">kbd</a></code> elements are mixed in the contents of a <code><a href="#the-pre-element" id="pre_9">pre</a></code> element to @@ -415,7 +469,9 @@ ></samp></pre></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>The following shows a contemporary poem that uses the <code><a href="#the-pre-element" id="pre_10">pre</a></code> element to preserve its unusual formatting, which @@ -435,4 +491,8 @@ ~cdr 11dec07</pre></pre> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: dynamic-markup-insertion.html =================================================================== RCS file: /sources/public/html5/spec-author-view/dynamic-markup-insertion.html,v retrieving revision 1.26 retrieving revision 1.27 diff -u -d -r1.26 -r1.27 --- dynamic-markup-insertion.html 15 Feb 2012 10:14:03 -0000 1.26 +++ dynamic-markup-insertion.html 13 Mar 2012 19:58:37 -0000 1.27 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,20 +380,32 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="wai-aria.html">← 3.2.7 WAI-ARIA</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="semantics.html">4 The elements of HTML →</a> <ol class="toc"><li><ol><li><a href="dynamic-markup-insertion.html#dynamic-markup-insertion" id="3.3-dynamic-markup-insertion"><span class="secno">3.3 </span>Dynamic markup insertion</a> <ol><li><a href="dynamic-markup-insertion.html#opening-the-input-stream"><span class="secno">3.3.1 </span>Opening the input stream</a><li><a href="dynamic-markup-insertion.html#closing-the-input-stream"><span class="secno">3.3.2 </span>Closing the input stream</a><li><a href="dynamic-markup-insertion.html#document.write"><span class="secno">3.3.3 </span><code title="dom-document-write">document.write()</code></a><li><a href="dynamic-markup-insertion.html#document.writeln"><span class="secno">3.3.4 </span><code title="dom-document-writeln">document.writeln()</code></a></ol></ol></ol></div> - <h3 id="dynamic-markup-insertion"><span class="secno">3.3 </span><dfn aria-haspopup="true" role="button" tabindex="0">Dynamic markup insertion</dfn></h3><p class="note">APIs for dynamically inserting markup into the + <h3 id="dynamic-markup-insertion"><span class="secno">3.3 </span><dfn aria-haspopup="true" role="button" tabindex="0">Dynamic markup insertion</dfn></h3> + + <p class="note">APIs for dynamically inserting markup into the document interact with the parser, and thus their behavior varies depending on whether they are used with <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#html-documents" title='Read about this "HTML documents" reference in the full HTML5 spec.'>HTML documents</a> (and the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/parsing.html#html-parser" title='Read about this "HTML parser" reference in the full HTML5 spec.'>HTML parser</a>) or XHTML in <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#xml-documents" title='Read about this "XML documents" reference in the full HTML5 spec.'>XML - documents</a> (and the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-xhtml-syntax.html#xml-parser" title='Read about this "XML parser" reference in the full HTML5 spec.'>XML parser</a>).<h4 id="opening-the-input-stream"><span class="secno">3.3.1 </span>Opening the input stream</h4><p>The <dfn aria-haspopup="true" id="dom-document-open" role="button" tabindex="0"><code>open()</code></dfn> + documents</a> (and the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-xhtml-syntax.html#xml-parser" title='Read about this "XML parser" reference in the full HTML5 spec.'>XML parser</a>).</p> + + + + <h4 id="opening-the-input-stream"><span class="secno">3.3.1 </span>Opening the input stream</h4> + + <p>The <dfn aria-haspopup="true" id="dom-document-open" role="button" tabindex="0"><code>open()</code></dfn> method comes in several variants with different numbers of - arguments.<dl class="domintro"><dt><var title="">document</var> = <var title="">document</var> . <code title="dom-document-open"><a href="#dom-document-open" id="open_4">open</a></code>( [ <var title="">type</var> [, <var title="">replace</var> ] ] )</dt> + arguments.</p> + + <dl class="domintro"><dt><var title="">document</var> = <var title="">document</var> . <code title="dom-document-open"><a href="#dom-document-open" id="open_4">open</a></code>( [ <var title="">type</var> [, <var title="">replace</var> ] ] )</dt> <dd> @@ -395,7 +443,9 @@ </dd> - </dl><h4 id="closing-the-input-stream"><span class="secno">3.3.2 </span>Closing the input stream</h4><dl class="domintro"><dt><var title="">document</var> . <code id="dom-document-close" title="dom-document-close"><a href="#dom-document-close">close</a></code>()</dt> + </dl><h4 id="closing-the-input-stream"><span class="secno">3.3.2 </span>Closing the input stream</h4> + + <dl class="domintro"><dt><var title="">document</var> . <code id="dom-document-close" title="dom-document-close"><a href="#dom-document-close">close</a></code>()</dt> <dd> @@ -407,7 +457,9 @@ </dd> - </dl><h4 id="document.write"><span class="secno">3.3.3 </span><code title="dom-document-write"><a href="#dom-document-write">document.write()</a></code></h4><dl class="domintro"><dt><var title="">document</var> . <code id="dom-document-write" title="dom-document-write"><a href="#dom-document-write">write</a></code>(<var title="">text</var>...)</dt> + </dl><h4 id="document.write"><span class="secno">3.3.3 </span><code title="dom-document-write"><a href="#dom-document-write">document.write()</a></code></h4> + + <dl class="domintro"><dt><var title="">document</var> . <code id="dom-document-write" title="dom-document-write"><a href="#dom-document-write">write</a></code>(<var title="">text</var>...)</dt> <dd> @@ -431,7 +483,9 @@ </dd> - </dl><h4 id="document.writeln"><span class="secno">3.3.4 </span><code title="dom-document-writeln"><a href="#dom-document-writeln">document.writeln()</a></code></h4><dl class="domintro"><dt><var title="">document</var> . <code id="dom-document-writeln" title="dom-document-writeln"><a href="#dom-document-writeln">writeln</a></code>(<var title="">text</var>...)</dt> + </dl><h4 id="document.writeln"><span class="secno">3.3.4 </span><code title="dom-document-writeln"><a href="#dom-document-writeln">document.writeln()</a></code></h4> + + <dl class="domintro"><dt><var title="">document</var> . <code id="dom-document-writeln" title="dom-document-writeln"><a href="#dom-document-writeln">writeln</a></code>(<var title="">text</var>...)</dt> <dd> Index: the-tfoot-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-tfoot-element.html,v retrieving revision 1.115 retrieving revision 1.116 diff -u -d -r1.115 -r1.116 --- the-tfoot-element.html 15 Feb 2012 10:14:26 -0000 1.115 +++ the-tfoot-element.html 13 Mar 2012 19:59:02 -0000 1.116 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-thead-element.html">← 4.9.6 The thead element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-tr-element.html">4.9.8 The tr element →</a> </div> - <h4 id="the-tfoot-element"><span class="secno">4.9.7 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>tfoot</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_79" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-tfoot-element"><span class="secno">4.9.7 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>tfoot</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_79" title="element-dfn-categories">Categories</a>:</dt> <dd>None.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_79" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>As a child of a <code><a href="the-table-element.html#the-table-element" id="table_24">table</a></code> element, after any @@ -373,4 +413,9 @@ </dl><p>The <code><a href="#the-tfoot-element" id="tfoot_12">tfoot</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-td-and-th-elements.html#concept-row-group" title='Read about this "block" reference in the full HTML5 spec.'>block</a> of <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-td-and-th-elements.html#concept-row" title='Read about this "rows" reference in the full HTML5 spec.'>rows</a> that consist of the column summaries (footers) for the parent <code><a href="the-table-element.html#the-table-element" id="table_28">table</a></code> element, if the <code><a href="#the-tfoot-element" id="tfoot_13">tfoot</a></code> element has a parent and it is a - <code><a href="the-table-element.html#the-table-element" id="table_29">table</a></code>. \ No newline at end of file + <code><a href="the-table-element.html#the-table-element" id="table_29">table</a></code>.</p> + + + + + \ No newline at end of file Index: the-footer-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-footer-element.html,v retrieving revision 1.120 retrieving revision 1.121 diff -u -d -r1.120 -r1.121 --- the-footer-element.html 21 Feb 2012 21:59:04 -0000 1.120 +++ the-footer-element.html 13 Mar 2012 19:58:57 -0000 1.121 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-header-element.html">← 4.4.8 The header element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-address-element.html">4.4.10 The address element →</a> </div> - <h4 id="the-footer-element"><span class="secno">4.4.9 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>footer</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_17" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-footer-element"><span class="secno">4.4.9 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>footer</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_17" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_36">Flow content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_7">Palpable content</a>.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_17" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> @@ -366,17 +406,29 @@ for its nearest ancestor <a href="content-models.html#sectioning-content" id="sectioning-content_9">sectioning content</a> or <a href="headings-and-sections.html#sectioning-root" id="sectioning-root_2">sectioning root</a> element. A footer typically contains information about its section such as who wrote it, links to related - documents, copyright data, and the like.<p>When the <code><a href="#the-footer-element" id="footer_10">footer</a></code> element contains entire sections, + documents, copyright data, and the like.</p> + + <p>When the <code><a href="#the-footer-element" id="footer_10">footer</a></code> element contains entire sections, they <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represent" reference in the full HTML5 spec.'>represent</a> appendices, indexes, long colophons, verbose license agreements, and other such - content.<p class="note">Contact information for the author or editor of a + content.</p> + + <p class="note">Contact information for the author or editor of a section belongs in an <code><a href="the-address-element.html#the-address-element" id="address_4">address</a></code> element, possibly itself - inside a <code><a href="#the-footer-element" id="footer_11">footer</a></code>.<p>Footers don't necessarily have to appear at the <em>end</em> of a - section, though they usually do.<p>When the nearest ancestor <a href="content-models.html#sectioning-content" id="sectioning-content_10">sectioning content</a> or + inside a <code><a href="#the-footer-element" id="footer_11">footer</a></code>.</p> + + <p>Footers don't necessarily have to appear at the <em>end</em> of a + section, though they usually do.</p> + + <p>When the nearest ancestor <a href="content-models.html#sectioning-content" id="sectioning-content_10">sectioning content</a> or <a href="headings-and-sections.html#sectioning-root" id="sectioning-root_3">sectioning root</a> element is <a href="dom.html#the-body-element-0" id="the-body-element_4">the body - element</a>, then it applies to the whole page.<p class="note">The <code><a href="#the-footer-element" id="footer_12">footer</a></code> element is not + element</a>, then it applies to the whole page.</p> + + <p class="note">The <code><a href="#the-footer-element" id="footer_12">footer</a></code> element is not <a href="content-models.html#sectioning-content" id="sectioning-content_11">sectioning content</a>; it doesn't introduce a new - section.<div class="example"> + section.</p> + + <div class="example"> <p>Here is a page with two footers, one at the top and one at the bottom, with the same content:</p> @@ -397,7 +449,9 @@ <footer><a href="../">Back to index...</a></footer> </body></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>Here is an example which shows the <code><a href="#the-footer-element" id="footer_13">footer</a></code> element being used both for a site-wide footer and for a section @@ -437,7 +491,9 @@ </BODY> </HTML></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>Some site designs have what is sometimes referred to as "fat footers" — footers that contain a lot of material, including @@ -476,4 +532,7 @@ </footer> </body></pre> - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: the-h3-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-h3-element.html,v retrieving revision 1.117 retrieving revision 1.118 diff -u -d -r1.117 -r1.118 --- the-h3-element.html 5 Mar 2012 05:58:59 -0000 1.117 +++ the-h3-element.html 13 Mar 2012 19:58:57 -0000 1.118 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-aside-element.html">← 4.4.5 The aside element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-hgroup-element.html">4.4.7 The hgroup element →</a> </div> - <h4 id="the-h1-h2-h3-h4-h5-and-h6-elements"><span class="secno">4.4.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>h1</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h2</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h3</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h4</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h5</code></dfn>, and <dfn aria-haspopup="true" role="button" tabindex="0"><code>h6</code></dfn> elements</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_14" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-h1-h2-h3-h4-h5-and-h6-elements"><span class="secno">4.4.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>h1</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h2</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h3</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h4</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h5</code></dfn>, and <dfn aria-haspopup="true" role="button" tabindex="0"><code>h6</code></dfn> elements</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_14" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_29">Flow content</a>.</dd> <dd><a href="content-models.html#heading-content" id="heading-content_2">Heading content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_4">Palpable content</a>.</dd> @@ -366,11 +406,17 @@ <pre class="idl">interface <dfn aria-haspopup="true" id="htmlheadingelement" role="button" tabindex="0">HTMLHeadingElement</dfn> : <a href="elements.html#htmlelement" id="htmlelement_19">HTMLElement</a> {};</pre> </dd> </dl><p>These elements <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represent" reference in the full HTML5 spec.'>represent</a> headings - for their sections.<p>The semantics and meaning of these elements are defined in the - section on <a href="headings-and-sections.html#headings-and-sections" id="headings-and-sections_1">headings and sections</a>.<p>These elements have a <dfn aria-haspopup="true" id="rank" role="button" tabindex="0">rank</dfn> given by the number in + for their sections.</p> + + <p>The semantics and meaning of these elements are defined in the + section on <a href="headings-and-sections.html#headings-and-sections" id="headings-and-sections_1">headings and sections</a>.</p> + + <p>These elements have a <dfn aria-haspopup="true" id="rank" role="button" tabindex="0">rank</dfn> given by the number in their name. The <code><a href="#the-h1-h2-h3-h4-h5-and-h6-elements" id="h1_7">h1</a></code> element is said to have the highest rank, the <code><a href="#the-h1-h2-h3-h4-h5-and-h6-elements" id="h6_3">h6</a></code> element has the lowest rank, and two - elements with the same name have equal rank.<div class="example"> + elements with the same name have equal rank.</p> + + <div class="example"> <p>As far as their respective document outlines (their heading and section structures) are concerned, these two snippets are @@ -408,4 +454,9 @@ latter style for its convenience in the face of heavy editing; which is best is purely an issue of preferred authoring style.</p> - </div> \ No newline at end of file + </div> + + + + + \ No newline at end of file Index: the-br-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-br-element.html,v retrieving revision 1.120 retrieving revision 1.121 diff -u -d -r1.120 -r1.121 --- the-br-element.html 21 Feb 2012 21:59:02 -0000 1.120 +++ the-br-element.html 13 Mar 2012 19:58:55 -0000 1.121 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-span-element.html">← 4.6.25 The span element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-wbr-element.html">4.6.27 The wbr element →</a> </div> - <h4 id="the-br-element"><span class="secno">4.6.26 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>br</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_57" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-br-element"><span class="secno">4.6.26 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>br</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_57" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_94">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_100">Phrasing content</a>.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_57" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> @@ -364,12 +404,18 @@ <pre class="idl">interface <dfn aria-haspopup="true" id="htmlbrelement" role="button" tabindex="0">HTMLBRElement</dfn> : <a href="elements.html#htmlelement" id="htmlelement_61">HTMLElement</a> {};</pre> </dd> </dl><p>The <code><a href="#the-br-element" id="br_3">br</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a line - break.<p class="note">While line breaks are usually represented in visual + break.</p> + + <p class="note">While line breaks are usually represented in visual media by physically moving subsequent text to a new line, a style sheet or user agent would be equally justified in causing line breaks to be rendered in a different manner, for instance as green - dots, or as extra spacing.<p><code><a href="#the-br-element" id="br_4">br</a></code> elements must be used only for line breaks that - are actually part of the content, as in poems or addresses.<div class="example"> + dots, or as extra spacing.</p> + + <p><code><a href="#the-br-element" id="br_4">br</a></code> elements must be used only for line breaks that + are actually part of the content, as in poems or addresses.</p> + + <div class="example"> <p>The following example is correct usage of the <code><a href="#the-br-element" id="br_5">br</a></code> element:</p> @@ -378,8 +424,12 @@ 42 Wallaby Way<br> Sydney</p></pre> - </div><p><code><a href="#the-br-element" id="br_6">br</a></code> elements must not be used for separating thematic - groups in a paragraph.<div class="example"> + </div> + + <p><code><a href="#the-br-element" id="br_6">br</a></code> elements must not be used for separating thematic + groups in a paragraph.</p> + + <div class="example"> <p>The following examples are non-conforming, as they abuse the <code><a href="#the-br-element" id="br_7">br</a></code> element:</p> @@ -398,7 +448,14 @@ <pre><p><label>Name: <input name="name"></label></p> <p><label>Address: <input name="address"></label></p></pre> - </div><p>If a <a href="content-models.html#paragraph" id="paragraph_11">paragraph</a> consists of nothing but a single + </div> + + <p>If a <a href="content-models.html#paragraph" id="paragraph_11">paragraph</a> consists of nothing but a single <code><a href="#the-br-element" id="br_8">br</a></code> element, it represents a placeholder blank line (e.g. as in a template). Such blank lines must not be used for - presentation purposes. \ No newline at end of file + presentation purposes.</p> + + + + + \ No newline at end of file Index: image-maps.html =================================================================== RCS file: /sources/public/html5/spec-author-view/image-maps.html,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- image-maps.html 15 Feb 2012 10:14:10 -0000 1.17 +++ image-maps.html 13 Mar 2012 19:58:41 -0000 1.18 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,20 +380,32 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-area-element.html">← 4.8.13 The area element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="mathml.html">4.8.15 MathML →</a> </div> - <h4 id="image-maps"><span class="secno">4.8.14 </span>Image maps</h4><p>An <dfn aria-haspopup="true" id="image-map" role="button" tabindex="0">image map</dfn> allows geometric areas on an image to be - associated with <a href="links.html#hyperlink" id="hyperlink_11" title="hyperlink">hyperlinks</a>.<p>An image, in the form of an <code><a href="the-img-element.html#the-img-element" id="img_29">img</a></code> element or an + <h4 id="image-maps"><span class="secno">4.8.14 </span>Image maps</h4> + + + + + + <p>An <dfn aria-haspopup="true" id="image-map" role="button" tabindex="0">image map</dfn> allows geometric areas on an image to be + associated with <a href="links.html#hyperlink" id="hyperlink_11" title="hyperlink">hyperlinks</a>.</p> + + <p>An image, in the form of an <code><a href="the-img-element.html#the-img-element" id="img_29">img</a></code> element or an <code><a href="the-object-element.html#the-object-element" id="object_28">object</a></code> element representing an image, may be associated with an image map (in the form of a <code><a href="the-map-element.html#the-map-element" id="map_12">map</a></code> element) by specifying a <dfn aria-haspopup="true" id="attr-hyperlink-usemap" role="button" tabindex="0"><code>usemap</code></dfn> attribute on the <code><a href="the-img-element.html#the-img-element" id="img_30">img</a></code> or <code><a href="the-object-element.html#the-object-element" id="object_29">object</a></code> element. The <code title="attr-hyperlink-usemap"><a href="#attr-hyperlink-usemap" id="usemap_7">usemap</a></code> attribute, if specified, must be a <a href="common-microsyntaxes.html#valid-hash-name-reference" id="valid-hash-name-reference_0">valid hash-name reference</a> to a - <code><a href="the-map-element.html#the-map-element" id="map_13">map</a></code> element.<div class="example"> + <code><a href="the-map-element.html#the-map-element" id="map_13">map</a></code> element.</p> + + <div class="example"> <p>Consider an image that looks as follows:</p> @@ -380,4 +428,10 @@ </map> </p></pre> - </div> \ No newline at end of file + </div> + + + + + + \ No newline at end of file Index: the-meta-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-meta-element.html,v retrieving revision 1.131 retrieving revision 1.132 diff -u -d -r1.131 -r1.132 --- the-meta-element.html 21 Feb 2012 21:59:06 -0000 1.131 +++ the-meta-element.html 13 Mar 2012 19:58:59 -0000 1.132 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,14 +380,18 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-link-element.html">← 4.2.4 The link element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-style-element.html">4.2.6 The style element →</a> <ol class="toc"><li><ol><li><ol><li><a href="the-meta-element.html#the-meta-element" id="4.2.5-the-meta-element"><span class="secno">4.2.5 </span>The <code>meta</code> element</a> <ol><li><a href="the-meta-element.html#standard-metadata-names"><span class="secno">4.2.5.1 </span>Standard metadata names</a><li><a href="the-meta-element.html#other-metadata-names"><span class="secno">4.2.5.2 </span>Other metadata names</a><li><a href="the-meta-element.html#pragma-directives"><span class="secno">4.2.5.3 </span>Pragma directives</a><li><a href="the-meta-element.html#other-pragma-directives"><span class="secno">4.2.5.4 </span>Other pragma directives</a><li><a href="the-meta-element.html#charset"><span class="secno">4.2.5.5 </span>Specifying the document's character encoding</a></ol></ol></ol></ol></div> - <h4 id="the-meta-element"><span class="secno">4.2.5 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>meta</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_5" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-meta-element"><span class="secno">4.2.5 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>meta</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_5" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#metadata-content" id="metadata-content_8">Metadata content</a>.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_5" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>If the <code title="attr-meta-charset"><a href="#attr-meta-charset" id="charset_0">charset</a></code> attribute is present, or if the element's <code title="attr-meta-http-equiv"><a href="#attr-meta-http-equiv" id="http-equiv">http-equiv</a></code> attribute is in the <a href="#attr-meta-http-equiv-content-type" id="attr-meta-http-equiv-content-type_0" title="attr-meta-http-equiv-content-type">Encoding declaration state</a>: in a <code><a href="the-head-element.html#the-head-element" id="head_12">head</a></code> element.</dd> @@ -377,31 +417,48 @@ </dl><p>The <code><a href="#the-meta-element" id="meta_4">meta</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> various kinds of metadata that cannot be expressed using the <code><a href="the-title-element.html#the-title-element" id="title_50">title</a></code>, <code><a href="the-base-element.html#the-base-element" id="base_11">base</a></code>, <code><a href="the-link-element.html#the-link-element" id="link_19">link</a></code>, - <code><a href="the-style-element.html#the-style-element" id="style_15">style</a></code>, and <code><a href="the-script-element.html#the-script-element" id="script_13">script</a></code> elements.<p>The <code><a href="#the-meta-element" id="meta_5">meta</a></code> element can represent document-level + <code><a href="the-style-element.html#the-style-element" id="style_15">style</a></code>, and <code><a href="the-script-element.html#the-script-element" id="script_13">script</a></code> elements.</p> + + <p>The <code><a href="#the-meta-element" id="meta_5">meta</a></code> element can represent document-level metadata with the <code title="attr-meta-name"><a href="#attr-meta-name" id="name_1">name</a></code> attribute, pragma directives with the <code title="attr-meta-http-equiv"><a href="#attr-meta-http-equiv" id="http-equiv_3">http-equiv</a></code> attribute, and the file's <a href="#character-encoding-declaration" id="character-encoding-declaration_0">character encoding declaration</a> when an HTML document is serialized to string form (e.g. for transmission over - the network or for disk storage) with the <code title="attr-meta-charset"><a href="#attr-meta-charset" id="charset_2">charset</a></code> attribute.<p>Exactly one of the <code title="attr-meta-name"><a href="#attr-meta-name" id="name_2">name</a></code>, + the network or for disk storage) with the <code title="attr-meta-charset"><a href="#attr-meta-charset" id="charset_2">charset</a></code> attribute.</p> + + <p>Exactly one of the <code title="attr-meta-name"><a href="#attr-meta-name" id="name_2">name</a></code>, <code title="attr-meta-http-equiv"><a href="#attr-meta-http-equiv" id="http-equiv_4">http-equiv</a></code>, and <code title="attr-meta-charset"><a href="#attr-meta-charset" id="charset_3">charset</a></code> attributes must be - specified.<p>If either <code title="attr-meta-name"><a href="#attr-meta-name" id="name_3">name</a></code> or <code title="attr-meta-http-equiv"><a href="#attr-meta-http-equiv" id="http-equiv_5">http-equiv</a></code> is specified, then + specified.</p> + + <p>If either <code title="attr-meta-name"><a href="#attr-meta-name" id="name_3">name</a></code> or <code title="attr-meta-http-equiv"><a href="#attr-meta-http-equiv" id="http-equiv_5">http-equiv</a></code> is specified, then the <code title="attr-meta-content"><a href="#attr-meta-content" id="content_0">content</a></code> attribute must - also be specified. Otherwise, it must be omitted.<p>The <dfn aria-haspopup="true" id="attr-meta-charset" role="button" tabindex="0"><code>charset</code></dfn> + also be specified. Otherwise, it must be omitted.</p> + + + <p>The <dfn aria-haspopup="true" id="attr-meta-charset" role="button" tabindex="0"><code>charset</code></dfn> attribute specifies the character encoding used by the document. This is a <a href="#character-encoding-declaration" id="character-encoding-declaration_1">character encoding declaration</a>. If the attribute is present in an <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#xml-documents" title='Read about this "XML document" reference in the full HTML5 spec.'>XML document</a>, its value must be an <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_6">ASCII case-insensitive</a> match for the string "<code title="">UTF-8</code>" (and the document is therefore forced to use - UTF-8 as its encoding).<p class="note">The <code title="attr-meta-charset"><a href="#attr-meta-charset" id="charset_4">charset</a></code> + UTF-8 as its encoding).</p> + + <p class="note">The <code title="attr-meta-charset"><a href="#attr-meta-charset" id="charset_4">charset</a></code> attribute on the <code><a href="#the-meta-element" id="meta_6">meta</a></code> element has no effect in XML documents, and is only allowed in order to facilitate migration to - and from XHTML.<p>There must not be more than one <code><a href="#the-meta-element" id="meta_7">meta</a></code> element with a + and from XHTML.</p> + + <p>There must not be more than one <code><a href="#the-meta-element" id="meta_7">meta</a></code> element with a <code title="attr-meta-charset"><a href="#attr-meta-charset" id="charset_5">charset</a></code> attribute per - document.<p>The <dfn aria-haspopup="true" id="attr-meta-content" role="button" tabindex="0"><code>content</code></dfn> + document.</p> + + <p>The <dfn aria-haspopup="true" id="attr-meta-content" role="button" tabindex="0"><code>content</code></dfn> attribute gives the value of the document metadata or pragma directive when the element is used for those purposes. The allowed values depend on the exact context, as described in subsequent - sections of this specification.<p>If a <code><a href="#the-meta-element" id="meta_8">meta</a></code> element has a <dfn aria-haspopup="true" id="attr-meta-name" role="button" tabindex="0"><code>name</code></dfn> attribute, it sets + sections of this specification.</p> + + <p>If a <code><a href="#the-meta-element" id="meta_8">meta</a></code> element has a <dfn aria-haspopup="true" id="attr-meta-name" role="button" tabindex="0"><code>name</code></dfn> attribute, it sets document metadata. Document metadata is expressed in terms of name-value pairs, the <code title="attr-meta-name"><a href="#attr-meta-name" id="name_4">name</a></code> attribute on the <code><a href="#the-meta-element" id="meta_9">meta</a></code> element giving the name, and the @@ -412,12 +469,23 @@ has no <code title="attr-meta-content"><a href="#attr-meta-content" id="content_2">content</a></code> attribute, then the value part of the metadata name-value pair is the empty string.</p> + + <p>The <dfn aria-haspopup="true" id="dom-meta-name" role="button" tabindex="0"><code>name</code></dfn> and <dfn aria-haspopup="true" id="dom-meta-content" role="button" tabindex="0"><code>content</code></dfn> IDL attributes must <a href="common-dom-interfaces.html#reflect" id="reflect_9">reflect</a> the respective content attributes of the same name. The IDL attribute <dfn aria-haspopup="true" id="dom-meta-httpequiv" role="button" tabindex="0"><code>httpEquiv</code></dfn> must <a href="common-dom-interfaces.html#reflect" id="reflect_10">reflect</a> the content attribute <code title="attr-meta-http-equiv"><a href="#attr-meta-http-equiv" id="http-equiv_6">http-equiv</a></code>.</p> -<h5 id="standard-metadata-names"><span class="secno">4.2.5.1 </span>Standard metadata names</h5><p>This specification defines a few names for the <code title="attr-meta-name"><a href="#attr-meta-name" id="name_5">name</a></code> attribute of the - <code><a href="#the-meta-element" id="meta_11">meta</a></code> element.<p>Names are case-insensitive.<dl><dt><dfn aria-haspopup="true" id="meta-application-name" role="button" tabindex="0"><code>application-name</code></dfn></dt> + + + + <h5 id="standard-metadata-names"><span class="secno">4.2.5.1 </span>Standard metadata names</h5> + + <p>This specification defines a few names for the <code title="attr-meta-name"><a href="#attr-meta-name" id="name_5">name</a></code> attribute of the + <code><a href="#the-meta-element" id="meta_11">meta</a></code> element.</p> + + <p>Names are case-insensitive.</p> + + <dl><dt><dfn aria-haspopup="true" id="meta-application-name" role="button" tabindex="0"><code>application-name</code></dfn></dt> <dd><p>The value must be a short free-form string giving the name of the Web application that the page represents. If the page is not @@ -492,11 +560,17 @@ </dd> - </dl><h5 id="other-metadata-names"><span class="secno">4.2.5.2 </span>Other metadata names</h5><p><dfn aria-haspopup="true" id="concept-meta-extensions" role="button" tabindex="0">Extensions to the predefined + </dl><h5 id="other-metadata-names"><span class="secno">4.2.5.2 </span>Other metadata names</h5> + + <p><dfn aria-haspopup="true" id="concept-meta-extensions" role="button" tabindex="0">Extensions to the predefined set of metadata names</dfn> may be registered in the <a href="http://wiki.whatwg.org/wiki/MetaExtensions">WHATWG Wiki - MetaExtensions page</a>. <a href="references.html#refsWHATWGWIKI">[WHATWGWIKI]</a><p>Anyone is free to edit the WHATWG Wiki MetaExtensions page at any + MetaExtensions page</a>. <a href="references.html#refsWHATWGWIKI">[WHATWGWIKI]</a></p> + + <p>Anyone is free to edit the WHATWG Wiki MetaExtensions page at any time to add a type. These new names must be specified with the - following information:<dl><dt>Keyword</dt> + following information:</p> + + <dl><dt>Keyword</dt> <dd><p>The actual name being defined. The name should not be confusingly similar to any other defined name (e.g. differing only @@ -575,13 +649,24 @@ </dl><p>Metadata names whose values are to be <a href="urls.html#url" id="url_10" title="URL">URLs</a> must not be proposed or accepted. Links must be represented using the <code><a href="the-link-element.html#the-link-element" id="link_20">link</a></code> element, not the - <code><a href="#the-meta-element" id="meta_15">meta</a></code> element.<h5 id="pragma-directives"><span class="secno">4.2.5.3 </span>Pragma directives</h5><p>When the <dfn aria-haspopup="true" id="attr-meta-http-equiv" role="button" tabindex="0"><code>http-equiv</code></dfn> attribute + <code><a href="#the-meta-element" id="meta_15">meta</a></code> element.</p> + + + + <h5 id="pragma-directives"><span class="secno">4.2.5.3 </span>Pragma directives</h5> + + <p>When the <dfn aria-haspopup="true" id="attr-meta-http-equiv" role="button" tabindex="0"><code>http-equiv</code></dfn> attribute is specified on a <code><a href="#the-meta-element" id="meta_16">meta</a></code> element, the element is a pragma - directive.<p>The <code title="attr-meta-http-equiv"><a href="#attr-meta-http-equiv" id="http-equiv_7">http-equiv</a></code> + directive.</p> + + <p>The <code title="attr-meta-http-equiv"><a href="#attr-meta-http-equiv" id="http-equiv_7">http-equiv</a></code> attribute is an <a href="common-microsyntaxes.html#enumerated-attribute" id="enumerated-attribute_3">enumerated attribute</a>. The following table lists the keywords defined for this attribute. The states given in the first cell of the rows with keywords give the states to - which those keywords map. <table id="table-http-equiv"><thead><tr><th>State + which those keywords map. </p> + + + <table id="table-http-equiv"><thead><tr><th>State <th>Keyword <th>Notes <tbody><tr><td><a href="#attr-meta-http-equiv-content-type" id="attr-meta-http-equiv-content-type_3" title="attr-meta-http-equiv-content-type">Encoding declaration</a> @@ -652,12 +737,11 @@ <ul><li>just a <a href="common-microsyntaxes.html#valid-non-negative-integer" id="valid-non-negative-integer_1">valid non-negative integer</a>, or</li> <li>a <a href="common-microsyntaxes.html#valid-non-negative-integer" id="valid-non-negative-integer_2">valid non-negative integer</a>, followed by a - U+003B SEMICOLON character (;), followed by one or more <a href="common-microsyntaxes.html#space-character" id="space-character_16" title="space character">space characters</a>, followed by a + ";" (U+003B) character, followed by one or more <a href="common-microsyntaxes.html#space-character" id="space-character_16" title="space character">space characters</a>, followed by a substring that is an <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_8">ASCII case-insensitive</a> match - for the string "<code title="">URL</code>", followed by a U+003D - EQUALS SIGN character (=), followed by a <a href="urls.html#valid-url" id="valid-url_2">valid URL</a> - that does not start with a literal U+0027 APOSTROPHE (') or - U+0022 QUOTATION MARK (") character.</li> + for the string "<code title="">URL</code>", followed by a "=" (U+003D) character, followed by a <a href="urls.html#valid-url" id="valid-url_2">valid URL</a> + that does not start with a literal "'" (U+0027) or + """ (U+0022) character.</li> </ul><p>In the former case, the integer represents a number of seconds before the page is to be reloaded; in the latter case the integer @@ -690,21 +774,34 @@ </dl><p>There must not be more than one <code><a href="#the-meta-element" id="meta_21">meta</a></code> element with - any particular state in the document at a time.<h5 id="other-pragma-directives"><span class="secno">4.2.5.4 </span>Other pragma directives</h5><p><dfn aria-haspopup="true" id="concept-http-equiv-extensions" role="button" tabindex="0">Extensions to the + any particular state in the document at a time.</p> + + + <h5 id="other-pragma-directives"><span class="secno">4.2.5.4 </span>Other pragma directives</h5> + + <p><dfn aria-haspopup="true" id="concept-http-equiv-extensions" role="button" tabindex="0">Extensions to the predefined set of pragma directives</dfn> may, under certain conditions, be registered in the <a href="http://wiki.whatwg.org/wiki/PragmaExtensions">WHATWG Wiki - PragmaExtensions page</a>. <a href="references.html#refsWHATWGWIKI">[WHATWGWIKI]</a><p>Such extensions must use a name that is identical to an HTTP + PragmaExtensions page</a>. <a href="references.html#refsWHATWGWIKI">[WHATWGWIKI]</a></p> + + <p>Such extensions must use a name that is identical to an HTTP header registered in the Permanent Message Header Field Registry, and must have behavior identical to that described for the HTTP - header. <a href="references.html#refsIANAPERMHEADERS">[IANAPERMHEADERS]</a><p>Pragma directives corresponding to headers describing metadata, + header. <a href="references.html#refsIANAPERMHEADERS">[IANAPERMHEADERS]</a></p> + + <p>Pragma directives corresponding to headers describing metadata, or not requiring specific user agent processing, must not be registered; instead, use <a href="#concept-meta-extensions" id="concept-meta-extensions_1" title="concept-meta-extensions">metadata names</a>. Pragma directives corresponding to headers that affect the HTTP processing model (e.g. caching) must not be registered, as they would result in HTTP-level behavior being different for user agents that implement - HTML than for user agents that do not.<p>Anyone is free to edit the WHATWG Wiki PragmaExtensions page at + HTML than for user agents that do not.</p> + + <p>Anyone is free to edit the WHATWG Wiki PragmaExtensions page at any time to add a pragma directive satisfying these conditions. Such - registrations must specify the following information:<dl><dt>Keyword</dt> + registrations must specify the following information:</p> + + <dl><dt>Keyword</dt> <dd><p>The actual name being defined. The name must match a previously-registered HTTP name with the same @@ -722,10 +819,18 @@ <dd>A link to the specification defining the corresponding HTTP header.</dd> - </dl><h5 id="charset"><span class="secno">4.2.5.5 </span>Specifying the document's character encoding</h5><p>A <dfn aria-haspopup="true" id="character-encoding-declaration" role="button" tabindex="0">character encoding declaration</dfn> is a mechanism by + </dl><h5 id="charset"><span class="secno">4.2.5.5 </span>Specifying the document's character encoding</h5> + + + + <p>A <dfn aria-haspopup="true" id="character-encoding-declaration" role="button" tabindex="0">character encoding declaration</dfn> is a mechanism by which the character encoding used to store or transmit a document is - specified.<p>The following restrictions apply to character encoding - declarations:<ul><li>The character encoding name given must be the name of the + specified.</p> + + <p>The following restrictions apply to character encoding + declarations:</p> + + <ul><li>The character encoding name given must be the name of the character encoding used to serialize the file.</li> <li>The value must be a valid character encoding name, and must be @@ -743,7 +848,9 @@ </ul><p>In addition, due to a number of restrictions on <code><a href="#the-meta-element" id="meta_22">meta</a></code> elements, there can only be one <code><a href="#the-meta-element" id="meta_23">meta</a></code>-based character - encoding declaration per document.<p>If an <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#html-documents" title='Read about this "HTML document" reference in the full HTML5 spec.'>HTML document</a> does not + encoding declaration per document.</p> + + <p>If an <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#html-documents" title='Read about this "HTML document" reference in the full HTML5 spec.'>HTML document</a> does not start with a BOM, and if its encoding is not explicitly given by <a class="full-spec-link" href="http://dev.w3.org/html5/spec/urls.html#content-type" title='Read about this "Content-Type metadata" reference in the full HTML5 spec.'>Content-Type metadata</a>, and the document is not <a href="the-iframe-element.html#an-iframe-srcdoc-document" id="an-iframe-srcdoc-document_2">an <code>iframe</code> <code title="attr-iframe-srcdoc">srcdoc</code> document</a>, then the @@ -753,17 +860,27 @@ <code><a href="#the-meta-element" id="meta_24">meta</a></code> element with a <code title="attr-meta-charset"><a href="#attr-meta-charset" id="charset_7">charset</a></code> attribute or a <code><a href="#the-meta-element" id="meta_25">meta</a></code> element with an <code title="attr-meta-http-equiv"><a href="#attr-meta-http-equiv" id="http-equiv_12">http-equiv</a></code> attribute in the <a href="#attr-meta-http-equiv-content-type" id="attr-meta-http-equiv-content-type_8" title="attr-meta-http-equiv-content-type">Encoding declaration - state</a>.<p>If the document is <a href="the-iframe-element.html#an-iframe-srcdoc-document" id="an-iframe-srcdoc-document_3">an <code>iframe</code> <code title="attr-iframe-srcdoc">srcdoc</code> document</a>, the + state</a>.</p> + + <p>If the document is <a href="the-iframe-element.html#an-iframe-srcdoc-document" id="an-iframe-srcdoc-document_3">an <code>iframe</code> <code title="attr-iframe-srcdoc">srcdoc</code> document</a>, the document must not have a <a href="#character-encoding-declaration" id="character-encoding-declaration_4">character encoding declaration</a>. (In this case, the source is already decoded, since it is part of the document that contained the - <code><a href="the-iframe-element.html#the-iframe-element" id="iframe_10">iframe</a></code>.)<p>If an <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#html-documents" title='Read about this "HTML document" reference in the full HTML5 spec.'>HTML document</a> contains + <code><a href="the-iframe-element.html#the-iframe-element" id="iframe_10">iframe</a></code>.)</p> + + <p>If an <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#html-documents" title='Read about this "HTML document" reference in the full HTML5 spec.'>HTML document</a> contains a <code><a href="#the-meta-element" id="meta_26">meta</a></code> element with a <code title="attr-meta-charset"><a href="#attr-meta-charset" id="charset_8">charset</a></code> attribute or a <code><a href="#the-meta-element" id="meta_27">meta</a></code> element with an <code title="attr-meta-http-equiv"><a href="#attr-meta-http-equiv" id="http-equiv_13">http-equiv</a></code> attribute in the <a href="#attr-meta-http-equiv-content-type" id="attr-meta-http-equiv-content-type_9" title="attr-meta-http-equiv-content-type">Encoding declaration state</a>, then the character encoding used must be an - <a href="infrastructure.html#ascii-compatible-character-encoding" id="ascii-compatible-character-encoding_1">ASCII-compatible character encoding</a>.<p>Authors are encouraged to use UTF-8. Conformance checkers may - advise authors against using legacy encodings. <a href="references.html#refsRFC3629">[RFC3629]</a><p>Encodings in which a series of bytes in the range 0x20 to 0x7E + <a href="infrastructure.html#ascii-compatible-character-encoding" id="ascii-compatible-character-encoding_1">ASCII-compatible character encoding</a>.</p> + + <p>Authors are encouraged to use UTF-8. Conformance checkers may + advise authors against using legacy encodings. <a href="references.html#refsRFC3629">[RFC3629]</a></p> + + + + <p>Encodings in which a series of bytes in the range 0x20 to 0x7E can encode characters other than the corresponding characters in the range U+0020 to U+007E represent a potential security vulnerability: a user agent that does not support the encoding (or does not support @@ -792,12 +909,20 @@ <a href="references.html#refsBOCU1">[BOCU1]</a> <a href="references.html#refsSCSU">[SCSU]</a> + </p> + <p>Authors should not use UTF-32, as the encoding detection algorithms described in this specification intentionally do not - distinguish it from UTF-16. <a href="references.html#refsUNICODE">[UNICODE]</a><p class="note">Using non-UTF-8 encodings can have unexpected + distinguish it from UTF-16. <a href="references.html#refsUNICODE">[UNICODE]</a></p> + + <p class="note">Using non-UTF-8 encodings can have unexpected results on form submission and URL encodings, which use the - <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#document-s-character-encoding" title="Read about this "document's character encoding" reference in the full HTML5 spec.">document's character encoding</a> by default.<p>In XHTML, the XML declaration should be used for inline character - encoding information, if necessary.<div class="example"> + <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#document-s-character-encoding" title="Read about this "document's character encoding" reference in the full HTML5 spec.">document's character encoding</a> by default.</p> + + <p>In XHTML, the XML declaration should be used for inline character + encoding information, if necessary.</p> + + <div class="example"> <p>In HTML, to declare that the character encoding is UTF-8, the author could include the following markup near the top of the @@ -810,4 +935,7 @@ <pre><?xml version="1.0" encoding="utf-8"?></pre> - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: the-wbr-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-wbr-element.html,v retrieving revision 1.121 retrieving revision 1.122 diff -u -d -r1.121 -r1.122 --- the-wbr-element.html 21 Feb 2012 21:59:09 -0000 1.121 +++ the-wbr-element.html 13 Mar 2012 19:59:03 -0000 1.122 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-br-element.html">← 4.6.26 The br element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="usage-summary.html">4.6.28 Usage summary →</a> </div> - <h4 id="the-wbr-element"><span class="secno">4.6.27 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>wbr</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_58" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-wbr-element"><span class="secno">4.6.27 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>wbr</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_58" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_95">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_102">Phrasing content</a>.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_58" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> @@ -362,7 +402,9 @@ <dt><a href="element-definitions.html#element-dfn-dom" id="element-dfn-dom_58" title="element-dfn-dom">DOM interface</a>:</dt> <dd>Uses <code><a href="elements.html#htmlelement" id="htmlelement_62">HTMLElement</a></code>.</dd> </dl><p>The <code><a href="#the-wbr-element" id="wbr_2">wbr</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a line break - opportunity.<div class="example"> + opportunity.</p> + + <div class="example"> <p>In the following example, someone is quoted as saying something which, for effect, is written as one long word. However, to ensure @@ -373,7 +415,9 @@ <pre><p>So then he pointed at the tiger and screamed "there<wbr>is<wbr>no<wbr>way<wbr>you<wbr>are<wbr>ever<wbr>going<wbr>to<wbr>catch<wbr>me"!</p></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>Here, especially long lines of code in a program listing have suggested wrapping points given using <code><a href="#the-wbr-element" id="wbr_4">wbr</a></code> @@ -384,4 +428,10 @@ Course course = Helm.CourseFactory(Heading, <wbr>Maps.MapFactoryFromHeading(heading), <wbr>Speeds.GetMaximumSpeed().ConvertToWarp()); ...</pre></pre> - </div> \ No newline at end of file + </div> + + + + + + \ No newline at end of file Index: introduction.html =================================================================== RCS file: /sources/public/html5/spec-author-view/introduction.html,v retrieving revision 1.1168 retrieving revision 1.1169 diff -u -d -r1.1168 -r1.1169 --- introduction.html 15 Feb 2012 10:14:11 -0000 1.1168 +++ introduction.html 13 Mar 2012 19:58:42 -0000 1.1169 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -343,7 +379,9 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="Overview.html#contents">Table of contents</a> – <a href="infrastructure.html">2 Common infrastructure →</a> <ol class="toc"><li><a href="introduction.html#introduction"><span class="secno">1 </span>Introduction</a> @@ -353,30 +391,61 @@ <ol><li><a href="introduction.html#writing-secure-applications-with-html"><span class="secno">1.8.1 </span>Writing secure applications with HTML</a><li><a href="introduction.html#common-pitfalls-to-avoid-when-using-the-scripting-apis"><span class="secno">1.8.2 </span>Common pitfalls to avoid when using the scripting APIs</a></ol><li><a href="introduction.html#conformance-requirements-for-authors"><span class="secno">1.9 </span>Conformance requirements for authors</a> <ol><li><a href="introduction.html#presentational-markup"><span class="secno">1.9.1 </span>Presentational markup</a><li><a href="introduction.html#syntax-errors"><span class="secno">1.9.2 </span>Syntax errors</a><li><a href="introduction.html#restrictions-on-content-models-and-on-attribute-values"><span class="secno">1.9.3 </span>Restrictions on content models and on attribute values</a></ol><li><a href="introduction.html#recommended-reading"><span class="secno">1.10 </span>Recommended reading</a></ol></ol></div> - <h2 id="introduction"><span class="secno">1 </span>Introduction</h2><h3 id="background"><span class="secno">1.1 </span>Background</h3><p>The World Wide Web's markup language has always been HTML. HTML + <h2 id="introduction"><span class="secno">1 </span>Introduction</h2> + + + <h3 id="background"><span class="secno">1.1 </span>Background</h3> + + + + <p>The World Wide Web's markup language has always been HTML. HTML was primarily designed as a language for semantically describing scientific documents, although its general design and adaptations over the years have enabled it to be used to describe a number of - other types of documents.<p>The main area that has not been adequately addressed by HTML is a + other types of documents.</p> + + <p>The main area that has not been adequately addressed by HTML is a vague subject referred to as Web Applications. This specification attempts to rectify this, while at the same time updating the HTML - specifications to address issues raised in the past few years.<h3 id="audience"><span class="secno">1.2 </span>Audience</h3><p>This specification is intended for authors of documents and - scripts that use the features defined in this specification.<p>This document is probably not suited to readers who do not + specifications to address issues raised in the past few years.</p> + + + <h3 id="audience"><span class="secno">1.2 </span>Audience</h3> + + + + <p>This specification is intended for authors of documents and + scripts that use the features defined in this specification.</p> + + <p>This document is probably not suited to readers who do not already have at least a passing familiarity with Web technologies, as in places it sacrifices clarity for precision, and brevity for completeness. More approachable tutorials and authoring guides can - provide a gentler introduction to the topic.<p>In particular, familiarity with the basics of DOM Core and DOM + provide a gentler introduction to the topic.</p> + + <p>In particular, familiarity with the basics of DOM Core and DOM Events is necessary for a complete understanding of some of the more technical parts of this specification. An understanding of Web IDL, HTTP, XML, Unicode, character encodings, JavaScript, and CSS will - also be helpful in places but is not essential.<h3 id="scope"><span class="secno">1.3 </span>Scope</h3><p>This specification is limited to providing a semantic-level + also be helpful in places but is not essential.</p> + + + <h3 id="scope"><span class="secno">1.3 </span>Scope</h3> + + + + <p>This specification is limited to providing a semantic-level markup language and associated semantic-level scripting APIs for authoring accessible pages on the Web ranging from static documents - to dynamic applications.<p>The scope of this specification does not include providing + to dynamic applications.</p> + + <p>The scope of this specification does not include providing mechanisms for media-specific customization of presentation (although default rendering rules for Web browsers are included at the end of this specification, and several mechanisms for hooking - into CSS are provided as part of the language).<p>The scope of this specification is not to describe an entire + into CSS are provided as part of the language).</p> + + <p>The scope of this specification is not to describe an entire operating system. In particular, hardware configuration software, image manipulation tools, and applications that users would be expected to use with high-end workstations on a daily basis are out @@ -387,13 +456,24 @@ systems, searching systems, games (especially multiplayer online games), public telephone books or address books, communications software (e-mail clients, instant messaging clients, discussion - software), document editing software, etc.<h3 id="history-1"><span class="secno">1.4 </span>History</h3><p>For its first five years (1990-1995), HTML went through a number + software), document editing software, etc.</p> + + + <h3 id="history-1"><span class="secno">1.4 </span>History</h3> + + + + <p>For its first five years (1990-1995), HTML went through a number of revisions and experienced a number of extensions, primarily - hosted first at CERN, and then at the IETF.<p>With the creation of the W3C, HTML's development changed venue + hosted first at CERN, and then at the IETF.</p> + + <p>With the creation of the W3C, HTML's development changed venue again. A first abortive attempt at extending HTML in 1995 known as HTML 3.0 then made way to a more pragmatic approach known as HTML 3.2, which was completed in 1997. HTML4 quickly followed later that - same year.<p>The following year, the W3C membership decided to stop evolving + same year.</p> + + <p>The following year, the W3C membership decided to stop evolving HTML and instead begin work on an XML-based equivalent, called XHTML. This effort started with a reformulation of HTML4 in XML, known as XHTML 1.0, @@ -402,26 +482,34 @@ making it easier for other working groups to extend XHTML, under the banner of XHTML Modularization. In parallel with this, the W3C also worked on a new language that was not compatible with the earlier - HTML and XHTML languages, calling it XHTML2.<p>Around the time that HTML's evolution was stopped in 1998, parts + HTML and XHTML languages, calling it XHTML2.</p> + + <p>Around the time that HTML's evolution was stopped in 1998, parts of the API for HTML developed by browser vendors were specified and published under the name DOM Level 1 (in 1998) and DOM Level 2 Core and DOM Level 2 HTML (starting in 2000 and culminating in 2003). These efforts then petered out, with some DOM Level 3 specifications published in 2004 but the working group being closed - before all the Level 3 drafts were completed.<p>In 2003, the publication of XForms, a technology which was + before all the Level 3 drafts were completed.</p> + + <p>In 2003, the publication of XForms, a technology which was positioned as the next generation of Web forms, sparked a renewed interest in evolving HTML itself, rather than finding replacements for it. This interest was borne from the realization that XML's deployment as a Web technology was limited to entirely new technologies (like RSS and later Atom), rather than as a replacement - for existing deployed technologies (like HTML).<p>A proof of concept to show that it was possible to extend HTML4's + for existing deployed technologies (like HTML).</p> + + <p>A proof of concept to show that it was possible to extend HTML4's forms to provide many of the features that XForms 1.0 introduced, without requiring browsers to implement rendering engines that were incompatible with existing HTML Web pages, was the first result of this renewed interest. At this early stage, while the draft was already publicly available, and input was already being solicited from all sources, the specification was only under Opera Software's - copyright.<p>The idea that HTML's evolution should be reopened was tested at a + copyright.</p> + + <p>The idea that HTML's evolution should be reopened was tested at a W3C workshop in 2004, where some of the principles that underlie the HTML5 work (described below), as well as the aforementioned early draft proposal covering just forms-related features, were presented @@ -429,65 +517,129 @@ on the grounds that the proposal conflicted with the previously chosen direction for the Web's evolution; the W3C staff and membership voted to continue developing XML-based replacements - instead.<p>Shortly thereafter, Apple, Mozilla, and Opera jointly announced + instead.</p> + + <p>Shortly thereafter, Apple, Mozilla, and Opera jointly announced their intent to continue working on the effort under the umbrella of a new venue called the WHATWG. A public mailing list was created, and the draft was moved to the WHATWG site. The copyright was subsequently amended to be jointly owned by all three vendors, and - to allow reuse of the specification.<p>The WHATWG was based on several core principles, in particular + to allow reuse of the specification.</p> + + <p>The WHATWG was based on several core principles, in particular that technologies need to be backwards compatible, that specifications and implementations need to match even if this means changing the specification rather than the implementations, and that specifications need to be detailed enough that implementations can achieve complete interoperability without reverse-engineering each - other.<p>The latter requirement in particular required that the scope of + other.</p> + + <p>The latter requirement in particular required that the scope of the HTML5 specification include what had previously been specified in three separate documents: HTML4, XHTML1, and DOM2 HTML. It also meant including significantly more detail than had previously been - considered the norm.<p>In 2006, the W3C indicated an interest to participate in the + considered the norm.</p> + + <p>In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group chartered to work with the WHATWG on the development of the HTML5 specification. Apple, Mozilla, and Opera allowed the W3C to publish the specification under the W3C copyright, while keeping a version - with the less restrictive license on the WHATWG site.<p>Since then, both groups have been working together.<p>The <a href="http://www.whatwg.org/specs/web-apps/current-work/">HTML + with the less restrictive license on the WHATWG site.</p> + + <p>Since then, both groups have been working together.</p> + + + + + <p>The <a href="http://www.whatwg.org/specs/web-apps/current-work/">HTML specification</a> published by the WHATWG is not identical to - this specification. The main differences are that the WHATWG version - includes features not included in this W3C version: some features - have been omitted as they are considered part of future revisions of - HTML, not HTML5; and other features are omitted because at the W3C - they are published as separate specifications. There are also some - minor differences. For an exact list of differences, please see the - WHATWG specification.<p>A separate document has been published by the W3C HTML working + this specification. At the time of this publication, the main + differences were that the WHATWG version included features not + included in this W3C version: some features have been omitted, but + may be considered for future revisions of HTML beyond HTML5; and + other features were omitted because at the W3C they are published as + separate specifications.</p> + + + + <p>A separate document has been published by the W3C HTML working group to document the differences between the HTML specified in this - document and the language described in the HTML4 specification. <a href="references.html#refsHTMLDIFF">[HTMLDIFF]</a><h3 id="design-notes"><span class="secno">1.5 </span>Design notes</h3><p>It must be admitted that many aspects of HTML appear at first - glance to be nonsensical and inconsistent.<p>HTML, its supporting DOM APIs, as well as many of its supporting + document and the language described in the HTML4 specification. <a href="references.html#refsHTMLDIFF">[HTMLDIFF]</a></p> + + + + + <h3 id="design-notes"><span class="secno">1.5 </span>Design notes</h3> + + + + <p>It must be admitted that many aspects of HTML appear at first + glance to be nonsensical and inconsistent.</p> + + <p>HTML, its supporting DOM APIs, as well as many of its supporting technologies, have been developed over a period of several decades by a wide array of people with different priorities who, in many - cases, did not know of each other's existence.<p>Features have thus arisen from many sources, and have not always + cases, did not know of each other's existence.</p> + + <p>Features have thus arisen from many sources, and have not always been designed in especially consistent ways. Furthermore, because of the unique characteristics of the Web, implementation bugs have often become de-facto, and now de-jure, standards, as content is often unintentionally written in ways that rely on them before they - can be fixed.<p>Despite all this, efforts have been made to adhere to certain - design goals. These are described in the next few subsections.<h4 id="serializability-of-script-execution"><span class="secno">1.5.1 </span>Serializability of script execution</h4><p>To avoid exposing Web authors to the complexities of + can be fixed.</p> + + <p>Despite all this, efforts have been made to adhere to certain + design goals. These are described in the next few subsections.</p> + + + <h4 id="serializability-of-script-execution"><span class="secno">1.5.1 </span>Serializability of script execution</h4> + + + + <p>To avoid exposing Web authors to the complexities of multithreading, the HTML and DOM APIs are designed such that no script can ever detect the simultaneous execution of other scripts. Even with <span title="Worker">workers</span>, the intent is that the behavior of implementations can be thought of as - completely serializing the execution of all scripts in all <a href="browsers.html#browsing-context" id="browsing-context_0" title="browsing context">browsing contexts</a>.<p class="note">The <code title="dom-navigator-yieldForStorageUpdates"><a href="system-state-and-capabilities.html#dom-navigator-yieldforstorageupdates">navigator.yieldForStorageUpdates()</a></code> + completely serializing the execution of all scripts in all <a href="browsers.html#browsing-context" id="browsing-context_0" title="browsing context">browsing contexts</a>.</p> + + <p class="note">The <code title="dom-navigator-yieldForStorageUpdates"><a href="system-state-and-capabilities.html#dom-navigator-yieldforstorageupdates">navigator.yieldForStorageUpdates()</a></code> method, in this model, is equivalent to allowing other scripts to - run while the calling script is blocked.<h4 id="compliance-with-other-specifications"><span class="secno">1.5.2 </span>Compliance with other specifications</h4><p>This specification interacts with and relies on a wide variety of + run while the calling script is blocked.</p> + + + <h4 id="compliance-with-other-specifications"><span class="secno">1.5.2 </span>Compliance with other specifications</h4> + + + + <p>This specification interacts with and relies on a wide variety of other specifications. In certain circumstances, unfortunately, conflicting needs have led to this specification violating the requirements of these other specifications. Whenever this has occurred, the transgressions have each been noted as a "<dfn aria-haspopup="true" id="willful-violation" role="button" tabindex="0">willful violation</dfn>", and the reason for the violation has been - noted.<h3 id="html-vs-xhtml"><span class="secno">1.6 </span>HTML vs XHTML</h3><p>This specification defines an abstract language for describing + noted.</p> + + + + + <h3 id="html-vs-xhtml"><span class="secno">1.6 </span>HTML vs XHTML</h3> + + + + <p>This specification defines an abstract language for describing documents and applications, and some APIs for interacting with - in-memory representations of resources that use this language.<p>The in-memory representation is known as "DOM HTML", or "the DOM" - for short.<p>There are various concrete syntaxes that can be used to transmit + in-memory representations of resources that use this language.</p> + + <p>The in-memory representation is known as "DOM HTML", or "the DOM" + for short.</p> + + <p>There are various concrete syntaxes that can be used to transmit resources that use this abstract language, two of which are defined - in this specification.<p>The first such concrete syntax is the HTML syntax. This is the + in this specification.</p> + + <p>The first such concrete syntax is the HTML syntax. This is the format suggested for most authors. It is compatible with most legacy Web browsers. If a document is transmitted with the <code><a href="iana.html#text-html" id="text/html">text/html</a></code> <a href="infrastructure.html#mime-type" id="mime-type_0">MIME type</a>, then it will be @@ -497,6 +649,8 @@ This specification defines version 5 of the HTML syntax, known as "HTML5". + </p> + <p>The second concrete syntax is the XHTML syntax, which is an application of XML. When a document is transmitted with an <a href="infrastructure.html#xml-mime-type" id="xml-mime-type_0">XML MIME type</a>, such as <code><a href="iana.html#application-xhtml-xml" id="application/xhtml+xml">application/xhtml+xml</a></code>, then @@ -510,6 +664,8 @@ This specification defines version 5 of the XHTML syntax, known as "XHTML5". + </p> + <p>The DOM, the HTML syntax, and the XHTML syntax cannot all represent the same content. For example, namespaces cannot be represented using the HTML syntax, but they are supported in the DOM @@ -517,8 +673,17 @@ <code><a href="the-noscript-element.html#the-noscript-element" id="noscript">noscript</a></code> feature can be represented using the HTML syntax, but cannot be represented with the DOM or in the XHTML syntax. Comments that contain the string "<code title="">--></code>" can only be represented in the DOM, not in - the HTML and XHTML syntaxes.<h3 id="structure-of-this-specification"><span class="secno">1.7 </span>Structure of this specification</h3><p>This specification is divided into the following major - sections:<dl><dt><a href="infrastructure.html#infrastructure">Common infrastructure</a></dt> + the HTML and XHTML syntaxes.</p> + + + <h3 id="structure-of-this-specification"><span class="secno">1.7 </span>Structure of this specification</h3> + + + + <p>This specification is divided into the following major + sections:</p> + + <dl><dt><a href="infrastructure.html#infrastructure">Common infrastructure</a></dt> <dd>The conformance classes, algorithms, definitions, and the common underpinnings of the rest of the specification.</dd> @@ -570,11 +735,19 @@ </dl><p>There are also some appendices, defining <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#rendering" title='Read about this "rendering rules" reference in the full HTML5 spec.'>rendering rules</a> for Web browsers and listing <a href="obsolete.html#obsolete">obsolete features</a> and <a href="iana.html#iana">IANA - considerations</a>.<h4 id="how-to-read-this-specification"><span class="secno">1.7.1 </span>How to read this specification</h4><p>This specification should be read like all other specifications. + considerations</a>.</p> + + + + <h4 id="how-to-read-this-specification"><span class="secno">1.7.1 </span>How to read this specification</h4> + + <p>This specification should be read like all other specifications. First, it should be read cover-to-cover, multiple times. Then, it should be read backwards at least once. Then it should be read by picking random sections from the contents list and following all the - cross-references.<p>As described in the conformance requirements section below, this + cross-references.</p> + + <p>As described in the conformance requirements section below, this specification describes conformance criteria for a variety of conformance classes. In particular, there are conformance requirements that apply to <em>producers</em>, for example authors @@ -582,7 +755,9 @@ requirements that apply to <em>consumers</em>, for example Web browsers. They can be distinguished by what they are requiring: a requirement on a producer states what is allowed, while a - requirement on a consumer states how software is to act.<div class="example"> + requirement on a consumer states how software is to act.</p> + + <div class="example"> <p>For example, "the <code title="">foo</code> attribute's value must be a <a href="common-microsyntaxes.html#valid-integer" id="valid-integer_0">valid integer</a>" is a requirement on @@ -592,8 +767,12 @@ requirement on consumers, as it describes how to process the content.</p> - </div><p><strong>Requirements on producers have no bearing whatsoever on - consumers.</strong><div class="example"> + </div> + + <p><strong>Requirements on producers have no bearing whatsoever on + consumers.</strong></p> + + <div class="example"> <p>Continuing the above example, a requirement stating that a particular attribute's value is constrained to being a <a href="common-microsyntaxes.html#valid-integer" id="valid-integer_1">valid @@ -606,9 +785,27 @@ that define how invalid (non-numeric in this case) values are to be processed.</p> - </div><h4 id="typographic-conventions"><span class="secno">1.7.2 </span>Typographic conventions</h4><p>This is a definition, requirement, or explanation.<p class="note">This is a note.<p class="example">This is an example.<p class="XXX">This is an open issue.<p class="warning">This is a warning.<pre class="idl extract">interface <dfn aria-haspopup="true" id="example" role="button" tabindex="0">Example</dfn> { + </div> + + + + <h4 id="typographic-conventions"><span class="secno">1.7.2 </span>Typographic conventions</h4> + + <p>This is a definition, requirement, or explanation.</p> + + <p class="note">This is a note.</p> + + <p class="example">This is an example.</p> + + <p class="XXX">This is an open issue.</p> + + <p class="warning">This is a warning.</p> + + <pre class="idl extract">interface <dfn aria-haspopup="true" id="example" role="button" tabindex="0">Example</dfn> { // this is an IDL definition -};</pre><dl class="domintro"><dt><var title="">variable</var> = <var title="">object</var> . <code title="">method</code>( [ <var title="">optionalArgument</var> ] )</dt> +};</pre> + + <dl class="domintro"><dt><var title="">variable</var> = <var title="">object</var> . <code title="">method</code>( [ <var title="">optionalArgument</var> ] )</dt> <dd> @@ -616,11 +813,31 @@ </dd> - </dl><pre class="css">/* this is a CSS fragment */</pre><p>The defining instance of a term is marked up like <dfn aria-haspopup="true" id="x-this" role="button" tabindex="0">this</dfn>. Uses of that term are marked up like - <a href="#x-this" id="x-this_0" title="x-this">this</a> or like <i title="x-this"><a href="#x-this" id="this">this</a></i>.<p>The defining instance of an element, attribute, or API is marked + </dl><pre class="css">/* this is a CSS fragment */</pre> + + <p>The defining instance of a term is marked up like <dfn aria-haspopup="true" id="x-this" role="button" tabindex="0">this</dfn>. Uses of that term are marked up like + <a href="#x-this" id="x-this_0" title="x-this">this</a> or like <i title="x-this"><a href="#x-this" id="this">this</a></i>.</p> + + <p>The defining instance of an element, attribute, or API is marked up like <dfn aria-haspopup="true" id="x-that" role="button" tabindex="0"><code>this</code></dfn>. References to - that element, attribute, or API are marked up like <code title="x-that"><a href="#x-that" id="this_0">this</a></code>.<p>Other code fragments are marked up <code title="">like - this</code>.<p>Variables are marked up like <var title="">this</var>.<h3 id="a-quick-introduction-to-html"><span class="secno">1.8 </span>A quick introduction to HTML</h3><p>A basic HTML document looks like this:<pre id="intro-early-example"><!DOCTYPE html> + that element, attribute, or API are marked up like <code title="x-that"><a href="#x-that" id="this_0">this</a></code>.</p> + + <p>Other code fragments are marked up <code title="">like + this</code>.</p> + + <p>Variables are marked up like <var title="">this</var>.</p> + + + + + + <h3 id="a-quick-introduction-to-html"><span class="secno">1.8 </span>A quick introduction to HTML</h3> + + + + <p>A basic HTML document looks like this:</p> + + <pre id="intro-early-example"><!DOCTYPE html> <html> <head> <title>Sample page</title> @@ -630,37 +847,64 @@ <p>This is a <a href="demo.html">simple</a> sample.</p> <!-- this is a comment --> </body> -</html></pre><p>HTML documents consist of a tree of elements and text. Each +</html></pre> + + <p>HTML documents consist of a tree of elements and text. Each element is denoted in the source by a <a href="syntax.html#syntax-start-tag" id="syntax-start-tag_0" title="syntax-start-tag">start tag</a>, such as "<code title=""><body></code>", and an <a href="syntax.html#syntax-end-tag" id="syntax-end-tag_0" title="syntax-end-tag">end tag</a>, such as "<code title=""></body></code>". (Certain start tags and end tags can in certain cases be <a href="syntax.html#syntax-tag-omission" id="syntax-tag-omission_0" title="syntax-tag-omission">omitted</a> and are implied by other - tags.)<p>Tags have to be nested such that elements are all completely - within each other, without overlapping:<pre class="bad"><p>This is <em>very <strong>wrong</em>!</strong></p></pre><pre><p>This <em>is <strong>correct</strong>.</em></p></pre><p>This specification defines a set of elements that can be used in + tags.)</p> + + <p>Tags have to be nested such that elements are all completely + within each other, without overlapping:</p> + + <pre class="bad"><p>This is <em>very <strong>wrong</em>!</strong></p></pre> + <pre><p>This <em>is <strong>correct</strong>.</em></p></pre> + + <p>This specification defines a set of elements that can be used in HTML, along with rules about the ways in which the elements can be - nested.<p>Elements can have attributes, which control how the elements + nested.</p> + + <p>Elements can have attributes, which control how the elements work. In the example below, there is a <a href="links.html#hyperlink" id="hyperlink_0">hyperlink</a>, - formed using the <code><a href="the-a-element.html#the-a-element" id="a">a</a></code> element and its <code title="attr-hyperlink-href"><a href="links.html#attr-hyperlink-href" id="href_6">href</a></code> attribute:<pre><a href="demo.html">simple</a></pre><p><a href="syntax.html#syntax-attributes" id="syntax-attributes_0" title="syntax-attributes">Attributes</a> are placed + formed using the <code><a href="the-a-element.html#the-a-element" id="a">a</a></code> element and its <code title="attr-hyperlink-href"><a href="links.html#attr-hyperlink-href" id="href_6">href</a></code> attribute:</p> + + <pre><a href="demo.html">simple</a></pre> + + <p><a href="syntax.html#syntax-attributes" id="syntax-attributes_0" title="syntax-attributes">Attributes</a> are placed inside the start tag, and consist of a <a href="syntax.html#syntax-attribute-name" id="syntax-attribute-name_0" title="syntax-attribute-name">name</a> and a <a href="syntax.html#syntax-attribute-value" id="syntax-attribute-value_0" title="syntax-attribute-value">value</a>, separated by an "<code title="">=</code>" character. The attribute value can remain <a href="syntax.html#unquoted">unquoted</a> if it doesn't contain <a href="common-microsyntaxes.html#space-character" id="space-character_0" title="space character">space characters</a> or any of <code title="">"</code> <code title="">'</code> <code title="">`</code> <code title="">=</code> <code title=""><</code> or <code title="">></code>. Otherwise, it has to be quoted using either single or double quotes. The value, along with the "<code title="">=</code>" character, can be omitted altogether if the value - is the empty string.<pre><!-- empty attributes --> + is the empty string.</p> + + <pre><!-- empty attributes --> <input name=address disabled> <input name=address disabled=""> <!-- attributes with a value --> <input name=address maxlength=200> <input name=address maxlength='200'> -<input name=address maxlength="200"></pre><p>HTML user agents (e.g. Web browsers) then <i>parse</i> this +<input name=address maxlength="200"></pre> + + <p>HTML user agents (e.g. Web browsers) then <i>parse</i> this markup, turning it into a DOM (Document Object Model) tree. A DOM - tree is an in-memory representation of a document.<p>DOM trees contain several kinds of nodes, in particular a + tree is an in-memory representation of a document.</p> + + <p>DOM trees contain several kinds of nodes, in particular a <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#documenttype" title='Read about this "DocumentType" reference in the full HTML5 spec.'>DocumentType</a></code> node, <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#element" title='Read about this "Element" reference in the full HTML5 spec.'>Element</a></code> nodes, <code><a href="obsolete.html#text">Text</a></code> nodes, <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#comment-0" title='Read about this "Comment" reference in the full HTML5 spec.'>Comment</a></code> nodes, and in some - cases <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#processinginstruction" title='Read about this "ProcessingInstruction" reference in the full HTML5 spec.'>ProcessingInstruction</a></code> nodes.<p>The <a href="#intro-early-example">markup snippet at the top of - this section</a> would be turned into the following DOM tree:<ul class="domTree"><li class="t10">DOCTYPE: <code title="">html</code><li class="t1"><code><a href="the-html-element.html#the-html-element" id="html">html</a></code><ul><li class="t1"><code><a href="the-head-element.html#the-head-element" id="head_0">head</a></code><ul><li class="t3"><code>#text</code>: <span title="">⏎␣␣</span><li class="t1"><code><a href="the-title-element.html#the-title-element" id="title_39">title</a></code><ul><li class="t3"><code>#text</code>: <span title="">Sample page</span></ul><li class="t3"><code>#text</code>: <span title="">⏎␣</span></ul><li class="t3"><code>#text</code>: <span title="">⏎␣</span><li class="t1"><code><a href="the-body-element.html#the-body-element" id="body">body</a></code><ul><li class="t3"><code>#text</code>: <span title="">⏎␣␣</span><li class="t1"><code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" d="h1">h1</a></code><ul><li class="t3"><code>#text</code>: <span title="">Sample page</span></ul><li class="t3"><code>#text</code>: <span title="">⏎␣␣</span><li class="t1"><code><a href="the-p-element.html#the-p-element" id="p">p</a></code><ul><li class="t3"><code>#text</code>: <span title="">This is a </span><li class="t1"><code><a href="the-a-element.html#the-a-element" id="a_0">a</a></code> <span class="t2" title=""><a href="links.html#attr-hyperlink-href" id="href_7"><code class="attribute name">href</code></a>="<code class="attribute value">demo.html</code>"</span><ul><li class="t3"><code>#text</code>: <span title="">simple</span></ul><li class="t3"><code>#text</code>: <span title=""> sample.</span></ul><li class="t3"><code>#text</code>: <span title="">⏎␣␣</span><li class="t8"><code>#comment</code>: <span title=""> this is a comment </span><li class="t3"><code>#text</code>: <span title="">⏎␣⏎</span></ul></ul></ul><p>The <a href="infrastructure.html#oot-element" id="root-element_0">root element</a> of this tree is the + cases <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#processinginstruction" title='Read about this "ProcessingInstruction" reference in the full HTML5 spec.'>ProcessingInstruction</a></code> nodes.</p> + + <p>The <a href="#intro-early-example">markup snippet at the top of + this section</a> would be turned into the following DOM tree:</p> + + <ul class="domTree"><li class="t10">DOCTYPE: <code title="">html</code><li class="t1"><code><a href="the-html-element.html#the-html-element" id="html">html</a></code><ul><li class="t1"><code><a href="the-head-element.html#the-head-element" id="head_0">head</a></code><ul><li class="t3"><code>#text</code>: <span title="">⏎␣␣</span><li class="t1"><code><a href="the-title-element.html#the-title-element" id="title_39">title</a></code><ul><li class="t3"><code>#text</code>: <span title="">Sample page</span></ul><li class="t3"><code>#text</code>: <span title="">⏎␣</span></ul><li class="t3"><code>#text</code>: <span title="">⏎␣</span><li class="t1"><code><a href="the-body-element.html#the-body-element" id="body">body</a></code><ul><li class="t3"><code>#text</code>: <span title="">⏎␣␣</span><li class="t1"><code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h1">h1</a></code><ul><li class="t3"><code>#text</code>: <pan title="">Sample page</span></ul><li class="t3"><code>#text</code>: <span title="">⏎␣␣</span><li class="t1"><code><a href="the-p-element.html#the-p-element" id="p">p</a></code><ul><li class="t3"><code>#text</code>: <span title="">This is a </span><li class="t1"><code><a href="the-a-element.html#the-a-element" id="a_0">a</a></code> <span class="t2" title=""><a href="links.html#attr-hyperlink-href" id="href_7"><code class="attribute name">href</code></a>="<code class="attribute value">demo.html</code>"</span><ul><li class="t3"><code>#text</code>: <span title="">simple</span></ul><li class="t3"><code>#text</code>: <span title=""> sample.</span></ul><li class="t3"><code>#text</code>: <span title="">⏎␣␣</span><li class="t8"><code>#comment</code>: <span title=""> this is a comment </span><li class="t3"><code>#text</code>: <span title="">⏎␣⏎</span></ul></ul></ul><p>The <a href="infrastructure.html#root-element" id="root-element_0">root element</a> of this tre is the <code><a href="the-html-element.html#the-html-element" id="html_0">html</a></code> element, which is the element always found at the root of HTML documents. It contains two elements, <code><a href="the-head-element.html#the-head-element" id="head_1">head</a></code> and <code><a href="the-body-element.html#the-body-element" id="body_0">body</a></code>, as well as a <code><a href="obsolete.html#text">Text</a></code> node between - them.<p>There are many more <code><a href="obsolete.html#text">Text</a></code> nodes in the DOM tree than + them.</p> + + <p>There are many more <code><a href="obsolete.html#text">Text</a></code> nodes in the DOM tree than one would initially expect, because the source contains a number of spaces (represented here by "␣") and line breaks ("⏎") that all end up as <code><a href="obsolete.html#text">Text</a></code> nodes in the DOM. However, for @@ -668,37 +912,55 @@ original markup appear in the DOM. In particular, all the whitespace before <code><a href="the-head-element.html#the-head-element" id="head_2">head</a></code> start tag ends up being dropped silently, and all the whitespace after the <code><a href="the-body-element.html#the-body-element" id="body_1">body</a></code> end tag ends up - placed at the end of the <code><a href="the-body-element.html#the-body-element" id="body_2">body</a></code>.<p>The <code><a href="the-head-element.html#the-head-element" id="head_3">head</a></code> element contains a <code><a href="the-title-element.html#the-title-element" id="title_40">title</a></code> + placed at the end of the <code><a href="the-body-element.html#the-body-element" id="body_2">body</a></code>.</p> + + <p>The <code><a href="the-head-element.html#the-head-element" id="head_3">head</a></code> element contains a <code><a href="the-title-element.html#the-title-element" id="title_40">title</a></code> element, which itself contains a <code><a href="obsolete.html#text">Text</a></code> node with the text "Sample page". Similarly, the <code><a href="the-body-element.html#the-body-element" id="body_3">body</a></code> element contains an <code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h1_0">h1</a></code> element, a <code><a href="the-p-element.html#the-p-element" id="p_0">p</a></code> element, and a - comment.<hr><p>This DOM tree can be manipulated from scripts in the + comment.</p> + + <hr><p>This DOM tree can be manipulated from scripts in the page. Scripts (typically in JavaScript) are small programs that can be embedded using the <code><a href="the-script-element.html#the-script-element" id="script_2">script</a></code> element or using <a href="webappapis.html#event-handler-content-attributes" id="event-handler-content-attributes_0">event handler content attributes</a>. For example, here is a form with a script that sets the value of the form's - <code><a href="the-output-element.html#the-output-element" id="output_2">output</a></code> element to say "Hello World":<pre><<a href="the-form-element.html#the-form-element" id="form_3">form</a> <a href="the-form-element.html#attr-form-name" id="attr-form-name_0" title="attr-form-name">name</a>="main"> + <code><a href="the-output-element.html#the-output-element" id="output_2">output</a></code> element to say "Hello World":</p> + + <pre><<a href="the-form-element.html#the-form-element" id="form_3">form</a> <a href="the-form-element.html#attr-form-name" id="attr-form-name_0" title="attr-form-name">name</a>="main"> Result: <<a href="the-output-element.html#the-output-element" id="output_3">output</a> <a href="attributes-common-to-form-controls.html#attr-fe-name" id="attr-fe-name_0" title="attr-fe-name">name</a>="result"></output> <<a href="the-script-element.html#the-script-element" id="script_3">script</a>> <a href="dom.html#document" id="document_1" title="Document">document</a>.<a href="dom.html#dom-document-forms" title="dom-document-forms">forms</a>.main.<a href="the-form-element.html#dom-form-elements" title="dom-form-elements">elements</a>.result.<a href="the-output-element.html#dom-output-value" title="dom-output-value">value</a> = 'Hello World'; </script> -</form></pre><p>Each element in the DOM tree is represented by an object, and +</form></pre> + + <p>Each element in the DOM tree is represented by an object, and these objects have APIs so that they can be manipulated. For instance, a link (e.g. the <code><a href="the-a-element.html#the-a-element" id="a_1">a</a></code> element in the tree above) can have its "<code title="attr-hyperlink-href"><a href="links.html#attr-hyperlink-href" id="href_8">href</a></code>" - attribute changed in several ways:<pre>var a = <a href="dom.html#document" id="document_2" title="Document">document</a>.<a href="dom.html#dom-document-links" title="dom-document-links">links</a>[0]; // obtain the first link in the document + attribute changed in several ways:</p> + + <pre>var a = <a href="dom.html#document" id="document_2" title="Document">document</a>.<a href="dom.html#dom-document-links" title="dom-document-links">links</a>[0]; // obtain the first link in the document a.<a href="the-a-element.html#dom-a-href" id="dom-a-href_0" title="dom-a-href">href</a> = 'sample.html'; // change the destination URL of the link a.<a href="urls.html#dom-uda-protocol" title="dom-uda-protocol">protocol</a> = 'https'; // change just the scheme part of the URL -a.setAttribute('href', 'http://example.com/'); // change the content attribute directly</pre><p>Since DOM trees are used as the way to represent HTML documents +a.setAttribute('href', 'http://example.com/'); // change the content attribute directly</pre> + + <p>Since DOM trees are used as the way to represent HTML documents when they are processed and presented by implementations (especially interactive implementations like Web browsers), this specification is mostly phrased in terms of DOM trees, instead of the markup - described above.<hr><p>HTML documents represent a media-independent description of + described above.</p> + + <hr><p>HTML documents represent a media-independent description of interactive content. HTML documents might be rendered to a screen, or through a speech synthesizer, or on a braille display. To influence exactly how such rendering takes place, authors can use a - styling language such as CSS.<p>In the following example, the page has been made yellow-on-blue - using CSS.<pre><!DOCTYPE html> + styling language such as CSS.</p> + + <p>In the following example, the page has been made yellow-on-blue + using CSS.</p> + + <pre><!DOCTYPE html> <html> <head> <title>Sample styled page</title> @@ -710,21 +972,36 @@ <h1>Sample styled page</h1> <p>This page is just a demo.</p> </body> -</html></pre><p>For more details on how to use HTML, authors are encouraged to +</html></pre> + + <p>For more details on how to use HTML, authors are encouraged to consult tutorials and guides. Some of the examples included in this specification might also be of use, but the novice author is cautioned that this specification, by necessity, defines the language with a level of detail that might be difficult to - understand at first.<h4 id="writing-secure-applications-with-html"><span class="secno">1.8.1 </span>Writing secure applications with HTML</h4><p>When HTML is used to create interactive sites, care needs to be + understand at first.</p> + + + <h4 id="writing-secure-applications-with-html"><span class="secno">1.8.1 </span>Writing secure applications with HTML</h4> + + + + <p>When HTML is used to create interactive sites, care needs to be taken to avoid introducing vulnerabilities through which attackers can compromise the integrity of the site itself or of the site's - users.<p>A comprehensive study of this matter is beyond the scope of this + users.</p> + + <p>A comprehensive study of this matter is beyond the scope of this document, and authors are strongly encouraged to study the matter in more detail. However, this section attempts to provide a quick introduction to some common pitfalls in HTML application - development.<p>The security model of the Web is based on the concept of + development.</p> + + <p>The security model of the Web is based on the concept of "origins", and correspondingly many of the potential attacks on the - Web involve cross-origin actions. <a href="references.html#refsORIGIN">[ORIGIN]</a><dl><dt>Not validating user input</dt> + Web involve cross-origin actions. <a href="references.html#refsORIGIN">[ORIGIN]</a></p> + + <dl><dt>Not validating user input</dt> <dt>Cross-site scripting (XSS)</dt> <dt>SQL injection</dt> @@ -847,18 +1124,28 @@ </dd> - </dl><h4 id="common-pitfalls-to-avoid-when-using-the-scripting-apis"><span class="secno">1.8.2 </span>Common pitfalls to avoid when using the scripting APIs</h4><p>Scripts in HTML have "run-to-completion" semantics, meaning that + </dl><h4 id="common-pitfalls-to-avoid-when-using-the-scripting-apis"><span class="secno">1.8.2 </span>Common pitfalls to avoid when using the scripting APIs</h4> + + + + <p>Scripts in HTML have "run-to-completion" semantics, meaning that the browser will generally run the script uninterrupted before doing anything else, such as firing further events or continuing to parse - the document.<p>On the other hand, parsing of HTML files happens asynchronously + the document.</p> + + <p>On the other hand, parsing of HTML files happens asynchronously and incrementally, meaning that the parser can pause at any point to let scripts run. This is generally a good thing, but it does mean that authors need to be careful to avoid hooking event handlers - after the events could have possibly fired.<p>There are two techniques for doing this reliably: use <a href="webappapis.html#event-handler-content-attributes" id="event-handler-content-attributes_1">event + after the events could have possibly fired.</p> + + <p>There are two techniques for doing this reliably: use <a href="webappapis.html#event-handler-content-attributes" id="event-handler-content-attributes_1">event handler content attributes</a>, or create the element and add the event handlers in the same script. The latter is safe because, as mentioned earlier, scripts are run to completion before further - events can fire.<div class="example"> + events can fire.</p> + + <div class="example"> <p>One way this could manifest itself is with <code><a href="the-img-element.html#the-img-element" id="img_3">img</a></code> elements and the <code title="event-load">load</code> event. The @@ -896,18 +1183,37 @@ img.onload = gamesLogoHasLoaded; // might never fire! </script></pre> - </div><h3 id="conformance-requirements-for-authors"><span class="secno">1.9 </span>Conformance requirements for authors</h3><p>Unlike previous versions of the HTML specification, this + </div> + + + + <h3 id="conformance-requirements-for-authors"><span class="secno">1.9 </span>Conformance requirements for authors</h3> + + + + <p>Unlike previous versions of the HTML specification, this specification defines in some detail the required processing for - invalid documents as well as valid documents.<p>However, even though the processing of invalid content is in most + invalid documents as well as valid documents.</p> + + <p>However, even though the processing of invalid content is in most cases well-defined, conformance requirements for documents are still important: in practice, interoperability (the situation in which all implementations process particular content in a reliable and identical or equivalent way) is not the only goal of document conformance requirements. This section details some of the more common reasons for still distinguishing between a conforming - document and one with errors.<h4 id="presentational-markup"><span class="secno">1.9.1 </span>Presentational markup</h4><p>The majority of presentational features from previous versions of + document and one with errors.</p> + + + <h4 id="presentational-markup"><span class="secno">1.9.1 </span>Presentational markup</h4> + + + + <p>The majority of presentational features from previous versions of HTML are no longer allowed. Presentational markup in general has - been found to have a number of problems:<dl><dt>The use of presentational elements leads to poorer accessibility</dt> + been found to have a number of problems:</p> + + <dl><dt>The use of presentational elements leads to poorer accessibility</dt> <dd> @@ -954,7 +1260,9 @@ HTML4 deprecated presentational markup many years ago and provided a mode (HTML4 Transitional) to help authors move away from presentational markup; later, XHTML 1.1 went further and obsoleted - those features altogether.<p>The only remaining presentational markup features in HTML are the + those features altogether.</p> + + <p>The only remaining presentational markup features in HTML are the <code title="attr-style"><a href="global-attributes.html#the-style-attribute" id="style_1">style</a></code> attribute and the <code><a href="the-style-element.html#the-style-element" id="style_9">style</a></code> element. Use of the <code title="attr-style"><a href="global-attributes.html#the-style-attribute" id="style_2">style</a></code> attribute is somewhat discouraged in production environments, but it can be useful for rapid prototyping @@ -964,11 +1272,22 @@ <code><a href="the-style-element.html#the-style-element" id="style_10">style</a></code> element can be useful in syndication or for page-specific styles, but in general an external style sheet is likely to be more convenient when the styles apply to multiple - pages.<p>It is also worth noting that some elements that were previously + pages.</p> + + <p>It is also worth noting that some elements that were previously presentational have been redefined in this specification to be media-independent: <code><a href="the-b-element.html#the-b-element" id="b">b</a></code>, <code><a href="the-i-element.html#the-i-element" id="i">i</a></code>, <code><a href="the-hr-element.html#the-hr-element" id="hr">hr</a></code>, - <code><a href="the-s-element.html#the-s-element" id="s">s</a></code>, <code><a href="the-small-element.html#the-small-element" id="small">small</a></code>, and <code><a href="the-u-element.html#the-u-element" id="u">u</a></code>.<h4 id="syntax-errors"><span class="secno">1.9.2 </span>Syntax errors</h4><p>The syntax of HTML is constrained to avoid a wide variety of - problems.<dl><dt>Unintuitive error-handling behavior</dt> + <code><a href="the-s-element.html#the-s-element" id="s">s</a></code>, <code><a href="the-small-element.html#the-small-element" id="small">small</a></code>, and <code><a href="the-u-element.html#the-u-element" id="u">u</a></code>.</p> + + + <h4 id="syntax-errors"><span class="secno">1.9.2 </span>Syntax errors</h4> + + + + <p>The syntax of HTML is constrained to avoid a wide variety of + problems.</p> + + <dl><dt>Unintuitive error-handling behavior</dt> <dd> @@ -1112,7 +1431,7 @@ <div class="example"> - <p>For example, this is why the U+0060 GRAVE ACCENT character (`) + <p>For example, this is why the "`" (U+0060) character is not allowed in unquoted attributes. In certain legacy user agents, it is sometimes treated as a quote character.</p> @@ -1218,9 +1537,19 @@ benefits of terseness afforded by making use of the flexibility of the HTML syntax. To aid such authors, conformance checkers can provide modes of operation wherein such conventions are - enforced.<h4 id="restrictions-on-content-models-and-on-attribute-values"><span class="secno">1.9.3 </span>Restrictions on content models and on attribute values</h4><p>Beyond the syntax of the language, this specification also places + enforced.</p> + + + + <h4 id="restrictions-on-content-models-and-on-attribute-values"><span class="secno">1.9.3 </span>Restrictions on content models and on attribute values</h4> + + + + <p>Beyond the syntax of the language, this specification also places restrictions on how elements and attributes can be specified. These - restrictions are present for similar reasons:<dl><dt>Errors involving content with dubious semantics</dt> + restrictions are present for similar reasons:</p> + + <dl><dt>Errors involving content with dubious semantics</dt> <dd> @@ -1435,7 +1764,7 @@ intended to allow for future expansion of the HTML vocabulary.</p> <p class="example">For example, limiting the values of the <code title="attr-hyperlink-target"><a href="links.html#attr-hyperlink-target" id="target_11">target</a></code> attribute that start - with an U+005F LOW LINE character (_) to only specific predefined + with an "_" (U+005F) character to only specific predefined values allows new predefined values to be introduced at a future time without conflicting with author-defined values.</p> @@ -1456,8 +1785,14 @@ </dd> - </dl><h3 id="recommended-reading"><span class="secno">1.10 </span>Recommended reading</h3><p>The following documents might be of interest to readers of this - specification.<dl><dt><cite>Character Model for the World Wide Web 1.0: Fundamentals</cite> <a href="references.html#refsCHARMOD">[CHARMOD]</a></dt> + </dl><h3 id="recommended-reading"><span class="secno">1.10 </span>Recommended reading</h3> + + + + <p>The following documents might be of interest to readers of this + specification.</p> + + <dl><dt><cite>Character Model for the World Wide Web 1.0: Fundamentals</cite> <a href="references.html#refsCHARMOD">[CHARMOD]</a></dt> <dd><blockquote><p>This Architectural Specification provides authors of specifications, software developers, and content Index: the-sup-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-sup-element.html,v retrieving revision 1.114 retrieving revision 1.115 diff -u -d -r1.114 -r1.115 --- the-sup-element.html 21 Feb 2012 21:59:08 -0000 1.114 +++ the-sup-element.html 13 Mar 2012 19:59:01 -0000 1.115 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-kbd-element.html">← 4.6.14 The kbd element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-i-element.html">4.6.16 The i element →</a> </div> - <h4 id="the-sub-and-sup-elements"><span class="secno">4.6.15 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>sub</code></dfn> and <dfn aria-haspopup="true" role="button" tabindex="0"><code>sup</code></dfn> elements</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_46" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-sub-and-sup-elements"><span class="secno">4.6.15 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>sub</code></dfn> and <dfn aria-haspopup="true" role="button" tabindex="0"><code>sup</code></dfn> elements</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_46" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_85">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_71">Phrasing content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_31">Palpable content</a>.</dd> @@ -364,20 +404,30 @@ <dd>Use <code><a href="elements.html#htmlelement" id="htmlelement_50">HTMLElement</a></code>.</dd> </dl><p>The <code><a href="#the-sub-and-sup-elements" id="sup_2">sup</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a superscript and the <code><a href="#the-sub-and-sup-elements" id="sub_2">sub</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> - a subscript.<p>These elements must be used only to mark up typographical + a subscript.</p> + + <p>These elements must be used only to mark up typographical conventions with specific meanings, not for typographical presentation for presentation's sake. For example, it would be inappropriate for the <code><a href="#the-sub-and-sup-elements" id="sub_3">sub</a></code> and <code><a href="#the-sub-and-sup-elements" id="sup_3">sup</a></code> elements to be used in the name of the LaTeX document preparation system. In general, authors should use these elements only if the <em>absence</em> of those elements would change the meaning of the - content.<p>In certain languages, superscripts are part of the typographical - conventions for some abbreviations.<div class="example"> + content.</p> + + <p>In certain languages, superscripts are part of the typographical + conventions for some abbreviations.</p> + + <div class="example"> <pre><p>The most beautiful women are <span lang="fr"><abbr>M<sup>lle</sup></abbr> Gwendoline</span> and <span lang="fr"><abbr>M<sup>me</sup></abbr> Denise</span>.</p></pre> - </div><p>The <code><a href="#the-sub-and-sup-elements" id="sub_4">sub</a></code> element can be used inside a - <code><a href="the-var-element.html#the-var-element" id="var_6">var</a></code> element, for variables that have subscripts.<div class="example"> + </div> + + <p>The <code><a href="#the-sub-and-sup-elements" id="sub_4">sub</a></code> element can be used inside a + <code><a href="the-var-element.html#the-var-element" id="var_6">var</a></code> element, for variables that have subscripts.</p> + + <div class="example"> <p>Here, the <code><a href="#the-sub-and-sup-elements" id="sub_5">sub</a></code> element is used to represents the subscript that identifies the variable in a family of @@ -387,10 +437,18 @@ (<var>x<sub><var>i</var></sub></var>, <var>y<sub><var>i</var></sub></var>). For example, the 10th point has coordinate (<var>x<sub>10</sub></var>, <var>y<sub>10</sub></var>).</p></pre> - </div><p>Mathematical expressions often use subscripts and superscripts. + </div> + + <p>Mathematical expressions often use subscripts and superscripts. Authors are encouraged to use MathML for marking up mathematics, but authors may opt to use <code><a href="#the-sub-and-sup-elements" id="sub_6">sub</a></code> and <code><a href="#the-sub-and-sup-elements" id="sup_4">sup</a></code> if - detailed mathematical markup is not desired. <a href="references.html#refsMATHML">[MATHML]</a><div class="example"> + detailed mathematical markup is not desired. <a href="references.html#refsMATHML">[MATHML]</a></p> + + <div class="example"> <pre><var>E</var>=<var>m</var><var>c</var><sup>2</sup></pre> <pre>f(<var>x</var>, <var>n</var>) = log<sub>4</sub><var>x</var><sup><var>n</var></sup></pre> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: editing.html =================================================================== RCS file: /sources/public/html5/spec-author-view/editing.html,v retrieving revision 1.1169 retrieving revision 1.1170 diff -u -d -r1.1169 -r1.1170 --- editing.html 22 Feb 2012 05:58:22 -0000 1.1169 +++ editing.html 13 Mar 2012 19:58:37 -0000 1.1170 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,7 +380,9 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="system-state-and-capabilities.html">← 6.5 System state and capabilities</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="editing-apis.html">7.5.4 Editing APIs →</a> @@ -355,7 +393,12 @@ <ol><li><a href="editing.html#contenteditable"><span class="secno">7.5.1 </span>Making document regions editable: The <code title="attr-contenteditable">contenteditable</code> content attribute</a><li><a href="editing.html#making-entire-documents-editable:-the-designmode-idl-attribute"><span class="secno">7.5.2 </span>Making entire documents editable: The <code title="dom-document-designMode">designMode</code> IDL attribute</a><li><a href="editing.html#best-practices-for-in-page-editors"><span class="secno">7.5.3 </span>Best practices for in-page editors</a></ol></ol></ol></div> - <h2 id="editing"><span class="secno">7 </span><dfn aria-haspopup="true" role="button" tabindex="0">User interaction</dfn></h2><h3 id="the-hidden-attribute"><span class="secno">7.1 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>hidden</code></dfn> attribute</h3><p>All <a href="infrastructure.html#html-elements" id="html-elements_34">HTML elements</a> may have the <code title="attr-hidden"><a href="#the-hidden-attribute" id="hidden_4">hidden</a></code> content attribute set. The <code title="attr-hidden"><a href="#the-hidden-attribute" id="hidden_5">hidden</a></code> attribute is a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_27">boolean + <h2 id="editing"><span class="secno">7 </span><dfn aria-haspopup="true" role="button" tabindex="0">User interaction</dfn></h2> + + + <h3 id="the-hidden-attribute"><span class="secno">7.1 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>hidden</code></dfn> attribute</h3> + + <p>All <a href="infrastructure.html#html-elements" id="html-elements_34">HTML elements</a> may have the <code title="attr-hidden"><a href="#the-hidden-attribute" id="hidden_4">hidden</a></code> content attribute set. The <code title="attr-hidden"><a href="#the-hidden-attribute" id="hidden_5">hidden</a></code> attribute is a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_27">boolean attribute</a>. @@ -364,6 +407,9 @@ + </p> + + <div class="example"> <p>In the following skeletal example, the attribute is used to hide @@ -388,7 +434,9 @@ ... </section></pre> - </div><p>The <code title="attr-hidden"><a href="#the-hidden-attribute" id="hidden_6">hidden</a></code> attribute must not be + </div> + + <p>The <code title="attr-hidden"><a href="#the-hidden-attribute" id="hidden_6">hidden</a></code> attribute must not be used to hide content that could legitimately be shown in another presentation. For example, it is incorrect to use <code title="attr-hidden"><a href="#the-hidden-attribute" id="hidden_7">hidden</a></code> to hide panels in a tabbed dialog, because the tabbed interface is merely a kind of overflow @@ -396,8 +444,18 @@ controls in one big page with a scrollbar. It is similarly incorrect to use this attribute to hide content just from one presentation — if something is marked <code title="attr-hidden"><a href="#the-hidden-attribute" id="hidden_8">hidden</a></code>, it is hidden from all - presentations, including, for instance, screen readers.<p>Elements that are not <code title="attr-hidden"><a href="#the-hidden-attribute" id="hidden_9">hidden</a></code> - should not link to or refer to elements that are <code title="attr-hidden"><a href="#the-hidden-attribute" id="hidden_10">hidden</a></code>.<div class="example"> + presentations, including, for instance, screen readers.</p> + + + + + + <p>Elements that are not <code title="attr-hidden"><a href="#the-hidden-attribute" id="hidden_9">hidden</a></code> + should not link to or refer to elements that are <code title="attr-hidden"><a href="#the-hidden-attribute" id="hidden_10">hidden</a></code>.</p> + + + + <div class="example"> <p>For example, it would be incorrect to use the <code title="attr-hyperlink-href"><a href="links.html#attr-hyperlink-href" id="href_29">href</a></code> attribute to link to a section marked with the <code title="attr-hidden"><a href="#the-hidden-attribute" id="hidden_11">hidden</a></code> @@ -413,14 +471,27 @@ - </div><p>Elements in a section hidden by the <code title="attr-hidden"><a href="#the-hidden-attribute" id="hidden_13">hidden</a></code> attribute are still active, + </div> + + <p>Elements in a section hidden by the <code title="attr-hidden"><a href="#the-hidden-attribute" id="hidden_13">hidden</a></code> attribute are still active, e.g. scripts and form controls in such sections still execute and submit respectively. Only their presentation to the user changes.</p> + + <p>The <dfn aria-haspopup="true" id="dom-hidden" role="button" tabindex="0"><code>hidden</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_97">reflect</a> the content attribute of the same name.</p> -<h3 id="activation"><span class="secno">7.2 </span>Activation</h3><dl class="domintro"><dt><var title="">element</var> . <code title="dom-click"><a href="commands.html#dom-click">click</a></code>()</dt> + + + + + + <h3 id="activation"><span class="secno">7.2 </span>Activation</h3> + + + + <dl class="domintro"><dt><var title="">element</var> . <code title="dom-click"><a href="commands.html#dom-click">click</a></code>()</dt> <dd> @@ -428,7 +499,24 @@ </dd> - </dl><h3 id="focus"><span class="secno">7.3 </span>Focus</h3><h4 id="sequential-focus-navigation-and-the-tabindex-attribute"><span class="secno">7.3.1 </span>Sequential focus navigation and the <code title="attr-tabindex"><a href="#attr-tabindex" id="tabindex_0">tabindex</a></code> attribute</h4><p>The <dfn aria-haspopup="true" id="attr-tabindex" role="button" tabindex="0"><code>tabindex</code></dfn> + </dl><h3 id="focus"><span class="secno">7.3 </span>Focus</h3> + + + + + + + + + + + + + + + <h4 id="sequential-focus-navigation-and-the-tabindex-attribute"><span class="secno">7.3.1 </span>Sequential focus navigation and the <code title="attr-tabindex"><a href="#attr-tabindex" id="tabindex_0">tabindex</a></code> attribute</h4> + + <p>The <dfn aria-haspopup="true" id="attr-tabindex" role="button" tabindex="0"><code>tabindex</code></dfn> content attribute allows authors to control whether an element is supposed to be focusable, whether it is supposed to be reachable using sequential focus navigation, and what is to be the relative @@ -436,14 +524,28 @@ navigation. The name "tab index" comes from the common use of the "tab" key to navigate through the focusable elements. The term "tabbing" refers to moving forward through the focusable elements - that can be reached using sequential focus navigation.<p>The <code title="attr-tabindex"><a href="#attr-tabindex" id="tabindex_1">tabindex</a></code> attribute, if + that can be reached using sequential focus navigation.</p> + + <p>The <code title="attr-tabindex"><a href="#attr-tabindex" id="tabindex_1">tabindex</a></code> attribute, if specified, must have a value that is a <a href="common-microsyntaxes.html#valid-integer" id="valid-integer_7">valid integer</a>.</p> + + <p>The <dfn aria-haspopup="true" id="dom-tabindex" role="button" tabindex="0"><code>tabIndex</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_98">reflect</a> the value of the <code title="attr-tabindex"><a href="#attr-tabindex" id="tabindex_2">tabindex</a></code> content attribute. Its default value is 0 for elements that are focusable and −1 for elements that are not focusable.</p> -<h4 id="document-level-focus-apis"><span class="secno">7.3.2 </span>Document-level focus APIs</h4><dl class="domintro"><dt><var title="">document</var> . <code id="dom-document-activeelement" title="dom-document-activeElement"><a href="#dom-document-activeelement">activeElement</a></code></dt> + + + + + + + + + <h4 id="document-level-focus-apis"><span class="secno">7.3.2 </span>Document-level focus APIs</h4> + + <dl class="domintro"><dt><var title="">document</var> . <code id="dom-document-activeelement" title="dom-document-activeElement"><a href="#dom-document-activeelement">activeElement</a></code></dt> <dd> @@ -475,7 +577,9 @@ </dd> - </dl><h4 id="element-level-focus-apis"><span class="secno">7.3.3 </span>Element-level focus APIs</h4><dl class="domintro"><dt><var title="">element</var> . <code id="dom-focus" title="dom-focus"><a href="#dom-focus">focus</a></code>()</dt> + </dl><h4 id="element-level-focus-apis"><span class="secno">7.3.3 </span>Element-level focus APIs</h4> + + <dl class="domintro"><dt><var title="">element</var> . <code id="dom-focus" title="dom-focus"><a href="#dom-focus">focus</a></code>()</dt> <dd> @@ -507,18 +611,34 @@ </dd> - </dl><h3 id="assigning-keyboard-shortcuts"><span class="secno">7.4 </span>Assigning keyboard shortcuts</h3><h4 id="introduction-6"><span class="secno">7.4.1 </span>Introduction</h4><p>Each element that can be activated or focused can be assigned a - single key combination to activate it, using the <code title="attr-accesskey"><a href="#the-accesskey-attribute" id="accesskey_0">accesskey</a></code> attribute.<p>The exact shortcut is determined by the user agent, based on + </dl><h3 id="assigning-keyboard-shortcuts"><span class="secno">7.4 </span>Assigning keyboard shortcuts</h3> + + <h4 id="introduction-6"><span class="secno">7.4.1 </span>Introduction</h4> + + + + <p>Each element that can be activated or focused can be assigned a + single key combination to activate it, using the <code title="attr-accesskey"><a href="#the-accesskey-attribute" id="accesskey_0">accesskey</a></code> attribute.</p> + + <p>The exact shortcut is determined by the user agent, based on information about the user's keyboard, what keyboard shortcuts already exist on the platform, and what other shortcuts have been - specified on the page, using the information provided in the <code title="attr-accesskey"><a href="#the-accesskey-attribute" id="accesskey_1">accesskey</a></code> attribute as a guide.<p>In order to ensure that a relevant keyboard shortcut is available + specified on the page, using the information provided in the <code title="attr-accesskey"><a href="#the-accesskey-attribute" id="accesskey_1">accesskey</a></code> attribute as a guide.</p> + + <p>In order to ensure that a relevant keyboard shortcut is available on a wide variety of input devices, the author can provide a number of alternatives in the <code title="attr-accesskey"><a href="#the-accesskey-attribute" id="accesskey_2">accesskey</a></code> - attribute.<p>Each alternative consists of a single character, such as a letter - or digit.<p>User agents can provide users with a list of the keyboard + attribute.</p> + + <p>Each alternative consists of a single character, such as a letter + or digit.</p> + + <p>User agents can provide users with a list of the keyboard shortcuts, but authors are encouraged to do so also. The <code title="dom-accessKeyLabel"><a href="commands.html#dom-accesskeylabel">accessKeyLabel</a></code> IDL attribute returns a string representing the actual key combination assigned by - the user agent.<div class="example"> + the user agent.</p> + + <div class="example"> <p>In this example, an author has provided a button that can be invoked using a shortcut key. To support full keyboards, the author @@ -529,7 +649,9 @@ <pre><input type=button value=Collect onclick="collect()" <strong>accesskey="C 1"</strong> id=c></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>To tell the user what the shortcut key is, the author has this script here opted to explicitly add the key combination to the @@ -556,12 +678,21 @@ <p>In general, therefore, it is unwise to attempt to parse the value returned from the <code title="dom-accessKeyLabel"><a href="commands.html#dom-accesskeylabel">accessKeyLabel</a></code> IDL attribute.</p> - </div><h4 id="the-accesskey-attribute"><span class="secno">7.4.2 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>accesskey</code></dfn> attribute</h4><p>All <a href="infrastructure.html#html-elements" id="html-elements_35">HTML elements</a> may have the <code title="attr-accesskey"><a href="#the-accesskey-attribute" id="accesskey_3">accesskey</a></code> content attribute set. The + </div> + + + <h4 id="the-accesskey-attribute"><span class="secno">7.4.2 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>accesskey</code></dfn> attribute</h4> + + <p>All <a href="infrastructure.html#html-elements" id="html-elements_35">HTML elements</a> may have the <code title="attr-accesskey"><a href="#the-accesskey-attribute" id="accesskey_3">accesskey</a></code> content attribute set. The <code title="attr-accesskey"><a href="#the-accesskey-attribute" id="accesskey_4">accesskey</a></code> attribute's value is used by the user agent as a guide for creating a keyboard shortcut - that activates or focuses the element.<p>If specified, the value must be an <a href="common-microsyntaxes.html#ordered-set-of-unique-space-separated-tokens" id="ordered-set-of-unique-space-separated-tokens_1">ordered set of unique + that activates or focuses the element.</p> + + <p>If specified, the value must be an <a href="common-microsyntaxes.html#ordered-set-of-unique-space-separated-tokens" id="ordered-set-of-unique-space-separated-tokens_1">ordered set of unique space-separated tokens</a> that are <a href="infrastructure.html#case-sensitive" id="case-sensitive_5">case-sensitive</a>, - each of which must be exactly one Unicode code point in length.<div class="example"> + each of which must be exactly one Unicode code point in length.</p> + + <div class="example"> <p>In the following example, a variety of links are given with access keys so that keyboard users familiar with the site can @@ -577,7 +708,9 @@ </p> </nav></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>In the following example, the search field is given two possible access keys, "s" and "0" (in that order). A user agent on a device @@ -592,7 +725,9 @@ <input type="submit"> </form></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>In the following example, a button has possible access keys described. A script then tries to update the button's label to @@ -620,18 +755,33 @@ on how the user agent represents that key combination.</p> </div> + + + <p>The <dfn aria-haspopup="true" id="dom-accesskey" role="button" tabindex="0"><code>accessKey</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_99">reflect</a> the <code title="attr-accesskey"><a href="#the-accesskey-attribute" id="accesskey_5">accesskey</a></code> content attribute.</p> -<h3 id="editing-0"><span class="secno">7.5 </span>Editing</h3><h4 id="contenteditable"><span class="secno">7.5.1 </span>Making document regions editable: The <code title="attr-contenteditable"><a href="#attr-contenteditable" id="contenteditable_1">contenteditable</a></code> content - attribute</h4><p>The <dfn aria-haspopup="true" id="attr-contenteditable" role="button" tabindex="0"><code>contenteditable</code></dfn> + + + + + <h3 id="editing-0"><span class="secno">7.5 </span>Editing</h3> + + <h4 id="contenteditable"><span class="secno">7.5.1 </span>Making document regions editable: The <code title="attr-contenteditable"><a href="#attr-contenteditable" id="contenteditable_1">contenteditable</a></code> content + attribute</h4> + + <p>The <dfn aria-haspopup="true" id="attr-contenteditable" role="button" tabindex="0"><code>contenteditable</code></dfn> attribute is an <a href="common-microsyntaxes.html#enumerated-attribute" id="enumerated-attribute_18">enumerated attribute</a> whose keywords are the empty string, <code title="">true</code>, and <code title="">false</code>. The empty string and the <code title="">true</code> keyword map to the <i>true</i> state. The <code title="">false</code> keyword maps to the <i>false</i> state. In addition, there is a third state, the <i>inherit</i> state, which is the <i>missing value default</i> (and the <i>invalid value - default</i>).<p>The <i>true</i> state indicates that the element is editable. The + default</i>).</p> + + <p>The <i>true</i> state indicates that the element is editable. The <i>inherit</i> state indicates that the element is editable if its parent is. The <i>false</i> state indicates that the element is not - editable.<dl class="domintro"><dt><var title="">element</var> . <code id="dom-contenteditable" title="dom-contentEditable"><a href="#dom-contenteditable">contentEditable</a></code> [ = <var title="">value</var> ]</dt> + editable.</p> + + <dl class="domintro"><dt><var title="">element</var> . <code id="dom-contenteditable" title="dom-contentEditable"><a href="#dom-contenteditable">contentEditable</a></code> [ = <var title="">value</var> ]</dt> <dd> @@ -653,7 +803,11 @@ </dd> - </dl><h4 id="making-entire-documents-editable:-the-designmode-idl-attribute"><span class="secno">7.5.2 </span>Making entire documents editable: The <code title="dom-document-designMode"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/editing.html#designMode" title='Read about this "designMode" reference in the full HTML5 spec.'>designMode</a></code> IDL attribute</h4><dl class="domintro"><dt><var title="">document</var> . <code id="dom-document-designmode" title="dom-document-designMode"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/editing.html#designMode" title='Read about this "designMode" reference in the full HTML5 spec.'>designMode</a></code> [ = <var title="">value</var> ]</dt> + </dl><h4 id="making-entire-documents-editable:-the-designmode-idl-attribute"><span class="secno">7.5.2 </span>Making entire documents editable: The <code title="dom-document-designMode"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/editing.html#designMode" title='Read about this "designMode" reference in the full HTML5 spec.'>designMode</a></code> IDL attribute</h4> + + + + <dl class="domintro"><dt><var title="">document</var> . <code id="dom-document-designmode" title="dom-document-designMode"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/editing.html#designMode" title='Read about this "designMode" reference in the full HTML5 spec.'>designMode</a></code> [ = <var title="">value</var> ]</dt> <dd> @@ -664,11 +818,15 @@ </dd> - </dl><h4 id="best-practices-for-in-page-editors"><span class="secno">7.5.3 </span>Best practices for in-page editors</h4><p>Authors are encouraged to set the 'white-space' property on <a href="editing-apis.html#editing-host" id="editing-host_0" title="editing host">editing hosts</a> and on markup that was + </dl><h4 id="best-practices-for-in-page-editors"><span class="secno">7.5.3 </span>Best practices for in-page editors</h4> + + <p>Authors are encouraged to set the 'white-space' property on <a href="editing-apis.html#editing-host" id="editing-host_0" title="editing host">editing hosts</a> and on markup that was originally created through these editing mechanisms to the value 'pre-wrap'. Default HTML whitespace handling is not well suited to WYSIWYG editing, and line wrapping will not work correctly in some - corner cases if 'white-space' is left at its default value.<div class="example"> + corner cases if 'white-space' is left at its default value.</p> + + <div class="example"> <p>As an example of problems that occur if the default 'normal' value is used instead, consider the case of the user typing @@ -695,4 +853,8 @@ and should the two words be split at the end of a line, the spaces would be neatly removed from the rendering.</p> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: spec.preprocessed.html =================================================================== RCS file: /sources/public/html5/spec-author-view/spec.preprocessed.html,v retrieving revision 1.735 retrieving revision 1.736 diff -u -d -r1.735 -r1.736 --- spec.preprocessed.html 7 Mar 2012 01:01:26 -0000 1.735 +++ spec.preprocessed.html 13 Mar 2012 19:58:53 -0000 1.736 @@ -197,12 +197,48 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; [...20901 lines suppressed...] + canvas feature was designed.</p> + + <p>Special thanks also to the Microsoft employees who first implemented the event-based drag-and-drop mechanism, <code title="attr-contenteditable"><a href="#attr-contenteditable">contenteditable</a></code>, and other features first widely deployed by the Windows Internet Explorer - browser.</p><p>Thanks to the many sources that provided inspiration for the - examples used in the specification.</p><p>Thanks also to the Microsoft blogging community for some ideas, + browser.</p> + + + + + <p>Thanks to the many sources that provided inspiration for the + examples used in the specification.</p> + + + <p>Thanks also to the Microsoft blogging community for some ideas, to the attendees of the W3C Workshop on Web Applications and Compound Documents for inspiration, to the #mrt crew, the #mrt.no crew, and the #whatwg crew, and to Pillar and Hedral for their ideas Index: text-level-semantics.html =================================================================== RCS file: /sources/public/html5/spec-author-view/text-level-semantics.html,v retrieving revision 1.1134 retrieving revision 1.1135 diff -u -d -r1.1134 -r1.1135 --- text-level-semantics.html 15 Feb 2012 10:14:18 -0000 1.1134 +++ text-level-semantics.html 13 Mar 2012 19:58:54 -0000 1.1135 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,7 +380,9 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-div-element.html">← 4.5.13 The div element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-a-element.html">4.6.1 The a element →</a> @@ -379,4 +417,6 @@ <a href="the-br-element.html#the-br-element" id="br_2">br</a>, and <a href="the-wbr-element.html#the-wbr-element" id="wbr_1">wbr</a> - elements. \ No newline at end of file + elements.</p> + + \ No newline at end of file Index: embedded-content-1.html =================================================================== RCS file: /sources/public/html5/spec-author-view/embedded-content-1.html,v retrieving revision 1.585 retrieving revision 1.586 diff -u -d -r1.585 -r1.586 --- embedded-content-1.html 15 Feb 2012 10:14:04 -0000 1.585 +++ embedded-content-1.html 13 Mar 2012 19:58:38 -0000 1.586 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,7 +380,9 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="edits-and-lists.html">← 4.7.5 Edits and lists</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-img-element.html">4.8.1 The img element →</a> @@ -364,4 +402,7 @@ <a href="the-map-element.html#the-map-element" id="map_6">map</a>, and <a href="the-area-element.html#the-area-element" id="area_7">area</a> - elements. \ No newline at end of file + elements.</p> + + + \ No newline at end of file Index: form-submission.html =================================================================== RCS file: /sources/public/html5/spec-author-view/form-submission.html,v retrieving revision 1.18 retrieving revision 1.19 diff -u -d -r1.18 -r1.19 --- form-submission.html 15 Feb 2012 10:14:04 -0000 1.18 +++ form-submission.html 13 Mar 2012 19:58:38 -0000 1.19 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,28 +380,50 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="constraints.html">← 4.10.21 Constraints</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="interactive-elements.html">4.11 Interactive elements →</a> <ol class="toc"><li><ol><li><ol><li><a href="form-submission.html#form-submission" id="4.10.22-form-submission"><span class="secno">4.10.22 </span>Form submission</a> <ol><li><a href="form-submission.html#url-encoded-form-data"><span class="secno">4.10.22.1 </span>URL-encoded form data</a><li><a href="form-submission.html#plain-text-form-data"><span class="secno">4.10.22.2 </span>Plain text form data</a></ol></ol></ol></ol></div> - <h4 id="form-submission"><span class="secno">4.10.22 </span><dfn aria-haspopup="true" role="button" tabindex="0">Form submission</dfn></h4><p>When a form is submitted, the data in the form is converted into + <h4 id="form-submission"><span class="secno">4.10.22 </span><dfn aria-haspopup="true" role="button" tabindex="0">Form submission</dfn></h4> + + + + + + <p>When a form is submitted, the data in the form is converted into the structure specified by the <a href="attributes-common-to-form-controls.html#concept-fs-enctype" id="concept-fs-enctype_1" title="concept-fs-enctype">enctype</a>, and then sent to the - destination specified by the <a href="attributes-common-to-form-controls.html#concept-fs-action" id="concept-fs-action_0" title="concept-fs-action">action</a> using the given <a href="attributes-common-to-form-controls.html#concept-fs-method" id="concept-fs-method_1" title="concept-fs-method">method</a>.<p>For example, take the following form:<pre><form action="/find.cgi" method=get> + destination specified by the <a href="attributes-common-to-form-controls.html#concept-fs-action" id="concept-fs-action_0" title="concept-fs-action">action</a> using the given <a href="attributes-common-to-form-controls.html#concept-fs-method" id="concept-fs-method_1" title="concept-fs-method">method</a>.</p> + + <p>For example, take the following form:</p> + + <pre><form action="/find.cgi" method=get> <input type=text name=t> <input type=search name=q> <input type=submit> -</form></pre><p>If the user types in "cats" in the first field and "fur" in the +</form></pre> + + <p>If the user types in "cats" in the first field and "fur" in the second, and then hits the submit button, then the user agent will - load <code title="">/find.cgi?t=cats&q=fur</code>.<p>On the other hand, consider this form:<pre><form action="/find.cgi" method=post enctype="multipart/form-data"> + load <code title="">/find.cgi?t=cats&q=fur</code>.</p> + + <p>On the other hand, consider this form:</p> + + <pre><form action="/find.cgi" method=post enctype="multipart/form-data"> <input type=text name=t> <input type=search name=q> <input type=submit> -</form></pre><p>Given the same user input, the result on submission is quite +</form></pre> + + <p>Given the same user input, the result on submission is quite different: the user agent instead does an HTTP POST to the given - URL, with as the entity body something like the following text:<pre>------kYFrd4jNJEgCervE + URL, with as the entity body something like the following text:</p> + + <pre>------kYFrd4jNJEgCervE Content-Disposition: form-data; name="t" cats @@ -373,14 +431,30 @@ Content-Disposition: form-data; name="q" fur -------kYFrd4jNJEgCervE--</pre><h5 id="url-encoded-form-data"><span class="secno">4.10.22.1 </span>URL-encoded form data</h5><p class="note">This form data set encoding is in many ways an +------kYFrd4jNJEgCervE--</pre> + + + + + + + + + + <h5 id="url-encoded-form-data"><span class="secno">4.10.22.1 </span>URL-encoded form data</h5> + + <p class="note">This form data set encoding is in many ways an aberrant monstrosity, the result of many years of implementation accidents and compromises leading to a set of requirements necessary for interoperability, but in no way representing good design practices. In particular, readers are cautioned to pay close attention to the twisted details involving repeated (and in some cases nested) conversions between character encodings and byte - sequences.<p>To <dfn aria-haspopup="true" id="application-x-www-form-urlencoded-decoding-algorithm" role="button" tabindex="0">decode <code>application/x-www-form-urlencoded</code> + sequences.</p> + + + + <p>To <dfn aria-haspopup="true" id="application-x-www-form-urlencoded-decoding-algorithm" role="button" tabindex="0">decode <code>application/x-www-form-urlencoded</code> payloads</dfn>, the following algorithm should be used. This algorithm uses as inputs the payload itself, <var title="">payload</var>, consisting of a Unicode string using only characters in the range U+0000 to U+007F; a default character @@ -389,13 +463,14 @@ this algorithm is a sorted list of name-value pairs. If the <var title="">isindex</var> flag is set and the first control really was an <code title="attr-fe-name-isindex"><a href="attributes-common-to-form-controls.html#attr-fe-name-isindex" id="isindex_1">isindex</a></code> control, then the first name-value pair will have as its name the empty - string.<ol><li><p>Let <var title="">strings</var> be the result of <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#strictly-split-a-string" title='Read about this "strictly splitting the string" reference in the full HTML5 spec.'>strictly splitting the + string.</p> + + <ol><li><p>Let <var title="">strings</var> be the result of <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#strictly-split-a-string" title='Read about this "strictly splitting the string" reference in the full HTML5 spec.'>strictly splitting the string</a> <var title="">payload</var> on U+0026 AMPERSAND characters (&).</li> <li><p>If the <var title="">isindex</var> flag is set and the first - string in <var title="">strings</var> does not contain a U+003D - EQUALS SIGN character (=), insert a U+003D EQUALS SIGN character + string in <var title="">strings</var> does not contain a "=" (U+003D) character, insert a U+003D EQUALS SIGN character (=) at the start of the first string in <var title="">strings</var>.</li> <li><p>Let <var title="">pairs</var> be an empty list of name-value @@ -407,24 +482,21 @@ <ol><li> - <p>If <var title="">string</var> contains a U+003D EQUALS SIGN - character (=), then let <var title="">name</var> be the - substring of <var title="">string</var> from the start of <var title="">string</var> up to but excluding its first U+003D - EQUALS SIGN character (=), and let <var title="">value</var> be + <p>If <var title="">string</var> contains a "=" (U+003D) character, then let <var title="">name</var> be the + substring of <var title="">string</var> from the start of <var title="">string</var> up to but excluding its first "=" (U+003D) character, and let <var title="">value</var> be the substring from the first character, if any, after the first - U+003D EQUALS SIGN character (=) up to the end of <var title="">string</var>. If the first U+003D EQUALS SIGN character + "=" (U+003D) character up to the end of <var title="">string</var>. If the first U+003D EQUALS SIGN character (=) is the first character, then <var title="">name</var> will be the empty string. If it is the last character, then <var title="">value</var> will be the empty string.</p> - <p>Otherwise, <var title="">string</var> contains no U+003D - EQUALS SIGN characters (=). Let <var title="">name</var> have + <p>Otherwise, <var title="">string</var> contains no "=" (U+003D) characters. Let <var title="">name</var> have the value of <var title="">string</var> and let <var title="">value</var> be the empty string.</p> </li> <li> - <p>Replace any U+002B PLUS SIGN characters (+) in <var title="">name</var> and <var title="">value</var> with U+0020 + <p>Replace any "+" (U+002B) characters in <var title="">name</var> and <var title="">value</var> with U+0020 SPACE characters.</p> </li> @@ -434,15 +506,14 @@ <p>Replace any escape in <var title="">name</var> and <var title="">value</var> with the character represented by the escape. This replacement most not be recursive.</p> - <p>An escape is a U+0025 PERCENT SIGN character (%) followed by - two characters in the ranges U+0030 DIGIT ZERO (0) to U+0039 - DIGIT NINE (9), U+0041 LATIN CAPITAL LETTER A to U+0046 LATIN + <p>An escape is a "%" (U+0025) character followed by + two characters in the ranges <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#ascii-digits" title='Read about this "ASCII digits" reference in the full HTML5 spec.'>ASCII digits</a>, U+0041 LATIN CAPITAL LETTER A to U+0046 LATIN CAPITAL LETTER F, and U+0061 LATIN SMALL LETTER A to U+0066 LATIN SMALL LETTER F.</p> <p>The character represented by an escape is the Unicode character whose code point is equal to the value of the two - characters after the U+0025 PERCENT SIGN character (%), + characters after the "%" (U+0025) character, interpreted as a hexadecimal number (in the range 0..255).</p> <p class="example">So for instance the string "<code title="">A%2BC</code>" would become "<code title="">A+C</code>". @@ -473,9 +544,31 @@ </ol><p class="note">Parameters on the <code><a href="iana.html#application-x-www-form-urlencoded" id="application/x-www-form-urlencoded_4">application/x-www-form-urlencoded</a></code> MIME type are - ignored. In particular, this MIME type does not support the <code title="">charset</code> parameter.<p>For details on how to interpret <a href="attributes-common-to-form-controls.html#attr-fs-enctype-formdata" id="multipart/form-data"><code>multipart/form-data</code></a> - payloads, see RFC 2388. <a href="references.html#refsRFC2388">[RFC2388]</a><h5 id="plain-text-form-data"><span class="secno">4.10.22.2 </span>Plain text form data</h5><p>Payloads using the <a href="attributes-common-to-form-controls.html#attr-fs-enctype-text" id="text/plain"><code>text/plain</code></a> format are intended to + ignored. In particular, this MIME type does not support the <code title="">charset</code> parameter.</p> + + + + + + <p>For details on how to interpret <a href="attributes-common-to-form-controls.html#attr-fs-enctype-formdata" id="multipart/form-data"><code>multipart/form-data</code></a> + payloads, see RFC 2388. <a href="references.html#refsRFC2388">[RFC2388]</a></p> + + + + <h5 id="plain-text-form-data"><span class="secno">4.10.22.2 </span>Plain text form data</h5> + + + + <p>Payloads using the <a href="attributes-common-to-form-controls.html#attr-fs-enctype-text" id="text/plain"><code>text/plain</code></a> format are intended to be human readable. They are not reliably interpretable by computer, as the format is ambiguous (for example, there is no way to distinguish a literal newline in a value from the newline at the end - of the value). \ No newline at end of file + of the value).</p> + + + + + + + + \ No newline at end of file Index: user-prompts.html =================================================================== RCS file: /sources/public/html5/spec-author-view/user-prompts.html,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- user-prompts.html 15 Feb 2012 10:14:27 -0000 1.13 +++ user-prompts.html 13 Mar 2012 19:59:03 -0000 1.14 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,14 +380,22 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="timers.html">← 6.3 Timers</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="system-state-and-capabilities.html">6.5 System state and capabilities →</a> <ol class="toc"><li><ol><li><a href="user-prompts.html#user-prompts"><span class="secno">6.4 </span>User prompts</a> <ol><li><a href="user-prompts.html#simple-dialogs"><span class="secno">6.4.1 </span>Simple dialogs</a><li><a href="user-prompts.html#printing"><span class="secno">6.4.2 </span>Printing</a><li><a href="user-prompts.html#dialogs-implemented-using-separate-documents"><span class="secno">6.4.3 </span>Dialogs implemented using separate documents</a></ol></ol></ol></div> - <h3 id="user-prompts"><span class="secno">6.4 </span>User prompts</h3><h4 id="simple-dialogs"><span class="secno">6.4.1 </span>Simple dialogs</h4><dl class="domintro"><dt><var title="">window</var> . <code id="dom-alert" title="dom-alert"><a href="#dom-alert">alert</a></code>(<var title="">message</var>)</dt> + <h3 id="user-prompts"><span class="secno">6.4 </span>User prompts</h3> + + + + <h4 id="simple-dialogs"><span class="secno">6.4.1 </span>Simple dialogs</h4> + + <dl class="domintro"><dt><var title="">window</var> . <code id="dom-alert" title="dom-alert"><a href="#dom-alert">alert</a></code>(<var title="">message</var>)</dt> <dd> <p>Displays a modal alert with the given message, and waits for the user to dismiss it.</p> @@ -387,7 +431,10 @@ </dd> - </dl><h4 id="printing"><span class="secno">6.4.2 </span>Printing</h4><dl class="domintro"><dt><var title="">window</var> . <code id="dom-print" title="dom-print"><a href="#dom-print">print</a></code>()</dt> + </dl><h4 id="printing"><span class="secno">6.4.2 </span>Printing</h4> + + + <dl class="domintro"><dt><var title="">window</var> . <code id="dom-print" title="dom-print"><a href="#dom-print">print</a></code>()</dt> <dd> @@ -398,7 +445,9 @@ </dd> - </dl><h4 id="dialogs-implemented-using-separate-documents"><span class="secno">6.4.3 </span>Dialogs implemented using separate documents</h4><dl class="domintro"><dt><var title="">result</var> = <var title="">window</var> . <code id="dom-showmodaldialog" title="dom-showModalDialog"><a href="#dom-showmodaldialog">showModalDialog</a></code>(<var title="">url</var> [, <var title="">argument</var>] )</dt> + </dl><h4 id="dialogs-implemented-using-separate-documents"><span class="secno">6.4.3 </span>Dialogs implemented using separate documents</h4> + + <dl class="domintro"><dt><var title="">result</var> = <var title="">window</var> . <code id="dom-showmodaldialog" title="dom-showModalDialog"><a href="#dom-showmodaldialog">showModalDialog</a></code>(<var title="">url</var> [, <var title="">argument</var>] )</dt> <dd> @@ -413,7 +462,9 @@ </dl><pre class="idl">[NoInterfaceObject] interface <dfn aria-haspopup="true" id="windowmodal" role="button" tabindex="0">WindowModal</dfn> { readonly attribute any <a href="#dom-windowmodal-dialogarguments" title="dom-WindowModal-dialogArguments">dialogArguments</a>; attribute DOMString <a href="#dom-windowmodal-returnvalue" title="dom-WindowModal-returnValue">returnValue</a>; -};</pre><dl class="domintro"><dt><var title="">window</var> . <code id="dom-windowmodal-dialogarguments" title="dom-WindowModal-dialogArguments"><a href="#dom-windowmodal-dialogarguments">dialogArguments</a></code></dt> +};</pre> + + <dl class="domintro"><dt><var title="">window</var> . <code id="dom-windowmodal-dialogarguments" title="dom-WindowModal-dialogArguments"><a href="#dom-windowmodal-dialogarguments">dialogArguments</a></code></dt> <dd> @@ -435,4 +486,9 @@ </dd> </dl><p class="note">The <code title="dom-window-close"><a href="browsers.html#dom-window-close">window.close()</a></code> method can be used to - close the browsing context. \ No newline at end of file + close the browsing context.</p> + + + + + \ No newline at end of file Index: tabular-data.html =================================================================== RCS file: /sources/public/html5/spec-author-view/tabular-data.html,v retrieving revision 1.1115 retrieving revision 1.1116 diff -u -d -r1.1115 -r1.1116 --- tabular-data.html 15 Feb 2012 10:14:18 -0000 1.1115 +++ tabular-data.html 13 Mar 2012 19:58:54 -0000 1.1116 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,10 +380,15 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="dimension-attributes.html">← 4.8.17 Dimension attributes</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-table-element.html">4.9.1 The table element →</a> </div> - <h3 id="tabular-data"><span class="secno">4.9 </span>Tabular data</h3><p>The <a href="the-table-element.html#the-table-element" id="table_3">table</a> element. \ No newline at end of file + <h3 id="tabular-data"><span class="secno">4.9 </span>Tabular data</h3><p>The <a href="the-table-element.html#the-table-element" id="table_3">table</a> element.</p> + + + \ No newline at end of file Index: the-iframe-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-iframe-element.html,v retrieving revision 1.628 retrieving revision 1.629 diff -u -d -r1.628 -r1.629 --- the-iframe-element.html 21 Feb 2012 21:59:05 -0000 1.628 +++ the-iframe-element.html 13 Mar 2012 19:58:58 -0000 1.629 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-img-element.html">← 4.8.1 The img element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-embed-element.html">4.8.3 The embed element →</a> </div> - <h4 id="the-iframe-element"><span class="secno">4.8.2 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>iframe</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_62" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-iframe-element"><span class="secno">4.8.2 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>iframe</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_62" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_101">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_115">Phrasing content</a>.</dd> <dd><a href="content-models.html#embedded-content" id="embedded-content_6">Embedded content</a>.</dd> @@ -384,17 +424,26 @@ };</pre> </dd> </dl><p>The <code><a href="#the-iframe-element" id="iframe_12">iframe</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a - <a href="browsers.html#nested-browsing-context" id="nested-browsing-context_0">nested browsing context</a>.<p>The <dfn aria-haspopup="true" id="attr-iframe-src" role="button" tabindex="0"><code>src</code></dfn> attribute + <a href="browsers.html#nested-browsing-context" id="nested-browsing-context_0">nested browsing context</a>.</p> + + <p>The <dfn aria-haspopup="true" id="attr-iframe-src" role="button" tabindex="0"><code>src</code></dfn> attribute gives the address of a page that the <a href="browsers.html#nested-browsing-context" id="nested-browsing-context_1">nested browsing context</a> is to contain. The attribute, if present, must be a <a href="urls.html#valid-non-empty-url-potentially-surrounded-by-spaces" id="valid-non-empty-url-potentially-surrounded-by-spaces_4">valid non-empty URL potentially surrounded by - spaces</a>.<p>The <dfn aria-haspopup="true" id="attr-iframe-srcdoc" role="button" tabindex="0"><code>srcdoc</code></dfn> + spaces</a>.</p> + + + <p>The <dfn aria-haspopup="true" id="attr-iframe-srcdoc" role="button" tabindex="0"><code>srcdoc</code></dfn> attribute gives the content of the page that the <a href="browsers.html#nested-browsing-context" id="nested-browsing-context_2">nested browsing context</a> is to contain. The value of the attribute is - the source of <dfn aria-haspopup="true" id="an-iframe-srcdoc-document" role="button" tabindex="0">an <code>iframe</code> <code title="attr-iframe-srcdoc">srcdoc</code> document</dfn>.<p>For <code><a href="#the-iframe-element" id="iframe_13">iframe</a></code> elements in <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#html-documents" title='Read about this "HTML documents" reference in the full HTML5 spec.'>HTML documents</a>, + the source of <dfn aria-haspopup="true" id="an-iframe-srcdoc-document" role="button" tabindex="0">an <code>iframe</code> <code title="attr-iframe-srcdoc">srcdoc</code> document</dfn>.</p> + + <p>For <code><a href="#the-iframe-element" id="iframe_13">iframe</a></code> elements in <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#html-documents" title='Read about this "HTML documents" reference in the full HTML5 spec.'>HTML documents</a>, the attribute, if present, must have a value using <a href="syntax.html#syntax" id="the-html-syntax_5">the HTML syntax</a> that consists of the following syntactic components, - in the given order:<ol><li>Any number of <a href="syntax.html#syntax-comments" id="syntax-comments_0" title="syntax-comments">comments</a> and + in the given order:</p> + + <ol><li>Any number of <a href="syntax.html#syntax-comments" id="syntax-comments_0" title="syntax-comments">comments</a> and <a href="common-microsyntaxes.html#space-character" id="space-character_17" title="space character">space characters</a>.</li> <li>Optionally, a <a href="syntax.html#syntax-doctype" id="syntax-doctype_1" title="syntax-doctype">DOCTYPE</a>. @@ -410,18 +459,30 @@ </ol><p>For <code><a href="#the-iframe-element" id="iframe_14">iframe</a></code> elements in <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#xml-documents" title='Read about this "XML documents" reference in the full HTML5 spec.'>XML documents</a>, the attribute, if present, must have a value that matches the production labeled <code><a href="dom.html#document" id="document_59">document</a></code> in the XML - specification. <a href="references.html#refsXML">[XML]</a><p>If the <code title="attr-iframe-src"><a href="#attr-iframe-src" id="src_19">src</a></code> attribute and the + specification. <a href="references.html#refsXML">[XML]</a></p> + + <p>If the <code title="attr-iframe-src"><a href="#attr-iframe-src" id="src_19">src</a></code> attribute and the <code title="attr-iframe-srcdoc"><a href="#attr-iframe-srcdoc" id="srcdoc_0">srcdoc</a></code> attribute are both specified together, the <code title="attr-iframe-srcdoc"><a href="#attr-iframe-srcdoc" id="srcdoc_1">srcdoc</a></code> attribute takes priority. This allows authors to provide a fallback <a href="urls.html#url" id="url_12">URL</a> for legacy user agents that do not support the - <code title="attr-iframe-srcdoc"><a href="#attr-iframe-srcdoc" id="srcdoc_2">srcdoc</a></code> attribute.<p class="note">If, when the element is created, the <code title="attr-iframe-srcdoc"><a href="#attr-iframe-srcdoc" id="srcdoc_3">srcdoc</a></code> attribute is not set, and + <code title="attr-iframe-srcdoc"><a href="#attr-iframe-srcdoc" id="srcdoc_2">srcdoc</a></code> attribute.</p> + + + + <p class="note">If, when the element is created, the <code title="attr-iframe-srcdoc"><a href="#attr-iframe-srcdoc" id="srcdoc_3">srcdoc</a></code> attribute is not set, and the <code title="attr-iframe-src"><a href="#attr-iframe-src" id="src_20">src</a></code> attribute is either also not set or set but its value cannot be <a class="full-spec-link" href="http://dev.w3.org/html5/spec/urls.html#resolve-a-url" title='Read about this "resolved" reference in the full HTML5 spec.'>resolved</a>, the browsing context will remain at the - initial <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/urls.html#about:blank" title='Read about this "about:blank" reference in the full HTML5 spec.'>about:blank</a></code> page.<p class="note">If the user <a class="full-spec-link" href="http://dev.w3.org/html5/spec/history.html#navigate" title='Read about this "navigates" reference in the full HTML5 spec.'>navigates</a> + initial <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/urls.html#about:blank" title='Read about this "about:blank" reference in the full HTML5 spec.'>about:blank</a></code> page.</p> + + <p class="note">If the user <a class="full-spec-link" href="http://dev.w3.org/html5/spec/history.html#navigate" title='Read about this "navigates" reference in the full HTML5 spec.'>navigates</a> away from this page, the <code><a href="#the-iframe-element" id="iframe_15">iframe</a></code>'s corresponding <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/browsers.html#windowproxy" title='Read about this "WindowProxy" reference in the full HTML5 spec.'>WindowProxy</a></code> object will proxy new <code><a href="browsers.html#window" id="window_7">Window</a></code> - objects for new <code><a href="dom.html#document" id="document_60">Document</a></code> objects, but the <code title="attr-iframe-src"><a href="#attr-iframe-src" id="src_21">src</a></code> attribute will not change.<div class="example"> + objects for new <code><a href="dom.html#document" id="document_60">Document</a></code> objects, but the <code title="attr-iframe-src"><a href="#attr-iframe-src" id="src_21">src</a></code> attribute will not change.</p> + + + + <div class="example"> <p>Here a blog uses the <code title="attr-iframe-srcdoc"><a href="#attr-iframe-srcdoc" id="srcdoc_4">srcdoc</a></code> attribute in conjunction with the <code title="attr-iframe-sandbox"><a href="#attr-iframe-sandbox" id="sandbox_2">sandbox</a></code> and <code title="attr-iframe-seamless"><a href="#attr-iframe-seamless" id="seamless_0">seamless</a></code> attributes described @@ -461,20 +522,29 @@ to prevent the ampersand from being misinterpreted when parsing the sandboxed content.</p> - </div><p class="note">In <a href="syntax.html#syntax" id="the-html-syntax_6">the HTML syntax</a>, authors need only - remember to use U+0022 QUOTATION MARK characters (") to wrap the - attribute contents and then to escape all U+0022 QUOTATION MARK (") + </div> + + <p class="note">In <a href="syntax.html#syntax" id="the-html-syntax_6">the HTML syntax</a>, authors need only + remember to use """ (U+0022) characters to wrap the + attribute contents and then to escape all """ (U+0022) and U+0026 AMPERSAND (&) characters, and to specify the <code title="attr-iframe-sandbox"><a href="#attr-iframe-sandbox" id="sandbox_3">sandbox</a></code> attribute, to ensure safe - embedding of content.<p class="note">Due to restrictions of <a href="the-xhtml-syntax.html#the-xhtml-syntax">the XHTML + embedding of content.</p> + + <p class="note">Due to restrictions of <a href="the-xhtml-syntax.html#the-xhtml-syntax">the XHTML syntax</a>, in XML the U+003C LESS-THAN SIGN character (<) needs to be escaped as well. In order to prevent <a href="http://www.w3.org/TR/REC-xml/#AVNormalize">attribute-value normalization</a>, some of XML's whitespace characters — - specifically U+0009 CHARACTER TABULATION (tab), U+000A LINE FEED - (LF), and U+000D CARRIAGE RETURN (CR) — also need to be - escaped. <a href="references.html#refsXML">[XML]</a><hr><p>The <dfn aria-haspopup="true" id="attr-iframe-name" role="button" tabindex="0"><code>name</code></dfn> + specifically "tab" (U+0009), "LF" (U+000A), and "CR" (U+000D) — also need to be + escaped. <a href="references.html#refsXML">[XML]</a></p> + + <hr><p>The <dfn aria-haspopup="true" id="attr-iframe-name" role="button" tabindex="0"><code>name</code></dfn> attribute, if present, must be a <a href="browsers.html#valid-browsing-context-name" id="valid-browsing-context-name_0">valid browsing context name</a>. The given value is used to name the <a href="browsers.html#nested-browsing-context" id="nested-browsing-context_3">nested - browsing context</a>. <hr><p>The <dfn aria-haspopup="true" id="attr-iframe-sandbox" role="button" tabindex="0"><code>sandbox</code></dfn> + browsing context</a>. </p> + + + + <hr><p>The <dfn aria-haspopup="true" id="attr-iframe-sandbox" role="button" tabindex="0"><code>sandbox</code></dfn> attribute, when specified, enables a set of extra restrictions on any content hosted by the <code><a href="#the-iframe-element" id="iframe_16">iframe</a></code>. Its value must be an <a href="common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens" id="unordered-set-of-unique-space-separated-tokens_0">unordered set of unique space-separated tokens</a> that are @@ -494,16 +564,24 @@ keyword allows the content to <a class="full-spec-link" href="http://dev.w3.org/html5/spec/history.html#navigate" title='Read about this "navigate" reference in the full HTML5 spec.'>navigate</a> its <a href="browsers.html#top-level-browsing-context" id="top-level-browsing-context_0">top-level browsing context</a>, and the <code title="attr-iframe-sandbox-allow-forms"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-iframe-element.html#attr-iframe-sandbox-allow-forms" title='Read about this "allow-forms" reference in the full HTML5 spec.'>allow-forms</a></code> and <code title="attr-iframe-sandbox-allow-scripts"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-iframe-element.html#attr-iframe-sandbox-allow-scripts" title='Read about this "allow-scripts" reference in the full HTML5 spec.'>allow-scripts</a></code> keywords re-enable forms and scripts respectively (though scripts - are still prevented from creating popups).<p class="warning">Setting both the + are still prevented from creating popups).</p> + + <p class="warning">Setting both the <code title="attr-iframe-sandbox-allow-scripts"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-iframe-element.html#attr-iframe-sandbox-allow-scripts" title='Read about this "allow-scripts" reference in the full HTML5 spec.'>allow-scripts</a></code> and <code title="attr-iframe-sandbox-allow-same-origin"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-iframe-element.html#attr-iframe-sandbox-allow-same-origin" title='Read about this "allow-same-origin" reference in the full HTML5 spec.'>allow-same-origin</a></code> keywords together when the embedded page has the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/origin-0.html#same-origin" title='Read about this "same origin" reference in the full HTML5 spec.'>same origin</a> as the page containing the <code><a href="#the-iframe-element" id="iframe_17">iframe</a></code> allows - the embedded page to simply remove the <code title="attr-iframe-sandbox"><a href="#attr-iframe-sandbox" id="sandbox_4">sandbox</a></code> attribute.<p class="warning">Sandboxing hostile content is of minimal help if + the embedded page to simply remove the <code title="attr-iframe-sandbox"><a href="#attr-iframe-sandbox" id="sandbox_4">sandbox</a></code> attribute.</p> + + <p class="warning">Sandboxing hostile content is of minimal help if an attacker can convince the user to just visit the hostile content directly, rather than in the <code><a href="#the-iframe-element" id="iframe_18">iframe</a></code>. To limit the damage that can be caused by hostile HTML content, it should be - served from a separate dedicated domain.<div class="example"> + served from a separate dedicated domain.</p> + + + + <div class="example"> <p>In this example, some completely-unknown, potentially hostile, user-provided HTML content is embedded in a page. Because it is @@ -521,7 +599,9 @@ page doesn't run in the context of the site's origin, which would make the user vulnerable to any attack found in the page.</p> - </div><div class="example"> + </div> + + <div class="example"> <p>In this example, a gadget from another site is embedded. The gadget has scripting and forms enabled, and the origin sandbox @@ -533,7 +613,9 @@ <pre><iframe sandbox="allow-same-origin allow-forms allow-scripts" src="http://maps.example.com/embedded.html"></iframe></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>Suppose a file A contained the following fragment:</p> @@ -572,23 +654,36 @@ ill-advised, because it can make it quite hard to reason about what will be allowed and what will not.</p> - </div><p class="note">Potentially hostile files should not be served from + </div> + + <p class="note">Potentially hostile files should not be served from the same server as the file containing the <code><a href="#the-iframe-element" id="iframe_25">iframe</a></code> element. Using a different domain ensures that scripts in the files are unable to attack the site, even if the user is tricked into - visiting those pages directly, without the protection of the <code title="attr-iframe-sandbox"><a href="#attr-iframe-sandbox" id="sandbox_7">sandbox</a></code> attribute.<p class="warning">If the <code title="attr-iframe-sandbox-allow-scripts"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-iframe-element.html#attr-iframe-sandbox-allow-scripts" title='Read about this "allow-scripts" reference in the full HTML5 spec.'>allow-scripts</a></code> + visiting those pages directly, without the protection of the <code title="attr-iframe-sandbox"><a href="#attr-iframe-sandbox" id="sandbox_7">sandbox</a></code> attribute.</p> + + <p class="warning">If the <code title="attr-iframe-sandbox-allow-scripts"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-iframe-element.html#attr-iframe-sandbox-allow-scripts" title='Read about this "allow-scripts" reference in the full HTML5 spec.'>allow-scripts</a></code> keyword is set along with <code title="attr-iframe-sandbox-allow-same-origin"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-iframe-element.html#attr-iframe-sandbox-allow-same-origin" title='Read about this "allow-same-origin" reference in the full HTML5 spec.'>allow-same-origin</a></code> keyword, and the file is from the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/origin-0.html#same-origin" title='Read about this "same origin" reference in the full HTML5 spec.'>same origin</a> as the <code><a href="#the-iframe-element" id="iframe_26">iframe</a></code>'s <code><a href="dom.html#document" id="document_61">Document</a></code>, then a script in the "sandboxed" iframe could just reach out, remove the <code title="attr-iframe-sandbox"><a href="#attr-iframe-sandbox" id="sandbox_8">sandbox</a></code> attribute, and then reload itself, effectively breaking out of the sandbox - altogether.<hr><p>The <dfn aria-haspopup="true" id="attr-iframe-seamless" role="button" tabindex="0"><code>seamless</code></dfn> + altogether.</p> + + + <hr><p>The <dfn aria-haspopup="true" id="attr-iframe-seamless" role="button" tabindex="0"><code>seamless</code></dfn> attribute is a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_4">boolean attribute</a>. When specified, it indicates that the <code><a href="#the-iframe-element" id="iframe_27">iframe</a></code> element's <a href="browsers.html#browsing-context" id="browsing-context_8">browsing context</a> is to be rendered in a manner that makes it appear to be part of the containing document (seamlessly included in the - parent document). <p class="note">The attribute can be set or removed dynamically, - with the rendering updating in tandem.<div class="example"> + parent document). </p> + + + + <p class="note">The attribute can be set or removed dynamically, + with the rendering updating in tandem.</p> + + <div class="example"> <p>In this example, the site's navigation is embedded using a client-side include using an <code><a href="#the-iframe-element" id="iframe_28">iframe</a></code>. Any links in the @@ -604,15 +699,24 @@ <pre><nav><iframe seamless src="nav.include.html"></iframe></nav></pre> - </div><hr><p>The <code><a href="#the-iframe-element" id="iframe_31">iframe</a></code> element supports <a href="dimension-attributes.html#dimension-attributes" id="dimension-attributes_1">dimension + </div> + + + <hr><p>The <code><a href="#the-iframe-element" id="iframe_31">iframe</a></code> element supports <a href="dimension-attributes.html#dimension-attributes" id="dimension-attributes_1">dimension attributes</a> for cases where the embedded content has specific - dimensions (e.g. ad units have well-defined dimensions).<p>An <code><a href="#the-iframe-element" id="iframe_32">iframe</a></code> element never has <a href="content-models.html#fallback-content" id="fallback-content_0">fallback + dimensions (e.g. ad units have well-defined dimensions).</p> + + <p>An <code><a href="#the-iframe-element" id="iframe_32">iframe</a></code> element never has <a href="content-models.html#fallback-content" id="fallback-content_0">fallback content</a>, as it will always create a nested <a href="browsers.html#browsing-context" id="browsing-context_9">browsing context</a>, regardless of whether the specified initial contents - are successfully used.<p>Descendants of <code><a href="#the-iframe-element" id="iframe_33">iframe</a></code> elements represent + are successfully used.</p> + + <p>Descendants of <code><a href="#the-iframe-element" id="iframe_33">iframe</a></code> elements represent nothing. (In legacy user agents that do not support <code><a href="#the-iframe-element" id="iframe_34">iframe</a></code> elements, the contents would be parsed as markup - that could act as fallback content.)<p id="iframe-content-model">When used in <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#html-documents" title='Read about this "HTML documents" reference in the full HTML5 spec.'>HTML + that could act as fallback content.)</p> + + <p id="iframe-content-model">When used in <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#html-documents" title='Read about this "HTML documents" reference in the full HTML5 spec.'>HTML documents</a>, the allowed content model of <code><a href="#the-iframe-element" id="iframe_35">iframe</a></code> elements is text, except that invoking the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-end.html#html-fragment-parsing-algorithm" title='Read about this "HTML fragment parsing algorithm" reference in the full HTML5 spec.'>HTML fragment parsing algorithm</a> with the <code><a href="#the-iframe-element" id="iframe_36">iframe</a></code> element as the @@ -623,9 +727,15 @@ no <code><a href="the-script-element.html#the-script-element" id="script_28">script</a></code> elements being anywhere in the list or as descendants of elements in the list, and with all the elements in the list (including their descendants) being themselves - conforming.<p>The <code><a href="#the-iframe-element" id="iframe_37">iframe</a></code> element must be empty in <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#xml-documents" title='Read about this "XML documents" reference in the full HTML5 spec.'>XML - documents</a>.<p class="note">The <a class="full-spec-link" href="http://dev.w3.org/html5/spec/parsing.html#html-parser" title='Read about this "HTML parser" reference in the full HTML5 spec.'>HTML parser</a> treats markup inside + conforming.</p> + + <p>The <code><a href="#the-iframe-element" id="iframe_37">iframe</a></code> element must be empty in <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#xml-documents" title='Read about this "XML documents" reference in the full HTML5 spec.'>XML + documents</a>.</p> + + <p class="note">The <a class="full-spec-link" href="http://dev.w3.org/html5/spec/parsing.html#html-parser" title='Read about this "HTML parser" reference in the full HTML5 spec.'>HTML parser</a> treats markup inside <code><a href="#the-iframe-element" id="iframe_38">iframe</a></code> elements as text.</p> + + <p>The IDL attributes <dfn aria-haspopup="true" id="dom-iframe-src" role="button" tabindex="0"><code>src</code></dfn>, <dfn aria-haspopup="true" id="dom-iframe-srcdoc" role="button" tabindex="0"><code>srcdoc</code></dfn>, <dfn aria-haspopup="true" id="dom-iframe-name" role="button" tabindex="0"><code>name</code></dfn>, <dfn aria-haspopup="true" id="dom-iframe-sandbox" role="button" tabindex="0"><code>sandbox</code></dfn>, and <dfn aria-haspopup="true" id="dom-iframe-seamless" role="button" tabindex="0"><code>seamless</code></dfn> must <a href="common-dom-interfaces.html#reflect" id="reflect_27">reflect</a> the respective content attributes of the same name.</p> @@ -639,7 +749,9 @@ IDL attribute must return the <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/browsers.html#windowproxy" title='Read about this "WindowProxy" reference in the full HTML5 spec.'>WindowProxy</a></code> object of the <code><a href="#the-iframe-element" id="iframe_40">iframe</a></code> element's <a href="browsers.html#nested-browsing-context" id="nested-browsing-context_6">nested browsing context</a>, if any, or null otherwise.</p> -<div class="example"> + + + <div class="example"> <p>Here is an example of a page using an <code><a href="#the-iframe-element" id="iframe_41">iframe</a></code> to include advertising from an advertising broker:</p> @@ -647,4 +759,9 @@ <pre><iframe src="http://ads.example.com/?customerid=923513721&amp;format=banner" width="468" height="60"></iframe></pre> - </div> \ No newline at end of file + </div> + + + + + \ No newline at end of file Index: dimension-attributes.html =================================================================== RCS file: /sources/public/html5/spec-author-view/dimension-attributes.html,v retrieving revision 1.25 retrieving revision 1.26 diff -u -d -r1.25 -r1.26 --- dimension-attributes.html 15 Feb 2012 10:14:02 -0000 1.25 +++ dimension-attributes.html 13 Mar 2012 19:58:37 -0000 1.26 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="svg-0.html">← 4.8.16 SVG</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="tabular-data.html">4.9 Tabular data →</a> </div> - <h4 id="dimension-attributes"><span class="secno">4.8.17 </span><dfn aria-haspopup="true" role="button" tabindex="0">Dimension attributes</dfn></h4><p> + <h4 id="dimension-attributes"><span class="secno">4.8.17 </span><dfn aria-haspopup="true" role="button" tabindex="0">Dimension attributes</dfn></h4> + + <p> The <dfn aria-haspopup="true" id="attr-dim-width" role="button" tabindex="0"><code>width</code></dfn> and <dfn aria-haspopup="true" id="attr-dim-height" role="button" tabindex="0"><code>height</code></dfn> attributes on <code><a href="the-img-element.html#the-img-element" id="img_31">img</a></code>, <code><a href="the-iframe-element.html#the-iframe-element" id="iframe_42">iframe</a></code>, <code><a href="the-embed-element.html#the-embed-element" id="embed_12">embed</a></code>, <code><a href="the-object-element.html#the-object-element" id="object_30">object</a></code>, <code><a href="the-video-element.html#the-video-element" id="video_36">video</a></code>, and, when their <code title="attr-input-type"><a href="the-input-element.html#attr-input-type" id="type_61">type</a></code> attribute is in the <a href="states-of-the-type-attribute.html#image-button-state-type-image" id="attr-input-type-image_0" title="attr-input-type-image">Image Button</a> state, @@ -359,12 +399,16 @@ respectively, relative to the nominal direction of the output medium), in CSS pixels. The attributes, if specified, must have values that are <a href="common-microsyntaxes.html#valid-non-negative-integer" id="valid-non-negative-integer_5" title="valid non-negative integer">valid - non-negative integers</a>.<p>The specified dimensions given may differ from the dimensions + non-negative integers</a>.</p> + + <p>The specified dimensions given may differ from the dimensions specified in the resource itself, since the resource may have a resolution that differs from the CSS pixel resolution. (On screens, CSS pixels have a resolution of 96ppi, but in general the CSS pixel resolution depends on the reading distance.) If both attributes are - specified, then one of the following statements must be true:<ul><li><span title=""><var title="">specified width</var> - 0.5 ≤ + specified, then one of the following statements must be true:</p> + + <ul><li><span title=""><var title="">specified width</var> - 0.5 ≤ <var title="">specified height</var> * <var title="">target ratio</var> ≤ <var title="">specified width</var> + 0.5</span></li> @@ -376,12 +420,25 @@ </ul><p>The <var title="">target ratio</var> is the ratio of the intrinsic width to the intrinsic height in the resource. The <var title="">specified width</var> and <var title="">specified - height</var> are the values of the <code title="attr-dim-width"><a href="#attr-dim-width" id="width_10">width</a></code> and <code title="attr-dim-height"><a href="#attr-dim-height" id="height_10">height</a></code> attributes respectively.<p>The two attributes must be omitted if the resource in question - does not have both an intrinsic width and an intrinsic height.<p>If the two attributes are both zero, it indicates that the + height</var> are the values of the <code title="attr-dim-width"><a href="#attr-dim-width" id="width_10">width</a></code> and <code title="attr-dim-height"><a href="#attr-dim-height" id="height_10">height</a></code> attributes respectively.</p> + + <p>The two attributes must be omitted if the resource in question + does not have both an intrinsic width and an intrinsic height.</p> + + <p>If the two attributes are both zero, it indicates that the element is not intended for the user (e.g. it might be a part of a - service to count page views).<p class="note">The dimension attributes are not intended to be used + service to count page views).</p> + + <p class="note">The dimension attributes are not intended to be used to stretch the image.</p> + + <p>The <dfn aria-haspopup="true" id="dom-dim-width" role="button" tabindex="0"><code>width</code></dfn> and <dfn aria-haspopup="true" id="dom-dim-height" role="button" tabindex="0"><code>height</code></dfn> IDL attributes on the <code><a href="the-iframe-element.html#the-iframe-element" id="iframe_43">iframe</a></code>, <code><a href="the-embed-element.html#the-embed-element" id="embed_13">embed</a></code>, <code><a href="the-object-element.html#the-object-element" id="object_31">object</a></code>, and <code><a href="the-video-element.html#the-video-element" id="video_37">video</a></code> elements must <a href="common-dom-interfaces.html#reflect" id="reflect_50">reflect</a> the respective content attributes of the same name.</p> + + + + + \ No newline at end of file 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.603 retrieving revision 1.604 diff -u -d -r1.603 -r1.604 --- association-of-controls-and-forms.html 15 Feb 2012 10:14:00 -0000 1.603 +++ association-of-controls-and-forms.html 13 Mar 2012 19:58:35 -0000 1.604 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,23 +380,38 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-meter-element.html">← 4.10.17 The meter element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="attributes-common-to-form-controls.html">4.10.19 Attributes common to form controls →</a> </div> - <h4 id="association-of-controls-and-forms"><span class="secno">4.10.18 </span>Association of controls and forms</h4><p>A <a href="forms.html#form-associated-element" id="form-associated-element_13">form-associated element</a> can have a relationship + <h4 id="association-of-controls-and-forms"><span class="secno">4.10.18 </span>Association of controls and forms</h4> + + <p>A <a href="forms.html#form-associated-element" id="form-associated-element_13">form-associated element</a> can have a relationship with a <code><a href="the-form-element.html#the-form-element" id="form_23">form</a></code> element, which is called the element's <dfn aria-haspopup="true" id="form-owner" role="button" tabindex="0">form owner</dfn>. If a <a href="forms.html#form-associated-element" id="form-associated-element_14">form-associated element</a> is not associated with a <code><a href="the-form-element.html#the-form-element" id="form_24">form</a></code> element, its <a href="#form-owner" id="form-owner_13">form - owner</a> is said to be null.<p>A <a href="forms.html#form-associated-element" id="form-associated-element_15">form-associated element</a> is, by default, associated + owner</a> is said to be null.</p> + + <p>A <a href="forms.html#form-associated-element" id="form-associated-element_15">form-associated element</a> is, by default, associated with its ancestor <code><a href="the-form-element.html#the-form-element" id="form_25">form</a></code> element, but may have a <dfn aria-haspopup="true" id="attr-fae-form" role="button" tabindex="0"><code>form</code></dfn> attribute specified to - override this.<p class="note">This feature allows authors to work around the lack - of support for nested <code><a href="the-form-element.html#the-form-element" id="form_26">form</a></code> elements.<p>If a <a href="forms.html#form-associated-element" id="form-associated-element_16">form-associated element</a> has a <code title="attr-fae-form"><a href="#attr-fae-form" id="form_61">form</a></code> attribute specified, then that + override this.</p> + + <p class="note">This feature allows authors to work around the lack + of support for nested <code><a href="the-form-element.html#the-form-element" id="form_26">form</a></code> elements.</p> + + <p>If a <a href="forms.html#form-associated-element" id="form-associated-element_16">form-associated element</a> has a <code title="attr-fae-form"><a href="#attr-fae-form" id="form_61">form</a></code> attribute specified, then that attribute's value must be the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#concept-id" title='Read about this "ID" reference in the full HTML5 spec.'>ID</a> of a <code><a href="the-form-element.html#the-form-element" id="form_27">form</a></code> element in - the element's owner <code><a href="dom.html#document" id="document_67">Document</a></code>.<dl class="domintro"><dt><var title="">element</var> . <code id="dom-fae-form" title="dom-fae-form"><a href="#dom-fae-form">form</a></code></dt> + the element's owner <code><a href="dom.html#document" id="document_67">Document</a></code>.</p> + + + + + <dl class="domintro"><dt><var title="">element</var> . <code id="dom-fae-form" title="dom-fae-form"><a href="#dom-fae-form">form</a></code></dt> <dd> Index: common-dom-interfaces.html =================================================================== RCS file: /sources/public/html5/spec-author-view/common-dom-interfaces.html,v retrieving revision 1.134 retrieving revision 1.135 diff -u -d -r1.134 -r1.135 --- common-dom-interfaces.html 21 Feb 2012 21:58:41 -0000 1.134 +++ common-dom-interfaces.html 13 Mar 2012 19:58:36 -0000 1.135 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,7 +380,9 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="urls.html">← 2.5 URLs</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="namespaces.html">2.7 Namespaces →</a> @@ -352,26 +390,49 @@ <ol><li><a href="common-dom-interfaces.html#reflecting-content-attributes-in-idl-attributes"><span class="secno">2.6.1 </span>Reflecting content attributes in IDL attributes</a><li><a href="common-dom-interfaces.html#collections-0"><span class="secno">2.6.2 </span>Collections</a> <ol><li><a href="common-dom-interfaces.html#htmlallcollection-0"><span class="secno">2.6.2.1 </span>HTMLAllCollection</a><li><a href="common-dom-interfaces.html#htmlformcontrolscollection-0"><span class="secno">2.6.2.2 </span>HTMLFormControlsCollection</a><li><a href="common-dom-interfaces.html#htmloptionscollection-0"><span class="secno">2.6.2.3 </span>HTMLOptionsCollection</a></ol><li><a href="common-dom-interfaces.html#domstringmap-0"><span class="secno">2.6.3 </span>DOMStringMap</a><li><a href="common-dom-interfaces.html#transferable-objects"><span class="secno">2.6.4 </span>Transferable objects</a><li><a href="common-dom-interfaces.html#dom-feature-strings"><span class="secno">2.6.5 </span>DOM feature strings</a></ol></ol></ol></div> - <h3 id="common-dom-interfaces"><span class="secno">2.6 </span>Common DOM interfaces</h3><h4 id="reflecting-content-attributes-in-idl-attributes"><span class="secno">2.6.1 </span>Reflecting content attributes in IDL attributes</h4><p>Some IDL attributes are defined to <dfn aria-haspopup="true" id="reflect" role="button" tabindex="0">reflect</dfn> a + <h3 id="common-dom-interfaces"><span class="secno">2.6 </span>Common DOM interfaces</h3> + + <h4 id="reflecting-content-attributes-in-idl-attributes"><span class="secno">2.6.1 </span>Reflecting content attributes in IDL attributes</h4> + + <p>Some IDL attributes are defined to <dfn aria-haspopup="true" id="reflect" role="button" tabindex="0">reflect</dfn> a particular content attribute. This means that on getting, the IDL attribute returns the current value of the content attribute, and on setting, the IDL attribute changes the value of the content - attribute to the given value.<h4 id="collections-0"><span class="secno">2.6.2 </span>Collections</h4><p>The <code><a href="#htmlallcollection" id="htmlallcollection_0">HTMLAllCollection</a></code>, + attribute to the given value.</p> + + + + + + + + <h4 id="collections-0"><span class="secno">2.6.2 </span>Collections</h4> + + <p>The <code><a href="#htmlallcollection" id="htmlallcollection_0">HTMLAllCollection</a></code>, <code><a href="#htmlformcontrolscollection" id="htmlformcontrolscollection_0">HTMLFormControlsCollection</a></code>, <code><a href="#htmloptionscollection" id="htmloptionscollection_0">HTMLOptionsCollection</a></code>, interfaces are <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#collections" title='Read about this "collections" reference in the full HTML5 spec.'>collections</a> derived from the - <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#htmlcollection" title='Read about this "HTMLCollection" reference in the full HTML5 spec.'>HTMLCollection</a></code> interface.<h5 id="htmlallcollection-0"><span class="secno">2.6.2.1 </span>HTMLAllCollection</h5><p>The <code><a href="#htmlallcollection" id="htmlallcollection_1">HTMLAllCollection</a></code> interface represents a generic + <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#htmlcollection" title='Read about this "HTMLCollection" reference in the full HTML5 spec.'>HTMLCollection</a></code> interface.</p> + + + <h5 id="htmlallcollection-0"><span class="secno">2.6.2.1 </span>HTMLAllCollection</h5> + + <p>The <code><a href="#htmlallcollection" id="htmlallcollection_1">HTMLAllCollection</a></code> interface represents a generic <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#collections" title='Read about this "collection" reference in the full HTML5 spec.'>collection</a> of elements just like <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#htmlcollection" title='Read about this "HTMLCollection" reference in the full HTML5 spec.'>HTMLCollection</a></code>, with the exception that its <code title="dom-HTMLAllCollection-namedItem"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-dom-interfaces.html#dom-htmlallcollection-nameditem" title='Read about this "namedItem()" reference in the full HTML5 spec.'>namedItem()</a></code> method returns an <code><a href="#htmlallcollection" id="htmlallcollection_2">HTMLAllCollection</a></code> object when there are multiple matching elements, and that its <code title="dom-HTMLAllCollection-item">item()</code> method can be used as a synonym for its <code title="dom-HTMLAllCollection-namedItem"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-dom-interfaces.html#dom-htmlallcollection-nameditem" title='Read about this "namedItem()" reference in the full HTML5 spec.'>namedItem()</a></code> - method.<pre class="idl">interface <dfn aria-haspopup="true" id="htmlallcollection" role="button" tabindex="0">HTMLAllCollection</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#htmlcollection" title='Read about this "HTMLCollection" reference in the full HTML5 spec.'>HTMLCollection</a> { + method.</p> + + <pre class="idl">interface <dfn aria-haspopup="true" id="htmlallcollection" role="button" tabindex="0">HTMLAllCollection</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#htmlcollection" title='Read about this "HTMLCollection" reference in the full HTML5 spec.'>HTMLCollection</a> { // inherits <span title="dom-HTMLCollection-length">length</span> and <span title="dom-HTMLCollection-item">item</span>(unsigned long index) object? <a href="#dom-htmlallcollection-item-string" title="dom-HTMLAllCollection-item-string">item</a>(DOMString name); legacycaller getter object? <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-dom-interfaces.html#dom-htmlallcollection-nameditem" title='Read about this "namedItem" reference in the full HTML5 spec.'>namedItem</a>(DOMString name); // overrides inherited namedItem() <a href="#htmlallcollection" id="htmlallcollection_3">HTMLAllCollection</a> <a href="#dom-htmlallcollection-tags" title="dom-HTMLAllCollection-tags">tags</a>(DOMString tagName); -};</pre><dl class="domintro"><dt><var title="">collection</var> . <code id="dom-htmlcollection-length" title="dom-HTMLCollection-length">length</code></dt> +};</pre> + + <dl class="domintro"><dt><var title="">collection</var> . <code id="dom-htmlcollection-length" title="dom-HTMLCollection-length">length</code></dt> <dd> <p>Returns the number of elements in the collection.</p> </dd> @@ -404,16 +465,22 @@ <p>Returns a collection that is a filtered view of the current collection, containing only elements with the given tag name.</p> </dd> - </dl><h5 id="htmlformcontrolscollection-0"><span class="secno">2.6.2.2 </span>HTMLFormControlsCollection</h5><p>The <code><a href="#htmlformcontrolscollection" id="htmlformcontrolscollection_1">HTMLFormControlsCollection</a></code> interface represents + </dl><h5 id="htmlformcontrolscollection-0"><span class="secno">2.6.2.2 </span>HTMLFormControlsCollection</h5> + + <p>The <code><a href="#htmlformcontrolscollection" id="htmlformcontrolscollection_1">HTMLFormControlsCollection</a></code> interface represents a <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#collections" title='Read about this "collection" reference in the full HTML5 spec.'>collection</a> of <a href="forms.html#category-listed" id="category-listed_0" title="category-listed">listed elements</a> in <code><a href="the-form-element.html#the-form-element" id="form_7">form</a></code> - and <code><a href="the-fieldset-element.html#the-fieldset-element" id="fieldset_0">fieldset</a></code> elements.<pre class="idl">interface <dfn aria-haspopup="true" id="htmlformcontrolscollection" role="button" tabindex="0">HTMLFormControlsCollection</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#htmlcollection" title='Read about this "HTMLCollection" reference in the full HTML5 spec.'>HTMLCollection</a> { + and <code><a href="the-fieldset-element.html#the-fieldset-element" id="fieldset_0">fieldset</a></code> elements.</p> + + <pre class="idl">interface <dfn aria-haspopup="true" id="htmlformcontrolscollection" role="button" tabindex="0">HTMLFormControlsCollection</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#htmlcollection" title='Read about this "HTMLCollection" reference in the full HTML5 spec.'>HTMLCollection</a> { // inherits <span title="dom-HTMLCollection-length">length</span> and <span title="dom-HTMLCollection-item">item</span>() legacycaller getter object? <a href="#dom-htmlformcontrolscollection-nameditem" title="dom-HTMLFormControlsCollection-namedItem">namedItem</a>(DOMString name); // overrides inherited namedItem() }; interface <dfn aria-haspopup="true" id="radionodelist" role="button" tabindex="0">RadioNodeList</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#nodelist" title='Read about this "NodeList" reference in the full HTML5 spec.'>NodeList</a> { attribute DOMString <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-dom-interfaces.html#dom-radionodelist-value" title='Read about this "value" reference in the full HTML5 spec.'>value</a>; -};</pre><dl class="domintro"><dt><var title="">collection</var> . <code title="dom-HTMLCollection-length">length</code></dt> +};</pre> + + <dl class="domintro"><dt><var title="">collection</var> . <code title="dom-HTMLCollection-length">length</code></dt> <dd> <p>Returns the number of elements in the collection.</p> </dd> @@ -440,10 +507,14 @@ <p>Can be set, to check the first radio button with the given value represented by the object.</p> </dd> - </dl><h5 id="htmloptionscollection-0"><span class="secno">2.6.2.3 </span>HTMLOptionsCollection</h5><p>The <code><a href="#htmloptionscollection" id="htmloptionscollection_1">HTMLOptionsCollection</a></code> interface represents a + </dl><h5 id="htmloptionscollection-0"><span class="secno">2.6.2.3 </span>HTMLOptionsCollection</h5> + + <p>The <code><a href="#htmloptionscollection" id="htmloptionscollection_1">HTMLOptionsCollection</a></code> interface represents a list of <code><a href="the-option-element.html#the-option-element" id="option_1">option</a></code> elements. It is always rooted on a <code><a href="the-select-element.html#the-select-element" id="select_5">select</a></code> element and has attributes and methods that - manipulate that element's descendants.<pre class="idl">interface <dfn aria-haspopup="true" id="htmloptionscollection" role="button" tabindex="0">HTMLOptionsCollection</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#htmlcollection" title='Read about this "HTMLCollection" reference in the full HTML5 spec.'>HTMLCollection</a> { + manipulate that element's descendants.</p> + + <pre class="idl">interface <dfn aria-haspopup="true" id="htmloptionscollection" role="button" tabindex="0">HTMLOptionsCollection</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#htmlcollection" title='Read about this "HTMLCollection" reference in the full HTML5 spec.'>HTMLCollection</a> { // inherits <span title="dom-HTMLCollection-item">item</span>() attribute unsigned long <a href="#dom-htmloptionscollection-length" title="dom-HTMLOptionsCollection-length">length</a>; // overrides inherited length legacycaller getter object? <a href="#dom-htmloptionscollection-nameditem" title="dom-HTMLOptionsCollection-namedItem">namedItem</a>(DOMString name); // overrides inherited namedItem() @@ -451,7 +522,9 @@ void <a href="#dom-htmloptionscollection-add" title="dom-HTMLOptionsCollection-add">add</a>((<a href="the-option-element.html#htmloptionelement" id="htmloptionelement_1">HTMLOptionElement</a> or <a href="the-optgroup-element.html#htmloptgroupelement" id="htmloptgroupelement_0">HTMLOptGroupElement</a>) element, optional (<a href="elements.html#htmlelement" id="htmlelement_0">HTMLElement</a> or long)? before = null); void <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-dom-interfaces.html#dom-htmloptionscollection-remove" title='Read about this "remove" reference in the full HTML5 spec.'>remove</a>(long index); attribute long <a href="#dom-htmloptionscollection-selectedindex" title="dom-HTMLOptionsCollection-selectedIndex">selectedIndex</a>; -};</pre><dl class="domintro"><dt><var title="">collection</var> . <code id="dom-htmloptionscollection-length" title="dom-HTMLOptionsCollection-length"><a href="#dom-htmloptionscollection-length">length</a></code> [ = <var title="">value</var> ]</dt> +};</pre> + + <dl class="domintro"><dt><var title="">collection</var> . <code id="dom-htmloptionscollection-length" title="dom-HTMLOptionsCollection-length"><a href="#dom-htmloptionscollection-length">length</a></code> [ = <var title="">value</var> ]</dt> <dd> <p>Returns the number of elements in the collection.</p> <p>When set to a smaller number, truncates the number of <code><a href="the-option-element.html#the-option-element" id="option_2">option</a></code> elements in the corresponding container.</p> @@ -500,9 +573,15 @@ </dd> - </dl><h4 id="domstringmap-0"><span class="secno">2.6.3 </span>DOMStringMap</h4><p>The <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-dom-interfaces.html#domstringmap" title='Read about this "DOMStringMap" reference in the full HTML5 spec.'>DOMStringMap</a></code> interface represents a set of + </dl><h4 id="domstringmap-0"><span class="secno">2.6.3 </span>DOMStringMap</h4> + + <p>The <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-dom-interfaces.html#domstringmap" title='Read about this "DOMStringMap" reference in the full HTML5 spec.'>DOMStringMap</a></code> interface represents a set of name-value pairs. It exposes these using the scripting language's - native mechanisms for property access.<div class="example"> + native mechanisms for property access.</p> + + + + <div class="example"> <p>The <code title="dom-dataset"><a href="global-attributes.html#dom-dataset">dataset</a></code> attribute on elements exposes the <code title="attr-data-*"><a href="global-attributes.html#attr-data" id="data-*">data-*</a></code> @@ -533,15 +612,44 @@ } }</pre> - </div><h4 id="transferable-objects"><span class="secno">2.6.4 </span>Transferable objects</h4><p>Some objects support being copied and closed in one operation. + </div> + + + + + + <h4 id="transferable-objects"><span class="secno">2.6.4 </span>Transferable objects</h4> + + <p>Some objects support being copied and closed in one operation. This is called <i>transferring</i> the object, and is used in particular to transfer ownership of unsharable or expensive - resources across worker boundaries.<pre class="idl">[NoInterfaceObject] -interface <dfn aria-haspopup="true" id="transferable" role="button" tabindex="0">Transferable</dfn> { };</pre><p>The following <code><a href="#transferable" id="transferable_0">Transferable</a></code> types exist:<ul class="brief"><li><code>MessagePort</code> + resources across worker boundaries.</p> + + <pre class="idl">[NoInterfaceObject] +interface <dfn aria-haspopup="true" id="transferable" role="button" tabindex="0">Transferable</dfn> { };</pre> + + + + <p>The following <code><a href="#transferable" id="transferable_0">Transferable</a></code> types exist:</p> + + <ul class="brief"><li><code>MessagePort</code> - </ul><h4 id="dom-feature-strings"><span class="secno">2.6.5 </span>DOM feature strings</h4><p>DOM3 Core defines mechanisms for checking for interface support, + </ul><h4 id="dom-feature-strings"><span class="secno">2.6.5 </span>DOM feature strings</h4> + + <p>DOM3 Core defines mechanisms for checking for interface support, and for obtaining implementations of interfaces, using <a href="http://www.w3.org/TR/DOM-Level-3-Core/core.html#DOMFeatures">feature - strings</a>. <a href="references.html#refsDOMCORE">[DOMCORE]</a><p>Authors are strongly discouraged from using these, as they are + strings</a>. <a href="references.html#refsDOMCORE">[DOMCORE]</a></p> + + <p>Authors are strongly discouraged from using these, as they are notoriously unreliable and imprecise. Authors are encouraged to rely on explicit feature testing or the graceful degradation behavior - intrinsic to some of the features in this specification. \ No newline at end of file + intrinsic to some of the features in this specification.</p> + + + + + + + + + \ No newline at end of file Index: the-strong-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-strong-element.html,v retrieving revision 1.117 retrieving revision 1.118 diff -u -d -r1.117 -r1.118 --- the-strong-element.html 21 Feb 2012 21:59:08 -0000 1.117 +++ the-strong-element.html 13 Mar 2012 19:59:01 -0000 1.118 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-em-element.html">← 4.6.2 The em element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-small-element.html">4.6.4 The small element →</a> </div> - <h4 id="the-strong-element"><span class="secno">4.6.3 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>strong</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_34" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-strong-element"><span class="secno">4.6.3 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>strong</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_34" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_73">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_34">Phrasing content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_19">Palpable content</a>.</dd> @@ -363,12 +403,18 @@ <dt><a href="element-definitions.html#element-dfn-dom" id="element-dfn-dom_34" title="element-dfn-dom">DOM interface</a>:</dt> <dd>Uses <code><a href="elements.html#htmlelement" id="htmlelement_39">HTMLElement</a></code>.</dd> </dl><p>The <code><a href="#the-strong-element" id="strong_4">strong</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> strong - importance for its contents.<p>The relative level of importance of a piece of content is given + importance for its contents.</p> + + <p>The relative level of importance of a piece of content is given by its number of ancestor <code><a href="#the-strong-element" id="strong_5">strong</a></code> elements; each <code><a href="#the-strong-element" id="strong_6">strong</a></code> element increases the importance of its - contents.<p>Changing the importance of a piece of text with the + contents.</p> + + <p>Changing the importance of a piece of text with the <code><a href="#the-strong-element" id="strong_7">strong</a></code> element does not change the meaning of the - sentence.<div class="example"> + sentence.</p> + + <div class="example"> <p>Here is an example of a warning notice in a game, with the various parts marked up according to how important they are:</p> @@ -377,4 +423,7 @@ <strong><strong>Do not take any of the diamonds</strong>, they are explosive and <strong>will destroy anything within ten meters.</strong></strong> You have been warned.</p></pre> - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: attributes-common-to-form-controls.html =================================================================== RCS file: /sources/public/html5/spec-author-view/attributes-common-to-form-controls.html,v retrieving revision 1.35 retrieving revision 1.36 diff -u -d -r1.35 -r1.36 --- attributes-common-to-form-controls.html 15 Feb 2012 10:14:00 -0000 1.35 +++ attributes-common-to-form-controls.html 13 Mar 2012 19:58:35 -0000 1.36 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,18 +380,28 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="association-of-controls-and-forms.html">← 4.10.18 Association of controls and forms</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="textFieldSelection.html">4.10.20 APIs for the text field selections →</a> <ol class="toc"><li><ol><li><ol><li><a href="attributes-common-to-form-controls.html#attributes-common-to-form-controls" id="4.10.19-attributes-common-to-form-controls"><span class="secno">4.10.19 </span>Attributes common to form controls</a> <ol><li><a href="attributes-common-to-form-controls.html#naming-form-controls"><span class="secno">4.10.19.1 </span>Naming form controls</a><li><a href="attributes-common-to-form-controls.html#enabling-and-disabling-form-controls"><span class="secno">4.10.19.2 </span>Enabling and disabling form controls</a><li><a href="attributes-common-to-form-controls.html#autofocusing-a-form-control"><span class="secno">4.10.19.3 </span>Autofocusing a form control</a><li><a href="attributes-common-to-form-controls.html#limiting-user-input-length"><span class="secno">4.10.19.4 </span>Limiting user input length</a><li><a href="attributes-common-to-form-controls.html#form-submission-0"><span class="secno">4.10.19.5 </span>Form submission</a><li><a href="attributes-common-to-form-controls.html#submitting-element-directionality"><span class="secno">4.10.19.6 </span>Submitting element directionality</a></ol></ol></ol></ol></div> - <h4 id="attributes-common-to-form-controls"><span class="secno">4.10.19 </span><dfn aria-haspopup="true" role="button" tabindex="0">Attributes common to form controls</dfn></h4><h5 id="naming-form-controls"><span class="secno">4.10.19.1 </span>Naming form controls</h5><p>The <dfn aria-haspopup="true" id="attr-fe-name" role="button" tabindex="0"><code>name</code></dfn> content + <h4 id="attributes-common-to-form-controls"><span class="secno">4.10.19 </span><dfn aria-haspopup="true" role="button" tabindex="0">Attributes common to form controls</dfn></h4> + + <h5 id="naming-form-controls"><span class="secno">4.10.19.1 </span>Naming form controls</h5> + + <p>The <dfn aria-haspopup="true" id="attr-fe-name" role="button" tabindex="0"><code>name</code></dfn> content attribute gives the name of the form control, as used in <a href="form-submission.html#form-submission" id="form-submission_0">form submission</a> and in the <code><a href="the-form-element.html#the-form-element" id="form_28">form</a></code> element's <code title="dom-form-elements"><a href="the-form-element.html#dom-form-elements">elements</a></code> object. If the attribute - is specified, its value must not be the empty string.<p>Any non-empty value for <code title="attr-form-name"><a href="the-form-element.html#attr-form-name" id="name_21">name</a></code> - is allowed, but the names "<code title="attr-fe-name-charset"><a href="#attr-fe-name-charset" id="_charset__0">_charset_</a></code>" and "<code title="attr-fe-name-isindex"><a href="#attr-fe-name-isindex" id="isindex">isindex</a></code>" are special:<dl><dt><dfn aria-haspopup="true" id="attr-fe-name-isindex" role="button" tabindex="0"><code>isindex</code></dfn></dt> + is specified, its value must not be the empty string.</p> + + <p>Any non-empty value for <code title="attr-form-name"><a href="the-form-element.html#attr-form-name" id="name_21">name</a></code> + is allowed, but the names "<code title="attr-fe-name-charset"><a href="#attr-fe-name-charset" id="_charset__0">_charset_</a></code>" and "<code title="attr-fe-name-isindex"><a href="#attr-fe-name-isindex" id="isindex">isindex</a></code>" are special:</p> + + <dl><dt><dfn aria-haspopup="true" id="attr-fe-name-isindex" role="button" tabindex="0"><code>isindex</code></dfn></dt> <dd> <p>This value, if used as the name of a <a href="states-of-the-type-attribute.html#text-type-text-state-and-search-state-type-search" id="attr-input-type-text_6" title="attr-input-type-text">Text</a> control that is the first control in a form that is submitted using the <code title="attr-fs-enctype-urlencoded"><a href="#attr-fs-enctype-urlencoded" id="application/x-www-form-urlencoded_0">application/x-www-form-urlencoded</a></code> @@ -372,33 +418,67 @@ </dl><p>The <dfn aria-haspopup="true" id="dom-fe-name" role="button" tabindex="0"><code>name</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_85">reflect</a> the <code title="attr-fe-name"><a href="#attr-fe-name" id="name_47">name</a></code> content attribute.</p> -<h5 id="enabling-and-disabling-form-controls"><span class="secno">4.10.19.2 </span>Enabling and disabling form controls</h5><p>The <dfn aria-haspopup="true" id="attr-fe-disabled" role="button" tabindex="0"><code>disabled</code></dfn> - content attribute is a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_21">boolean attribute</a>.<p>A form control is <dfn aria-haspopup="true" id="concept-fe-disabled" role="button" tabindex="0">disabled</dfn> + + + + <h5 id="enabling-and-disabling-form-controls"><span class="secno">4.10.19.2 </span>Enabling and disabling form controls</h5> + + <p>The <dfn aria-haspopup="true" id="attr-fe-disabled" role="button" tabindex="0"><code>disabled</code></dfn> + content attribute is a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_21">boolean attribute</a>.</p> + + <p>A form control is <dfn aria-haspopup="true" id="concept-fe-disabled" role="button" tabindex="0">disabled</dfn> if its <code title="attr-fe-disabled"><a href="#attr-fe-disabled" id="disabled_21">disabled</a></code> attribute is set, or if it is a descendant of a <code><a href="the-fieldset-element.html#the-fieldset-element" id="fieldset_21">fieldset</a></code> element whose <code title="attr-fieldset-disabled"><a href="the-fieldset-element.html#attr-fieldset-disabled" id="disabled_1">disabled</a></code> attribute is set and is <em>not</em> a descendant of that <code><a href="the-fieldset-element.html#the-fieldset-element" id="fieldset_22">fieldset</a></code> element's first <code><a href="the-legend-element.html#the-legend-element" id="legend_5">legend</a></code> element child, if any.</p> + + <p>The <dfn aria-haspopup="true" id="dom-fe-disabled" role="button" tabindex="0"><code>disabled</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_86">reflect</a> the <code title="attr-fe-disabled"><a href="#attr-fe-disabled" id="disabled_22">disabled</a></code> content attribute.</p> -<h5 id="autofocusing-a-form-control"><span class="secno">4.10.19.3 </span>Autofocusing a form control</h5><p>The <dfn aria-haspopup="true" id="attr-fe-autofocus" role="button" tabindex="0"><code>autofocus</code></dfn> + + + + + + + <h5 id="autofocusing-a-form-control"><span class="secno">4.10.19.3 </span>Autofocusing a form control</h5> + + + + <p>The <dfn aria-haspopup="true" id="attr-fe-autofocus" role="button" tabindex="0"><code>autofocus</code></dfn> content attribute allows the author to indicate that a control is to be focused as soon as the page is loaded, allowing the user to just - start typing without having to manually focus the main control.<p>The <code title="attr-fe-autofocus"><a href="#attr-fe-autofocus" id="autofocus_9">autofocus</a></code> attribute is - a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_22">boolean attribute</a>.<p>There must not be more than one element in the document with the + start typing without having to manually focus the main control.</p> + + <p>The <code title="attr-fe-autofocus"><a href="#attr-fe-autofocus" id="autofocus_9">autofocus</a></code> attribute is + a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_22">boolean attribute</a>.</p> + + <p>There must not be more than one element in the document with the <code title="attr-fe-autofocus"><a href="#attr-fe-autofocus" id="autofocus_10">autofocus</a></code> attribute specified.</p> + + <p>The <dfn aria-haspopup="true" id="dom-fe-autofocus" role="button" tabindex="0"><code>autofocus</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_87">reflect</a> the content attribute of the same name.</p> -<div class="example"> + + + <div class="example"> <p>In the following snippet, the text control would be focused when the document was loaded.</p> <pre><input maxlength="256" name="q" value="" autofocus> <input type="submit" value="Search"></pre> - </div><h5 id="limiting-user-input-length"><span class="secno">4.10.19.4 </span>Limiting user input length</h5><p>A <dfn aria-haspopup="true" id="attr-fe-maxlength" role="button" tabindex="0">form control <code title="">maxlength</code> attribute</dfn>, controlled by a <var title="">dirty value flag</var>, declares a limit on the number of - characters a user can input.<p>If an element has its <a href="#attr-fe-maxlength" id="attr-fe-maxlength_2" title="attr-fe-maxlength">form + </div> + + + <h5 id="limiting-user-input-length"><span class="secno">4.10.19.4 </span>Limiting user input length</h5> + + <p>A <dfn aria-haspopup="true" id="attr-fe-maxlength" role="button" tabindex="0">form control <code title="">maxlength</code> attribute</dfn>, controlled by a <var title="">dirty value flag</var>, declares a limit on the number of + characters a user can input.</p> + + <p>If an element has its <a href="#attr-fe-maxlength" id="attr-fe-maxlength_2" title="attr-fe-maxlength">form control <code title="">maxlength</code> attribute</a> specified, the attribute's value must be a <a href="common-microsyntaxes.html#valid-non-negative-integer" id="valid-non-negative-integer_14">valid non-negative integer</a>. If the attribute is specified and applying the @@ -406,7 +486,15 @@ results in a number, then that number is the element's <dfn aria-haspopup="true" id="maximum-allowed-value-length" role="button" tabindex="0">maximum allowed value length</dfn>. If the attribute is omitted or parsing its value results in an error, then there is no <a href="#maximum-allowed-value-length" id="maximum-allowed-value-length_4">maximum - allowed value length</a>.<h5 id="form-submission-0"><span class="secno">4.10.19.5 </span>Form submission</h5><p><dfn aria-haspopup="true" id="attributes-for-form-submission" role="button" tabindex="0">Attributes for form submission</dfn> can be specified both + allowed value length</a>.</p> + + + + + + <h5 id="form-submission-0"><span class="secno">4.10.19.5 </span>Form submission</h5> + + <p><dfn aria-haspopup="true" id="attributes-for-form-submission" role="button" tabindex="0">Attributes for form submission</dfn> can be specified both on <code><a href="the-form-element.html#the-form-element" id="form_29">form</a></code> elements and on <a href="forms.html#concept-submit-button" id="concept-submit-button_3" title="concept-submit-button">submit buttons</a> (elements that represent buttons that submit forms, e.g. an <code><a href="the-input-element.html#the-input-element" id="input_124">input</a></code> element whose <code title="attr-input-type"><a href="the-input-element.html#attr-input-type" id="type_77">type</a></code> attribute is @@ -414,23 +502,33 @@ state). <p>The <a href="#attributes-for-form-submission" id="attributes-for-form-submission_4">attributes for form submission</a> that may be - specified on <code><a href="the-form-element.html#the-form-element" id="form_30">form</a></code> elements are <code title="attr-fs-action"><a href="#attr-fs-action" id="action_2">action</a></code>, <code title="attr-fs-enctype"><a href="#attr-fs-enctype" id="enctype_2">enctype</a></code>, <code title="attr-fs-method"><a href="#attr-fs-method" id="method_2">method</a></code>, <code title="attr-fs-novalidate"><a href="#attr-fs-novalidate" id="novalidate_1">novalidate</a></code>, and <code title="attr-fs-target"><a href="#attr-fs-target" id="target_8">target</a></code>.<p>The corresponding <a href="#attributes-for-form-submission" id="attributes-for-form-submission_5">attributes for form submission</a> + specified on <code><a href="the-form-element.html#the-form-element" id="form_30">form</a></code> elements are <code title="attr-fs-action"><a href="#attr-fs-action" id="action_2">action</a></code>, <code title="attr-fs-enctype"><a href="#attr-fs-enctype" id="enctype_2">enctype</a></code>, <code title="attr-fs-method"><a href="#attr-fs-method" id="method_2">method</a></code>, <code title="attr-fs-novalidate"><a href="#attr-fs-novalidate" id="novalidate_1">novalidate</a></code>, and <code title="attr-fs-target"><a href="#attr-fs-target" id="target_8">target</a></code>.</p> + + <p>The corresponding <a href="#attributes-for-form-submission" id="attributes-for-form-submission_5">attributes for form submission</a> that may be specified on <a href="forms.html#concept-submit-button" id="concept-submit-button_4" title="concept-submit-button">submit buttons</a> are <code title="attr-fs-formaction"><a href="#attr-fs-formaction" id="formaction_29">formaction</a></code>, <code title="attr-fs-formenctype"><a href="#attr-fs-formenctype" id="formenctype_29">formenctype</a></code>, <code title="attr-fs-formmethod"><a href="#attr-fs-formmethod" id="formmethod_29">formmethod</a></code>, <code title="attr-fs-formnovalidate"><a href="#attr-fs-formnovalidate" id="formnovalidate_31">formnovalidate</a></code>, and <code title="attr-fs-formtarget"><a href="#attr-fs-formtarget" id="formtarget_29">formtarget</a></code>. When omitted, they default to the values given on the corresponding attributes on the - <code><a href="the-form-element.html#the-form-element" id="form_31">form</a></code> element.<hr><p>The <dfn aria-haspopup="true" id="attr-fs-action" role="button" tabindex="0"><code>action</code></dfn> and + <code><a href="the-form-element.html#the-form-element" id="form_31">form</a></code> element.</p> + + <hr><p>The <dfn aria-haspopup="true" id="attr-fs-action" role="button" tabindex="0"><code>action</code></dfn> and <dfn aria-haspopup="true" id="attr-fs-formaction" role="button" tabindex="0"><code>formaction</code></dfn> content attributes, if specified, must have a value that is a <a href="urls.html#valid-non-empty-url-potentially-surrounded-by-spaces" id="valid-non-empty-url-potentially-surrounded-by-spaces_12">valid non-empty URL potentially surrounded by - spaces</a>.<p>The <dfn aria-haspopup="true" id="concept-fs-action" role="button" tabindex="0">action</dfn> of an element is + spaces</a>.</p> + + <p>The <dfn aria-haspopup="true" id="concept-fs-action" role="button" tabindex="0">action</dfn> of an element is the value of the element's <code title="attr-fs-formaction"><a href="#attr-fs-formaction" id="formaction_30">formaction</a></code> attribute, if the element is a <a href="forms.html#concept-submit-button" id="concept-submit-button_5" title="concept-submit-button">submit button</a> and has such an attribute, or the value of its <a href="association-of-controls-and-forms.html#form-owner" id="form-owner_15">form owner</a>'s <code title="attr-fs-action"><a href="#attr-fs-action" id="action_3">action</a></code> - attribute, if <em>it</em> has one, or else the empty string.<hr><p>The <dfn aria-haspopup="true" id="attr-fs-method" role="button" tabindex="0"><code>method</code></dfn> and + attribute, if <em>it</em> has one, or else the empty string.</p> + + <hr><p>The <dfn aria-haspopup="true" id="attr-fs-method" role="button" tabindex="0"><code>method</code></dfn> and <dfn aria-haspopup="true" id="attr-fs-formmethod" role="button" tabindex="0"><code>formmethod</code></dfn> content attributes are <a href="common-microsyntaxes.html#enumerated-attribute" id="enumerated-attribute_14" title="enumerated attribute">enumerated - attributes</a> with the following keywords and states:<ul><li>The keyword <dfn aria-haspopup="true" id="attr-fs-method-get-keyword" role="button" tabindex="0"><code>get</code></dfn>, mapping + attributes</a> with the following keywords and states:</p> + + <ul><li>The keyword <dfn aria-haspopup="true" id="attr-fs-method-get-keyword" role="button" tabindex="0"><code>get</code></dfn>, mapping to the state <dfn aria-haspopup="true" id="attr-fs-method-get" role="button" tabindex="0">GET</dfn>, indicating the HTTP GET method.</li> @@ -439,26 +537,38 @@ the HTTP POST method.</li> </ul><p>The <i>missing value default</i> for these attributes is the - <a href="#attr-fs-method-get" id="attr-fs-method-get_0" title="attr-fs-method-GET">GET</a> state.<p>The <dfn aria-haspopup="true" id="concept-fs-method" role="button" tabindex="0">method</dfn> of an element is + <a href="#attr-fs-method-get" id="attr-fs-method-get_0" title="attr-fs-method-GET">GET</a> state.</p> + + <p>The <dfn aria-haspopup="true" id="concept-fs-method" role="button" tabindex="0">method</dfn> of an element is one of those states. If the element is a <a href="forms.html#concept-submit-button" id="concept-submit-button_6" title="concept-submit-button">submit button</a> and has a <code title="attr-fs-formmethod"><a href="#attr-fs-formmethod" id="formmethod_30">formmethod</a></code> attribute, then the element's <a href="#concept-fs-method" id="concept-fs-method_0" title="concept-fs-method">method</a> is that attribute's state; otherwise, it is the <a href="association-of-controls-and-forms.html#form-owner" id="form-owner_16">form owner</a>'s - <code title="attr-fs-method"><a href="#attr-fs-method" id="method_3">method</a></code> attribute's state.<hr><p>The <dfn aria-haspopup="true" id="attr-fs-enctype" role="button" tabindex="0"><code>enctype</code></dfn> and + <code title="attr-fs-method"><a href="#attr-fs-method" id="method_3">method</a></code> attribute's state.</p> + + <hr><p>The <dfn aria-haspopup="true" id="attr-fs-enctype" role="button" tabindex="0"><code>enctype</code></dfn> and <dfn aria-haspopup="true" id="attr-fs-formenctype" role="button" tabindex="0"><code>formenctype</code></dfn> content attributes are <a href="common-microsyntaxes.html#enumerated-attribute" id="enumerated-attribute_15" title="enumerated attribute">enumerated - attributes</a> with the following keywords and states:<ul><li>The "<dfn aria-haspopup="true" id="attr-fs-enctype-urlencoded" role="button" tabindex="0"><code>application/x-www-form-urlencoded</code></dfn>" keyword and corresponding state.</li> + attributes</a> with the following keywords and states:</p> + + <ul><li>The "<dfn aria-haspopup="true" id="attr-fs-enctype-urlencoded" role="button" tabindex="0"><code>application/x-www-form-urlencoded</code></dfn>" keyword and corresponding state.</li> <li>The "<dfn aria-haspopup="true" id="attr-fs-enctype-formdata" role="button" tabindex="0"><code>multipart/form-data</code></dfn>" keyword and corresponding state.</li> <li>The "<dfn aria-haspopup="true" id="attr-fs-enctype-text" role="button" tabindex="0"><code>text/plain</code></dfn>" keyword and corresponding state.</li> </ul><p>The <i>missing value default</i> for these attributes is the <code title="attr-fs-enctype-urlencoded"><a href="#attr-fs-enctype-urlencoded" id="application/x-www-form-urlencoded_1">application/x-www-form-urlencoded</a></code> - state.<p>The <dfn aria-haspopup="true" id="concept-fs-enctype" role="button" tabindex="0">enctype</dfn> of an element + state.</p> + + <p>The <dfn aria-haspopup="true" id="concept-fs-enctype" role="button" tabindex="0">enctype</dfn> of an element is one of those three states. If the element is a <a href="forms.html#concept-submit-button" id="concept-submit-button_7" title="concept-submit-button">submit button</a> and has a <code title="attr-fs-formenctype"><a href="#attr-fs-formenctype" id="formenctype_30">formenctype</a></code> attribute, then the element's <a href="#concept-fs-enctype" id="concept-fs-enctype_0" title="concept-fs-enctype">enctype</a> is that attribute's state; otherwise, it is the <a href="association-of-controls-and-forms.html#form-owner" id="form-owner_17">form owner</a>'s - <code title="attr-fs-enctype"><a href="#attr-fs-enctype" id="enctype_3">enctype</a></code> attribute's state.<hr><p>The <dfn aria-haspopup="true" id="attr-fs-target" role="button" tabindex="0"><code>target</code></dfn> and + <code title="attr-fs-enctype"><a href="#attr-fs-enctype" id="enctype_3">enctype</a></code> attribute's state.</p> + + <hr><p>The <dfn aria-haspopup="true" id="attr-fs-target" role="button" tabindex="0"><code>target</code></dfn> and <dfn aria-haspopup="true" id="attr-fs-formtarget" role="button" tabindex="0"><code>formtarget</code></dfn> content attributes, if specified, must have values that are <a href="browsers.html#valid-browsing-context-name-or-keyword" id="valid-browsing-context-name-or-keyword_1" title="valid browsing context name or keyword">valid browsing - context names or keywords</a>.<p>The <dfn aria-haspopup="true" id="concept-fs-target" role="button" tabindex="0">target</dfn> of an element is + context names or keywords</a>.</p> + + <p>The <dfn aria-haspopup="true" id="concept-fs-target" role="button" tabindex="0">target</dfn> of an element is the value of the element's <code title="attr-fs-formtarget"><a href="#attr-fs-formtarget" id="formtarget_30">formtarget</a></code> attribute, if the element is a <a href="forms.html#concept-submit-button" id="concept-submit-button_8" title="concept-submit-button">submit button</a> and has such an attribute; or the value of its @@ -468,15 +578,21 @@ <code title="attr-base-target"><a href="the-base-element.html#attr-base-target" id="target_3">target</a></code> attribute, then the value of the <code title="attr-base-target"><a href="the-base-element.html#attr-base-target" id="target_4">target</a></code> attribute of the first such <code><a href="the-base-element.html#the-base-element" id="base_14">base</a></code> element; or, if there is no such - element, the empty string.<hr><p>The <dfn aria-haspopup="true" id="attr-fs-novalidate" role="button" tabindex="0"><code>novalidate</code></dfn> + element, the empty string.</p> + + <hr><p>The <dfn aria-haspopup="true" id="attr-fs-novalidate" role="button" tabindex="0"><code>novalidate</code></dfn> and <dfn aria-haspopup="true" id="attr-fs-formnovalidate" role="button" tabindex="0"><code>formnovalidate</code></dfn> content attributes are <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_23" title="boolean attribute">boolean attributes</a>. If present, they indicate that the form is not to - be validated during submission.<p>The <dfn aria-haspopup="true" id="concept-fs-novalidate" role="button" tabindex="0">no-validate state</dfn> of + be validated during submission.</p> + + <p>The <dfn aria-haspopup="true" id="concept-fs-novalidate" role="button" tabindex="0">no-validate state</dfn> of an element is true if the element is a <a href="forms.html#concept-submit-button" id="concept-submit-button_9" title="concept-submit-button">submit button</a> and the element's <code title="attr-fs-formnovalidate"><a href="#attr-fs-formnovalidate" id="formnovalidate_32">formnovalidate</a></code> attribute is present, or if the element's <a href="association-of-controls-and-forms.html#form-owner" id="form-owner_19">form owner</a>'s <code title="attr-fs-novalidate"><a href="#attr-fs-novalidate" id="novalidate_2">novalidate</a></code> attribute is present, - and false otherwise.<div class="example"> + and false otherwise.</p> + + <div class="example"> <p>This attribute is useful to include "save" buttons on forms that have validation constraints, to allow users to save their progress @@ -496,6 +612,8 @@ </form></pre> </div> + + <p>The <dfn aria-haspopup="true" id="dom-fs-action" role="button" tabindex="0"><code>action</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_88">reflect</a> the content attribute of the same name, except that on getting, when the content attribute is @@ -522,9 +640,18 @@ attribute must reflect the <code title="attr-fs-formtarget"><a href="#attr-fs-formtarget" id="formtarget_31">formtarget</a></code> content attribute. </p> -<h5 id="submitting-element-directionality"><span class="secno">4.10.19.6 </span>Submitting element directionality</h5><p>A <dfn aria-haspopup="true" id="form-control-dirname-attribute" role="button" tabindex="0">form control <code title="">dirname</code> attribute</dfn> + + + + <h5 id="submitting-element-directionality"><span class="secno">4.10.19.6 </span>Submitting element directionality</h5> + + <p>A <dfn aria-haspopup="true" id="form-control-dirname-attribute" role="button" tabindex="0">form control <code title="">dirname</code> attribute</dfn> on a form control element enables the submission of <a href="global-attributes.html#the-directionality" id="the-directionality_12">the directionality</a> of the element, and gives the name of the field that contains this value during <a href="form-submission.html#form-submission" id="form-submission_1">form submission</a>. If such an attribute is specified, its value must not be the empty - string. \ No newline at end of file + string.</p> + + + + \ No newline at end of file Index: the-form-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-form-element.html,v retrieving revision 1.155 retrieving revision 1.156 diff -u -d -r1.155 -r1.156 --- the-form-element.html 21 Feb 2012 21:59:04 -0000 1.155 +++ the-form-element.html 13 Mar 2012 19:58:57 -0000 1.156 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="forms.html">← 4.10 Forms</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-fieldset-element.html">4.10.4 The fieldset element →</a> </div> - <h4 id="the-form-element"><span class="secno">4.10.3 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>form</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_83" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-form-element"><span class="secno">4.10.3 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>form</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_83" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_122">Flow content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_50">Palpable content</a>.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_83" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> @@ -394,18 +434,24 @@ </dl><p>The <code><a href="#the-form-element" id="form_17">form</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a collection of <a href="forms.html#form-associated-element" id="form-associated-element_3" title="form-associated element">form-associated elements</a>, some of which can represent editable values that - can be submitted to a server for processing.<p>The <dfn aria-haspopup="true" id="attr-form-accept-charset" role="button" tabindex="0"><code>accept-charset</code></dfn> + can be submitted to a server for processing.</p> + + <p>The <dfn aria-haspopup="true" id="attr-form-accept-charset" role="button" tabindex="0"><code>accept-charset</code></dfn> attribute gives the character encodings that are to be used for the submission. If specified, the value must be an <a href="common-microsyntaxes.html#ordered-set-of-unique-space-separated-tokens" id="ordered-set-of-unique-space-separated-tokens_0">ordered set of unique space-separated tokens</a> that are <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_12">ASCII case-insensitive</a>, and each token must be an <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_13">ASCII case-insensitive</a> match for the <a href="infrastructure.html#preferred-mime-name" id="preferred-mime-name_2">preferred MIME name</a> of an <a href="infrastructure.html#ascii-compatible-character-encoding" id="ascii-compatible-character-encoding_2">ASCII-compatible character encoding</a>. - <a href="references.html#refsIANACHARSET">[IANACHARSET]</a><p>The <dfn aria-haspopup="true" id="attr-form-name" role="button" tabindex="0"><code>name</code></dfn> attribute + <a href="references.html#refsIANACHARSET">[IANACHARSET]</a></p> + + <p>The <dfn aria-haspopup="true" id="attr-form-name" role="button" tabindex="0"><code>name</code></dfn> attribute represents the <code><a href="#the-form-element" id="form_18">form</a></code>'s name within the <code title="dom-document-forms"><a href="dom.html#dom-document-forms">forms</a></code> collection. The value must not be the empty string, and the value must be unique amongst the <code><a href="#the-form-element" id="form_19">form</a></code> elements in the <code title="dom-document-forms"><a href="dom.html#dom-document-forms">forms</a></code> collection that it is in, if - any.<p>The <dfn aria-haspopup="true" id="attr-form-autocomplete" role="button" tabindex="0"><code>autocomplete</code></dfn> + any.</p> + + <p>The <dfn aria-haspopup="true" id="attr-form-autocomplete" role="button" tabindex="0"><code>autocomplete</code></dfn> attribute is an <a href="common-microsyntaxes.html#enumerated-attribute" id="enumerated-attribute_8">enumerated attribute</a>. The attribute has two states. The <code title="attr-form-autocomplete-on">on</code> keyword maps to the <dfn aria-haspopup="true" id="attr-form-autocomplete-on-state" role="button" tabindex="0">on</dfn> state, and the @@ -416,8 +462,13 @@ that by default, <code><a href="the-input-element.html#the-input-element" id="input_59">input</a></code> elements in the form will have their <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-input-element-attributes.html#resulting-autocompletion-state" title='Read about this "resulting autocompletion state" reference in the full HTML5 spec.'>resulting autocompletion state</a> set to <i title="">off</i>; the <a href="#attr-form-autocomplete-on-state" id="attr-form-autocomplete-on-state_1" title="attr-form-autocomplete-on-state">on</a> state indicates that by default, <code><a href="the-input-element.html#the-input-element" id="input_60">input</a></code> elements in the form will have - their <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-input-element-attributes.html#resulting-autocompletion-state" title='Read about this "resulting autocompletion state" reference in the full HTML5 spec.'>resulting autocompletion state</a> set to <i title="">on</i>.<p>The <code title="attr-fs-action"><a href="attributes-common-to-form-controls.html#attr-fs-action" id="action_1">action</a></code>, <code title="attr-fs-enctype"><a href="attributes-common-to-form-controls.html#attr-fs-enctype" id="enctype_1">enctype</a></code>, <code title="attr-fs-method"><a href="attributes-common-to-form-controls.html#attr-fs-method" id="method_1">method</a></code>, <code title="attr-fs-novalidate"><a href="attributes-common-to-form-controls.html#attr-fs-novalidate" id="novalidate_0">novalidate</a></code>, and <code title="attr-fs-target"><a href="attributes-common-to-form-controls.html#attr-fs-target" id="target_7">target</a></code> attributes are <a href="attributes-common-to-form-controls.html#atributes-for-form-submission" id="attributes-for-form-submission_0">attributes - for form submission</a>.<dl class="domintro"><dt><var title="">form</var> . <code id="dom-form-elements" title="dom-form-elements"><a href="#dom-form-elements">elements</a></code></dt> + their <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-input-element-attributes.html#resulting-autocompletion-state" title='Read about this "resulting autocompletion state" reference in the full HTML5 spec.'>resulting autocompletion state</a> set to <i title="">on</i>.</p> + + <p>The <code title="attr-fs-action"><a href="attributes-common-to-form-controls.html#attr-fs-action" id="action_1">action</a></code>, <code title="attr-fs-enctype"><a href="attributes-common-to-form-controls.html#attr-fs-enctype" id="enctype_1">enctype</a></code>, <code title="attr-fs-method"><a href="attributes-common-to-form-controls.html#attr-fs-method" id="method_1">method</a></code>, <code title="attr-fs-novalidate"><a href="attributes-common-to-form-controls.html#attr-fs-novalidate" id="novalidate_0">novalidate</a></code>, and <code title="attr-fs-target"><a href="attributes-common-to-form-controls.html#attr-fs-target" id="target_7">target</a></code> attributes are <a href="attributes-common-to-form-controls.html#attributes-for-form-submission" id="attributes-for-form-submission_0">attributes + for form submission</a>.</p> + + + <dl class="domintro"><dt><var title="">form</var> . <code id="dom-form-elements" title="dom-form-elements"><a href="#dom-form-elements">elements</a></code></dt> <dd> @@ -503,7 +554,10 @@ <p>The <dfn aria-haspopup="true" id="dom-form-acceptcharset" role="button" tabindex="0"><code>acceptCharset</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_60">reflect</a> the <code title="attr-form-accept-charset"><a href="#attr-form-accept-charset" id="accept-charset_0">accept-charset</a></code> content attribute.</p> -<div class="example"> + + + + <div class="example"> <p>This example shows two search forms:</p> @@ -514,4 +568,9 @@ <label>Bing: <input type="search" name="q"></label> <input type="submit" value="Search..."> </form></pre> - </div> \ No newline at end of file + </div> + + + + + \ No newline at end of file Index: the-li-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-li-element.html,v retrieving revision 1.122 retrieving revision 1.123 diff -u -d -r1.122 -r1.123 --- the-li-element.html 21 Feb 2012 21:59:06 -0000 1.122 +++ the-li-element.html 13 Mar 2012 19:58:59 -0000 1.123 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-ul-element.html">← 4.5.6 The ul element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-dl-element.html">4.5.8 The dl element →</a> </div> - <h4 id="the-li-element"><span class="secno">4.5.7 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>li</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_25" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-li-element"><span class="secno">4.5.7 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>li</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_25" title="element-dfn-categories">Categories</a>:</dt> <dd>None.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_25" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>Inside <code><a href="the-ol-element.html#the-ol-element" id="ol_12">ol</a></code> elements.</dd> @@ -372,13 +412,21 @@ or <code><a href="the-menu-element.html#the-menu-element" id="menu_10">menu</a></code> element, then the element is an item of the parent element's list, as defined for those elements. Otherwise, the list item has no defined list-related relationship to any other - <code><a href="#the-li-element" id="li_12">li</a></code> element.<p>If the parent element is an <code><a href="the-ol-element.html#the-ol-element" id="ol_15">ol</a></code> element, then the - <code><a href="#the-li-element" id="li_13">li</a></code> element has an <dfn aria-haspopup="true" id="ordinal-value" role="button" tabindex="0">ordinal value</dfn>.<p>The <dfn aria-haspopup="true" id="attr-li-value" role="button" tabindex="0"><code>value</code></dfn> + <code><a href="#the-li-element" id="li_12">li</a></code> element.</p> + + <p>If the parent element is an <code><a href="the-ol-element.html#the-ol-element" id="ol_15">ol</a></code> element, then the + <code><a href="#the-li-element" id="li_13">li</a></code> element has an <dfn aria-haspopup="true" id="ordinal-value" role="button" tabindex="0">ordinal value</dfn>.</p> + + <p>The <dfn aria-haspopup="true" id="attr-li-value" role="button" tabindex="0"><code>value</code></dfn> attribute, if present, must be a <a href="common-microsyntaxes.html#valid-integer" id="valid-integer_6">valid integer</a> giving the <a href="#ordinal-value" id="ordinal-value_1">ordinal value</a> of the list item.</p> + + <p>The <dfn aria-haspopup="true" id="dom-li-value" role="button" tabindex="0"><code>value</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_16">reflect</a> the value of the <code title="dom-li-value"><a href="#dom-li-value" id="value_1">value</a></code> content attribute.</p> -<div class="example"> + + + <div class="example"> <p>The following example, the top ten movies are listed (in reverse order). Note the way the list is given a title by using a <code><a href="the-figure-element.html#the-figure-element" id="figure_4">figure</a></code> element and its <code><a href="the-figcaption-element.html#the-figcaption-element" id="figcaption_1">figcaption</a></code> @@ -417,12 +465,20 @@ <li><cite>Ratatouille</cite>, 2007</li> </ol> </figure></pre> - </div><p class="note">If the <code><a href="#the-li-element" id="li_14">li</a></code> element is the child of a + </div> + + <p class="note">If the <code><a href="#the-li-element" id="li_14">li</a></code> element is the child of a <code><a href="the-menu-element.html#the-menu-element" id="menu_11">menu</a></code> element and itself has a child that defines a <a href="commands.html#concept-command" id="concept-command_3" title="concept-command">command</a>, then the <code><a href="#the-li-element" id="li_15">li</a></code> element will match the <code title="selector-enabled"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/links.html#selector-enabled" title='Read about this ":enabled" reference in the full HTML5 spec.'>:enabled</a></code> and <code title="selector-disabled"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/links.html#selector-disabled" title='Read about this ":disabled" reference in the full HTML5 spec.'>:disabled</a></code> pseudo-classes in the - same way as the first such child element does.<p class="note">While it is conforming to include heading elements + same way as the first such child element does.</p> + + <p class="note">While it is conforming to include heading elements (e.g. <code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h1_18">h1</a></code>) inside <code><a href="#the-li-element" id="li_16">li</a></code> elements, it likely does not convey the semantics that the author intended. A heading starts a new section, so a heading in a list implicitly splits the - list into spanning multiple sections. \ No newline at end of file + list into spanning multiple sections.</p> + + + + \ No newline at end of file Index: scripting-1.html =================================================================== RCS file: /sources/public/html5/spec-author-view/scripting-1.html,v retrieving revision 1.570 retrieving revision 1.571 diff -u -d -r1.570 -r1.571 --- scripting-1.html 15 Feb 2012 10:14:13 -0000 1.570 +++ scripting-1.html 13 Mar 2012 19:58:44 -0000 1.571 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,22 +380,37 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="styling.html">← 4.2.7 Styling</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-script-element.html">4.3.1 The script element →</a> </div> - <h3 id="scripting-1"><span class="secno">4.3 </span>Scripting</h3><p>Scripts allow authors to add interactivity to their documents.<p>Authors are encouraged to use declarative alternatives to + <h3 id="scripting-1"><span class="secno">4.3 </span>Scripting</h3> + + <p>Scripts allow authors to add interactivity to their documents.</p> + + <p>Authors are encouraged to use declarative alternatives to scripting where possible, as declarative mechanisms are often more - maintainable, and many users disable scripting.<div class="example"> + maintainable, and many users disable scripting.</p> + + <div class="example"> <p>For example, instead of using script to show or hide a section to show more details, the <code><a href="the-details-element.html#the-details-element" id="details_4">details</a></code> element could be used.</p> - </div><p>Authors are also encouraged to make their applications degrade - gracefully in the absence of scripting support.<div class="example"> + </div> + + <p>Authors are also encouraged to make their applications degrade + gracefully in the absence of scripting support.</p> + + <div class="example"> <p>For example, if an author provides a link in a table header to dynamically resort the table, the link could also be made to function without scripts by requesting the sorted table from the server.</p> - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: the-keygen-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-keygen-element.html,v retrieving revision 1.142 retrieving revision 1.143 diff -u -d -r1.142 -r1.143 --- the-keygen-element.html 21 Feb 2012 21:59:05 -0000 1.142 +++ the-keygen-element.html 13 Mar 2012 19:58:59 -0000 1.143 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-textarea-element.html">← 4.10.13 The textarea element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-output-element.html">4.10.15 The output element →</a> </div> - <h4 id="the-keygen-element"><span class="secno">4.10.14 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>keygen</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_94" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-keygen-element"><span class="secno">4.10.14 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>keygen</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_94" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_134">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_148">Phrasing content</a>.</dd> <dd><a href="content-models.html#interactive-content" id="interactive-content_17">Interactive content</a>.</dd> @@ -392,28 +432,43 @@ </dl><p>The <code><a href="#the-keygen-element" id="keygen_13">keygen</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a key pair generator control. When the control's form is submitted, the private key is stored in the local keystore, and the public key is - packaged and sent to the server.<p>The <dfn aria-haspopup="true" id="attr-keygen-challenge" role="button" tabindex="0"><code>challenge</code></dfn> attribute + packaged and sent to the server.</p> + + <p>The <dfn aria-haspopup="true" id="attr-keygen-challenge" role="button" tabindex="0"><code>challenge</code></dfn> attribute may be specified. Its value will be packaged with the submitted - key.<p>The <dfn aria-haspopup="true" id="attr-keygen-keytype" role="button" tabindex="0"><code>keytype</code></dfn> + key.</p> + + <p>The <dfn aria-haspopup="true" id="attr-keygen-keytype" role="button" tabindex="0"><code>keytype</code></dfn> attribute is an <a href="common-microsyntaxes.html#enumerated-attribute" id="enumerated-attribute_13">enumerated attribute</a>. The following table lists the keywords and states for the attribute — the keywords in the left column map to the states listed in the cell in the second column on the same row as the keyword. User agents are not required to support these values, and must only recognize values - whose corresponding algorithms they support.<table><thead><tr><th> Keyword <th> State + whose corresponding algorithms they support.</p> + + <table><thead><tr><th> Keyword <th> State <tbody><tr><td> <code title="">rsa</code> <td> <i title="">RSA</i> </table><p>The <i>invalid value default</i> state is the <i title="">unknown</i> state. The <i>missing value default</i> state - is the <i title="">RSA</i> state, if it is supported, or the <i title="">unknown</i> state otherwise.<p class="note">This specification does not specify what key types + is the <i title="">RSA</i> state, if it is supported, or the <i title="">unknown</i> state otherwise.</p> + + <p class="note">This specification does not specify what key types user agents are to support — it is possible for a user agent - to not support any key types at all.<p>The <code title="attr-fae-form"><a href="association-of-controls-and-forms.html#attr-fae-form" id="form_58">form</a></code> attribute is used to + to not support any key types at all.</p> + + + + <p>The <code title="attr-fae-form"><a href="association-of-controls-and-forms.html#attr-fae-form" id="form_58">form</a></code> attribute is used to explicitly associate the <code><a href="#the-keygen-element" id="keygen_14">keygen</a></code> element with its <a href="association-of-controls-and-forms.html#form-owner" id="form-owner_11">form owner</a>. The <code title="attr-fe-name"><a href="attributes-common-to-form-controls.html#attr-fe-name" id="name_44">name</a></code> attribute represents the element's name. The <code title="attr-fe-disabled"><a href="attributes-common-to-form-controls.html#attr-fe-disabled" id="disabled_20">disabled</a></code> attribute is used to make the control non-interactive and to prevent its value from being submitted. The <code title="attr-fe-autofocus"><a href="attributes-common-to-form-controls.html#attr-fe-autofocus" id="autofocus_8">autofocus</a></code> - attribute controls focus.<dl class="domintro"><dt><var title="">keygen</var> . <code title="attr-keygen-type">type</code></dt> + attribute controls focus.</p> + + + <dl class="domintro"><dt><var title="">keygen</var> . <code title="attr-keygen-type">type</code></dt> <dd> @@ -428,14 +483,21 @@ <p>The <dfn aria-haspopup="true" id="dom-keygen-keytype" role="button" tabindex="0"><code>keytype</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_82">reflect</a> the content attribute of the same name, <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-dom-interfaces.html#limited-to-only-known-values" title='Read about this "limited to only known values" reference in the full HTML5 spec.'>limited to only known values</a>.</p> -<p class="note">This specification does not specify how the private + + + + <p class="note">This specification does not specify how the private key generated is to be used. It is expected that after receiving the <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-keygen-element.html#signedpublickeyandchallenge" title='Read about this "SignedPublicKeyAndChallenge" reference in the full HTML5 spec.'>SignedPublicKeyAndChallenge</a></code> (SPKAC) structure, the server will generate a client certificate and offer it back to the user for download; this certificate, once downloaded and stored in the key store along with the private key, can then be used to authenticate to services that use TLS and certificate - authentication.<div class="example"> + authentication.</p> + + + + <div class="example"> <p>To generate a key pair, add the private key to the user's key store, and submit the public key to the server, markup such as the @@ -451,4 +513,8 @@ can then be used for various purposes, such as generating a client certificate, as mentioned above.</p> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: the-link-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-link-element.html,v retrieving revision 1.131 retrieving revision 1.132 diff -u -d -r1.131 -r1.132 --- the-link-element.html 21 Feb 2012 21:59:06 -0000 1.131 +++ the-link-element.html 13 Mar 2012 19:58:59 -0000 1.132 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-base-element.html">← 4.2.3 The base element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-meta-element.html">4.2.5 The meta element →</a> </div> - <h4 id="the-link-element"><span class="secno">4.2.4 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>link</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_4" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-link-element"><span class="secno">4.2.4 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>link</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_4" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#metadata-content" id="metadata-content_6">Metadata content</a>.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_4" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>Where <a href="content-models.html#metadata-content" id="metadata-content_7">metadata content</a> is expected.</dd> @@ -381,14 +421,23 @@ <a href="#htmllinkelement" id="htmllinkelement_0">HTMLLinkElement</a> implements <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#linkstyle" title='Read about this "LinkStyle" reference in the full HTML5 spec.'>LinkStyle</a>;</pre> </dd> </dl><p>The <code><a href="#the-link-element" id="link_4">link</a></code> element allows authors to link their - document to other resources.<p>The destination of the link(s) is given by the <dfn aria-haspopup="true" id="attr-link-href" role="button" tabindex="0"><code>href</code></dfn> attribute, which must + document to other resources.</p> + + <p>The destination of the link(s) is given by the <dfn aria-haspopup="true" id="attr-link-href" role="button" tabindex="0"><code>href</code></dfn> attribute, which must be present and must contain a <a href="urls.html#valid-non-empty-url-potentially-surrounded-by-spaces" id="valid-non-empty-url-potentially-surrounded-by-spaces_1">valid non-empty URL potentially - surrounded by spaces</a>. <p>A <code><a href="#the-link-element" id="link_5">link</a></code> element must have <code title="attr-link-rel"><a href="#attr-link-rel" id="rel_0">rel</a></code> attribute.<p>The types of link indicated (the relationships) are given by the + surrounded by spaces</a>. </p> + + <p>A <code><a href="#the-link-element" id="link_5">link</a></code> element must have <code title="attr-link-rel"><a href="#attr-link-rel" id="rel_0">rel</a></code> attribute.</p> + + + <p>The types of link indicated (the relationships) are given by the value of the <dfn aria-haspopup="true" id="attr-link-rel" role="button" tabindex="0"><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" id="set-of-space-separated-tokens_6">set of space-separated tokens</a>. The <a href="links.html#linkTypes">allowed keywords and their meanings</a> are defined in a later - section. <p>Two categories of links can be created using the + section. </p> + + <p>Two categories of links can be created using the <code><a href="#the-link-element" id="link_6">link</a></code> element: <a href="links.html#external-resource-link" id="external-resource-link_0" title="external resource link">Links to external resources</a> and <a href="links.html#hyperlink" id="hyperlink_6" title="hyperlink">hyperlinks</a>. The <a href="links.html#linkTypes">link types section</a> defines whether a particular link type is an @@ -396,7 +445,9 @@ create multiple links (of which some might be external resource links and some might be hyperlinks); exactly which and how many links are created depends on the keywords given in the <code title="attr-link-rel"><a href="#attr-link-rel" id="rel_1">rel</a></code> attribute. User agents must process - the links on a per-link basis, not a per-element basis.<p class="note">Each link created for a <code><a href="#the-link-element" id="link_8">link</a></code> element is + the links on a per-link basis, not a per-element basis.</p> + + <p class="note">Each link created for a <code><a href="#the-link-element" id="link_8">link</a></code> element is handled separately. For instance, if there are two <code><a href="#the-link-element" id="link_9">link</a></code> elements with <code title="">rel="stylesheet"</code>, they each count as a separate external resource, and each is affected by its @@ -404,7 +455,9 @@ <code><a href="#the-link-element" id="link_10">link</a></code> element has a <code title="attr-link-rel"><a href="#attr-link-rel" id="rel_2">rel</a></code> attribute with the value <code title="">next stylesheet</code>, it creates both a <a href="links.html#hyperlink" id="hyperlink_7">hyperlink</a> (for the <code title="rel-next"><a href="links.html#link-type-next" id="next">next</a></code> keyword) and an <a href="links.html#external-resource-link" id="external-resource-link_1">external resource link</a> (for the <code title="rel-stylesheet"><a href="links.html#link-type-stylesheet" id="stylesheet">stylesheet</a></code> keyword), and they are - affected by other attributes (such as <code title="attr-link-media"><a href="#attr-link-media" id="media_0">media</a></code> or <code title="attr-link-title"><a href="#attr-link-title" id="title_59">title</a></code>) differently.<div class="example"> + affected by other attributes (such as <code title="attr-link-media"><a href="#attr-link-media" id="media_0">media</a></code> or <code title="attr-link-title"><a href="#attr-link-title" id="title_59">title</a></code>) differently.</p> + + <div class="example"> <p>For example, the following <code><a href="#the-link-element" id="link_11">link</a></code> element creates two hyperlinks (to the same page):</p> @@ -417,53 +470,87 @@ information regarding the license under which the current page is provided.</p> - </div><p>The exact behavior for links to external resources depends on the + </div> + + <p>The exact behavior for links to external resources depends on the exact relationship, as defined for the relevant link type. Some of the attributes control whether or not the external resource is to be - applied (as defined below).<p class="note">Hyperlinks created with the <code><a href="#the-link-element" id="link_12">link</a></code> + applied (as defined below).</p> + + + + <p class="note">Hyperlinks created with the <code><a href="#the-link-element" id="link_12">link</a></code> element and its <code title="attr-link-rel"><a href="#attr-link-rel" id="rel_3">rel</a></code> attribute apply to the whole page. This contrasts with the <code title="attr-hyperlink-rel"><a href="links.html#attr-hyperlink-rel" id="rel_11">rel</a></code> attribute of <code><a href="the-a-element.html#the-a-element" id="a_12">a</a></code> and <code><a href="the-area-element.html#the-area-element" id="area_6">area</a></code> elements, which indicates the type of a link whose context is given by the link's location within the - document.<p>The <dfn aria-haspopup="true" id="attr-link-media" role="button" tabindex="0"><code>media</code></dfn> + document.</p> + + <p>The <dfn aria-haspopup="true" id="attr-link-media" role="button" tabindex="0"><code>media</code></dfn> attribute says which media the resource applies to. The value must - be a <a href="common-microsyntaxes.html#valid-media-query" id="valid-media-query_0">valid media query</a>.<p id="default-media">The default, if the <code title="attr-link-media"><a href="#attr-link-media" id="media_1">media</a></code> attribute is omitted, is "<code title="">all</code>", meaning that by default links apply to all - media.<p>The <dfn aria-haspopup="true" id="attr-link-hreflang" role="button" tabindex="0"><code>hreflang</code></dfn> + be a <a href="common-microsyntaxes.html#valid-media-query" id="valid-media-query_0">valid media query</a>.</p> + + + + <p id="default-media">The default, if the <code title="attr-link-media"><a href="#attr-link-media" id="media_1">media</a></code> attribute is omitted, is "<code title="">all</code>", meaning that by default links apply to all + media.</p> + + <p>The <dfn aria-haspopup="true" id="attr-link-hreflang" role="button" tabindex="0"><code>hreflang</code></dfn> attribute on the <code><a href="#the-link-element" id="link_13">link</a></code> element has the same semantics as the <a href="links.html#attr-hyperlink-hreflang" id="attr-hyperlink-hreflang_0" title="attr-hyperlink-hreflang"><code>hreflang</code> attribute on <code>a</code> and <code>area</code> - elements</a>.<p>The <dfn aria-haspopup="true" id="attr-link-type" role="button" tabindex="0"><code>type</code></dfn> attribute + elements</a>.</p> + + <p>The <dfn aria-haspopup="true" id="attr-link-type" role="button" tabindex="0"><code>type</code></dfn> attribute gives the <a href="infrastructure.html#mime-type" id="mime-type_4">MIME type</a> of the linked resource. It is purely advisory. The value must be a <a href="infrastructure.html#valid-mime-type" id="valid-mime-type_1">valid MIME - type</a>.<p>For <a href="links.html#external-resource-link" id="external-resource-link_2" title="external resource link">external resource + type</a>.</p> + + <p>For <a href="links.html#external-resource-link" id="external-resource-link_2" title="external resource link">external resource links</a>, the <code title="attr-link-type"><a href="#attr-link-type" id="type_0">type</a></code> attribute is used as a hint to user agents so that they can avoid fetching - resources they do not support. <p>The <dfn aria-haspopup="true" id="attr-link-title" role="button" tabindex="0"><code>title</code></dfn> + resources they do not support. </p> + + + + <p>The <dfn aria-haspopup="true" id="attr-link-title" role="button" tabindex="0"><code>title</code></dfn> attribute gives the title of the link. With one exception, it is purely advisory. The value is text. The exception is for style sheet links, where the <code title="attr-link-title"><a href="#attr-link-title" id="title_60">title</a></code> - attribute defines <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#alternative-style-sheet-sets" title='Read about this "alternative style sheet sets" reference in the full HTML5 spec.'>alternative style sheet sets</a>.<p class="note">The <code title="attr-link-title"><a href="#attr-link-title" id="title_61">title</a></code> + attribute defines <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#alternative-style-sheet-sets" title='Read about this "alternative style sheet sets" reference in the full HTML5 spec.'>alternative style sheet sets</a>.</p> + + <p class="note">The <code title="attr-link-title"><a href="#attr-link-title" id="title_61">title</a></code> attribute on <code><a href="#the-link-element" id="link_14">link</a></code> elements differs from the global <code title="attr-title"><a href="global-attributes.html#the-title-attribute" id="title_7">title</a></code> attribute of most other elements in that a link without a title does not inherit the title - of the parent element: it merely has no title.<p>The <code title="attr-link-sizes"><a href="links.html#attr-link-sizes" id="sizes_0">sizes</a></code> attribute is used + of the parent element: it merely has no title.</p> + + <p>The <code title="attr-link-sizes"><a href="links.html#attr-link-sizes" id="sizes_0">sizes</a></code> attribute is used with the <code title="rel-icon"><a href="links.html#rel-icon" id="icon_3">icon</a></code> link type. The attribute must not be specified on <code><a href="#the-link-element" id="link_15">link</a></code> elements that do not have a <code title="attr-link-rel"><a href="#attr-link-rel" id="rel_4">rel</a></code> attribute that specifies the <code title="rel-icon"><a href="links.html#rel-icon" id="icon_4">icon</a></code> keyword.</p> + + <p>The IDL attributes <dfn aria-haspopup="true" id="dom-link-href" role="button" tabindex="0"><code>href</code></dfn>, <dfn aria-haspopup="true" id="dom-link-rel" role="button" tabindex="0"><code>rel</code></dfn>, <dfn aria-haspopup="true" id="dom-link-media" role="button" tabindex="0"><code>media</code></dfn>, <dfn aria-haspopup="true" id="dom-link-hreflang" role="button" tabindex="0"><code>hreflang</code></dfn>, <dfn aria-haspopup="true" id="dom-link-type" role="button" tabindex="0"><code>type</code></dfn>, and <dfn aria-haspopup="true" id="dom-link-sizes" role="button" tabindex="0"><code>sizes</code></dfn> each must <a href="common-dom-interfaces.html#reflect" id="reflect_7">reflect</a> the respective content attributes of the same name.</p> <p>The IDL attribute <dfn aria-haspopup="true" id="dom-link-rellist" role="button" tabindex="0"><code>relList</code></dfn> <a href="common-dom-interfaces.html#reflect" id="reflect_8" title="reflect">reflect</a> the <code title="attr-link-rel"><a href="#attr-link-rel" id="rel_5">rel</a></code> content attribute.</p> -<p>The IDL attribute <dfn aria-haspopup="true" id="dom-link-disabled" role="button" tabindex="0"><code>disabled</code></dfn> only applies + + + <p>The IDL attribute <dfn aria-haspopup="true" id="dom-link-disabled" role="button" tabindex="0"><code>disabled</code></dfn> only applies to style sheet links. When the <code><a href="#the-link-element" id="link_16">link</a></code> element defines a style sheet link, then the <code title="dom-link-disabled"><a href="#dom-link-disabled" id="disabled">disabled</a></code> attribute behaves as defined <a class="full-spec-link" href="http://dev.w3.org/html5/spec/styling.html#dom-linkstyle-disabled" title='Read about this "for the alternative style sheets DOM" reference in the full HTML5 spec.'>for the alternative style sheets DOM</a>. For all other <code><a href="#the-link-element" id="link_17">link</a></code> elements it - always return false and does nothing on setting.<p>The <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#linkstyle" title='Read about this "LinkStyle" reference in the full HTML5 spec.'>LinkStyle</a></code> interface is also implemented by + always return false and does nothing on setting.</p> + + <p>The <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#linkstyle" title='Read about this "LinkStyle" reference in the full HTML5 spec.'>LinkStyle</a></code> interface is also implemented by this element; the <a href="styling.html#styling" id="styling-processing-model">styling processing model</a> defines - how. <a href="references.html#refsCSSOM">[CSSOM]</a><div class="example"> + how. <a href="references.html#refsCSSOM">[CSSOM]</a></p> + + <div class="example"> <p>Here, a set of <code><a href="#the-link-element" id="link_18">link</a></code> elements provide some style sheets:</p> @@ -479,7 +566,9 @@ <link rel="alternate stylesheet" href="big.css" title="Big fonts"> <link rel="alternate stylesheet" href="wide.css" title="Wide screen"></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>The following example shows how you can specify versions of the page that use alternative formats, are aimed at other languages, @@ -492,4 +581,10 @@ <link rel=alternate href="/en/pdf" hreflang=en type=application/pdf title="English PDF"> <link rel=alternate href="/fr/pdf" hreflang=fr type=application/pdf title="French PDF"></pre> - </div> \ No newline at end of file + </div> + + + + + + \ No newline at end of file Index: the-optgroup-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-optgroup-element.html,v retrieving revision 1.127 retrieving revision 1.128 diff -u -d -r1.127 -r1.128 --- the-optgroup-element.html 21 Feb 2012 21:59:06 -0000 1.127 +++ the-optgroup-element.html 13 Mar 2012 19:59:00 -0000 1.128 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-datalist-element.html">← 4.10.10 The datalist element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-option-element.html">4.10.12 The option element →</a> </div> - <h4 id="the-optgroup-element"><span class="secno">4.10.11 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>optgroup</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_91" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-optgroup-element"><span class="secno">4.10.11 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>optgroup</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_91" title="element-dfn-categories">Categories</a>:</dt> <dd>None.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_91" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>As a child of a <code><a href="the-select-element.html#the-select-element" id="select_36">select</a></code> element.</dd> @@ -368,17 +408,29 @@ };</pre> </dd> </dl><p>The <code><a href="#the-optgroup-element" id="optgroup_5">optgroup</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a group of - <code><a href="the-option-element.html#the-option-element" id="option_20">option</a></code> elements with a common label.<p>The element's group of <code><a href="the-option-element.html#the-option-element" id="option_21">option</a></code> elements consists of + <code><a href="the-option-element.html#the-option-element" id="option_20">option</a></code> elements with a common label.</p> + + <p>The element's group of <code><a href="the-option-element.html#the-option-element" id="option_21">option</a></code> elements consists of the <code><a href="the-option-element.html#the-option-element" id="option_22">option</a></code> elements that are children of the - <code><a href="#the-optgroup-element" id="optgroup_6">optgroup</a></code> element.<p>The <dfn aria-haspopup="true" id="attr-optgroup-disabled" role="button" tabindex="0"><code>disabled</code></dfn> attribute + <code><a href="#the-optgroup-element" id="optgroup_6">optgroup</a></code> element.</p> + + + + <p>The <dfn aria-haspopup="true" id="attr-optgroup-disabled" role="button" tabindex="0"><code>disabled</code></dfn> attribute is a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_16">boolean attribute</a> and can be used to <a href="the-option-element.html#concept-option-disabled" id="concept-option-disabled_1" title="concept-option-disabled">disable</a> a group of - <code><a href="the-option-element.html#the-option-element" id="option_23">option</a></code> elements together.<p>The <dfn aria-haspopup="true" id="attr-optgroup-label" role="button" tabindex="0"><code>label</code></dfn> + <code><a href="the-option-element.html#the-option-element" id="option_23">option</a></code> elements together.</p> + + <p>The <dfn aria-haspopup="true" id="attr-optgroup-label" role="button" tabindex="0"><code>label</code></dfn> attribute must be specified. Its value gives the name of the group, for the purposes of the user interface. </p> + + <p>The <dfn aria-haspopup="true" id="dom-optgroup-disabled" role="button" tabindex="0"><code>disabled</code></dfn> and <dfn aria-haspopup="true" id="dom-optgroup-label" role="button" tabindex="0"><code>label</code></dfn> attributes must <a href="common-dom-interfaces.html#reflect" id="reflect_74">reflect</a> the respective content attributes of the same name.</p> -<div class="example"> + + + <div class="example"> <p>The following snippet shows how a set of lessons from three courses could be offered in a <code><a href="the-select-element.html#the-select-element" id="select_37">select</a></code> drop-down @@ -405,4 +457,8 @@ <p><input type=submit value="▶ Play"> </form></pre> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: the-param-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-param-element.html,v retrieving revision 1.125 retrieving revision 1.126 diff -u -d -r1.125 -r1.126 --- the-param-element.html 21 Feb 2012 21:59:07 -0000 1.125 +++ the-param-element.html 13 Mar 2012 19:59:00 -0000 1.126 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-object-element.html">← 4.8.4 The object element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-video-element.html">4.8.6 The video element →</a> </div> - <h4 id="the-param-element"><span class="secno">4.8.5 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>param</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_65" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-param-element"><span class="secno">4.8.5 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>param</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_65" title="element-dfn-categories">Categories</a>:</dt> <dd>None.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_65" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>As a child of an <code><a href="the-object-element.html#the-object-element" id="object_25">object</a></code> element, before any <a href="content-models.html#flow-content" id="flow-content_104">flow content</a>.</dd> @@ -368,13 +408,23 @@ };</pre> </dd> </dl><p>The <code><a href="#the-param-element" id="param_3">param</a></code> element defines parameters for plugins - invoked by <code><a href="the-object-element.html#the-object-element" id="object_26">object</a></code> elements. It does not <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represent" reference in the full HTML5 spec.'>represent</a> anything on its own.<p>The <dfn aria-haspopup="true" id="attr-param-name" role="button" tabindex="0"><code>name</code></dfn> - attribute gives the name of the parameter.<p>The <dfn aria-haspopup="true" id="attr-param-value" role="button" tabindex="0"><code>value</code></dfn> - attribute gives the value of the parameter.<p>Both attributes must be present. They may have any value.</p> + invoked by <code><a href="the-object-element.html#the-object-element" id="object_26">object</a></code> elements. It does not <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represent" reference in the full HTML5 spec.'>represent</a> anything on its own.</p> + + <p>The <dfn aria-haspopup="true" id="attr-param-name" role="button" tabindex="0"><code>name</code></dfn> + attribute gives the name of the parameter.</p> + + <p>The <dfn aria-haspopup="true" id="attr-param-value" role="button" tabindex="0"><code>value</code></dfn> + attribute gives the value of the parameter.</p> + + <p>Both attributes must be present. They may have any value.</p> + + <p>The IDL attributes <dfn aria-haspopup="true" id="dom-param-name" role="button" tabindex="0"><code>name</code></dfn> and <dfn aria-haspopup="true" id="dom-param-value" role="button" tabindex="0"><code>value</code></dfn> must both <a href="common-dom-interfaces.html#reflect" id="reflect_32">reflect</a> the respective content attributes of the same name.</p> -<div class="example"> + + + <div class="example"> <p>The following example shows how the <code><a href="#the-param-element" id="param_4">param</a></code> element can be used to pass a parameter to a plugin, in this case the O3D @@ -404,4 +454,8 @@ </body> </html></pre> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: the-time-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-time-element.html,v retrieving revision 1.137 retrieving revision 1.138 diff -u -d -r1.137 -r1.138 --- the-time-element.html 21 Feb 2012 21:59:08 -0000 1.137 +++ the-time-element.html 13 Mar 2012 19:59:02 -0000 1.138 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-abbr-element.html">← 4.6.9 The abbr element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-code-element.html">4.6.11 The code element →</a> </div> - <h4 id="the-time-element"><span class="secno">4.6.10 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>time</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_41" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-time-element"><span class="secno">4.6.10 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>time</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_41" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_80">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_56">Phrasing content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_26">Palpable content</a>.</dd> @@ -371,15 +411,26 @@ contents, along with a machine-readable form of those contents in the <code title="attr-time-datetime"><a href="#attr-time-datetime" id="datetime_1">datetime</a></code> attribute. The kind of content is limited to various kinds of dates, times, - time-zone offsets, and durations, as described below.<p>The <dfn aria-haspopup="true" id="attr-time-datetime" role="button" tabindex="0"><code>datetime</code></dfn> + time-zone offsets, and durations, as described below.</p> + + <p>The <dfn aria-haspopup="true" id="attr-time-datetime" role="button" tabindex="0"><code>datetime</code></dfn> attribute may be present. If present, its value must be a representation of the element's contents in a machine-readable - format.<p>A <code><a href="#the-time-element" id="time_5">time</a></code> element that does not have a <code title="attr-time-datetime"><a href="#attr-time-datetime" id="datetime_2">datetime</a></code> content attribute must - not have any element descendants.<p>The <dfn aria-haspopup="true" id="datetime-value" role="button" tabindex="0">datetime value</dfn> of a <code><a href="#the-time-element" id="time_6">time</a></code> element is + format.</p> + + <p>A <code><a href="#the-time-element" id="time_5">time</a></code> element that does not have a <code title="attr-time-datetime"><a href="#attr-time-datetime" id="datetime_2">datetime</a></code> content attribute must + not have any element descendants.</p> + + + <p>The <dfn aria-haspopup="true" id="datetime-value" role="button" tabindex="0">datetime value</dfn> of a <code><a href="#the-time-element" id="time_6">time</a></code> element is the value of the element's <code title="attr-time-datetime"><a href="#attr-time-datetime" id="datetime_3">datetime</a></code> content attribute, if it has one, or the element's <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#textcontent" title='Read about this "textContent" reference in the full HTML5 spec.'>textContent</a></code>, if it does - not.<p>The <a href="#datetime-value" id="datetime-value_0">datetime value</a> of a <code><a href="#the-time-element" id="time_7">time</a></code> element - must match one of the following syntaxes.<dl><dt>A <a href="common-microsyntaxes.html#valid-month-string" id="valid-month-string_1">valid month string</a></dt> + not.</p> + + <p>The <a href="#datetime-value" id="datetime-value_0">datetime value</a> of a <code><a href="#the-time-element" id="time_7">time</a></code> element + must match one of the following syntaxes.</p> + + <dl><dt>A <a href="common-microsyntaxes.html#valid-month-string" id="valid-month-string_1">valid month string</a></dt> <dd> @@ -522,7 +573,9 @@ </dl><p>The <dfn aria-haspopup="true" id="dom-time-datetime" role="button" tabindex="0"><code>datetime</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_19">reflect</a> the content attribute of the same name.</p> -<div class="example"> + + + <div class="example"> <p>The <code><a href="#the-time-element" id="time_8">time</a></code> element can be used to encode dates, for example in microformats. The following shows a hypothetical way of @@ -537,7 +590,9 @@ at the <span class="location">Argent Hotel, San Francisco, CA</span> </div></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>Here, a fictional microdata vocabulary based on the Atom vocabulary is used with the <code><a href="#the-time-element" id="time_10">time</a></code> element to mark up a @@ -549,7 +604,10 @@ <p itemprop="content">Today, I went out and bought a bike for my kid.</p> </article></pre> - </div><div class="example"> + </div> + + + <div class="example"> <p>In the following snippet, the <code><a href="#the-time-element" id="time_11">time</a></code> element is used to encode a date in the ISO8601 format, for later processing by a @@ -567,7 +625,9 @@ all the <code><a href="#the-time-element" id="time_13">time</a></code> elements therein to create an index of dates and times.</p> - </div><div class="example"> + </div> + + <div class="example"> <p>For example, this element conveys the string "Tuesday" with the additional semantic that the 12th of November 2011 is the @@ -575,11 +635,18 @@ <pre>Today is <time datetime="2011-11-12">Tuesday</time>.</pre> - </div><div class="example"> + </div> + + <div class="example"> <p>In this example, a specific time in the Pacific Standard Time timezone is specified:</p> <pre>Your next meeting is at <time datetime="2011-11-12T15:00-08:00">3pm</time>.</pre> - </div> \ No newline at end of file + </div> + + + + + \ No newline at end of file Index: mathml.html =================================================================== RCS file: /sources/public/html5/spec-author-view/mathml.html,v retrieving revision 1.16 retrieving revision 1.17 diff -u -d -r1.16 -r1.17 --- mathml.html 15 Feb 2012 10:14:11 -0000 1.16 +++ mathml.html 13 Mar 2012 19:58:43 -0000 1.17 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,18 +380,28 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="image-maps.html">← 4.8.14 Image maps</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="svg-0.html">4.8.16 SVG →</a> </div> - <h4 id="mathml"><span class="secno">4.8.15 </span>MathML</h4><p>The <dfn aria-haspopup="true" id="math" role="button" tabindex="0"><code>math</code></dfn> element from the <a href="namespaces.html#mathml-namespace" id="mathml-namespace_0">MathML + <h4 id="mathml"><span class="secno">4.8.15 </span>MathML</h4> + + <p>The <dfn aria-haspopup="true" id="math" role="button" tabindex="0"><code>math</code></dfn> element from the <a href="namespaces.html#mathml-namespace" id="mathml-namespace_0">MathML namespace</a> falls into the <a href="content-models.html#embedded-content" id="embedded-content_21">embedded content</a>, <a href="content-models.html#phrasing-content" id="phrasing-content_128">phrasing content</a>, and <a href="content-models.html#flow-content" id="flow-content_113">flow content</a> categories for the purposes of the content models in this - specification.<p>The semantics of MathML elements are defined by the MathML - specification and <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#other-applicable-specifications" title='Read about this "other applicable specifications" reference in the full HTML5 spec.'>other applicable specifications</a>. <a href="references.html#refsMATHML">[MATHML]</a><div class="example"> + specification.</p> + + + + <p>The semantics of MathML elements are defined by the MathML + specification and <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#other-applicable-specifications" title='Read about this "other applicable specifications" reference in the full HTML5 spec.'>other applicable specifications</a>. <a href="references.html#refsMATHML">[MATHML]</a></p> + + <div class="example"> <p>Here is an example of the use of MathML in an HTML document:</p> @@ -389,4 +435,8 @@ </body> </html></pre> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: the-var-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-var-element.html,v retrieving revision 1.117 retrieving revision 1.118 diff -u -d -r1.117 -r1.118 --- the-var-element.html 21 Feb 2012 21:59:09 -0000 1.117 +++ the-var-element.html 13 Mar 2012 19:59:03 -0000 1.118 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-code-element.html">← 4.6.11 The code element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-samp-element.html">4.6.13 The samp element →</a> </div> - <h4 id="the-var-element"><span class="secno">4.6.12 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>var</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_43" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-var-element"><span class="secno">4.6.12 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>var</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_43" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_82">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_62">Phrasing content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_28">Palpable content</a>.</dd> @@ -366,16 +406,22 @@ This could be an actual variable in a mathematical expression or programming context, an identifier representing a constant, a function parameter, or just be a term used as a placeholder in - prose.<div class="example"> + prose.</p> + + <div class="example"> <p>In the paragraph below, the letter "n" is being used as a variable in prose:</p> <pre><p>If there are <var>n</var> pipes leading to the ice cream factory then I expect at <em>least</em> <var>n</var> flavors of ice cream to be available for purchase!</p></pre> - </div><p>For mathematics, in particular for anything beyond the simplest + </div> + + <p>For mathematics, in particular for anything beyond the simplest of expressions, MathML is more appropriate. However, the <code><a href="#the-var-element" id="var_3">var</a></code> element can still be used to refer to specific - variables that are then mentioned in MathML expressions.<div class="example"> + variables that are then mentioned in MathML expressions.</p> + + <div class="example"> <p>In this example, an equation is shown, with a legend that references the variables in the equation. The expression itself is @@ -398,7 +444,9 @@ </figcaption> </figure></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>Here, the equation describing mass-energy equivalence is used in a sentence, and the <code><a href="#the-var-element" id="var_5">var</a></code> element is used to mark the @@ -408,4 +456,7 @@ thought, he wrote <var>E</var> = <var>m</var> <var>c</var><sup>2</sup>. The teacher looked pleased.</p></pre> - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: the-th-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-th-element.html,v retrieving revision 1.131 retrieving revision 1.132 diff -u -d -r1.131 -r1.132 --- the-th-element.html 15 Feb 2012 10:14:26 -0000 1.131 +++ the-th-element.html 13 Mar 2012 19:59:02 -0000 1.132 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-td-element.html">← 4.9.9 The td element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="attributes-common-to-td-and-th-elements.html">4.9.11 Attributes common to td and th elements →</a> </div> - <h4 id="the-th-element"><span class="secno">4.9.10 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>th</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_82" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-th-element"><span class="secno">4.9.10 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>th</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_82" title="element-dfn-categories">Categories</a>:</dt> <dd>None.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_82" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>As a child of a <code><a href="the-tr-element.html#the-tr-element" id="tr_19">tr</a></code> element.</dd> @@ -369,10 +409,14 @@ attribute DOMString <a href="#dom-th-scope" id="dom-th-scope_0" title="dom-th-scope">scope</a>; };</pre> </dd> - </dl><p>The <code><a href="#the-th-element" id="th_7">th</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a header <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-td-and-th-elements.html#concept-cell" title='Read about this "cell" reference in the full HTML5 spec.'>cell</a> in a table.<p>The <code><a href="#the-th-element" id="th_8">th</a></code> element may have a <dfn aria-haspopup="true" id="attr-th-scope" role="button" tabindex="0"><code>scope</code></dfn> content attribute + </dl><p>The <code><a href="#the-th-element" id="th_7">th</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a header <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-td-and-th-elements.html#concept-cell" title='Read about this "cell" reference in the full HTML5 spec.'>cell</a> in a table.</p> + + <p>The <code><a href="#the-th-element" id="th_8">th</a></code> element may have a <dfn aria-haspopup="true" id="attr-th-scope" role="button" tabindex="0"><code>scope</code></dfn> content attribute specified. The <code title="attr-th-scope"><a href="#attr-th-scope" id="scope_1">scope</a></code> attribute is an <a href="common-microsyntaxes.html#enumerated-attribute" id="enumerated-attribute_7">enumerated attribute</a> with five states, four of which - have explicit keywords:<dl><dt>The <dfn aria-haspopup="true" id="attr-th-scope-row" role="button" tabindex="0"><code>row</code></dfn> + have explicit keywords:</p> + + <dl><dt>The <dfn aria-haspopup="true" id="attr-th-scope-row" role="button" tabindex="0"><code>row</code></dfn> keyword, which maps to the <a href="#attr-th-scope-row" id="row"><i>row</i></a> state</dt> <dd>The <a href="#attr-th-scope-row" id="row_0"><i>row</i></a> state means the header cell applies to some of @@ -409,10 +453,14 @@ </dl><p>The <code title="attr-th-scope"><a href="#attr-th-scope" id="scope_4">scope</a></code> attribute's <i>missing value default</i> is the <a href="#attr-th-scope-auto" id="auto_5"><i>auto</i></a> state.</p> + + <p>The <dfn aria-haspopup="true" id="dom-th-scope" role="button" tabindex="0"><code>scope</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_54">reflect</a> the content attribute of the same name, <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-dom-interfaces.html#limited-to-only-known-values" title='Read about this "limited to only known values" reference in the full HTML5 spec.'>limited to only known values</a>.</p> -<div class="example"> + + + <div class="example"> <p>The following example shows how the <code title="attr-th-scope"><a href="#attr-th-scope" id="scope_5">scope</a></code> attribute's <code title="attr-th-scope-rowgroup"><a href="#attr-th-scope-rowgroup" id="rowgroup">rowgroup</a></code> value affects which data cells a header cell applies to.</p> @@ -451,4 +499,8 @@ them.</p> - <img alt="" height="256" src="http://dev.w3.org/html5/spec/images/table-scope-diagram.png" width="459"></div> \ No newline at end of file + <img alt="" height="256" src="http://dev.w3.org/html5/spec/images/table-scope-diagram.png" width="459"></div> + + + + \ No newline at end of file Index: requirements-relating-to-bidirectional-algorithm-formatting-characters.html =================================================================== RCS file: /sources/public/html5/spec-author-view/requirements-relating-to-bidirectional-algorithm-formatting-characters.html,v retrieving revision 1.114 retrieving revision 1.115 diff -u -d -r1.114 -r1.115 --- requirements-relating-to-bidirectional-algorithm-formatting-characters.html 15 Feb 2012 10:14:12 -0000 1.114 +++ requirements-relating-to-bidirectional-algorithm-formatting-characters.html 13 Mar 2012 19:58:44 -0000 1.115 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,14 +380,18 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="content-models.html">← 3.2.5 Content models</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="wai-aria.html">3.2.7 WAI-ARIA →</a> </div> <h4 id="requirements-relating-to-bidirectional-algorithm-formatting-characters"><span class="secno">3.2.6 </span>Requirements relating to bidirectional-algorithm formatting - characters</h4><p><a href="content-models.html#text-content" id="text-content_4">Text content</a> in <a href="infrastructure.html#html-elements" id="html-elements_21">HTML elements</a> with + characters</h4> + + <p><a href="content-models.html#text-content" id="text-content_4">Text content</a> in <a href="infrastructure.html#html-elements" id="html-elements_21">HTML elements</a> with child <code><a href="obsolete.html#text">Text</a></code> nodes, and text in attributes of <a href="infrastructure.html#html-elements" id="html-elements_22">HTML elements</a> that allow free-form text, may contain characters in the range U+202A to U+202E (the bidirectional-algorithm formatting @@ -361,12 +401,18 @@ embeddings and overrides are explicitly terminated by a U+202C POP DIRECTIONAL FORMATTING character. This helps reduce incidences of text being reused in a manner that has unforeseen effects on the - bidirectional algorithm.<p>The aforementioned restrictions are defined by specifying that + bidirectional algorithm.</p> + + <p>The aforementioned restrictions are defined by specifying that certain parts of documents form <a href="#bidirectional-algorithm-formatting-character-ranges" id="bidirectional-algorithm-formatting-character-ranges_0">bidirectional-algorithm formatting character ranges</a>, and then imposing a requirement - on such ranges.<p>The strings resulting from applying the following algorithm to an + on such ranges.</p> + + <p>The strings resulting from applying the following algorithm to an <a href="infrastructure.html#html-elements" id="html-elements_23" title="HTML elements">HTML element</a> <var title="">element</var> are <a href="#bidirectional-algorithm-formatting-character-ranges" id="bidirectional-algorithm-formatting-character-ranges_1">bidirectional-algorithm formatting - character ranges</a>:<ol><li><p>Let <var title="">output</var> be an empty list of strings.</li> + character ranges</a>:</p> + + <ol><li><p>Let <var title="">output</var> be an empty list of strings.</li> <li><p>Let <var title="">string</var> be an empty string.</li> @@ -416,10 +462,16 @@ </ol><p>The value of a namespace-less attribute of an <a href="infrastructure.html#html-elements" id="html-elements_25" title="HTML elements">HTML element</a> is a <a href="#bidirectional-algorithm-formatting-character-ranges" id="bidirectional-algorithm-formatting-character-ranges_3" title="bidirectional-algorithm formatting character ranges">bidirectional-algorithm formatting character - range</a>.<p>Any strings that, as described above, are + range</a>.</p> + + + + <p>Any strings that, as described above, are <dfn aria-haspopup="true" id="bidirectional-algorithm-formatting-character-ranges" role="button" tabindex="0">bidirectional-algorithm formatting character ranges</dfn> must match the <code title="">string</code> production in the following - ABNF, the character set for which is Unicode. <a href="references.html#refsABNF">[ABNF]</a><pre>string = *( plaintext ( embedding / override ) ) plaintext + ABNF, the character set for which is Unicode. <a href="references.html#refsABNF">[ABNF]</a></p> + + <pre>string = *( plaintext ( embedding / override ) ) plaintext embedding = ( lre / rle ) string pdf override = ( lro / rlo ) string pdf lre = %x202A ; U+202A LEFT-TO-RIGHT EMBEDDING @@ -428,8 +480,14 @@ rlo = %x202E ; U+202E RIGHT-TO-LEFT OVERRIDE pdf = %x202C ; U+202C POP DIRECTIONAL FORMATTING plaintext = *( %x0000-2029 / %x202F-10FFFF ) - ; any string with no bidirectional-algorithm formatting characters</pre><p class="note">Authors are encouraged to use the <code title="attr-dir"><a href="global-attributes.html#the-dir-attribute" id="dir_17">dir</a></code> attribute, the <code><a href="the-bdo-element.html#the-bdo-element" id="bdo_2">bdo</a></code> element, + ; any string with no bidirectional-algorithm formatting characters</pre> + + <p class="note">Authors are encouraged to use the <code title="attr-dir"><a href="global-attributes.html#the-dir-attribute" id="dir_17">dir</a></code> attribute, the <code><a href="the-bdo-element.html#the-bdo-element" id="bdo_2">bdo</a></code> element, and the <code><a href="the-bdi-element.html#the-bdi-element" id="bdi_4">bdi</a></code> element, rather than maintaining the bidirectional-algorithm formatting characters manually. The bidirectional-algorithm formatting characters interact poorly with - CSS. \ No newline at end of file + CSS.</p> + + + + \ No newline at end of file Index: the-body-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-body-element.html,v retrieving revision 1.148 retrieving revision 1.149 diff -u -d -r1.148 -r1.149 --- the-body-element.html 21 Feb 2012 21:59:02 -0000 1.148 +++ the-body-element.html 13 Mar 2012 19:58:55 -0000 1.149 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="sections.html">← 4.4 Sections</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-section-element.html">4.4.2 The section element →</a> </div> - <h4 id="the-body-element"><span class="secno">4.4.1 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>body</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_9" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-body-element"><span class="secno">4.4.1 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>body</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_9" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="headings-and-sections.html#sectioning-root" id="sectioning-root_1">Sectioning root</a>.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_9" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>As the second element in an <code><a href="the-html-element.html#the-html-element" id="html_8">html</a></code> element.</dd> @@ -400,17 +440,27 @@ };</pre> </dd> </dl><p>The <code><a href="#the-body-element" id="body_9">body</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> the main - content of the document.<p>In conforming documents, there is only one <code><a href="#the-body-element" id="body_10">body</a></code> + content of the document.</p> + + <p>In conforming documents, there is only one <code><a href="#the-body-element" id="body_10">body</a></code> element. The <code title="dom-document-body"><a href="dom.html#dom-document-body">document.body</a></code> IDL attribute provides scripts with easy access to a document's - <code><a href="#the-body-element" id="body_11">body</a></code> element.<p>The <code><a href="#the-body-element" id="body_12">body</a></code> element exposes as <a href="webappapis.html#event-handler-content-attributes" id="event-handler-content-attributes_3">event handler + <code><a href="#the-body-element" id="body_11">body</a></code> element.</p> + + + + <p>The <code><a href="#the-body-element" id="body_12">body</a></code> element exposes as <a href="webappapis.html#event-handler-content-attributes" id="event-handler-content-attributes_3">event handler content attributes</a> a number of the <a href="webappapis.html#event-handlers" id="event-handlers_1">event handlers</a> of the <code><a href="browsers.html#window" id="window_1">Window</a></code> object. It also mirrors - their <a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#event-handler-idl-attributes" title='Read about this "event handler IDL attributes" reference in the full HTML5 spec.'>event handler IDL attributes</a>.<p>The <code title="handler-window-onblur"><a href="webappapis.html#handler-window-onblur" id="onblur_1">onblur</a></code>, <code title="handler-window-onerror"><a href="webappapis.html#handler-window-onerror" id="onerror_2">onerror</a></code>, <code title="handler-window-onfocus"><a href="webappapis.html#handler-window-onfocus" id="onfocus_1">onfocus</a></code>, <code title="handler-window-onload"><a href="webappapis.html#handler-window-onload" id="onload_3">onload</a></code>, and <code title="handler-window-onscroll"><a href="webappapis.html#handler-window-onscroll" id="onscroll_1">onscroll</a></code> <a href="webappapis.html#event-handlers" id="event-handlers_2">event + their <a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#event-handler-idl-attributes" title='Read about this "event handler IDL attributes" reference in the full HTML5 spec.'>event handler IDL attributes</a>.</p> + + <p>The <code title="handler-window-onblur"><a href="webappapis.html#handler-window-onblur" id="onblur_1">onblur</a></code>, <code title="handler-window-onerror"><a href="webappapis.html#handler-window-onerror" id="onerror_2">onerror</a></code>, <code title="handler-window-onfocus"><a href="webappapis.html#handler-window-onfocus" id="onfocus_1">onfocus</a></code>, <code title="handler-window-onload"><a href="webappapis.html#handler-window-onload" id="onload_3">onload</a></code>, and <code title="handler-window-onscroll"><a href="webappapis.html#handler-window-onscroll" id="onscroll_1">onscroll</a></code> <a href="webappapis.html#event-handlers" id="event-handlers_2">event handlers</a> of the <code><a href="browsers.html#window" id="window_2">Window</a></code> object, exposed on the <code><a href="#the-body-element" id="body_13">body</a></code> element, shadow the generic <a href="webappapis.html#event-handlers" id="event-handlers_3">event handlers</a> with the same names normally supported by <a href="infrastructure.html#html-elements" id="html-elements_29">HTML - elements</a>.<p class="example">Thus, for example, a bubbling <code title="event-error">error</code> event dispatched on a child of + elements</a>.</p> + + <p class="example">Thus, for example, a bubbling <code title="event-error">error</code> event dispatched on a child of <a href="dom.html#the-body-element-0" id="the-body-element_3">the body element</a> of a <code><a href="dom.html#document" id="document_57">Document</a></code> would first trigger the <code title="handler-onerror"><a href="webappapis.html#handler-onerror" id="onerror_0">onerror</a></code> <a href="webappapis.html#event-handler-content-attributes" id="event-handler-content-attributes_4">event handler content attributes</a> of that element, then that of the @@ -425,7 +475,9 @@ <code><a href="browsers.html#window" id="window_4">Window</a></code> not the <code><a href="#the-body-element" id="body_17">body</a></code>. A regular event listener attached to the <code><a href="#the-body-element" id="body_18">body</a></code> using <code title="">addEventListener()</code>, however, would be run when the event bubbled through the <code><a href="#the-body-element" id="body_19">body</a></code> and not when it reaches - the <code><a href="browsers.html#window" id="window_5">Window</a></code> object.<div class="example"> + the <code><a href="browsers.html#window" id="window_5">Window</a></code> object.</p> + + <div class="example"> <p>This page updates an indicator to show whether or not the user is online:</p> @@ -448,4 +500,8 @@ </body> </html></pre> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: common-microsyntaxes.html =================================================================== RCS file: /sources/public/html5/spec-author-view/common-microsyntaxes.html,v retrieving revision 1.581 retrieving revision 1.582 diff -u -d -r1.581 -r1.582 --- common-microsyntaxes.html 15 Feb 2012 10:14:01 -0000 1.581 +++ common-microsyntaxes.html 13 Mar 2012 19:58:36 -0000 1.582 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,7 +380,9 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="infrastructure.html">← 2 Common infrastructure</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="urls.html">2.5 URLs →</a> @@ -353,24 +391,50 @@ <ol><li><a href="common-microsyntaxes.html#signed-integers"><span class="secno">2.4.4.1 </span>Signed integers</a><li><a href="common-microsyntaxes.html#non-negative-integers"><span class="secno">2.4.4.2 </span>Non-negative integers</a><li><a href="common-microsyntaxes.html#floating-point-numbers"><span class="secno">2.4.4.3 </span>Floating-point numbers</a><li><a href="common-microsyntaxes.html#lists-of-integers"><span class="secno">2.4.4.4 </span>Lists of integers</a></ol><li><a href="common-microsyntaxes.html#dates-and-times"><span class="secno">2.4.5 </span>Dates and times</a> <ol><li><a href="common-microsyntaxes.html#months"><span class="secno">2.4.5.1 </span>Months</a><li><a href="common-microsyntaxes.html#dates"><span class="secno">2.4.5.2 </span>Dates</a><li><a href="common-microsyntaxes.html#yearless-dates"><span class="secno">2.4.5.3 </span>Yearless dates</a><li><a href="common-microsyntaxes.html#times"><span class="secno">2.4.5.4 </span>Times</a><li><a href="common-microsyntaxes.html#local-dates-and-times"><span class="secno">2.4.5.5 </span>Local dates and times</a><li><a href="common-microsyntaxes.html#time-zones"><span class="secno">2.4.5.6 </span>Time zones</a><li><a href="common-microsyntaxes.html#global-dates-and-times"><span class="secno">2.4.5.7 </span>Global dates and times</a><li><a href="common-microsyntaxes.html#weeks"><span class="secno">2.4.5.8 </span>Weeks</a><li><a href="common-microsyntaxes.html#durations"><span class="secno">2.4.5.9 </span>Durations</a><li><a href="common-microsyntaxes.html#vaguer-moments-in-time"><span class="secno">2.4.5.10 </spa>Vaguer moments in time</a></ol><li><a href="common-microsyntaxes.html#colors"><span class="secno">2.4.6 </span>Colors</a><li><a href="common-microsyntaxes.html#space-separated-tokens"><span class="secno">2.4.7 </span>Space-separated tokens</a><li><a href="common-microsyntaxes.html#comma-separated-tokens"><span class="secno">2.4.8 </span>Comma-separated tokens</a><li><a href="common-microsyntaxes.html#syntax-references"><span class="secno">2.4.9 </span>References</a><li><a href="common-microsyntaxes.html#mq"><span class="secno">2.4.10 </span>Media queries</a></ol></ol></ol></div> - <h3 id="common-microsyntaxes"><span class="secno">2.4 </span>Common microsyntaxes</h3><p>There are various places in HTML that accept particular data + <h3 id="common-microsyntaxes"><span class="secno">2.4 </span>Common microsyntaxes</h3> + + <p>There are various places in HTML that accept particular data types, such as dates or numbers. This section describes what the conformance criteria for content in those formats is, and how to - parse them.<div><h4 id="common-parser-idioms"><span class="secno">2.4.1 </span>Common parser idioms</h4></div><p>The <dfn aria-haspopup="true" id="space-character" role="button" tabindex="0">space characters</dfn>, for the - purposes of this specification, are U+0020 SPACE, U+0009 CHARACTER - TABULATION (tab), U+000A LINE FEED (LF), U+000C FORM FEED (FF), and - U+000D CARRIAGE RETURN (CR).<p>The <dfn aria-haspopup="true" id="white_space" role="button" tabindex="0">White_Space characters</dfn> are + parse them.</p> + + + + + <div><h4 id="common-parser-idioms"><span class="secno">2.4.1 </span>Common parser idioms</h4></div> + + <p>The <dfn aria-haspopup="true" id="space-character" role="button" tabindex="0">space characters</dfn>, for the + purposes of this specification, are U+0020 SPACE, "tab" (U+0009), "LF" (U+000A), "FF" (U+000C), and + "CR" (U+000D).</p> + + <p>The <dfn aria-haspopup="true" id="white_space" role="button" tabindex="0">White_Space characters</dfn> are those that have the Unicode property "White_Space" in the Unicode - <code title="">PropList.txt</code> data file. <a href="references.html#refsUNICODE">[UNICODE]</a><p class="note">This should not be confused with the "White_Space" - value (abbreviated "WS") of the "Bidi_Class" property in the <code title="">Unicode.txt</code> data file.<h4 id="boolean-attributes"><span class="secno">2.4.2 </span>Boolean attributes</h4><p>A number of attributes are <dfn aria-haspopup="true" id="boolean-attribute" role="button" tabindex="0">boolean + <code title="">PropList.txt</code> data file. <a href="references.html#refsUNICODE">[UNICODE]</a></p> + + <p class="note">This should not be confused with the "White_Space" + value (abbreviated "WS") of the "Bidi_Class" property in the <code title="">Unicode.txt</code> data file.</p> + + + + + + <h4 id="boolean-attributes"><span class="secno">2.4.2 </span>Boolean attributes</h4> + + <p>A number of attributes are <dfn aria-haspopup="true" id="boolean-attribute" role="button" tabindex="0">boolean attributes</dfn>. The presence of a boolean attribute on an element represents the true value, and the absence of the attribute - represents the false value.<p>If the attribute is present, its value must either be the empty + represents the false value.</p> + + <p>If the attribute is present, its value must either be the empty string or a value that is an <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_1">ASCII case-insensitive</a> match for the attribute's canonical name, with no leading or - trailing whitespace.<p class="note">The values "true" and "false" are not allowed on + trailing whitespace.</p> + + <p class="note">The values "true" and "false" are not allowed on boolean attributes. To represent a false value, the attribute has to - be omitted altogether.<div class="example"> + be omitted altogether.</p> + + <div class="example"> <p>Here is an example of a checkbox that is checked and disabled. The <code title="attr-input-checked"><a href="the-input-element.html#attr-input-checked" id="checked">checked</a></code> and <code title="attr-fe-disabled"><a href="attributes-common-to-form-controls.html#attr-fe-disabled" id="disabled_10">disabled</a></code> attributes are the @@ -386,7 +450,13 @@ <pre><label><input type='checkbox' checked name=cheese disabled=""> Cheese</label></pre> - </div><h4 id="keywords-and-enumerated-attributes"><span class="secno">2.4.3 </span>Keywords and enumerated attributes</h4><p>Some attributes are defined as taking one of a finite set of + </div> + + + + <h4 id="keywords-and-enumerated-attributes"><span class="secno">2.4.3 </span>Keywords and enumerated attributes</h4> + + <p>Some attributes are defined as taking one of a finite set of keywords. Such attributes are called <dfn aria-haspopup="true" id="enumerated-attribute" role="button" tabindex="0">enumerated attributes</dfn>. The keywords are each defined to map to a particular <em>state</em> (several keywords might map to the same state, in which case some of the keywords are @@ -394,10 +464,14 @@ said to be non-conforming, and are only in the specification for historical reasons). In addition, two default states can be given. The first is the <i>invalid value default</i>, the second - is the <i>missing value default</i>.<p>If an enumerated attribute is specified, the attribute's value + is the <i>missing value default</i>.</p> + + <p>If an enumerated attribute is specified, the attribute's value must be an <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_2">ASCII case-insensitive</a> match for one of the given keywords that are not said to be non-conforming, with no - leading or trailing whitespace.<p>When the attribute is specified, if its value is an <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_3">ASCII + leading or trailing whitespace.</p> + + <p>When the attribute is specified, if its value is an <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_3">ASCII case-insensitive</a> match for one of the given keywords then that keyword's state is the state that the attribute represents. If the attribute value matches none of the given keywords, but the @@ -406,34 +480,61 @@ none of the keywords but there is a <i>missing value default</i> state defined, then <em>that</em> is the state represented by the attribute. Otherwise, there is no default, and invalid values must - be ignored.<p>When the attribute is <em>not</em> specified, if there is a + be ignored.</p> + + <p>When the attribute is <em>not</em> specified, if there is a <i>missing value default</i> state defined, then that is the state represented by the (missing) attribute. Otherwise, the absence of - the attribute means that there is no state represented.<p class="note">The empty string can be a valid keyword.<h4 id="numbers"><span class="secno">2.4.4 </span>Numbers</h4><h5 id="signed-integers"><span class="secno">2.4.4.1 </span>Signed integers</h5><p>A string is a <dfn aria-haspopup="true" id="valid-integer" role="button" tabindex="0">valid integer</dfn> if it consists of one or - more characters in the range U+0030 DIGIT ZERO (0) to U+0039 DIGIT - NINE (9), optionally prefixed with a U+002D HYPHEN-MINUS character - (-).<p>A <a href="#valid-integer" id="valid-integer_2">valid integer</a> without a U+002D HYPHEN-MINUS (-) + the attribute means that there is no state represented.</p> + + <p class="note">The empty string can be a valid keyword.</p> + + + <h4 id="numbers"><span class="secno">2.4.4 </span>Numbers</h4> + + <h5 id="signed-integers"><span class="secno">2.4.4.1 </span>Signed integers</h5> + + <p>A string is a <dfn aria-haspopup="true" id="valid-integer" role="button" tabindex="0">valid integer</dfn> if it consists of one or + more characters in the range <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#ascii-digits" title='Read about this "ASCII digits" reference in the full HTML5 spec.'>ASCII digits</a>, optionally prefixed with a U+002D HYPHEN-MINUS character + (-).</p> + + <p>A <a href="#valid-integer" id="valid-integer_2">valid integer</a> without a "-" (U+002D) prefix represents the number that is represented in base ten by that string of digits. A <a href="#valid-integer" id="valid-integer_3">valid integer</a> <em>with</em> a - U+002D HYPHEN-MINUS (-) prefix represents the number represented in + "-" (U+002D) prefix represents the number represented in base ten by the string of digits that follows the U+002D - HYPHEN-MINUS, subtracted from zero.<h5 id="non-negative-integers"><span class="secno">2.4.4.2 </span>Non-negative integers</h5><p>A string is a <dfn aria-haspopup="true" id="valid-non-negative-integer" role="button" tabindex="0">valid non-negative integer</dfn> if it - consists of one or more characters in the range U+0030 DIGIT ZERO - (0) to U+0039 DIGIT NINE (9).<p>A <a href="#valid-non-negative-integer" id="valid-non-negative-integer_0">valid non-negative integer</a> represents the number - that is represented in base ten by that string of digits.<h5 id="floating-point-numbers"><span class="secno">2.4.4.3 </span>Floating-point numbers</h5><p>A string is a <dfn aria-haspopup="true" id="valid-floating-point-number" role="button" tabindex="0">valid floating point number</dfn> if it - consists of:<ol class="brief"><li>Optionally, a U+002D HYPHEN-MINUS character (-).</li> + HYPHEN-MINUS, subtracted from zero.</p> + + + + + <h5 id="non-negative-integers"><span class="secno">2.4.4.2 </span>Non-negative integers</h5> + + <p>A string is a <dfn aria-haspopup="true" id="valid-non-negative-integer" role="button" tabindex="0">valid non-negative integer</dfn> if it + consists of one or more characters in the range <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#ascii-digits" title='Read about this "ASCII digits" reference in the full HTML5 spec.'>ASCII digits</a>.</p> + + <p>A <a href="#valid-non-negative-integer" id="valid-non-negative-integer_0">valid non-negative integer</a> represents the number + that is represented in base ten by that string of digits.</p> + + + + + <h5 id="floating-point-numbers"><span class="secno">2.4.4.3 </span>Floating-point numbers</h5> + + <p>A string is a <dfn aria-haspopup="true" id="valid-floating-point-number" role="button" tabindex="0">valid floating point number</dfn> if it + consists of:</p> + + <ol class="brief"><li>Optionally, a "-" (U+002D) character.</li> <li>One or both of the following, in the given order: - <ol><li>A series of one or more characters in the range U+0030 DIGIT - ZERO (0) to U+0039 DIGIT NINE (9).</li> + <ol><li>A series of one or more characters in the range <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#ascii-digits" title='Read about this "ASCII digits" reference in the full HTML5 spec.'>ASCII digits</a>.</li> <li> - <ol><li>A single U+002E FULL STOP character (.).</li> + <ol><li>A single "." (U+002E) character.</li> - <li>A series of one or more characters in the range U+0030 DIGIT - ZERO (0) to U+0039 DIGIT NINE (9).</li> + <li>A series of one or more characters in the range <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#ascii-digits" title='Read about this "ASCII digits" reference in the full HTML5 spec.'>ASCII digits</a>.</li> </ol></li> @@ -441,14 +542,12 @@ <li>Optionally: - <ol><li>Either a U+0065 LATIN SMALL LETTER E character (e) or a - U+0045 LATIN CAPITAL LETTER E character (E).</li> + <ol><li>Either a "e" (U+0065) character or a + "E" (U+0045) character.</li> - <li>Optionally, a U+002D HYPHEN-MINUS character (-) or U+002B - PLUS SIGN character (+).</li> + <li>Optionally, a "-" (U+002D) character or "+" (U+002B) character.</li> - <li>A series of one or more characters in the range U+0030 DIGIT - ZERO (0) to U+0039 DIGIT NINE (9).</li> + <li>A series of one or more characters in the range <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#ascii-digits" title='Read about this "ASCII digits" reference in the full HTML5 spec.'>ASCII digits</a>.</li> </ol></li> @@ -457,62 +556,108 @@ of the exponent, where the significand is the first number, interpreted as base ten (including the decimal point and the number after the decimal point, if any, and interpreting the significand as - a negative number if the whole string starts with a U+002D - HYPHEN-MINUS character (-) and the number is not zero), and where + a negative number if the whole string starts with a "-" (U+002D) character and the number is not zero), and where the exponent is the number after the E, if any (interpreted as a - negative number if there is a U+002D HYPHEN-MINUS character (-) + negative number if there is a "-" (U+002D) character between the E and the number and the number is not zero, or else - ignoring a U+002B PLUS SIGN character (+) between the E and the + ignoring a "+" (U+002B) character between the E and the number if there is one). If there is no E, then the exponent is - treated as zero.<p class="note">The Infinity and Not-a-Number (NaN) values are not + treated as zero.</p> + + <p class="note">The Infinity and Not-a-Number (NaN) values are not <a href="#valid-floating-point-number" id="valid-floating-point-number_1" title="valid floating point number">valid floating point - numbers</a>.<h5 id="lists-of-integers"><span class="secno">2.4.4.4 </span>Lists of integers</h5><p>A <dfn aria-haspopup="true" id="valid-list-of-integers" role="button" tabindex="0">valid list of integers</dfn> is a number of <a href="#valid-integer" id="valid-integer_4" title="valid integer">valid integers</a> separated by U+002C + numbers</a>.</p> + + + + + + + + <h5 id="lists-of-integers"><span class="secno">2.4.4.4 </span>Lists of integers</h5> + + <p>A <dfn aria-haspopup="true" id="valid-list-of-integers" role="button" tabindex="0">valid list of integers</dfn> is a number of <a href="#valid-integer" id="valid-integer_4" title="valid integer">valid integers</a> separated by U+002C COMMA characters, with no other characters (e.g. no <a href="#space-character" id="space-character_1" title="space character">space characters</a>). In addition, there might be restrictions on the number of integers that can be given, - or on the range of values allowed.<h4 id="dates-and-times"><span class="secno">2.4.5 </span>Dates and times</h4><p>In the algorithms below, the <dfn aria-haspopup="true" id="number-of-days-in-month-month-of-year-year" role="button" tabindex="0">number of days in month <var title="">month</var> of year <var title="">year</var></dfn> is: + or on the range of values allowed.</p> + + + + + + + + <h4 id="dates-and-times"><span class="secno">2.4.5 </span>Dates and times</h4> + + <p>In the algorithms below, the <dfn aria-haspopup="true" id="number-of-days-in-month-month-of-year-year" role="button" tabindex="0">number of days in month <var title="">month</var> of year <var title="">year</var></dfn> is: <em>31</em> if <var title="">month</var> is 1, 3, 5, 7, 8, 10, or 12; <em>30</em> if <var title="">month</var> is 4, 6, 9, or 11; <em>29</em> if <var title="">month</var> is 2 and <var title="">year</var> is a number divisible by 400, or if <var title="">year</var> is a number divisible by 4 but not by 100; and <em>28</em> otherwise. This takes into account leap years in the - Gregorian calendar. <a href="references.html#refsGREGORIAN">[GREGORIAN]</a><p>The <dfn aria-haspopup="true" id="concept-datetime-digit" role="button" tabindex="0">digits</dfn> in the date + Gregorian calendar. <a href="references.html#refsGREGORIAN">[GREGORIAN]</a></p> + + <p>The <dfn aria-haspopup="true" id="concept-datetime-digit" role="button" tabindex="0">digits</dfn> in the date and time syntaxes defined in this section must be characters in the - range U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9), used to - express numbers in base ten.<h5 id="months"><span class="secno">2.4.5.1 </span>Months</h5><p>A <dfn aria-haspopup="true" id="concept-month" role="button" tabindex="0">month</dfn> consists of a specific + range <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#ascii-digits" title='Read about this "ASCII digits" reference in the full HTML5 spec.'>ASCII digits</a>, used to + express numbers in base ten.</p> + + + + + <h5 id="months"><span class="secno">2.4.5.1 </span>Months</h5> + + <p>A <dfn aria-haspopup="true" id="concept-month" role="button" tabindex="0">month</dfn> consists of a specific proleptic Gregorian date with no time-zone information and no date - information beyond a year and a month. <a href="references.html#refsGREGORIAN">[GREGORIAN]</a><p>A string is a <dfn aria-haspopup="true" id="valid-month-string" role="button" tabindex="0">valid month string</dfn> representing a year + information beyond a year and a month. <a href="references.html#refsGREGORIAN">[GREGORIAN]</a></p> + + <p>A string is a <dfn aria-haspopup="true" id="valid-month-string" role="button" tabindex="0">valid month string</dfn> representing a year <var title="">year</var> and month <var title="">month</var> if it - consists of the following components in the given order:<ol><li>Four or more <a href="#concept-datetime-digit" id="concept-datetime-digit_0" title="concept-datetime-digit">digits</a>, representing <var title="">year</var>, where <var title="">year</var> > 0</li> + consists of the following components in the given order:</p> - <li>A U+002D HYPHEN-MINUS character (-)</li> + <ol><li>Four or more <a href="#concept-datetime-digit" id="concept-datetime-digit_0" title="concept-datetime-digit">digits</a>, representing <var title="">year</var>, where <var title="">year</var> > 0</li> + + <li>A "-" (U+002D) character</li> <li>Two <a href="#concept-datetime-digit" id="concept-datetime-digit_1" title="concept-datetime-digit">digits</a>, representing the month <var title="">month</var>, in the range 1 ≤ <var title="">month</var> ≤ 12</li> - </ol><h5 id="dates"><span class="secno">2.4.5.2 </span>Dates</h5><p>A <dfn aria-haspopup="true" id="concept-date" role="button" tabindex="0">date</dfn> consists of a specific + </ol><h5 id="dates"><span class="secno">2.4.5.2 </span>Dates</h5> + + <p>A <dfn aria-haspopup="true" id="concept-date" role="button" tabindex="0">date</dfn> consists of a specific proleptic Gregorian date with no time-zone information, consisting - of a year, a month, and a day. <a href="references.html#refsGREGORIAN">[GREGORIAN]</a><p>A string is a <dfn aria-haspopup="true" id="valid-date-string" role="button" tabindex="0">valid date string</dfn> representing a year + of a year, a month, and a day. <a href="references.html#refsGREGORIAN">[GREGORIAN]</a></p> + + <p>A string is a <dfn aria-haspopup="true" id="valid-date-string" role="button" tabindex="0">valid date string</dfn> representing a year <var title="">year</var>, month <var title="">month</var>, and day <var title="">day</var> if it consists of the following components - in the given order:<ol><li>A <a href="#valid-month-string" id="valid-month-string_0">valid month string</a>, representing <var title="">year</var> and <var title="">month</var></li> + in the given order:</p> - <li>A U+002D HYPHEN-MINUS character (-)</li> + <ol><li>A <a href="#valid-month-string" id="valid-month-string_0">valid month string</a>, representing <var title="">year</var> and <var title="">month</var></li> + + <li>A "-" (U+002D) character</li> <li>Two <a href="#concept-datetime-digit" id="concept-datetime-digit_2" title="concept-datetime-digit">digits</a>, representing <var title="">day</var>, in the range 1 ≤ <var title="">day</var> ≤ <var title="">maxday</var> where <var title="">maxday</var> is the <a href="#number-of-days-in-month-month-of-year-year" id="number-of-days-in-month-month-of-year-year_0" title="number of days in month month of year year">number of days in the month <var title="">month</var> and year <var title="">year</var></a></li> - </ol><h5 id="yearless-dates"><span class="secno">2.4.5.3 </span>Yearless dates</h5><p>A <dfn aria-haspopup="true" id="concept-yearless-date" role="button" tabindex="0">yearless date</dfn> consists - of a month and a day, but with no associated year.<p>A string is a <dfn aria-haspopup="true" id="valid-yearless-date-string" role="button" tabindex="0">valid yearless date string</dfn> representing + </ol><h5 id="yearless-dates"><span class="secno">2.4.5.3 </span>Yearless dates</h5> + + <p>A <dfn aria-haspopup="true" id="concept-yearless-date" role="button" tabindex="0">yearless date</dfn> consists + of a month and a day, but with no associated year.</p> + + <p>A string is a <dfn aria-haspopup="true" id="valid-yearless-date-string" role="button" tabindex="0">valid yearless date string</dfn> representing a month <var title="">month</var> and a day <var title="">day</var> - if it consists of the following components in the given order:<ol><li>Optionally, two U+002D HYPHEN-MINUS characters (-)</li> + if it consists of the following components in the given order:</p> + + <ol><li>Optionally, two "-" (U+002D) characters</li> <li>Two <a href="#concept-datetime-digit" id="concept-datetime-digit_3" title="concept-datetime-digit">digits</a>, representing the month <var title="">month</var>, in the range 1 ≤ <var title="">month</var> ≤ 12</li> - <li>A U+002D HYPHEN-MINUS character (-)</li> + <li>A "-" (U+002D) character</li> <li>Two <a href="#concept-datetime-digit" id="concept-datetime-digit_4" title="concept-datetime-digit">digits</a>, representing <var title="">day</var>, in the range @@ -522,16 +667,27 @@ </ol><p class="note">In other words, if the <var title="">month</var> is "<code title="">02</code>", meaning February, then the day can be - 29, as if the year was a leap year.<h5 id="times"><span class="secno">2.4.5.4 </span>Times</h5><p>A <dfn aria-haspopup="true" id="concept-time" role="button" tabindex="0">time</dfn> consists of a specific + 29, as if the year was a leap year.</p> + + + + + <h5 id="times"><span class="secno">2.4.5.4 </span>Times</h5> + + <p>A <dfn aria-haspopup="true" id="concept-time" role="button" tabindex="0">time</dfn> consists of a specific time with no time-zone information, consisting of an hour, a minute, - a second, and a fraction of a second.<p>A string is a <dfn aria-haspopup="true" id="valid-time-string" role="button" tabindex="0">valid time string</dfn> representing an hour + a second, and a fraction of a second.</p> + + <p>A string is a <dfn aria-haspopup="true" id="valid-time-string" role="button" tabindex="0">valid time string</dfn> representing an hour <var title="">hour</var>, a minute <var title="">minute</var>, and a second <var title="">second</var> if it consists of the following - components in the given order:<ol><li>Two <a href="#concept-datetime-digit" id="concept-datetime-digit_5" title="concept-datetime-digit">digits</a>, + components in the given order:</p> + + <ol><li>Two <a href="#concept-datetime-digit" id="concept-datetime-digit_5" title="concept-datetime-digit">digits</a>, representing <var title="">hour</var>, in the range 0 ≤ <var title="">hour</var> ≤ 23</li> - <li>A U+003A COLON character (:)</li> + <li>A ":" (U+003A) character</li> <li>Two <a href="#concept-datetime-digit" id="concept-datetime-digit_6" title="concept-datetime-digit">digits</a>, representing <var title="">minute</var>, in the range @@ -540,7 +696,7 @@ <li>Optionally (required if <var title="">second</var> is non-zero): - <ol><li>A U+003A COLON character (:)</li> + <ol><li>A ":" (U+003A) character</li> <li>Two <a href="#concept-datetime-digit" id="concept-datetime-digit_7" title="concept-datetime-digit">digits</a>, representing the integer part of <var title="">second</var>, in @@ -559,36 +715,56 @@ </ol></li> </ol><p class="note">The <var title="">second</var> component cannot be - 60 or 61; leap seconds cannot be represented.<h5 id="local-dates-and-times"><span class="secno">2.4.5.5 </span>Local dates and times</h5><p>A <dfn aria-haspopup="true" id="concept-datetime-local" role="button" tabindex="0">local date and time</dfn> + 60 or 61; leap seconds cannot be represented.</p> + + + + + <h5 id="local-dates-and-times"><span class="secno">2.4.5.5 </span>Local dates and times</h5> + + <p>A <dfn aria-haspopup="true" id="concept-datetime-local" role="button" tabindex="0">local date and time</dfn> consists of a specific proleptic Gregorian date, consisting of a year, a month, and a day, and a time, consisting of an hour, a minute, a second, and a fraction of a second, but expressed without - a time zone. <a href="references.html#refsGREGORIAN">[GREGORIAN]</a><p>A string is a <dfn aria-haspopup="true" id="valid-local-date-and-time-string" role="button" tabindex="0">valid local date and time string</dfn> + a time zone. <a href="references.html#refsGREGORIAN">[GREGORIAN]</a></p> + + <p>A string is a <dfn aria-haspopup="true" id="valid-local-date-and-time-string" role="button" tabindex="0">valid local date and time string</dfn> representing a date and time if it consists of the following - components in the given order:<ol><li>A <a href="#valid-date-string" id="valid-date-string_0">valid date string</a> representing the date</li> + components in the given order:</p> - <li>A U+0054 LATIN CAPITAL LETTER T character (T) or a U+0020 SPACE character</li> + <ol><li>A <a href="#valid-date-string" id="valid-date-string_0">valid date string</a> representing the date</li> + + <li>A "T" (U+0054) character or a U+0020 SPACE character</li> <li>A <a href="#valid-time-string" id="valid-time-string_0">valid time string</a> representing the time</li> </ol><p>A string is a <dfn aria-haspopup="true" id="valid-normalized-local-date-and-time-string" role="button" tabindex="0">valid normalized local date and time string</dfn> representing a date and time if it consists of the - following components in the given order:<ol><li>A <a href="#valid-date-string" id="valid-date-string_1">valid date string</a> representing the date</li> + following components in the given order:</p> - <li>A U+0054 LATIN CAPITAL LETTER T character (T)</li> + <ol><li>A <a href="#valid-date-string" id="valid-date-string_1">valid date string</a> representing the date</li> + + <li>A "T" (U+0054) character</li> <li>A <a href="#valid-time-string" id="valid-time-string_1">valid time string</a> representing the time, expressed as the shortest possible string for the given time (e.g. omitting the seconds component entirely if the given time is zero seconds past the minute)</li> - </ol><h5 id="time-zones"><span class="secno">2.4.5.6 </span>Time zones</h5><p>A <dfn aria-haspopup="true" id="concept-timezone" role="button" tabindex="0">time-zone offset</dfn> consists - of a signed number of hours and minutes.<p>A string is a <dfn aria-haspopup="true" id="valid-time-zone-offset-string" role="button" tabindex="0">valid time-zone offset string</dfn> - representing a time-zone offset if it consists of either:<ul><li><p>A U+005A LATIN CAPITAL LETTER Z character (Z), allowed only + </ol><h5 id="time-zones"><span class="secno">2.4.5.6 </span>Time zones</h5> + + <p>A <dfn aria-haspopup="true" id="concept-timezone" role="button" tabindex="0">time-zone offset</dfn> consists + of a signed number of hours and minutes.</p> + + <p>A string is a <dfn aria-haspopup="true" id="valid-time-zone-offset-string" role="button" tabindex="0">valid time-zone offset string</dfn> + representing a time-zone offset if it consists of either:</p> + + + <ul><li><p>A "Z" (U+005A) character, allowed only if the time zone is UTC</li> <li> <p>Or, the following components, in the given order:</p> - <ol><li>Either a U+002B PLUS SIGN character (+) or, if the + <ol><li>Either a "+" (U+002B) character or, if the time-zone offset is not zero, a U+002D HYPHEN-MINUS character (-), representing the sign of the time-zone offset</li> @@ -597,7 +773,7 @@ representing the hours component <var title="">hour</var> of the time-zone offset, in the range 0 ≤ <var title="">hour</var> ≤ 23</li> - <li>Optionally, a U+003A COLON character (:)</li> + <li>Optionally, a ":" (U+003A) character</li> <li>Two <a href="#concept-datetime-digit" id="concept-datetime-digit_10" title="concept-datetime-digit">digits</a>, representing the minutes component <var title="">minute</var> @@ -608,18 +784,31 @@ </ul><p class="note">This format allows for time-zone offsets from -23:59 to +23:59. In practice, however, the range of offsets of actual time zones is -12:00 to +14:00, and the minutes component of offsets of - actual time zones is always either 00, 30, or 45.<p class="note">See also the usage notes and examples in the <a href="#concept-datetime" id="concept-datetime_0" title="concept-datetime">global date and time</a> section below + actual time zones is always either 00, 30, or 45.</p> + + <p class="note">See also the usage notes and examples in the <a href="#concept-datetime" id="concept-datetime_0" title="concept-datetime">global date and time</a> section below for details on using time-zone offsets with historical times that - predate the formation of formal time zones.<h5 id="global-dates-and-times"><span class="secno">2.4.5.7 </span>Global dates and times</h5><p>A <dfn aria-haspopup="true" id="concept-datetime" role="button" tabindex="0">global date and time</dfn> + predate the formation of formal time zones.</p> + + + + + <h5 id="global-dates-and-times"><span class="secno">2.4.5.7 </span>Global dates and times</h5> + + <p>A <dfn aria-haspopup="true" id="concept-datetime" role="button" tabindex="0">global date and time</dfn> consists of a specific proleptic Gregorian date, consisting of a year, a month, and a day, and a time, consisting of an hour, a minute, a second, and a fraction of a second, expressed with a time-zone offset, consisting of a signed number of hours and - minutes. <a href="references.html#refsGREGORIAN">[GREGORIAN]</a><p>A string is a <dfn aria-haspopup="true" id="valid-global-date-and-time-string" role="button" tabindex="0">valid global date and time string</dfn> + minutes. <a href="references.html#refsGREGORIAN">[GREGORIAN]</a></p> + + <p>A string is a <dfn aria-haspopup="true" id="valid-global-date-and-time-string" role="button" tabindex="0">valid global date and time string</dfn> representing a date, time, and a time-zone offset if it consists of - the following components in the given order:<ol><li>A <a href="#valid-date-string" id="valid-date-string_2">valid date string</a> representing the date</li> + the following components in the given order:</p> - <li>A U+0054 LATIN CAPITAL LETTER T character (T) or a U+0020 SPACE character</li> + <ol><li>A <a href="#valid-date-string" id="valid-date-string_2">valid date string</a> representing the date</li> + + <li>A "T" (U+0054) character or a U+0020 SPACE character</li> <li>A <a href="#valid-time-string" id="valid-time-string_2">valid time string</a> representing the time</li> @@ -632,7 +821,9 @@ formation of time zones must be expressed and interpeted as UT1 times with explicit time zones that approximate the contemporary difference between the appropriate local time and the time observed - at the location of Greenwich, London.<div class="example"> + at the location of Greenwich, London.</p> + + <div class="example"> <p>The following are some examples of dates written as <a href="#valid-global-date-and-time-string" id="valid-global-date-and-time-string_0" title="valid global date and time string">valid global date and time strings</a>.</p> @@ -685,17 +876,23 @@ <li>Time-zone offsets differ based on daylight savings time.</li> - </ul></div><p>A string is a <dfn aria-haspopup="true" id="valid-normalized-forced-utc-global-date-and-time-string" role="button" tabindex="0">valid normalized forced-UTC global date and time + </ul></div> + + <p>A string is a <dfn aria-haspopup="true" id="valid-normalized-forced-utc-global-date-and-time-string" role="button" tabindex="0">valid normalized forced-UTC global date and time string</dfn> representing a date, time, and a time-zone offset if it - consists of the following components in the given order:<ol><li>A <a href="#valid-date-string" id="valid-date-string_3">valid date string</a> representing the date converted to the UTC time zone</li> + consists of the following components in the given order:</p> - <li>A U+0054 LATIN CAPITAL LETTER T character (T)</li> + <ol><li>A <a href="#valid-date-string" id="valid-date-string_3">valid date string</a> representing the date converted to the UTC time zone</li> + + <li>A "T" (U+0054) character</li> <li>A <a href="#valid-time-string" id="valid-time-string_3">valid time string</a> representing the time converted to the UTC time zone and expressed as the shortest possible string for the given time (e.g. omitting the seconds component entirely if the given time is zero seconds past the minute)</li> - <li>A U+005A LATIN CAPITAL LETTER Z character (Z)</li> + <li>A "Z" (U+005A) character</li> - </ol><h5 id="weeks"><span class="secno">2.4.5.8 </span>Weeks</h5><p>A <dfn aria-haspopup="true" id="concept-week" role="button" tabindex="0">week</dfn> consists of a week-year + </ol><h5 id="weeks"><span class="secno">2.4.5.8 </span>Weeks</h5> + + <p>A <dfn aria-haspopup="true" id="concept-week" role="button" tabindex="0">week</dfn> consists of a week-year number and a week number representing a seven-day period starting on a Monday. Each week-year in this calendaring system has either 52 or 53 such seven-day periods, as defined below. The seven-day period @@ -703,42 +900,60 @@ (1969-12-29) is defined as week number 1 in week-year 1970. Consecutive weeks are numbered sequentially. The week before the number 1 week in a week-year is the last week in the previous - week-year, and vice versa. <a href="references.html#refsGREGORIAN">[GREGORIAN]</a><p>A week-year with a number <var title="">year</var> has 53 weeks + week-year, and vice versa. <a href="references.html#refsGREGORIAN">[GREGORIAN]</a></p> + + <p>A week-year with a number <var title="">year</var> has 53 weeks if it corresponds to either a year <var title="">year</var> in the proleptic Gregorian calendar that has a Thursday as its first day (January 1st), or a year <var title="">year</var> in the proleptic Gregorian calendar that has a Wednesday as its first day (January 1st) and where <var title="">year</var> is a number divisible by 400, or a number divisible by 4 but not by 100. All other week-years - have 52 weeks.<p>The <dfn aria-haspopup="true" id="week-number-of-the-last-day" role="button" tabindex="0">week number of the last day</dfn> of a week-year with 53 + have 52 weeks.</p> + + <p>The <dfn aria-haspopup="true" id="week-number-of-the-last-day" role="button" tabindex="0">week number of the last day</dfn> of a week-year with 53 weeks is 53; the week number of the last day of a week-year with 52 - weeks is 52.<p class="note">The week-year number of a particular day can be + weeks is 52.</p> + + <p class="note">The week-year number of a particular day can be different than the number of the year that contains that day in the proleptic Gregorian calendar. The first week in a week-year <var title="">y</var> is the week that contains the first Thursday of - the Gregorian year <var title="">y</var>.<p>A string is a <dfn aria-haspopup="true" id="valid-week-string" role="button" tabindex="0">valid week string</dfn> representing a + the Gregorian year <var title="">y</var>.</p> + + <p>A string is a <dfn aria-haspopup="true" id="valid-week-string" role="button" tabindex="0">valid week string</dfn> representing a week-year <var title="">year</var> and week <var title="">week</var> - if it consists of the following components in the given order:<ol><li>Four or more <a href="#concept-datetime-digit" id="concept-datetime-digit_11" title="concept-datetime-digit">digits</a>, representing <var title="">year</var>, where <var title="">year</var> > 0</li> + if it consists of the following components in the given order:</p> - <li>A U+002D HYPHEN-MINUS character (-)</li> + <ol><li>Four or more <a href="#concept-datetime-digit" id="concept-datetime-digit_11" title="concept-datetime-digit">digits</a>, representing <var title="">year</var>, where <var title="">year</var> > 0</li> - <li>A U+0057 LATIN CAPITAL LETTER W character (W)</li> + <li>A "-" (U+002D) character</li> + + <li>A "W" (U+0057) character</li> <li>Two <a href="#concept-datetime-digit" id="concept-datetime-digit_12" title="concept-datetime-digit">digits</a>, representing the week <var title="">week</var>, in the range 1 ≤ <var title="">week</var> ≤ <var title="">maxweek</var>, where <var title="">maxweek</var> is the <a href="#week-number-of-the-last-day" id="week-number-of-the-last-day_0">week number of the last day</a> of week-year <var title="">year</var></li> - </ol><h5 id="durations"><span class="secno">2.4.5.9 </span>Durations</h5><p>A <dfn aria-haspopup="true" id="concept-duration" role="button" tabindex="0">duration</dfn> consists of - a number of seconds.<p class="note">Since months and seconds are not comparable (a month + </ol><h5 id="durations"><span class="secno">2.4.5.9 </span>Durations</h5> + + <p>A <dfn aria-haspopup="true" id="concept-duration" role="button" tabindex="0">duration</dfn> consists of + a number of seconds.</p> + + <p class="note">Since months and seconds are not comparable (a month is not a precise number of seconds, but is instead a period whose exact length depends on the precise day from which it is measured) a <a href="#concept-duration" id="concept-duration_0" title="concept-duration">duration</a> as defined in this specification cannot include months (or years, which are equivalent to twelve months). Only durations that describe a specific number of seconds can be - described.<p>A string is a <dfn aria-haspopup="true" id="valid-duration-string" role="button" tabindex="0">valid duration string</dfn> representing a + described.</p> + + <p>A string is a <dfn aria-haspopup="true" id="valid-duration-string" role="button" tabindex="0">valid duration string</dfn> representing a <a href="#concept-duration" id="concept-duration_1" title="concept-duration">duration</a> <var title="">t</var> - if it consists of either of the following:<ul><li> + if it consists of either of the following:</p> + + <ul><li> @@ -773,7 +988,7 @@ <ol><li><p>One or more <a href="#concept-datetime-digit" id="concept-datetime-digit_16" title="concept-datetime-digit">digits</a>, representing a number of seconds.</li> - <li><p>Optionally, a U+002E FULL STOP character (.) followed + <li><p>Optionally, a "." (U+002E) character followed by one, two, or three <a href="#concept-datetime-digit" id="concept-datetime-digit_17" title="concept-datetime-digit">digits</a>, representing a fraction of a second.</li> @@ -809,7 +1024,7 @@ <li><p>If the <a href="#duration-time-component-scale" id="duration-time-component-scale_2">duration time component scale</a> specified is 1 (i.e. the units are seconds), then, optionally, a - U+002E FULL STOP character (.) followed by one, two, or three <a href="#concept-datetime-digit" id="concept-datetime-digit_19" title="concept-datetime-digit">digits</a>, representing a + "." (U+002E) character followed by one, two, or three <a href="#concept-datetime-digit" id="concept-datetime-digit_19" title="concept-datetime-digit">digits</a>, representing a fraction of a second.</li> <li><p>Zero or more <a href="#space-character" id="space-character_3" title="space character">space @@ -858,58 +1073,116 @@ </li> - </ul><h5 id="vaguer-moments-in-time"><span class="secno">2.4.5.10 </span>Vaguer moments in time</h5><p>A string is a <dfn aria-haspopup="true" id="valid-date-string-with-optional-time" role="button" tabindex="0">valid date string with optional time</dfn> if - it is also one of the following:<ul><li>A <a href="#valid-date-string" id="valid-date-string_4">valid date string</a></li> + </ul><h5 id="vaguer-moments-in-time"><span class="secno">2.4.5.10 </span>Vaguer moments in time</h5> + + <p>A string is a <dfn aria-haspopup="true" id="valid-date-string-with-optional-time" role="button" tabindex="0">valid date string with optional time</dfn> if + it is also one of the following:</p> + + <ul><li>A <a href="#valid-date-string" id="valid-date-string_4">valid date string</a></li> <li>A <a href="#valid-global-date-and-time-string" id="valid-global-date-and-time-string_1">valid global date and time string</a></li> - </ul><h4 id="colors"><span class="secno">2.4.6 </span>Colors</h4><p>A <dfn aria-haspopup="true" id="simple-color" role="button" tabindex="0">simple color</dfn> consists of three 8-bit numbers in the + </ul><h4 id="colors"><span class="secno">2.4.6 </span>Colors</h4> + + <p>A <dfn aria-haspopup="true" id="simple-color" role="button" tabindex="0">simple color</dfn> consists of three 8-bit numbers in the range 0..255, representing the red, green, and blue components of - the color respectively, in the sRGB color space. <a href="references.html#refsSRGB">[SRGB]</a><p>A string is a <dfn aria-haspopup="true" id="valid-simple-color" role="button" tabindex="0">valid simple color</dfn> if it is exactly - seven characters long, and the first character is a U+0023 NUMBER - SIGN character (#), and the remaining six characters are all in the - range U+0030 DIGIT ZERO (0) to U+0039 DIGIT NINE (9), U+0041 LATIN + the color respectively, in the sRGB color space. <a href="references.html#refsSRGB">[SRGB]</a></p> + + <p>A string is a <dfn aria-haspopup="true" id="valid-simple-color" role="button" tabindex="0">valid simple color</dfn> if it is exactly + seven characters long, and the first character is a "#" (U+0023) character, and the remaining six characters are all in the + range <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#ascii-digits" title='Read about this "ASCII digits" reference in the full HTML5 spec.'>ASCII digits</a>, U+0041 LATIN CAPITAL LETTER A to U+0046 LATIN CAPITAL LETTER F, U+0061 LATIN SMALL LETTER A to U+0066 LATIN SMALL LETTER F, with the first two digits representing the red component, the middle two digits representing the green component, and the last two digits - representing the blue component, in hexadecimal.<p>A string is a <dfn aria-haspopup="true" id="valid-lowercase-simple-color" role="button" tabindex="0">valid lowercase simple color</dfn> if it is a + representing the blue component, in hexadecimal.</p> + + <p>A string is a <dfn aria-haspopup="true" id="valid-lowercase-simple-color" role="button" tabindex="0">valid lowercase simple color</dfn> if it is a <a href="#valid-simple-color" id="valid-simple-color_0">valid simple color</a> and doesn't use any characters in the range U+0041 LATIN CAPITAL LETTER A to U+0046 LATIN CAPITAL - LETTER F.<hr><h4 id="space-separated-tokens"><span class="secno">2.4.7 </span>Space-separated tokens</h4><p>A <dfn aria-haspopup="true" id="set-of-space-separated-tokens" role="button" tabindex="0">set of space-separated tokens</dfn> is a string containing + LETTER F.</p> + + + + <hr><h4 id="space-separated-tokens"><span class="secno">2.4.7 </span>Space-separated tokens</h4> + + <p>A <dfn aria-haspopup="true" id="set-of-space-separated-tokens" role="button" tabindex="0">set of space-separated tokens</dfn> is a string containing zero or more words (known as tokens) separated by one or more <a href="#space-character" id="space-character_5" title="space character">space characters</a>, where words consist - of any string of one or more characters, none of which are <a href="#space-character" id="space-character_6" title="space character">space characters</a>.<p>A string containing a <a href="#set-of-space-separated-tokens" id="set-of-space-separated-tokens_0">set of space-separated tokens</a> + of any string of one or more characters, none of which are <a href="#space-character" id="space-character_6" title="space character">space characters</a>.</p> + + <p>A string containing a <a href="#set-of-space-separated-tokens" id="set-of-space-separated-tokens_0">set of space-separated tokens</a> may have leading or trailing <a href="#space-character" id="space-character_7" title="space character">space - characters</a>.<p>An <dfn aria-haspopup="true" id="unordered-set-of-unique-space-separated-tokens" role="button" tabindex="0">unordered set of unique space-separated tokens</dfn> is a + characters</a>.</p> + + <p>An <dfn aria-haspopup="true" id="unordered-set-of-unique-space-separated-tokens" role="button" tabindex="0">unordered set of unique space-separated tokens</dfn> is a <a href="#set-of-space-separated-tokens" id="set-of-space-separated-tokens_1">set of space-separated tokens</a> where none of the tokens - are duplicated.<p>An <dfn aria-haspopup="true" id="ordered-set-of-unique-space-separated-tokens" role="button" tabindex="0">ordered set of unique space-separated tokens</dfn> is a + are duplicated.</p> + + <p>An <dfn aria-haspopup="true" id="ordered-set-of-unique-space-separated-tokens" role="button" tabindex="0">ordered set of unique space-separated tokens</dfn> is a <a href="#set-of-space-separated-tokens" id="set-of-space-separated-tokens_2">set of space-separated tokens</a> where none of the tokens - are duplicated but where the order of the tokens is meaningful.<p><a href="#set-of-space-separated-tokens" id="set-of-space-separated-tokens_3" title="set of space-separated tokens">Sets of + are duplicated but where the order of the tokens is meaningful.</p> + + <p><a href="#set-of-space-separated-tokens" id="set-of-space-separated-tokens_3" title="set of space-separated tokens">Sets of space-separated tokens</a> sometimes have a defined set of allowed values. When a set of allowed values is defined, the tokens must all be from that list of allowed values; other values are non-conforming. If no such set of allowed values is provided, then - all values are conforming.<p class="note">How tokens in a <a href="#set-of-space-separated-tokens" id="set-of-space-separated-tokens_4">set of space-separated + all values are conforming.</p> + + <p class="note">How tokens in a <a href="#set-of-space-separated-tokens" id="set-of-space-separated-tokens_4">set of space-separated tokens</a> are to be compared (e.g. case-sensitively or not) is - defined on a per-set basis.<h4 id="comma-separated-tokens"><span class="secno">2.4.8 </span>Comma-separated tokens</h4><p>A <dfn aria-haspopup="true" id="set-of-comma-separated-tokens" role="button" tabindex="0">set of comma-separated tokens</dfn> is a string containing - zero or more tokens each separated from the next by a single U+002C - COMMA character (,), where tokens consist of any string of zero or + defined on a per-set basis.</p> + + + + + + <h4 id="comma-separated-tokens"><span class="secno">2.4.8 </span>Comma-separated tokens</h4> + + <p>A <dfn aria-haspopup="true" id="set-of-comma-separated-tokens" role="button" tabindex="0">set of comma-separated tokens</dfn> is a string containing + zero or more tokens each separated from the next by a single "," (U+002C) character, where tokens consist of any string of zero or more characters, neither beginning nor ending with <a href="#space-character" id="space-character_8" title="space character">space characters</a>, nor containing any - U+002C COMMA characters (,), and optionally surrounded by <a href="#space-character" id="space-character_9" title="space character">space characters</a>.<p class="example">For instance, the string "<code title=""> a ,b,,d d </code>" consists of four + "," (U+002C) characters, and optionally surrounded by <a href="#space-character" id="space-character_9" title="space character">space characters</a>.</p> + + <p class="example">For instance, the string "<code title=""> a ,b,,d d </code>" consists of four tokens: "a", "b", the empty string, and "d d". Leading and trailing whitespace around each token doesn't count as part of the - token, and the empty string can be a token.<p><a href="#set-of-comma-separated-tokens" id="set-of-comma-separated-tokens_0" title="set of comma-separated tokens">Sets of + token, and the empty string can be a token.</p> + + <p><a href="#set-of-comma-separated-tokens" id="set-of-comma-separated-tokens_0" title="set of comma-separated tokens">Sets of comma-separated tokens</a> sometimes have further restrictions on what consists a valid token. When such restrictions are defined, the tokens must all fit within those restrictions; other values are non-conforming. If no such restrictions are specified, then all - values are conforming.<h4 id="syntax-references"><span class="secno">2.4.9 </span>References</h4><p>A <dfn aria-haspopup="true" id="valid-hash-name-reference" role="button" tabindex="0">valid hash-name reference</dfn> to an element of type <var title="">type</var> is a string consisting of a U+0023 NUMBER SIGN - character (#) followed by a string which exactly matches the value + values are conforming.</p> + + + + + + + <h4 id="syntax-references"><span class="secno">2.4.9 </span>References</h4> + + <p>A <dfn aria-haspopup="true" id="valid-hash-name-reference" role="button" tabindex="0">valid hash-name reference</dfn> to an element of type <var title="">type</var> is a string consisting of a "#" (U+0023) character followed by a string which exactly matches the value of the <code title="">name</code> attribute of an element with type - <var title="">type</var> in the document.<h4 id="mq"><span class="secno">2.4.10 </span>Media queries</h4><p>A string is a <dfn aria-haspopup="true" id="valid-media-query" role="button" tabindex="0">valid media query</dfn> if it matches the + <var title="">type</var> in the document.</p> + + + + + <h4 id="mq"><span class="secno">2.4.10 </span>Media queries</h4> + + <p>A string is a <dfn aria-haspopup="true" id="valid-media-query" role="button" tabindex="0">valid media query</dfn> if it matches the <code title="">media_query_list</code> production of the Media - Queries specification. <a href="references.html#refsMQ">[MQ]</a><p>A string <dfn aria-haspopup="true" id="matches-the-environment" role="button" tabindex="0">matches the environment</dfn> of the user if it is + Queries specification. <a href="references.html#refsMQ">[MQ]</a></p> + + <p>A string <dfn aria-haspopup="true" id="matches-the-environment" role="button" tabindex="0">matches the environment</dfn> of the user if it is the empty string, a string consisting of only <a href="#space-character" id="space-character_10" title="space character">space characters</a>, or is a media query that matches the user's environment according to the definitions given in the - Media Queries specification. <a href="references.html#refsMQ">[MQ]</a> \ No newline at end of file + Media Queries specification. <a href="references.html#refsMQ">[MQ]</a></p> + + + + + \ No newline at end of file Index: common-input-element-attributes.html =================================================================== RCS file: /sources/public/html5/spec-author-view/common-input-element-attributes.html,v retrieving revision 1.604 retrieving revision 1.605 diff -u -d -r1.604 -r1.605 --- common-input-element-attributes.html 15 Feb 2012 10:14:01 -0000 1.604 +++ common-input-element-attributes.html 13 Mar 2012 19:58:36 -0000 1.605 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,16 +380,27 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="states-of-the-type-attribute.html">← 4.10.7.1 States of the type attribute</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="common-input-element-apis.html">4.10.7.3 Common input element APIs →</a> <ol class="toc"><li><ol><li><ol><li><ol><li><a href="common-input-element-attributes.html#common-input-element-attributes"><span class="secno">4.10.7.2 </span>Common <code>input</code> element attributes</a> <ol><li><a href="common-input-element-attributes.html#the-autocomplete-attribute"><span class="secno">4.10.7.2.1 </span>The <code title="attr-input-autocomplete">autocomplete</code> attribute</a><li><a href="common-input-element-attributes.html#the-dirname-attribute"><span class="secno">4.10.7.2.2 </span>The <code title="attr-input-dirname">dirname</code> attribute</a><li><a href="common-input-element-attributes.html#the-list-attribute"><span class="secno">4.10.7.2.3 </span>The <code title="attr-input-list">list</code> attribute</a><li><a href="common-input-element-attributes.html#the-readonly-attribute"><span class="secno">4.10.7.2.4 </span>The <code title="attr-input-readonly">readonly</code> attribute</a><li><a href="common-input-element-attributes.html#the-size-attribute"><span class="secno">4.10.7.2.5 </span>The <code title="attr-input-size">size</code> attribute</a><li><a href="common-input-element-attributes.html#the-required-attribute"><span class="secno">4.10.7.2.6 </span>The <code title="ttr-input-required">required</code> attribute</a><li><a href="common-input-element-attributes.html#the-multiple-attribute"><span class="secno">4.10.7.2.7 </span>The <code title="attr-input-multiple">multiple</code> attribute</a><li><a href="common-input-element-attributes.html#the-maxlength-attribute"><span class="secno">4.10.7.2.8 </span>The <code title="attr-input-maxlength">maxlength</code> attribute</a><li><a href="common-input-element-attributes.html#the-pattern-attribute"><span class="secno">4.10.7.2.9 </span>The <code title="attr-input-pattern">pattern</code> attribute</a><li><a href="common-input-element-attributes.html#the-min-and-max-attributes"><span class="secno">4.10.7.2.10 </span>The <code title="attr-input-min">min</code> and <code title="attr-input-max">max</code> attributes</a><li><a href="common-input-element-attributes.html#the-step-attribute"><span class="secno">4.10.7.2.11 </span>The <code title="attr-input-step">step</code> attribute</a><li><a href="common-input-element-attributes.htmlthe-placeholder-attribute"><span class="secno">4.10.7.2.12 </span>The <code title="attr-input-placeholder">placeholder</code> attribute</a></ol></ol></ol></ol></ol></div> - <h5 id="common-input-element-attributes"><span class="secno">4.10.7.2 </span>Common <code><a href="the-input-element.html#the-input-element" id="input_117">input</a></code> element attributes</h5><h6 id="the-autocomplete-attribute"><span class="secno">4.10.7.2.1 </span>The <code title="attr-input-autocomplete"><a href="#attr-input-autocomplete" id="autocomplete_28">autocomplete</a></code> attribute</h6><p>User agents sometimes have features for helping users fill forms + <h5 id="common-input-element-attributes"><span class="secno">4.10.7.2 </span>Common <code><a href="the-input-element.html#the-input-element" id="input_117">input</a></code> element attributes</h5> + + + + + <h6 id="the-autocomplete-attribute"><span class="secno">4.10.7.2.1 </span>The <code title="attr-input-autocomplete"><a href="#attr-input-autocomplete" id="autocomplete_28">autocomplete</a></code> attribute</h6> + + <p>User agents sometimes have features for helping users fill forms in, for example prefilling the user's address based on earlier user - input.<p>The <dfn aria-haspopup="true" id="attr-input-autocomplete" role="button" tabindex="0"><code>autocomplete</code></dfn> + input.</p> + + <p>The <dfn aria-haspopup="true" id="attr-input-autocomplete" role="button" tabindex="0"><code>autocomplete</code></dfn> attribute is an <a href="common-microsyntaxes.html#enumerated-attribute" id="enumerated-attribute_10">enumerated attribute</a>. The attribute has three states. The <code title="attr-input-autocomplete-on">on</code> keyword maps to the <dfn aria-haspopup="true" id="attr-input-autocomplete-on-state" role="button" tabindex="0">on</dfn> state, and the @@ -361,7 +408,9 @@ the <dfn aria-haspopup="true" id="attr-input-autocomplete-off-state" role="button" tabindex="0">off</dfn> state. The attribute may also be omitted. The <i>missing value default</i> is the <dfn aria-haspopup="true" id="attr-input-autocomplete-default-state" role="button" tabindex="0">default</dfn> - state.<p>The <a href="#attr-input-autocomplete-off-state" id="attr-input-autocomplete-off-state_0" title="attr-input-autocomplete-off-state">off</a> + state.</p> + + <p>The <a href="#attr-input-autocomplete-off-state" id="attr-input-autocomplete-off-state_0" title="attr-input-autocomplete-off-state">off</a> state indicates either that the control's input data is particularly sensitive (for example the activation code for a nuclear weapon); or that it is a value that will never be reused (for example a @@ -369,13 +418,21 @@ explicitly enter the data each time, instead of being able to rely on the UA to prefill the value for him; or that the document provides its own autocomplete mechanism and does not want the user - agent to provide autocompletion values.<p>Conversely, the <a href="#attr-input-autocomplete-on-state" id="attr-input-autocomplete-on-state_0" title="attr-input-autocomplete-on-state">on</a> state indicates + agent to provide autocompletion values.</p> + + <p>Conversely, the <a href="#attr-input-autocomplete-on-state" id="attr-input-autocomplete-on-state_0" title="attr-input-autocomplete-on-state">on</a> state indicates that the value is not particularly sensitive and the user can expect to be able to rely on his user agent to remember values he has - entered for that control.<p>The <a href="#attr-input-autocomplete-default-state" id="attr-input-autocomplete-default-state_0" title="attr-input-autocomplete-default-state">default</a> state + entered for that control.</p> + + <p>The <a href="#attr-input-autocomplete-default-state" id="attr-input-autocomplete-default-state_0" title="attr-input-autocomplete-default-state">default</a> state indicates that the user agent is to use the <code title="attr-form-autocomplete"><a href="the-form-element.html#attr-form-autocomplete" id="autocomplete_0">autocomplete</a></code> attribute on the element's <a href="association-of-controls-and-forms.html#form-owner" id="form-owner_7">form owner</a> instead. (By default, the <code title="attr-form-autocomplete"><a href="the-form-element.html#attr-form-autocomplete" id="autocomplete_1">autocomplete</a></code> attribute of - <code><a href="the-form-element.html#the-form-element" id="form_21">form</a></code> elements is in the <a href="the-form-element.html#attr-form-autocomplete-on-state" id="attr-form-autocomplete-on-state_2" title="attr-form-autocomplete-on-state">on</a> state.)<div class="example"> + <code><a href="the-form-element.html#the-form-element" id="form_21">form</a></code> elements is in the <a href="the-form-element.html#attr-form-autocomplete-on-state" id="attr-form-autocomplete-on-state_2" title="attr-form-autocomplete-on-state">on</a> state.)</p> + + + + <div class="example"> <p>Banks frequently do not want UAs to prefill login information:</p> @@ -383,8 +440,17 @@ <pre><p><label>Account: <input type="text" name="ac" autocomplete="off"></label></p> <p><label>PIN: <input type="password" name="pin" autocomplete="off"></label></p></pre> - </div><h6 id="the-dirname-attribute"><span class="secno">4.10.7.2.2 </span>The <code title="attr-input-dirname"><a href="#attr-input-dirname" id="dirname_25">dirname</a></code> attribute</h6><p>The <dfn aria-haspopup="true" id="attr-input-dirname" role="button" tabindex="0"><code>dirname</code></dfn> - attribute, when it applies, is a <a href="attributes-common-to-form-controls.html#form-control-dirname-attribute" id="form-control-dirname-attribute_0">form control <code title="">dirname</code> attribute</a>.<div class="example"> + </div> + + + + + <h6 id="the-dirname-attribute"><span class="secno">4.10.7.2.2 </span>The <code title="attr-input-dirname"><a href="#attr-input-dirname" id="dirname_25">dirname</a></code> attribute</h6> + + <p>The <dfn aria-haspopup="true" id="attr-input-dirname" role="button" tabindex="0"><code>dirname</code></dfn> + attribute, when it applies, is a <a href="attributes-common-to-form-controls.html#form-control-dirname-attribute" id="form-control-dirname-attribute_0">form control <code title="">dirname</code> attribute</a>.</p> + + <div class="example"> <p>In this example, a form contains a text field and a submission button:</p> @@ -407,10 +473,21 @@ <pre>comment=%D9%85%D8%B1%D8%AD%D8%A8%D9%8B%D8%A7&<strong>comment.dir=rtl</strong>&mode=add</pre> - </div><h6 id="the-list-attribute"><span class="secno">4.10.7.2.3 </span>The <code title="attr-input-list"><a href="#attr-input-list" id="list_26">list</a></code> attribute</h6><p>The <dfn aria-haspopup="true" id="attr-input-list" role="button" tabindex="0"><code>list</code></dfn> + </div> + + + <h6 id="the-list-attribute"><span class="secno">4.10.7.2.3 </span>The <code title="attr-input-list"><a href="#attr-input-list" id="list_26">list</a></code> attribute</h6> + + <p>The <dfn aria-haspopup="true" id="attr-input-list" role="button" tabindex="0"><code>list</code></dfn> attribute is used to identify an element that lists predefined - options suggested to the user.<p>If present, its value must be the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#concept-id" title='Read about this "ID" reference in the full HTML5 spec.'>ID</a> of a <code><a href="the-datalist-element.html#the-datalist-element" id="datalist_3">datalist</a></code> element in - the same document.<div class="example"> + options suggested to the user.</p> + + <p>If present, its value must be the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#concept-id" title='Read about this "ID" reference in the full HTML5 spec.'>ID</a> of a <code><a href="the-datalist-element.html#the-datalist-element" id="datalist_3">datalist</a></code> element in + the same document.</p> + + + + <div class="example"> <p>This URL field offers some suggestions.</p> @@ -423,7 +500,9 @@ <p>Other URLs from the user's history might show also; this is up to the user agent.</p> - </div><div class="example"> + </div> + + <div class="example"> <p>This example demonstrates how to design a form that uses the autocompletion list feature while still degrading usefully in @@ -483,9 +562,19 @@ <code><a href="the-input-element.html#the-input-element" id="input_118">input</a></code> element in UAs that support <code><a href="the-datalist-element.html#the-datalist-element" id="datalist_9">datalist</a></code>.</p> - </div><h6 id="the-readonly-attribute"><span class="secno">4.10.7.2.4 </span>The <code title="attr-input-readonly"><a href="#attr-input-readonly" id="readonly_39">readonly</a></code> attribute</h6><p>The <dfn aria-haspopup="true" id="attr-input-readonly" role="button" tabindex="0"><code>readonly</code></dfn> + </div> + + + + <h6 id="the-readonly-attribute"><span class="secno">4.10.7.2.4 </span>The <code title="attr-input-readonly"><a href="#attr-input-readonly" id="readonly_39">readonly</a></code> attribute</h6> + + <p>The <dfn aria-haspopup="true" id="attr-input-readonly" role="button" tabindex="0"><code>readonly</code></dfn> attribute is a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_11">boolean attribute</a> that controls whether - or not the user can edit the form control. <div class="example"> + or not the user can edit the form control. </p> + + + + <div class="example"> <p>In the following example, the existing product identifiers cannot be modified, but they are still displayed as part of the @@ -515,14 +604,34 @@ <p> <button name="action" value="update">Save</button> </p> </form></pre> - </div><h6 id="the-size-attribute"><span class="secno">4.10.7.2.5 </span>The <code title="attr-input-size"><a href="#attr-input-size" id="size_24">size</a></code> attribute</h6><p>The <dfn aria-haspopup="true" id="attr-input-size" role="button" tabindex="0"><code>size</code></dfn> + </div> + + + + <h6 id="the-size-attribute"><span class="secno">4.10.7.2.5 </span>The <code title="attr-input-size"><a href="#attr-input-size" id="size_24">size</a></code> attribute</h6> + + <p>The <dfn aria-haspopup="true" id="attr-input-size" role="button" tabindex="0"><code>size</code></dfn> attribute gives the number of characters that, in a visual rendering, the user agent is to allow the user to see while editing - the element's <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-form-controls.html#concept-fe-value" title='Read about this "value" reference in the full HTML5 spec.'>value</a>.<p>The <code title="attr-input-size"><a href="#attr-input-size" id="size_25">size</a></code> attribute, if + the element's <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-form-controls.html#concept-fe-value" title='Read about this "value" reference in the full HTML5 spec.'>value</a>.</p> + + <p>The <code title="attr-input-size"><a href="#attr-input-size" id="size_25">size</a></code> attribute, if specified, must have a value that is a <a href="common-microsyntaxes.html#valid-non-negative-integer" id="valid-non-negative-integer_10">valid non-negative - integer</a> greater than zero.<h6 id="the-required-attribute"><span class="secno">4.10.7.2.6 </span>The <code title="attr-input-required"><a href="#attr-input-required" id="required_25">required</a></code> attribute</h6><p>The <dfn aria-haspopup="true" id="attr-input-required" role="button" tabindex="0"><code>required</code></dfn> + integer</a> greater than zero.</p> + + + + + + <h6 id="the-required-attribute"><span class="secno">4.10.7.2.6 </span>The <code title="attr-input-required"><a href="#attr-input-required" id="required_25">required</a></code> attribute</h6> + + <p>The <dfn aria-haspopup="true" id="attr-input-required" role="button" tabindex="0"><code>required</code></dfn> attribute is a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_12">boolean attribute</a>. When specified, the - element is <dfn aria-haspopup="true" id="concept-input-required" role="button" tabindex="0"><i>required</i></dfn>.<div class="example"> + element is <dfn aria-haspopup="true" id="concept-input-required" role="button" tabindex="0"><i>required</i></dfn>.</p> + + + + <div class="example"> <p>The following form has two required fields, one for an e-mail address and one for a password. It also has a third field that is @@ -545,9 +654,16 @@ <input type=submit value="Create account"> </form></pre> - </div><h6 id="the-multiple-attribute"><span class="secno">4.10.7.2.7 </span>The <code title="attr-input-multiple"><a href="#attr-input-multiple" id="multiple_27">multiple</a></code> attribute</h6><p>The <dfn aria-haspopup="true" id="attr-input-multiple" role="button" tabindex="0"><code>multiple</code></dfn> + </div> + + + <h6 id="the-multiple-attribute"><span class="secno">4.10.7.2.7 </span>The <code title="attr-input-multiple"><a href="#attr-input-multiple" id="multiple_27">multiple</a></code> attribute</h6> + + <p>The <dfn aria-haspopup="true" id="attr-input-multiple" role="button" tabindex="0"><code>multiple</code></dfn> attribute is a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_13">boolean attribute</a> that indicates whether - the user is to be allowed to specify more than one value.<div class="example"> + the user is to be allowed to specify more than one value.</p> + + <div class="example"> <p>The following extract shows how an e-mail client's "Cc" field could accept multiple e-mail addresses.</p> @@ -582,19 +698,30 @@ <p><img alt="" height="171" src="http://dev.w3.org/html5/spec/images/sample-email-2.png" width="500"></p> - </div><div class="example"> + </div> + + <div class="example"> <p>The following extract shows how an e-mail client's "Attachments" field could accept multiple files for upload.</p> <pre><label>Attachments: <input type=file multiple name=att></label></pre> - </div><h6 id="the-maxlength-attribute"><span class="secno">4.10.7.2.8 </span>The <code title="attr-input-maxlength"><a href="#attr-input-maxlength" id="maxlength_26">maxlength</a></code> attribute</h6><p>The <dfn aria-haspopup="true" id="attr-input-maxlength" role="button" tabindex="0"><code>maxlength</code></dfn> - attribute is a <a href="attributes-common-to-form-controls.html#attr-fe-maxlength" id="attr-fe-maxlength_0" title="attr-fe-maxlength">form control <code title="">maxlength</code> attribute</a>.<p>If the <code><a href="the-input-element.html#the-input-element" id="input_119">input</a></code> element has a <a href="attributes-common-to-form-controls.html#maximum-allowed-value-length" id="maximum-allowed-value-length_0">maximum allowed + </div> + + + <h6 id="the-maxlength-attribute"><span class="secno">4.10.7.2.8 </span>The <code title="attr-input-maxlength"><a href="#attr-input-maxlength" id="maxlength_26">maxlength</a></code> attribute</h6> + + <p>The <dfn aria-haspopup="true" id="attr-input-maxlength" role="button" tabindex="0"><code>maxlength</code></dfn> + attribute is a <a href="attributes-common-to-form-controls.html#attr-fe-maxlength" id="attr-fe-maxlength_0" title="attr-fe-maxlength">form control <code title="">maxlength</code> attribute</a>.</p> + + <p>If the <code><a href="the-input-element.html#the-input-element" id="input_119">input</a></code> element has a <a href="attributes-common-to-form-controls.html#maximum-allowed-value-length" id="maximum-allowed-value-length_0">maximum allowed value length</a>, then the <a href="infrastructure.html#code-point-length" id="code-point-length_0">code-point length</a> of the value of the element's <code title="attr-input-value"><a href="the-input-element.html#attr-input-value" id="value_28">value</a></code> attribute must be equal to or less than the element's <a href="attributes-common-to-form-controls.html#maximum-allowed-value-length" id="maximum-allowed-value-length_1">maximum - allowed value length</a>.<div class="example"> + allowed value length</a>.</p> + + <div class="example"> <p>The following extract shows how a messaging client's text entry could be arbitrarily restricted to a fixed number of characters, @@ -603,17 +730,31 @@ <pre><label>What are you doing? <input name=status maxlength=140></label></pre> - </div><h6 id="the-pattern-attribute"><span class="secno">4.10.7.2.9 </span>The <code title="attr-input-pattern"><a href="#attr-input-pattern" id="pattern_25">pattern</a></code> attribute</h6><p>The <dfn aria-haspopup="true" id="attr-input-pattern" role="button" tabindex="0"><code>pattern</code></dfn> + </div> + + + + <h6 id="the-pattern-attribute"><span class="secno">4.10.7.2.9 </span>The <code title="attr-input-pattern"><a href="#attr-input-pattern" id="pattern_25">pattern</a></code> attribute</h6> + + <p>The <dfn aria-haspopup="true" id="attr-input-pattern" role="button" tabindex="0"><code>pattern</code></dfn> attribute specifies a regular expression against which the control's <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-form-controls.html#concept-fe-value" title='Read about this "value" reference in the full HTML5 spec.'>value</a>, or, when the <code title="attr-input-multiple"><a href="#attr-input-multiple" id="multiple_28">multiple</a></code> attribute applies and is set, the control's <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-form-controls.html#concept-fe-values" title='Read about this "values" reference in the full HTML5 spec.'>value<em>s</em></a>, are to be - checked.<p>If specified, the attribute's value must match the JavaScript <i title="">Pattern</i> production. <a href="references.html#refsECMA262">[ECMA262]</a><p>When an <code><a href="the-input-element.html#the-input-element" id="input_120">input</a></code> element has a <code title="attr-input-pattern"><a href="#attr-input-pattern" id="pattern_26">pattern</a></code> attribute specified, + checked.</p> + + <p>If specified, the attribute's value must match the JavaScript <i title="">Pattern</i> production. <a href="references.html#refsECMA262">[ECMA262]</a></p> + + + + <p>When an <code><a href="the-input-element.html#the-input-element" id="input_120">input</a></code> element has a <code title="attr-input-pattern"><a href="#attr-input-pattern" id="pattern_26">pattern</a></code> attribute specified, authors should include a <code title="attr-title"><a href="global-attributes.html#the-title-attribute" id="title_24">title</a></code> attribute to give a description of the pattern. User agents may use the contents of this attribute, if it is present, when informing the user that the pattern is not matched, or at any other suitable time, such as in a tooltip or read out by assistive technology when the - control gains focus.<div class="example"> + control gains focus.</p> + + <div class="example"> <p>For example, the following snippet:</p> <pre><label> Part number: <input pattern="[0-9][A-Z]{3}" name="part" @@ -622,49 +763,86 @@ <p>...could cause the UA to display an alert such as:</p> <pre><samp>A part number is a digit followed by three uppercase letters. You cannot submit this form when the field is incorrect.</samp></pre> - </div><p>When a control has a <code title="attr-input-pattern"><a href="#attr-input-pattern" id="pattern_27">pattern</a></code> attribute, the <code title="attr-title"><a href="global-attributes.html#the-title-attribute" id="title_25">title</a></code> attribute, if used, must describe + </div> + + <p>When a control has a <code title="attr-input-pattern"><a href="#attr-input-pattern" id="pattern_27">pattern</a></code> attribute, the <code title="attr-title"><a href="global-attributes.html#the-title-attribute" id="title_25">title</a></code> attribute, if used, must describe the pattern. Additional information could also be included, so long as it assists the user in filling in the control. Otherwise, - assistive technology would be impaired.<p class="example">For instance, if the title attribute contained + assistive technology would be impaired.</p> + + <p class="example">For instance, if the title attribute contained the caption of the control, assistive technology could end up saying something like <samp>The text you have entered does not match the - required pattern. Birthday</samp>, which is not useful.<p>UAs may still show the <code title="attr-title"><a href="global-attributes.html#the-title-attribute" id="title_26">title</a></code> in + required pattern. Birthday</samp>, which is not useful.</p> + + <p>UAs may still show the <code title="attr-title"><a href="global-attributes.html#the-title-attribute" id="title_26">title</a></code> in non-error situations (for example, as a tooltip when hovering over the control), so authors should be careful not to word <code title="attr-title"><a href="global-attributes.html#the-title-attribute" id="title_27">title</a></code>s as if an error has necessarily - occurred.<h6 id="the-min-and-max-attributes"><span class="secno">4.10.7.2.10 </span>The <code title="attr-input-min"><a href="#attr-input-min" id="min_35">min</a></code> and <code title="attr-input-max"><a href="#attr-input-max" id="max_33">max</a></code> attributes</h6><p>The <dfn aria-haspopup="true" id="attr-input-min" role="button" tabindex="0"><code>min</code></dfn> and <dfn aria-haspopup="true" id="attr-input-max" role="button" tabindex="0"><code>max</code></dfn> attributes indicate - the allowed range of values for the element.<p>The <code title="attr-input-max"><a href="#attr-input-max" id="max_34">max</a></code> attribute's value + occurred.</p> + + + + <h6 id="the-min-and-max-attributes"><span class="secno">4.10.7.2.10 </span>The <code title="attr-input-min"><a href="#attr-input-min" id="min_35">min</a></code> and <code title="attr-input-max"><a href="#attr-input-max" id="max_33">max</a></code> attributes</h6> + + <p>The <dfn aria-haspopup="true" id="attr-input-min" role="button" tabindex="0"><code>min</code></dfn> and <dfn aria-haspopup="true" id="attr-input-max" role="button" tabindex="0"><code>max</code></dfn> attributes indicate + the allowed range of values for the element.</p> + + + + <p>The <code title="attr-input-max"><a href="#attr-input-max" id="max_34">max</a></code> attribute's value (the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-input-element-attributes.html#concept-input-max" title='Read about this "maximum" reference in the full HTML5 spec.'>maximum</a>) must not be less than the <code title="attr-input-min"><a href="#attr-input-min" id="min_36">min</a></code> attribute's - value (its <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-input-element-attributes.html#concept-input-min" title='Read about this "minimum" reference in the full HTML5 spec.'>minimum</a>).<p>An element <dfn aria-haspopup="true" id="have-range-limitations" role="button" tabindex="0">has range - limitations</dfn> if it has a defined <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-input-element-attributes.html#concept-input-min" title='Read about this "minimum" reference in the full HTML5 spec.'>minimum</a> or a defined <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-input-element-attributes.html#concept-input-max" title='Read about this "maximum" reference in the full HTML5 spec.'>maximum</a>.<div class="example"> + value (its <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-input-element-attributes.html#concept-input-min" title='Read about this "minimum" reference in the full HTML5 spec.'>minimum</a>).</p> + + + + <p>An element <dfn aria-haspopup="true" id="have-range-limitations" role="button" tabindex="0">has range + limitations</dfn> if it has a defined <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-input-element-attributes.html#concept-input-min" title='Read about this "minimum" reference in the full HTML5 spec.'>minimum</a> or a defined <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-input-element-attributes.html#concept-input-max" title='Read about this "maximum" reference in the full HTML5 spec.'>maximum</a>.</p> + + <div class="example"> <p>The following date control limits input to dates that are before the 1980s:</p> <pre><input name=bday type=date max="1979-12-31"></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>The following number control limits input to whole numbers greater than zero:</p> <pre><input name=quantity required type=number min=1 value=1></pre> - </div><h6 id="the-step-attribute"><span class="secno">4.10.7.2.11 </span>The <code title="attr-input-step"><a href="#attr-input-step" id="step_32">step</a></code> attribute</h6><p>The <dfn aria-haspopup="true" id="attr-input-step" role="button" tabindex="0"><code>step</code></dfn> + </div> + + + <h6 id="the-step-attribute"><span class="secno">4.10.7.2.11 </span>The <code title="attr-input-step"><a href="#attr-input-step" id="step_32">step</a></code> attribute</h6> + + <p>The <dfn aria-haspopup="true" id="attr-input-step" role="button" tabindex="0"><code>step</code></dfn> attribute indicates the granularity that is expected (and required) of the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-form-controls.html#concept-fe-value" title='Read about this "value" reference in the full HTML5 spec.'>value</a>, by limiting the - allowed values. <p>The <code title="attr-input-step"><a href="#attr-input-step" id="step_33">step</a></code> attribute, if + allowed values. </p> + + <p>The <code title="attr-input-step"><a href="#attr-input-step" id="step_33">step</a></code> attribute, if specified, must either have a value that is a <a href="common-microsyntaxes.html#valid-floating-point-number" id="valid-floating-point-number_8">valid floating point number</a> that <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#rules-for-parsing-floating-point-number-values" title='Read about this "parses" reference in the full HTML5 spec.'>parses</a> to a number that is greater than zero, or must have a value that is an <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_16">ASCII - case-insensitive</a> match for the string "<code title="">any</code>".<div class="example"> + case-insensitive</a> match for the string "<code title="">any</code>".</p> + + + + <div class="example"> <p>The following range control only accepts values in the range 0..1, and allows 256 steps in that range:</p> <pre><input name=opacity type=range min=0 max=1 step=0.00392156863></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>The following control allows any time in the day to be selected, with any accuracy (e.g. thousandth-of-a-second accuracy or @@ -675,14 +853,30 @@ <p>Normally, time controls are limited to an accuracy of one minute.</p> - </div><h6 id="the-placeholder-attribute"><span class="secno">4.10.7.2.12 </span>The <code title="attr-input-placeholder"><a href="#attr-input-placeholder" id="placeholder_24">placeholder</a></code> attribute</h6><p>The <dfn aria-haspopup="true" id="attr-input-placeholder" role="button" tabindex="0"><code>placeholder</code></dfn> + </div> + + + + + <h6 id="the-placeholder-attribute"><span class="secno">4.10.7.2.12 </span>The <code title="attr-input-placeholder"><a href="#attr-input-placeholder" id="placeholder_24">placeholder</a></code> attribute</h6> + + + + <p>The <dfn aria-haspopup="true" id="attr-input-placeholder" role="button" tabindex="0"><code>placeholder</code></dfn> attribute represents a <em>short</em> hint (a word or short phrase) intended to aid the user with data entry. A hint could be a sample value or a brief description of the expected format. The attribute, - if specified, must have a value that contains no U+000A LINE FEED - (LF) or U+000D CARRIAGE RETURN (CR) characters.<p class="note">For a longer hint or other advisory text, the <code title="attr-title"><a href="global-attributes.html#the-title-attribute" id="title_28">title</a></code> attribute is more appropriate.<p>The <code title="attr-input-placeholder"><a href="#attr-input-placeholder" id="placeholder_25">placeholder</a></code> + if specified, must have a value that contains no "LF" (U+000A) or "CR" (U+000D) characters.</p> + + <p class="note">For a longer hint or other advisory text, the <code title="attr-title"><a href="global-attributes.html#the-title-attribute" id="title_28">title</a></code> attribute is more appropriate.</p> + + <p>The <code title="attr-input-placeholder"><a href="#attr-input-placeholder" id="placeholder_25">placeholder</a></code> attribute should not be used as an alternative to a - <code><a href="the-label-element.html#the-label-element" id="label_20">label</a></code>.<div class="example"> + <code><a href="the-label-element.html#the-label-element" id="label_20">label</a></code>.</p> + + + + <div class="example"> <p>Here is an example of a mail configuration user interface that uses the <code title="attr-input-placeholder"><a href="#attr-input-placeholder" id="placeholder_26">placeholder</a></code> @@ -696,4 +890,9 @@ <p><label>Description: <input type="text" name="desc" placeholder="My Email Account"></label></p> </fieldset></pre> - </div> \ No newline at end of file + </div> + + + + + \ No newline at end of file Index: interactive-elements.html =================================================================== RCS file: /sources/public/html5/spec-author-view/interactive-elements.html,v retrieving revision 1.1122 retrieving revision 1.1123 diff -u -d -r1.1122 -r1.1123 --- interactive-elements.html 15 Feb 2012 10:14:11 -0000 1.1122 +++ interactive-elements.html 13 Mar 2012 19:58:42 -0000 1.1123 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,7 +380,9 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="form-submission.html">← 4.10.22 Form submission</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-details-element.html">4.11.1 The details element →</a> @@ -356,4 +394,6 @@ <a href="the-command-element.html#the-command-element" id="command_3">command</a>, and <a href="the-menu-element.html#the-menu-element" id="menu_12">menu</a> - elements. \ No newline at end of file + elements.</p> + + \ No newline at end of file Index: the-address-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-address-element.html,v retrieving revision 1.121 retrieving revision 1.122 diff -u -d -r1.121 -r1.122 --- the-address-element.html 21 Feb 2012 21:59:01 -0000 1.121 +++ the-address-element.html 13 Mar 2012 19:58:55 -0000 1.122 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-footer-element.html">← 4.4.9 The footer element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="headings-and-sections.html">4.4.11 Headings and sections →</a> </div> - <h4 id="the-address-element"><span class="secno">4.4.10 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>address</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_18" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-address-element"><span class="secno">4.4.10 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>address</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_18" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_39">Flow content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_8">Palpable content</a>.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_18" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> @@ -368,7 +408,9 @@ contact information for its nearest <code><a href="the-article-element.html#the-article-element" id="article_16">article</a></code> or <code><a href="the-body-element.html#the-body-element" id="body_20">body</a></code> element ancestor. If that is <a href="dom.html#the-body-element-0" id="the-body-element_5">the body element</a>, then the contact information applies to the document - as a whole.<div class="example"> + as a whole.</p> + + <div class="example"> <p>For example, a page at the W3C Web site related to HTML might include the following contact information:</p> <pre><ADDRESS> @@ -376,17 +418,29 @@ <A href="../People/Arnaud/">Arnaud Le Hors</A>, contact persons for the <A href="Activity">W3C HTML Activity</A> </ADDRESS></pre> - </div><p>The <code><a href="#the-address-element" id="address_7">address</a></code> element must not be used to represent + </div> + + <p>The <code><a href="#the-address-element" id="address_7">address</a></code> element must not be used to represent arbitrary addresses (e.g. postal addresses), unless those addresses are in fact the relevant contact information. (The <code><a href="the-p-element.html#the-p-element" id="p_15">p</a></code> element is the appropriate element for marking up postal addresses - in general.)<p>The <code><a href="#the-address-element" id="address_8">address</a></code> element must not contain information - other than contact information.<div class="example"> + in general.)</p> + + <p>The <code><a href="#the-address-element" id="address_8">address</a></code> element must not contain information + other than contact information.</p> + + <div class="example"> <p>For example, the following is non-conforming use of the <code><a href="#the-address-element" id="address_9">address</a></code> element:</p> <pre class="bad"><ADDRESS>Last Modified: 1999/12/24 23:37:50</ADDRESS></pre> - </div><p>Typically, the <code><a href="#the-address-element" id="address_10">address</a></code> element would be included - along with other information in a <code><a href="the-footer-element.html#the-footer-element" id="footer_15">footer</a></code> element.<div class="example"> + </div> + + <p>Typically, the <code><a href="#the-address-element" id="address_10">address</a></code> element would be included + along with other information in a <code><a href="the-footer-element.html#the-footer-element" id="footer_15">footer</a></code> element.</p> + + + + <div class="example"> <p>In this example the footer contains contact information and a copyright notice.</p> @@ -399,4 +453,8 @@ <p><small>© copyright 2038 Example Corp.</small></p> </footer></pre> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: iana.html =================================================================== RCS file: /sources/public/html5/spec-author-view/iana.html,v retrieving revision 1.608 retrieving revision 1.609 diff -u -d -r1.608 -r1.609 --- iana.html 7 Mar 2012 01:01:19 -0000 1.608 +++ iana.html 13 Mar 2012 19:58:41 -0000 1.609 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,15 +380,31 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="obsolete.html">← 10 Obsolete features</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="index.html">Index →</a> <ol class="toc"><li><a href="iana.html#iana"><span class="secno">11 </span>IANA considerations</a> <ol><li><a href="iana.html#text-html" id="11.1-text/html"><span class="secno">11.1 </span><code>text/html</code></a><li><a href="iana.html#multipart-x-mixed-replace" id="11.2-multipart/x-mixed-replace"><span class="secno">11.2 </span><code>multipart/x-mixed-replace</code></a><li><a href="iana.html#application-xhtml-xml" id="11.3-application/xhtml+xml"><span class="secno">11.3 </span><code>application/xhtml+xml</code></a><li><a href="iana.html#application-x-www-form-urlencoded" id="11.4-application/x-www-form-urlencoded"><span class="secno">11.4 </span><code>application/x-www-form-urlencoded</code></a><li><a href="iana.html#text-cache-manifest" id="11.5-text/cache-manifest"><span class="secno">11.5 </span><code>text/cache-manifest</code></a><li><a href="iana.html#http-aes-scheme" id="11.6-http+aes-scheme"><span class="secno">11.6 </span><code>http+aes</code> scheme</a><li><a href="iana.html#https-aes-scheme" id="11.7-https+aes-scheme"><span class="secno">11.7 </span><code>https+aes</code> scheme</a><li><ahref="iana.html#web-scheme-prefix" id="11.8-web+-scheme-prefix"><span class="secno">11.8 </span><code>web+</code> scheme prefix</a></ol></ol></div> - <h2 id="iana"><span class="secno">11 </span>IANA considerations</h2><h3 id="text-html"><span class="secno">11.1 </span><dfn aria-haspopup="true" role="button" tabindex="0"><code>text/html</code></dfn></h3><p>This registration is for community review and will be submitted - to the IESG for review, approval, and registration with IANA.<dl><dt>Type name:</dt> + <h2 id="iana"><span class="secno">11 </span>IANA considerations</h2> + + + + + + <h3 id="text-html"><span class="secno">11.1 </span><dfn aria-haspopup="true" role="button" tabindex="0"><code>text/html</code></dfn></h3> + + <p>This registration is for community review and will be submitted + to the IESG for review, approval, and registration with IANA.</p> + + + + + + <dl><dt>Type name:</dt> <dd>text</dd> <dt>Subtype name:</dt> <dd>html</dd> @@ -464,8 +516,19 @@ <dd>W3C</dd> </dl><p>Fragment identifiers used with <code><a href="#text-html" id="text/html_7">text/html</a></code> resources either refer to <a class="full-spec-link" href="http://dev.w3.org/html5/spec/history.html#the-indicated-part-of-the-document" title='Read about this "the indicated part of the document" reference in the full HTML5 spec.'>the indicated part of the document</a> or - provide state information for in-page scripts.<h3 id="multipart-x-mixed-replace"><span class="secno">11.2 </span><dfn aria-haspopup="true" role="button" tabindex="0"><code>multipart/x-mixed-replace</code></dfn></h3><p>This registration is for community review and will be submitted - to the IESG for review, approval, and registration with IANA.<dl><dt>Type name:</dt> + provide state information for in-page scripts.</p> + + + + + <h3 id="multipart-x-mixed-replace"><span class="secno">11.2 </span><dfn aria-haspopup="true" role="button" tabindex="0"><code>multipart/x-mixed-replace</code></dfn></h3> + + <p>This registration is for community review and will be submitted + to the IESG for review, approval, and registration with IANA.</p> + + + + <dl><dt>Type name:</dt> <dd>multipart</dd> <dt>Subtype name:</dt> <dd>x-mixed-replace</dd> @@ -519,8 +582,19 @@ <dd>W3C</dd> </dl><p>Fragment identifiers used with <code><a href="#multipart-x-mixed-replace" id="multipart/x-mixed-replace_1">multipart/x-mixed-replace</a></code> resources apply to each body - part as defined by the type used by that body part.<h3 id="application-xhtml-xml"><span class="secno">11.3 </span><dfn aria-haspopup="true" role="button" tabindex="0"><code>application/xhtml+xml</code></dfn></h3><p>This registration is for community review and will be submitted - to the IESG for review, approval, and registration with IANA.<dl><dt>Type name:</dt> + part as defined by the type used by that body part.</p> + + + <h3 id="application-xhtml-xml"><span class="secno">11.3 </span><dfn aria-haspopup="true" role="button" tabindex="0"><code>application/xhtml+xml</code></dfn></h3> + + <p>This registration is for community review and will be submitted + to the IESG for review, approval, and registration with IANA.</p> + + + + + + <dl><dt>Type name:</dt> <dd>application</dd> <dt>Subtype name:</dt> <dd>xhtml+xml</dd> @@ -569,8 +643,17 @@ <dd>W3C</dd> </dl><p>Fragment identifiers used with <code><a href="#application-xhtml-xml" id="application/xhtml+xml_1">application/xhtml+xml</a></code> resources have the same semantics as with any <a href="infrastructure.html#xml-mime-type" id="xml-mime-type_3">XML MIME - type</a>. <a href="references.html#refsRFC3023">[RFC3023]</a><h3 id="application-x-www-form-urlencoded"><span class="secno">11.4 </span><dfn aria-haspopup="true" role="button" tabindex="0"><code>application/x-www-form-urlencoded</code></dfn></h3><p>This registration is for community review and will be submitted - to the IESG for review, approval, and registration with IANA.<dl><dt>Type name:</dt> + type</a>. <a href="references.html#refsRFC3023">[RFC3023]</a></p> + + + <h3 id="application-x-www-form-urlencoded"><span class="secno">11.4 </span><dfn aria-haspopup="true" role="button" tabindex="0"><code>application/x-www-form-urlencoded</code></dfn></h3> + + <p>This registration is for community review and will be submitted + to the IESG for review, approval, and registration with IANA.</p> + + + + <dl><dt>Type name:</dt> <dd>application</dd> <dt>Subtype name:</dt> <dd>x-www-form-urlencoded</dd> @@ -628,8 +711,17 @@ </dl><p>Fragment identifiers have no meaning with the <code><a href="#application-x-www-form-urlencoded" id="application/x-www-form-urlencoded_8">application/x-www-form-urlencoded</a></code> type as this type is only used for uploaded payloads that do not have <a href="urls.html#url" id="url_32">URL</a> - identifiers.<h3 id="text-cache-manifest"><span class="secno">11.5 </span><dfn aria-haspopup="true" role="button" tabindex="0"><code>text/cache-manifest</code></dfn></h3><p>This registration is for community review and will be submitted - to the IESG for review, approval, and registration with IANA.<dl><dt>Type name:</dt> + identifiers.</p> + + + <h3 id="text-cache-manifest"><span class="secno">11.5 </span><dfn aria-haspopup="true" role="button" tabindex="0"><code>text/cache-manifest</code></dfn></h3> + + <p>This registration is for community review and will be submitted + to the IESG for review, approval, and registration with IANA.</p> + + + + <dl><dt>Type name:</dt> <dd>text</dd> <dt>Subtype name:</dt> <dd>cache-manifest</dd> @@ -670,8 +762,7 @@ <dl><dt>Magic number(s):</dt> <dd>Cache manifests begin with the string "<code title="">CACHE MANIFEST</code>", followed by either a U+0020 SPACE character, a - U+0009 CHARACTER TABULATION (tab) character, a U+000A LINE FEED - (LF) character, or a U+000D CARRIAGE RETURN (CR) character.</dd> + "tab" (U+0009) character, a "LF" (U+000A) character, or a "CR" (U+000D) character.</dd> <dt>File extension(s):</dt> <dd>"<code title="">appcache</code>"</dd> <dt>Macintosh file type code(s):</dt> @@ -688,8 +779,20 @@ <dt>Change controller:</dt> <dd>W3C</dd> </dl><p>Fragment identifiers have no meaning with - <code><a href="#text-cache-manifest" id="text/cache-manifest_2">text/cache-manifest</a></code> resources.<h3 id="http-aes-scheme"><span class="secno">11.6 </span><dfn aria-haspopup="true" role="button" tabindex="0"><code>http+aes</code> scheme</dfn></h3><p>This section describes a URL scheme registration for the IANA URI - scheme registry. <a href="references.html#refsRFC4395">[RFC4395]</a><dl><dt>URI scheme name:</dt> + <code><a href="#text-cache-manifest" id="text/cache-manifest_2">text/cache-manifest</a></code> resources.</p> + + + + + + + + <h3 id="http-aes-scheme"><span class="secno">11.6 </span><dfn aria-haspopup="true" role="button" tabindex="0"><code>http+aes</code> scheme</dfn></h3> + + <p>This section describes a URL scheme registration for the IANA URI + scheme registry. <a href="references.html#refsRFC4395">[RFC4395]</a></p> + + <dl><dt>URI scheme name:</dt> <dd><code title="">http+aes</code></dd> <dt>Status:</dt> <dd>permanent</dd> @@ -779,8 +882,12 @@ The <code title="">http</code> URL scheme is defined in: <a href="http://tools.ietf.org/html/draft-ietf-httpbis-p1-messaging">http://tools.ietf.org/html/draft-ietf-httpbis-p1-messaging</a> </dd> - </dl><h3 id="https-aes-scheme"><span class="secno">11.7 </span><dfn aria-haspopup="true" role="button" tabindex="0"><code>https+aes</code> scheme</dfn></h3><p>This section describes a URL scheme registration for the IANA URI - scheme registry. <a href="references.html#refsRFC4395">[RFC4395]</a><dl><dt>URI scheme name:</dt> + </dl><h3 id="https-aes-scheme"><span class="secno">11.7 </span><dfn aria-haspopup="true" role="button" tabindex="0"><code>https+aes</code> scheme</dfn></h3> + + <p>This section describes a URL scheme registration for the IANA URI + scheme registry. <a href="references.html#refsRFC4395">[RFC4395]</a></p> + + <dl><dt>URI scheme name:</dt> <dd><code title="">https+aes</code></dd> <dt>Status:</dt> <dd>permanent</dd> @@ -814,8 +921,12 @@ The <code title="">https</code> URL scheme is defined in: <a href="http://tools.ietf.org/html/draft-ietf-httpbis-p1-messaging">http://tools.ietf.org/html/draft-ietf-httpbis-p1-messaging</a> </dd> - </dl><h3 id="web-scheme-prefix"><span class="secno">11.8 </span><dfn aria-haspopup="true" role="button" tabindex="0"><code>web+</code> scheme prefix</dfn></h3><p>This section describes a convention for use with the IANA URI - scheme registry. It does not itself register a specific scheme. <a href="references.html#refsRFC4395">[RFC4395]</a><dl><dt>URI scheme name:</dt> + </dl><h3 id="web-scheme-prefix"><span class="secno">11.8 </span><dfn aria-haspopup="true" role="button" tabindex="0"><code>web+</code> scheme prefix</dfn></h3> + + <p>This section describes a convention for use with the IANA URI + scheme registry. It does not itself register a specific scheme. <a href="references.html#refsRFC4395">[RFC4395]</a></p> + + <dl><dt>URI scheme name:</dt> <dd> Schemes starting with the four characters "<code title="">web+</code>" followed by one or more letters in the range <code title="">a</code>-<code title="">z</code>. Index: the-b-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-b-element.html,v retrieving revision 1.118 retrieving revision 1.119 diff -u -d -r1.118 -r1.119 --- the-b-element.html 21 Feb 2012 21:59:02 -0000 1.118 +++ the-b-element.html 13 Mar 2012 19:58:55 -0000 1.119 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-i-element.html">← 4.6.16 The i element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-u-element.html">4.6.18 The u element →</a> </div> - <h4 id="the-b-element"><span class="secno">4.6.17 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>b</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_48" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-b-element"><span class="secno">4.6.17 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>b</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_48" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_87">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_77">Phrasing content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_33">Palpable content</a>.</dd> @@ -367,17 +407,23 @@ conveying any extra importance and with no implication of an alternate voice or mood, such as key words in a document abstract, product names in a review, actionable words in interactive - text-driven software, or an article lede.<div class="example"> + text-driven software, or an article lede.</p> + + <div class="example"> <p>The following example shows a use of the <code><a href="#the-b-element" id="b_7">b</a></code> element to highlight key words without marking them up as important:</p> <pre><p>The <b>frobonitor</b> and <b>barbinator</b> components are fried.</p></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>In the following example, objects in a text adventure are highlighted as being special by use of the <code><a href="#the-b-element" id="b_8">b</a></code> element.</p> <pre><p>You enter a small room. Your <b>sword</b> glows brighter. A <b>rat</b> scurries past the corner wall.</p></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>Another case where the <code><a href="#the-b-element" id="b_9">b</a></code> element is appropriate is in marking up the lede (or lead) sentence or paragraph. The following example shows how a <a href="http://news.bbc.co.uk/2/hi/uk_news/scotland/north_east/7101506.stm">BBC @@ -390,20 +436,32 @@ <p>Veterinary nurse Melanie Humble took the three-week-old kittens to her Aberdeen home.</p> <i>[...]</i></pre> - </div><p>As with the <code><a href="the-i-element.html#the-i-element" id="i_23">i</a></code> element, authors can use the <code title="attr-class"><a href="global-attributes.html#classes" id="class_7">class</a></code> attribute on the <code><a href="#the-b-element" id="b_10">b</a></code> + </div> + + <p>As with the <code><a href="the-i-element.html#the-i-element" id="i_23">i</a></code> element, authors can use the <code title="attr-class"><a href="global-attributes.html#classes" id="class_7">class</a></code> attribute on the <code><a href="#the-b-element" id="b_10">b</a></code> element to identify why the element is being used, so that if the style of a particular use is to be changed at a later date, the - author doesn't have to go through annotating each use.<p>The <code><a href="#the-b-element" id="b_11">b</a></code> element should be used as a last resort when + author doesn't have to go through annotating each use.</p> + + <p>The <code><a href="#the-b-element" id="b_11">b</a></code> element should be used as a last resort when no other element is more appropriate. In particular, headings should use the <code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h1_19">h1</a></code> to <code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h6_10">h6</a></code> elements, stress emphasis should use the <code><a href="the-em-element.html#the-em-element" id="em_10">em</a></code> element, importance should be denoted with the <code><a href="the-strong-element.html#the-strong-element" id="strong_10">strong</a></code> element, and text marked or highlighted - should use the <code><a href="the-mark-element.html#the-mark-element" id="mark_3">mark</a></code> element.<div class="example"> + should use the <code><a href="the-mark-element.html#the-mark-element" id="mark_3">mark</a></code> element.</p> + + <div class="example"> <p>The following would be <em>incorrect</em> usage:</p> <pre class="bad"><p><b>WARNING!</b> Do not frob the barbinator!</p></pre> <p>In the previous example, the correct element to use would have been <code><a href="the-strong-element.html#the-strong-element" id="strong_11">strong</a></code>, not <code><a href="#the-b-element" id="b_12">b</a></code>.</p> - </div><p class="note">Style sheets can be used to format <code><a href="#the-b-element" id="b_13">b</a></code> + </div> + + <p class="note">Style sheets can be used to format <code><a href="#the-b-element" id="b_13">b</a></code> elements, just like any other element can be restyled. Thus, it is not the case that content in <code><a href="#the-b-element" id="b_14">b</a></code> elements will - necessarily be boldened. \ No newline at end of file + necessarily be boldened.</p> + + + + \ No newline at end of file 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.601 retrieving revision 1.602 diff -u -d -r1.601 -r1.602 --- states-of-the-type-attribute.html 15 Feb 2012 10:14:17 -0000 1.601 +++ states-of-the-type-attribute.html 13 Mar 2012 19:58:54 -0000 1.602 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; [...1063 lines suppressed...] + + <div class="bookkeeping"> <p>The <code title="dom-input-value"><a href="common-input-element-apis.html#dom-input-value">value</a></code> IDL attribute applies to this element and is in mode <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-input-element-apis.html#dom-input-value-default" title='Read about this "default" reference in the full HTML5 spec.'>default</a>.</p> @@ -2045,4 +2517,11 @@ <p>The <code class="no-backref" title="event-input-input"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-input-element-apis.html#event-input-input" title='Read about this "input" reference in the full HTML5 spec.'>input</a></code> and <code class="no-backref" title="event-input-change"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-input-element-apis.html#event-input-change" title='Read about this "change" reference in the full HTML5 spec.'>change</a></code> events do not apply.</p> - </div> \ No newline at end of file + </div> + + + + + + + \ No newline at end of file Index: the-nav-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-nav-element.html,v retrieving revision 1.120 retrieving revision 1.121 diff -u -d -r1.120 -r1.121 --- the-nav-element.html 21 Feb 2012 21:59:06 -0000 1.120 +++ the-nav-element.html 13 Mar 2012 19:59:00 -0000 1.121 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-section-element.html">← 4.4.2 The section element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-article-element.html">4.4.4 The article element →</a> </div> - <h4 id="the-nav-element"><span class="secno">4.4.3 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>nav</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_11" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-nav-element"><span class="secno">4.4.3 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>nav</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_11" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_20">Flow content</a>.</dd> <dd><a href="content-models.html#sectioning-content" id="sectioning-content_5">Sectioning content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_1">Palpable content</a>.</dd> @@ -364,19 +404,25 @@ <dd>Uses <code><a href="elements.html#htmlelement" id="htmlelement_16">HTMLElement</a></code>.</dd> </dl><p>The <code><a href="#the-nav-element" id="nav_4">nav</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a section of a page that links to other pages or to parts within the page: a - section with navigation links.<p class="note">Not all groups of links on a page need to be in a + section with navigation links.</p> + + <p class="note">Not all groups of links on a page need to be in a <code><a href="#the-nav-element" id="nav_5">nav</a></code> element — the element is primarily intended for sections that consist of major navigation blocks. In particular, it is common for footers to have a short list of links to various pages of a site, such as the terms of service, the home page, and a copyright page. The <code><a href="the-footer-element.html#the-footer-element" id="footer_4">footer</a></code> element alone is sufficient for such cases; while a <code><a href="#the-nav-element" id="nav_6">nav</a></code> element can be used in such - cases, it is usually unnecessary.<p class="note">User agents (such as screen readers) that are + cases, it is usually unnecessary.</p> + + <p class="note">User agents (such as screen readers) that are targeted at users who can benefit from navigation information being omitted in the initial rendering, or who can benefit from navigation information being immediately available, can use this element as a way to determine what content on the page to initially skip and/or - provide on request.<div class="example"> + provide on request.</p> + + <div class="example"> <p>In the following example, the page has several places where links are present, but only one of those places is considered a @@ -432,7 +478,9 @@ use the schema.org vocabulary to provide the publication date and other metadata about the blog post.</p> - </div><div class="example"> + </div> + + <div class="example"> <p>In the following example, there are two <code><a href="#the-nav-element" id="nav_7">nav</a></code> elements, one for primary navigation around the site, and one for @@ -479,7 +527,9 @@ </footer> </body></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>A <code><a href="#the-nav-element" id="nav_8">nav</a></code> element doesn't have to contain a list, it can contain other kinds of content as well. In this navigation @@ -502,4 +552,7 @@ see a rat run quickly out of the page.</p> </nav></pre> - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: references.html =================================================================== RCS file: /sources/public/html5/spec-author-view/references.html,v retrieving revision 1.1132 retrieving revision 1.1133 diff -u -d -r1.1132 -r1.1133 --- references.html 29 Feb 2012 22:58:35 -0000 1.1132 +++ references.html 13 Mar 2012 19:58:44 -0000 1.1133 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,14 +380,22 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="index-of-terms.html">← Index of terms</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="acknowledgements.html">Acknowledgements →</a> </div> <h2 class="no-num" id="references">References</h2> -<p>All references are normative unless marked "Non-normative".<dl><dt id="refsABNF">[ABNF]</dt> + + + <p>All references are normative unless marked "Non-normative".</p> + + + + <dl><dt id="refsABNF">[ABNF]</dt> <dd><cite><a href="http://www.ietf.org/rfc/std/std68.txt">Augmented BNF for Syntax Specifications: ABNF</a></cite>, D. Crocker, P. Overell. IETF.</dd> Index: the-meter-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-meter-element.html,v retrieving revision 1.129 retrieving revision 1.130 diff -u -d -r1.129 -r1.130 --- the-meter-element.html 21 Feb 2012 21:59:06 -0000 1.129 +++ the-meter-element.html 13 Mar 2012 19:58:59 -0000 1.130 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,18 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-progress-element.html">← 4.10.16 The progress element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="association-of-controls-and-forms.html">4.10.18 Association of controls and forms →</a> </div> - <h4 id="the-meter-element"><span class="secno">4.10.17 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>meter</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_97" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-meter-element"><span class="secno">4.10.17 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>meter</code></dfn> element</h4> + + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_97" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_137">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_156">Phrasing content</a>.</dd> <dd><a href="forms.html#category-label" id="category-label_9" title="category-label">Labelable element</a>.</dd> @@ -382,17 +423,29 @@ </dl><p>The <code><a href="#the-meter-element" id="meter_9">meter</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a scalar measurement within a known range, or a fractional value; for example disk usage, the relevance of a query result, or the fraction of a - voting population to have selected a particular candidate.<p>This is also known as a gauge.<p class="note">The <code><a href="#the-meter-element" id="meter_10">meter</a></code> element should not be used to + voting population to have selected a particular candidate.</p> + + <p>This is also known as a gauge.</p> + + <p class="note">The <code><a href="#the-meter-element" id="meter_10">meter</a></code> element should not be used to indicate progress (as in a progress bar). For that role, HTML - provides a separate <code><a href="the-progress-element.html#the-progress-element" id="progress_12">progress</a></code> element.<p class="note">The <code><a href="#the-meter-element" id="meter_11">meter</a></code> element also does not + provides a separate <code><a href="the-progress-element.html#the-progress-element" id="progress_12">progress</a></code> element.</p> + + <p class="note">The <code><a href="#the-meter-element" id="meter_11">meter</a></code> element also does not represent a scalar value of arbitrary range — for example, it would be wrong to use this to report a weight, or height, unless - there is a known maximum value.<p>There are six attributes that determine the semantics of the - gauge represented by the element.<p>The <dfn aria-haspopup="true" id="attr-meter-min" role="button" tabindex="0"><code>min</code></dfn> attribute + there is a known maximum value.</p> + + <p>There are six attributes that determine the semantics of the + gauge represented by the element.</p> + + <p>The <dfn aria-haspopup="true" id="attr-meter-min" role="button" tabindex="0"><code>min</code></dfn> attribute specifies the lower bound of the range, and the <dfn aria-haspopup="true" id="attr-meter-max" role="button" tabindex="0"><code>max</code></dfn> attribute specifies the upper bound. The <dfn aria-haspopup="true" id="attr-meter-value" role="button" tabindex="0"><code>value</code></dfn> attribute specifies the value to have the gauge indicate as the "measured" - value.<p>The other three attributes can be used to segment the gauge's + value.</p> + + <p>The other three attributes can be used to segment the gauge's range into "low", "medium", and "high" parts, and to indicate which part of the gauge is the "optimum" part. The <dfn aria-haspopup="true" id="attr-meter-low" role="button" tabindex="0"><code>low</code></dfn> attribute specifies the range that is considered to be the "low" part, and the <dfn aria-haspopup="true" id="attr-meter-high" role="button" tabindex="0"><code>high</code></dfn> attribute specifies @@ -401,23 +454,41 @@ "high" value then this indicates that the higher the value, the better; if it's lower than the "low" mark then it indicates that lower values are better, and naturally if it is in between then it - indicates that neither high nor low values are good.<p> The <code title="attr-meter-value"><a href="#attr-meter-value" id="value_48">value</a></code> attribute must be + indicates that neither high nor low values are good.</p> + + <p> The <code title="attr-meter-value"><a href="#attr-meter-value" id="value_48">value</a></code> attribute must be specified. The <code title="attr-meter-value"><a href="#attr-meter-value" id="value_49">value</a></code>, <code title="attr-meter-min"><a href="#attr-meter-min" id="min_39">min</a></code>, <code title="attr-meter-low"><a href="#attr-meter-low" id="low_0">low</a></code>, <code title="attr-meter-high"><a href="#attr-meter-high" id="high_0">high</a></code>, <code title="attr-meter-max"><a href="#attr-meter-max" id="max_45">max</a></code>, and <code title="attr-meter-optimum"><a href="#attr-meter-optimum" id="optimum_0">optimum</a></code> attributes, when present, must have values that are <a href="common-microsyntaxes.html#valid-floating-point-number" id="valid-floating-point-number_10" title="valid floating point - number">valid floating point numbers</a>.<p>In addition, the attributes' values are further constrained:<p>Let <var title="">value</var> be the <code title="attr-meter-value"><a href="#attr-meter-value" id="value_50">value</a></code> attribute's number.<p>If the <code title="attr-meter-min"><a href="#attr-meter-min" id="min_40">min</a></code> attribute + number">valid floating point numbers</a>.</p> + + <p>In addition, the attributes' values are further constrained:</p> + + <p>Let <var title="">value</var> be the <code title="attr-meter-value"><a href="#attr-meter-value" id="value_50">value</a></code> attribute's number.</p> + + <p>If the <code title="attr-meter-min"><a href="#attr-meter-min" id="min_40">min</a></code> attribute attribute is specified, then let <var title="">minimum</var> be that - attribute's value; otherwise, let it be zero.<p>If the <code title="attr-meter-max"><a href="#attr-meter-max" id="max_46">max</a></code> attribute + attribute's value; otherwise, let it be zero.</p> + + <p>If the <code title="attr-meter-max"><a href="#attr-meter-max" id="max_46">max</a></code> attribute attribute is specified, then let <var title="">maximum</var> be that - attribute's value; otherwise, let it be 1.0.<p>The following inequalities must hold, as applicable:<ul class="brief"><li><var title="">minimum</var> ≤ <var title="">value</var> ≤ <var title="">maximum</var></li> + attribute's value; otherwise, let it be 1.0.</p> + + <p>The following inequalities must hold, as applicable:</p> + + <ul class="brief"><li><var title="">minimum</var> ≤ <var title="">value</var> ≤ <var title="">maximum</var></li> <li><var title="">minimum</var> ≤ <code title="attr-meter-low"><a href="#attr-meter-low" id="low_1">low</a></code> ≤ <var title="">maximum</var> (if <code title="attr-meter-low"><a href="#attr-meter-low" id="low_2">low</a></code> is specified)</li> <li><var title="">minimum</var> ≤ <code title="attr-meter-high"><a href="#attr-meter-high" id="high_1">high</a></code> ≤ <var title="">maximum</var> (if <code title="attr-meter-high"><a href="#attr-meter-high" id="high_2">high</a></code> is specified)</li> <li><var title="">minimum</var> ≤ <code title="attr-meter-optimum"><a href="#attr-meter-optimum" id="optimum_1">optimum</a></code> ≤ <var title="">maximum</var> (if <code title="attr-meter-optimum"><a href="#attr-meter-optimum" id="optimum_2">optimum</a></code> is specified)</li> <li><code title="attr-meter-low"><a href="#attr-meter-low" id="low_3">low</a></code> ≤ <code title="attr-meter-high"><a href="#attr-meter-high" id="high_3">high</a></code> (if both <code title="attr-meter-low"><a href="#attr-meter-low" id="low_4">low</a></code> and <code title="attr-meter-high"><a href="#attr-meter-high" id="high_4">high</a></code> are specified)</li> </ul><p class="note">If no minimum or maximum is specified, then the range is assumed to be 0..1, and the value thus has to be within - that range.<p>Authors are encouraged to include a textual representation of the + that range.</p> + + <p>Authors are encouraged to include a textual representation of the gauge's state in the element's contents, for users of user agents - that do not support the <code><a href="#the-meter-element" id="meter_12">meter</a></code> element.<div class="example"> + that do not support the <code><a href="#the-meter-element" id="meter_12">meter</a></code> element.</p> + + <div class="example"> <p>The following examples show three gauges that would all be three-quarters full:</p> @@ -444,9 +515,13 @@ <dt>Height: <dd> <meter min=0 max=10 value=2>2cm</meter> </dl></pre> - </div><p>There is no explicit way to specify units in the + </div> + + <p>There is no explicit way to specify units in the <code><a href="#the-meter-element" id="meter_13">meter</a></code> element, but the units may be specified in the - <code title="attr-title"><a href="global-attributes.html#the-title-attribute" id="title_30">title</a></code> attribute in free-form text.<div class="example"> + <code title="attr-title"><a href="global-attributes.html#the-title-attribute" id="title_30">title</a></code> attribute in free-form text.</p> + + <div class="example"> <p>The example above could be extended to mention the units:</p> @@ -455,7 +530,11 @@ <dt>Height: <dd> <meter min=0 max=10 value=2 title="centimeters">2cm</meter> </dl></pre> - </div><div class="example"> + </div> + + + + <div class="example"> <p>The following markup:</p> <pre><h3>Suggested groups</h3> <menu type="toolbar"> @@ -482,22 +561,30 @@ </ul></pre> <p>Might be rendered as follows:</p> <p><img alt="With the <meter> elements rendered as inline green bars of varying lengths." height="178" src="http://dev.w3.org/html5/spec/images/sample-meter.png" width="332"></p> - </div><p>User agents combine the value of + </div> + + <p>User agents combine the value of the <code title="attr-title"><a href="global-attributes.html#the-title-attribute" id="title_31">title</a></code> attribute and the other attributes to provide context-sensitive help or inline text - detailing the actual values.<div class="example"> + detailing the actual values.</p> + + <div class="example"> <p>For example, the following snippet:</p> <pre><meter min=0 max=60 value=23.2 title=seconds></meter></pre> <p>...might cause the user agent to display a gauge with a tooltip saying "Value: 23.2 out of 60." on one line and "seconds" on a second line.</p> </div> + + <p>The <dfn aria-haspopup="true" id="dom-meter-value" role="button" tabindex="0"><code>value</code></dfn> IDL attribute, on getting, must return the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-meter-element.html#concept-meter-actual" title='Read about this "actual value" reference in the full HTML5 spec.'>actual value</a>. On setting, the given value must be converted to the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-microsyntaxes.html#best-representation-of-the-number-as-a-floating-point-number" title='Read about this "best representation of the number as a floating point number" reference in the full HTML5 spec.'>best representation of the number as a floating point number</a> and then the <code title="dom-meter-value"><a href="#dom-meter-value" id="value_52">value</a></code> content attribute must be set to that string.</p> -<div class="example"> + + + <div class="example"> <p>The following example shows how a gauge could fall back to localized or pretty-printed text.</p> @@ -505,4 +592,9 @@ <pre><p>Disk usage: <meter min=0 value=170261928 max=233257824>170 261 928 bytes used out of 233 257 824 bytes available</meter></p></pre> - </div> \ No newline at end of file + </div> + + + + + \ No newline at end of file Index: the-ul-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-ul-element.html,v retrieving revision 1.118 retrieving revision 1.119 diff -u -d -r1.118 -r1.119 --- the-ul-element.html 21 Feb 2012 21:59:09 -0000 1.118 +++ the-ul-element.html 13 Mar 2012 19:59:03 -0000 1.119 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-ol-element.html">← 4.5.5 The ol element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-li-element.html">4.5.7 The li element →</a> </div> - <h4 id="the-ul-element"><span class="secno">4.5.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>ul</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_24" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-ul-element"><span class="secno">4.5.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>ul</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_24" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_53">Flow content</a>.</dd> <dd>If the element's children include at least one <code><a href="the-li-element.html#the-li-element" id="li_8">li</a></code> element: <a href="content-models.html#palpable-content" id="palpable-content_13">Palpable content</a>.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_24" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> @@ -366,8 +406,12 @@ </dl><p>The <code><a href="#the-ul-element" id="ul_9">ul</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a list of items, where the order of the items is not important — that is, where changing the order would not materially change the meaning - of the document.<p>The items of the list are the <code><a href="the-li-element.html#the-li-element" id="li_10">li</a></code> element child nodes - of the <code><a href="#the-ul-element" id="ul_10">ul</a></code> element.<div class="example"> + of the document.</p> + + <p>The items of the list are the <code><a href="the-li-element.html#the-li-element" id="li_10">li</a></code> element child nodes + of the <code><a href="#the-ul-element" id="ul_10">ul</a></code> element.</p> + + <div class="example"> <p>The following markup shows a list where the order does not matter, and where the <code><a href="#the-ul-element" id="ul_11">ul</a></code> element is therefore @@ -397,4 +441,7 @@ <li>United States </ul></pre> - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: the-html-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-html-element.html,v retrieving revision 1.122 retrieving revision 1.123 diff -u -d -r1.122 -r1.123 --- the-html-element.html 21 Feb 2012 21:59:05 -0000 1.122 +++ the-html-element.html 13 Mar 2012 19:58:58 -0000 1.123 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,14 +380,18 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="semantics.html">← 4 The elements of HTML</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-head-element.html">4.2.1 The head element →</a> <ol class="toc"><li><ol><li><ol><li><a href="the-html-element.html#the-html-element" id="4.1.1-the-html-element"><span class="secno">4.1.1 </span>The <code>html</code> element</a></ol><li><a href="the-html-element.html#document-metadata"><span class="secno">4.2 </span>Document metadata</a> </ol></ol></div> - <h4 id="the-html-element"><span class="secno">4.1.1 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>html</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_0" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-html-element"><span class="secno">4.1.1 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>html</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_0" title="element-dfn-categories">Categories</a>:</dt> <dd>None.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_0" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>As the root element of a document.</dd> @@ -366,20 +406,32 @@ <pre class="idl">interface <dfn aria-haspopup="true" id="htmlhtmlelement" role="button" tabindex="0">HTMLHtmlElement</dfn> : <a href="elements.html#htmlelement" id="htmlelement_5">HTMLElement</a> {};</pre> </dd> </dl><p>The <code><a href="#the-html-element" id="html_4">html</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> the root of - an HTML document.<p>The <dfn aria-haspopup="true" id="attr-html-manifest" role="button" tabindex="0"><code>manifest</code></dfn> + an HTML document.</p> + + + <p>The <dfn aria-haspopup="true" id="attr-html-manifest" role="button" tabindex="0"><code>manifest</code></dfn> attribute gives the address of the document's <a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#application-cache" title='Read about this "application cache" reference in the full HTML5 spec.'>application cache</a> <a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#concept-appcache-manifest" title='Read about this "manifest" reference in the full HTML5 spec.'>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-potentially-surrounded-by-spaces" id="valid-non-empty-url-potentially-surrounded-by-spaces_0">valid non-empty URL potentially surrounded by - spaces</a>.<p>The <code title="attr-html-manifest"><a href="#attr-html-manifest" id="manifest_0">manifest</a></code> attribute + spaces</a>.</p> + + <p>The <code title="attr-html-manifest"><a href="#attr-html-manifest" id="manifest_0">manifest</a></code> attribute only <a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#concept-appcache-init" title='Read about this "has an effect" reference in the full HTML5 spec.'>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 - this attribute).<p class="note">For the purposes of <a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#concept-appcache-init" title='Read about this "application cache selection" reference in the full HTML5 spec.'>application cache selection</a>, + this attribute).</p> + + <p class="note">For the purposes of <a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#concept-appcache-init" title='Read about this "application cache selection" reference in the full HTML5 spec.'>application cache selection</a>, later <code><a href="the-base-element.html#the-base-element" id="base_2">base</a></code> elements cannot affect the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/urls.html#resolve-a-url" title='Read about this "resolving of relative URLs" reference in the full HTML5 spec.'>resolving of relative URLs</a> in <code title="attr-html-manifest"><a href="#attr-html-manifest" id="manifest_1">manifest</a></code> attributes, as the - attributes are processed before those elements are seen.<p class="note">The <code title="dom-applicationCache"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#dom-applicationcache" title='Read about this "window.applicationCache" reference in the full HTML5 spec.'>window.applicationCache</a></code> IDL + attributes are processed before those elements are seen.</p> + + <p class="note">The <code title="dom-applicationCache"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#dom-applicationcache" title='Read about this "window.applicationCache" reference in the full HTML5 spec.'>window.applicationCache</a></code> IDL attribute provides scripted access to the offline <a class="full-spec-link" href="http://dev.w3.org/html5/spec/offline.html#application-cache" title='Read about this "application cache" reference in the full HTML5 spec.'>application - cache</a> mechanism.<div class="example"> + cache</a> mechanism.</p> + + + <div class="example"> <p>The <code><a href="#the-html-element" id="html_5">html</a></code> element in the following example declares that the document's language is English.</p> @@ -396,4 +448,11 @@ </body> <strong></html></strong></pre> - </div><h3 id="document-metadata"><span class="secno">4.2 </span>Document metadata</h3> \ No newline at end of file + </div> + + + + + <h3 id="document-metadata"><span class="secno">4.2 </span>Document metadata</h3> + + \ No newline at end of file Index: index.html =================================================================== RCS file: /sources/public/html5/spec-author-view/index.html,v retrieving revision 1.1237 retrieving revision 1.1238 diff -u -d -r1.1237 -r1.1238 --- index.html 7 Mar 2012 01:01:20 -0000 1.1237 +++ index.html 13 Mar 2012 19:58:42 -0000 1.1238 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,14 +380,26 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="iana.html">← 11 IANA considerations</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="index-of-terms.html">Index of terms →</a> <ol class="toc"><li><a class="no-num" href="index.html#index">Index</a> <ol><li><a class="no-num" href="index.html#elements-1">Elements</a><li><a class="no-num" href="index.html#element-content-categories">Element content categories</a><li><a class="no-num" href="index.html#attributes-1">Attributes</a><li><a class="no-num" href="index.html#interfaces">Interfaces</a><li><a class="no-num" href="index.html#events-0">Events</a></ol></ol></div> - <h2 class="no-num" id="index">Index</h2><h3 class="no-num" id="elements-1">Elements</h3><table><caption>List of elements</caption> + <h2 class="no-num" id="index">Index</h2> + + + + <h3 class="no-num" id="elements-1">Elements</h3> + + + + + + <table><caption>List of elements</caption> <thead><tr><th> Element <th> Description <th> Categories @@ -1483,7 +1531,9 @@ <td>empty</td> <td><a href="global-attributes.html#global-attributes" id="global-attributes_205" title="global attributes">globals</a></td> <td><code><a href="elements.html#htmlelement" id="htmlelement_147">HTMLElement</a></code></td> - </table><p>An asterisk (*) in a cell indicates that the actual rules are more complicated than indicated in the table above.<p>† Categories in the "Parents" column refer to parents that + </table><p>An asterisk (*) in a cell indicates that the actual rules are more complicated than indicated in the table above.</p> + + <p>† Categories in the "Parents" column refer to parents that list the given categories in their content model, not to elements that themselves are in those categories. For example, the <code><a href="the-a-element.html#the-a-element" id="a_75">a</a></code> element's "Parents" column says "phrasing", so any @@ -1491,7 +1541,17 @@ be a parent of an <code><a href="the-a-element.html#the-a-element" id="a_76">a</a></code> element. Since the "flow" category includes all the "phrasing" elements, that means the <code><a href="the-address-element.html#the-address-element" id="address_13">address</a></code> element could be a parent to an <code><a href="the-a-element.html#the-a-element" id="a_77">a</a></code> - element.<h3 class="no-num" id="element-content-categories">Element content categories</h3><table><caption>List of element content categories</caption> + element.</p> + + + + <h3 class="no-num" id="element-content-categories">Element content categories</h3> + + + + + + <table><caption>List of element content categories</caption> <thead><tr><th> Category <th> Elements <th> Elements with exceptions @@ -1853,7 +1913,11 @@ <code><a href="the-ul-element.html#the-ul-element" id="ul_25">ul</a></code> (if the element's children include at least one <code><a href="the-li-element.html#the-li-element" id="li_33">li</a></code> element); <a href="content-models.html#text-content" id="text-content_13" title="text content">Text</a> that is not <a href="content-models.html#inter-element-whitespace" id="inter-element-whitespace_11">inter-element whitespace</a> - </table><h3 class="no-num" id="attributes-1">Attributes</h3><table><caption>List of attributes (excluding event handler content attributes)</caption> + </table><h3 class="no-num" id="attributes-1">Attributes</h3> + + + + <table><caption>List of attributes (excluding event handler content attributes)</caption> <thead><tr><th> Attribute <th> Element(s) <th> Description @@ -2538,7 +2602,9 @@ <td> How the value of the form control is to be wrapped for <a href="form-submission.html#form-submission" id="form-submission_18">form submission</a> <td> "<code title="attr-textarea-wrap-soft"><a href="the-textarea-element.html#attr-textarea-wrap-soft" id="soft">soft</a></code>"; "<code title="attr-textarea-wrap-hard"><a href="the-textarea-element.html#attr-textarea-wrap-hard" id="hard">hard</a></code>" - </table><p>An asterisk (*) in a cell indicates that the actual rules are more complicated than indicated in the table above.<hr><table id="ix-event-handlers"><caption>List of event handler content attributes</caption> + </table><p>An asterisk (*) in a cell indicates that the actual rules are more complicated than indicated in the table above.</p> + + <hr><table id="ix-event-handlers"><caption>List of event handler content attributes</caption> <thead><tr><th> Attribute <th> Element(s) <th> Description @@ -2898,7 +2964,11 @@ <td> <code title="event-media-waiting"><a href="media-elements.html#event-media-waiting" id="waiting_0">waiting</a></code> event handler <td> <a href="webappapis.html#event-handler-content-attributes" id="event-handler-content-attributes_79" title="event handler content attributes">Event handler content attribute</a> - </table><h3 class="no-num" id="interfaces">Interfaces</h3><table><caption>List of interfaces for elements</caption> + </table><h3 class="no-num" id="interfaces">Interfaces</h3> + + + + <table><caption>List of interfaces for elements</caption> <thead><tr><th> Element(s) <th> Interface(s) <tbody><tr><td> <code><a href="the-a-element.html#the-a-element" id="a_82">a</a></code> @@ -3226,7 +3296,11 @@ <tr><td> <code><a href="the-wbr-element.html#the-wbr-element" id="wbr_10">wbr</a></code> <td> <code><a href="elements.html#htmlelement" id="htmlelement_255">HTMLElement</a></code> - </table><h3 class="no-num" id="events-0">Events</h3><table><caption>List of events</caption> + </table><h3 class="no-num" id="events-0">Events</h3> + + + + <table><caption>List of events</caption> <thead><tr><th> Event <th> Interface <th> Description @@ -3337,3 +3411,9 @@ </table><p class="note">See also <a href="media-elements.html#mediaevents">media element events</a>, <a href="offline.html#appcacheevents">application cache events</a>, and <a href="dnd.html#dndevents">drag-and-drop events</a>.</p> + + + + + + Index: attributes-common-to-td-and-th-elements.html =================================================================== RCS file: /sources/public/html5/spec-author-view/attributes-common-to-td-and-th-elements.html,v retrieving revision 1.20 retrieving revision 1.21 diff -u -d -r1.20 -r1.21 --- attributes-common-to-td-and-th-elements.html 21 Feb 2012 21:58:41 -0000 1.20 +++ attributes-common-to-td-and-th-elements.html 13 Mar 2012 19:58:35 -0000 1.21 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,26 +380,38 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-th-element.html">← 4.9.10 The th element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="examples.html">4.9.12 Examples →</a> </div> - <h4 id="attributes-common-to-td-and-th-elements"><span class="secno">4.9.11 </span>Attributes common to <code><a href="the-td-element.html#the-td-element" id="td_13">td</a></code> and <code><a href="the-th-element.html#the-th-element" id="th_11">th</a></code> elements</h4><p>The <code><a href="the-td-element.html#the-td-element" id="td_14">td</a></code> and <code><a href="the-th-element.html#the-th-element" id="th_12">th</a></code> elements may have a <dfn aria-haspopup="true" id="attr-tdth-colspan" role="button" tabindex="0"><code>colspan</code></dfn> content + <h4 id="attributes-common-to-td-and-th-elements"><span class="secno">4.9.11 </span>Attributes common to <code><a href="the-td-element.html#the-td-element" id="td_13">td</a></code> and <code><a href="the-th-element.html#the-th-element" id="th_11">th</a></code> elements</h4> + + <p>The <code><a href="the-td-element.html#the-td-element" id="td_14">td</a></code> and <code><a href="the-th-element.html#the-th-element" id="th_12">th</a></code> elements may have a <dfn aria-haspopup="true" id="attr-tdth-colspan" role="button" tabindex="0"><code>colspan</code></dfn> content attribute specified, whose value must be a <a href="common-microsyntaxes.html#valid-non-negative-integer" id="valid-non-negative-integer_8">valid non-negative - integer</a> greater than zero.<p>The <code><a href="the-td-element.html#the-td-element" id="td_15">td</a></code> and <code><a href="the-th-element.html#the-th-element" id="th_13">th</a></code> elements may also have a + integer</a> greater than zero.</p> + + <p>The <code><a href="the-td-element.html#the-td-element" id="td_15">td</a></code> and <code><a href="the-th-element.html#the-th-element" id="th_13">th</a></code> elements may also have a <dfn aria-haspopup="true" id="attr-tdth-rowspan" role="button" tabindex="0"><code>rowspan</code></dfn> content attribute specified, whose value must be a <a href="common-microsyntaxes.html#valid-non-negative-integer" id="valid-non-negative-integer_9">valid non-negative - integer</a>.<p>These attributes give the number of columns and rows respectively + integer</a>.</p> + + <p>These attributes give the number of columns and rows respectively that the cell is to span. These attributes must not be used to - overlap cells.<hr><p>The <code><a href="the-td-element.html#the-td-element" id="td_16">td</a></code> and <code><a href="the-th-element.html#the-th-element" id="th_14">th</a></code> element may have a <dfn aria-haspopup="true" id="attr-tdth-headers" role="button" tabindex="0"><code>headers</code></dfn> content + overlap cells.</p> + + <hr><p>The <code><a href="the-td-element.html#the-td-element" id="td_16">td</a></code> and <code><a href="the-th-element.html#the-th-element" id="th_14">th</a></code> element may have a <dfn aria-haspopup="true" id="attr-tdth-headers" role="button" tabindex="0"><code>headers</code></dfn> content attribute specified. The <code title="attr-tdth-headers"><a href="#attr-tdth-headers" id="headers_2">headers</a></code> attribute, if specified, must contain a string consisting of an <a href="common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens" id="unordered-set-of-unique-space-separated-tokens_1">unordered set of unique space-separated tokens</a> that are <a href="infrastructure.html#case-sensitive" id="case-sensitive_2">case-sensitive</a>, each of which must have the value of an <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#concept-id" title='Read about this "ID" reference in the full HTML5 spec.'>ID</a> of a <code><a href="the-th-element.html#the-th-element" id="th_15">th</a></code> element taking part in the same <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-td-and-th-elements.html#concept-table" title='Read about this "table" reference in the full HTML5 spec.'>table</a> as the - <code><a href="the-td-element.html#the-td-element" id="td_17">td</a></code> or <code><a href="the-th-element.html#the-th-element" id="th_16">th</a></code> element.<p>A <code><a href="the-th-element.html#the-th-element" id="th_17">th</a></code> element with <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#concept-id" title='Read about this "ID" reference in the full HTML5 spec.'>ID</a> <var title="">id</var> is said + <code><a href="the-td-element.html#the-td-element" id="td_17">td</a></code> or <code><a href="the-th-element.html#the-th-element" id="th_16">th</a></code> element.</p> + + <p>A <code><a href="the-th-element.html#the-th-element" id="th_17">th</a></code> element with <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#concept-id" title='Read about this "ID" reference in the full HTML5 spec.'>ID</a> <var title="">id</var> is said to be <i>directly targeted</i> by all <code><a href="the-td-element.html#the-td-element" id="td_18">td</a></code> and <code><a href="the-th-element.html#the-th-element" id="th_18">th</a></code> elements in the same <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-td-and-th-elements.html#concept-table" title='Read about this "table" reference in the full HTML5 spec.'>table</a> that have <code title="attr-tdth-headers"><a href="#attr-tdth-headers" id="headers_3">headers</a></code> attributes whose values include as one of their tokens the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#concept-id" title='Read about this "ID" reference in the full HTML5 spec.'>ID</a> <var title="">id</var>. A @@ -373,15 +421,26 @@ targeted</i> by <var title="">B</var> or if there exists an element <var title="">C</var> that is itself <i>targeted</i> by the element <var title="">B</var> and <var title="">A</var> is <i>directly - targeted</i> by <var title="">C</var>.<p>A <code><a href="the-th-element.html#the-th-element" id="th_21">th</a></code> element must not be <i>targeted</i> by - itself.<hr><p>The <code><a href="the-td-element.html#the-td-element" id="td_20">td</a></code> and <code><a href="the-th-element.html#the-th-element" id="th_22">th</a></code> elements implement + targeted</i> by <var title="">C</var>.</p> + + <p>A <code><a href="the-th-element.html#the-th-element" id="th_21">th</a></code> element must not be <i>targeted</i> by + itself.</p> + + + + <hr><p>The <code><a href="the-td-element.html#the-td-element" id="td_20">td</a></code> and <code><a href="the-th-element.html#the-th-element" id="th_22">th</a></code> elements implement interfaces that inherit from the <code><a href="#htmltablecellelement" id="htmltablecellelement_2">HTMLTableCellElement</a></code> - interface:<pre class="idl">interface <dfn aria-haspopup="true" id="htmltablecellelement" role="button" tabindex="0">HTMLTableCellElement</dfn> : <a href="elements.html#htmlelement" id="htmlelement_87">HTMLElement</a> { + interface:</p> + + <pre class="idl">interface <dfn aria-haspopup="true" id="htmltablecellelement" role="button" tabindex="0">HTMLTableCellElement</dfn> : <a href="elements.html#htmlelement" id="htmlelement_87">HTMLElement</a> { attribute unsigned long <a href="#dom-tdth-colspan" id="dom-tdth-colspan_0" title="dom-tdth-colSpan">colSpan</a>; attribute unsigned long <a href="#dom-tdth-rowspan" id="dom-tdth-rowspan_0" title="dom-tdth-rowSpan">rowSpan</a>; [PutForwards=<span title="dom-DOMSettableTokenList-value">value</span>] readonly attribute <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#domsettabletokenlist" title='Read about this "DOMSettableTokenList" reference in the full HTML5 spec.'>DOMSettableTokenList</a> <a href="#dom-tdth-headers" id="dom-tdth-headers_0" title="dom-tdth-headers">headers</a>; readonly attribute long <a href="#dom-tdth-cellindex" title="dom-tdth-cellIndex">cellIndex</a>; -};</pre><dl class="domintro"><dt><var title="">cell</var> . <code id="dom-tdth-cellindex" title="dom-tdth-cellIndex"><a href="#dom-tdth-cellindex">cellIndex</a></code></dt> +};</pre> + + + <dl class="domintro"><dt><var title="">cell</var> . <code id="dom-tdth-cellindex" title="dom-tdth-cellIndex"><a href="#dom-tdth-cellindex">cellIndex</a></code></dt> <dd> @@ -407,3 +466,11 @@ <p>The <dfn aria-haspopup="true" id="dom-tdth-headers" role="button" tabindex="0"><code>headers</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_57">reflect</a> the content attribute of the same name.</p> + + + + + + + + \ No newline at end of file Index: wai-aria.html =================================================================== RCS file: /sources/public/html5/spec-author-view/wai-aria.html,v retrieving revision 1.142 retrieving revision 1.143 diff -u -d -r1.142 -r1.143 --- wai-aria.html 15 Feb 2012 10:14:27 -0000 1.142 +++ wai-aria.html 13 Mar 2012 19:59:03 -0000 1.143 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,25 +380,36 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="requirements-relating-to-bidirectional-algorithm-formatting-characters.html">← 3.2.6 Requirements relating to bidirectional-algorithm formatting characters</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="dynamic-markup-insertion.html">3.3 Dynamic markup insertion →</a> </div> - <h4 id="wai-aria"><span class="secno">3.2.7 </span><dfn aria-haspopup="true" role="button" tabindex="0">WAI-ARIA</dfn></h4><p>Authors may use the ARIA <code title="attr-aria-role">role</code> + <h4 id="wai-aria"><span class="secno">3.2.7 </span><dfn aria-haspopup="true" role="button" tabindex="0">WAI-ARIA</dfn></h4> + + <p>Authors may use the ARIA <code title="attr-aria-role">role</code> and <code title="attr-aria-*">aria-*</code> attributes on <a href="infrastructure.html#html-elements" id="html-elements_26">HTML elements</a>, in accordance with the requirements described in the ARIA specifications, except where these conflict with the <span>strong native semantics</span> described below. These exceptions are intended to prevent authors from making assistive technology products report nonsensical states - that do not represent the actual state of the document. <a href="references.html#refsARIA">[ARIA]</a><p>The following table defines the <span>strong native + that do not represent the actual state of the document. <a href="references.html#refsARIA">[ARIA]</a></p> + + + + + <p>The following table defines the <span>strong native semantics</span> and corresponding <span>default implicit ARIA semantics</span> that apply to <a href="infrastructure.html#html-elements" id="html-elements_27">HTML elements</a>. Each language feature (element or attribute) in a cell in the first column implies the ARIA semantics (role, states, and/or properties) - given in the cell in the second column of the same row. <table id="table-aria-strong"><thead><tr><th>Language feature + given in the cell in the second column of the same row. </p> + + <table id="table-aria-strong"><thead><tr><th>Language feature <th><span>Strong native semantics</span> and <span>default implied ARIA semantics</span> <tbody><tr><td><code><a href="the-area-element.html#the-area-element" id="area_5">area</a></code> element that creates a <a href="links.html#hyperlink" id="hyperlink_1">hyperlink</a> @@ -561,7 +608,9 @@ semantic may be overridden under the conditions listed in the cell in the third column of that row. In addition, any element may be given the <code title="attr-aria-role-presentation">presentation</code> role, - regardless of the restrictions below.<table id="table-aria-weak"><thead><tr><th>Language feature + regardless of the restrictions below.</p> + + <table id="table-aria-weak"><thead><tr><th>Language feature <th>Default implied ARIA semantic <th>Restrictions @@ -707,7 +756,11 @@ When used as a <span title="default implied ARIA semantics">default implied ARIA semantic</span>, it means the user agent has no default mapping to ARIA roles. (However, it probably will have its own - mappings to the accessibility layer.)<div class="example"> + mappings to the accessibility layer.)</p> + + + + <div class="example"> <p>These features can be used to make accessibility tools render content to their users in more useful ways. For example, ASCII art, @@ -737,4 +790,13 @@ - </div> \ No newline at end of file + </div> + + + + + + + + + \ No newline at end of file Index: the-ruby-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-ruby-element.html,v retrieving revision 1.118 retrieving revision 1.119 diff -u -d -r1.118 -r1.119 --- the-ruby-element.html 21 Feb 2012 21:59:07 -0000 1.118 +++ the-ruby-element.html 13 Mar 2012 19:59:00 -0000 1.119 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-mark-element.html">← 4.6.19 The mark element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-rt-element.html">4.6.21 The rt element →</a> </div> - <h4 id="the-ruby-element"><span class="secno">4.6.20 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>ruby</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_51" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-ruby-element"><span class="secno">4.6.20 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>ruby</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_51" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_90">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_86">Phrasing content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_36">Palpable content</a>.</dd> @@ -367,11 +407,15 @@ annotations are short runs of text presented alongside base text, primarily used in East Asian typography as a guide for pronunciation or to include other annotations. In Japanese, this - form of typography is also known as <i>furigana</i>.<p>A <code><a href="#the-ruby-element" id="ruby_7">ruby</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> the spans of + form of typography is also known as <i>furigana</i>.</p> + + <p>A <code><a href="#the-ruby-element" id="ruby_7">ruby</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> the spans of phrasing content it contains, ignoring all the child <code><a href="the-rt-element.html#the-rt-element" id="rt_4">rt</a></code> and <code><a href="the-rp-element.html#the-rp-element" id="rp_2">rp</a></code> elements and their descendants. Those spans of phrasing content have associated annotations created using the - <code><a href="the-rt-element.html#the-rt-element" id="rt_5">rt</a></code> element.<div class="example"> + <code><a href="the-rt-element.html#the-rt-element" id="rt_5">rt</a></code> element.</p> + + <div class="example"> @@ -387,7 +431,9 @@ <p><img alt="The two main ideographs, each with its annotation in hiragana rendered in a smaller font above it." height="78" src="http://dev.w3.org/html5/spec/images/sample-ruby-ja.png" width="171"></p> - </div><div class="example"> + </div> + + <div class="example"> @@ -401,7 +447,9 @@ <p><img alt="The two main ideographs, each with its bopomofo annotation rendered in a smaller font next to it." height="100" src="http://dev.w3.org/html5/spec/images/sample-ruby-bopomofo.png" width="78"></p> - </div><div class="example"> + </div> + + <div class="example"> @@ -415,4 +463,9 @@ <p><img alt="The two main ideographs, each with its pinyin annotation rendered in a smaller font above it." height="79" src="http://dev.w3.org/html5/spec/images/sample-ruby-pinyin.png" width="173"></p> - </div> \ No newline at end of file + </div> + + + + + \ No newline at end of file Index: the-track-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-track-element.html,v retrieving revision 1.156 retrieving revision 1.157 diff -u -d -r1.156 -r1.157 --- the-track-element.html 21 Feb 2012 21:59:09 -0000 1.156 +++ the-track-element.html 13 Mar 2012 19:59:02 -0000 1.157 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-source-element.html">← 4.8.8 The source element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="media-elements.html">4.8.10 Media elements →</a> </div> - <h4 id="the-track-element"><span class="secno">4.8.9 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>track</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_69" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-track-element"><span class="secno">4.8.9 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>track</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_69" title="element-dfn-categories">Categories</a>:</dt> <dd>None.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_69" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>As a child of a <a href="media-elements.html#media-element" id="media-element_10">media element</a>, before any <a href="content-models.html#flow-content" id="flow-content_108">flow content</a>.</dd> @@ -382,11 +422,15 @@ };</pre> </dd> </dl><p>The <code><a href="#the-track-element" id="track_13">track</a></code> element allows authors to specify explicit - external timed <a href="media-elements.html#text-track" id="text-track_0" title="text track">text tracks</a> for <a href="media-elements.html#media-element" id="media-element_11" title="media element">media elements</a>. It does not <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represent" reference in the full HTML5 spec.'>represent</a> anything on its own.<p>The <dfn aria-haspopup="true" id="attr-track-kind" role="button" tabindex="0"><code>kind</code></dfn> + external timed <a href="media-elements.html#text-track" id="text-track_0" title="text track">text tracks</a> for <a href="media-elements.html#media-element" id="media-element_11" title="media element">media elements</a>. It does not <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represent" reference in the full HTML5 spec.'>represent</a> anything on its own.</p> + + <p>The <dfn aria-haspopup="true" id="attr-track-kind" role="button" tabindex="0"><code>kind</code></dfn> attribute is an <a href="common-microsyntaxes.html#enumerated-attribute" id="enumerated-attribute_4">enumerated attribute</a>. The following table lists the keywords defined for this attribute. The keyword given in the first cell of each row maps to the state given in the - second cell.<table><thead><tr><th>Keyword + second cell.</p> + + <table><thead><tr><th>Keyword <th>State <th>Brief description <tbody><tr><td><dfn aria-haspopup="true" id="attr-track-kind-keyword-subtitles" role="button" tabindex="0"><code>subtitles</code></dfn> @@ -415,36 +459,58 @@ Tracks intended for use from script. Not displayed by the user agent. </table><p>The attribute may be omitted. The <i>missing value default</i> is - the <a href="#attr-track-kind-subtitles" id="attr-track-kind-subtitles_0" title="attr-track-kind-subtitles">subtitles</a> state.<p>The <dfn aria-haspopup="true" id="attr-track-src" role="button" tabindex="0"><code>src</code></dfn> attribute + the <a href="#attr-track-kind-subtitles" id="attr-track-kind-subtitles_0" title="attr-track-kind-subtitles">subtitles</a> state.</p> + + <p>The <dfn aria-haspopup="true" id="attr-track-src" role="button" tabindex="0"><code>src</code></dfn> attribute gives the address of the text track data. The value must be a <a href="urls.html#valid-non-empty-url-potentially-surrounded-by-spaces" id="valid-non-empty-url-potentially-surrounded-by-spaces_9">valid non-empty URL potentially surrounded by - spaces</a>. This attribute must be present.<p>If the element's <a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-track-element.html#track-url" title='Read about this "track URL" reference in the full HTML5 spec.'>track URL</a> identifies a + spaces</a>. This attribute must be present.</p> + + + + <p>If the element's <a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-track-element.html#track-url" title='Read about this "track URL" reference in the full HTML5 spec.'>track URL</a> identifies a <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#webvtt" title='Read about this "WebVTT" reference in the full HTML5 spec.'>WebVTT</a> resource, and the element's <code title="attr-track-kind"><a href="#attr-track-kind" id="kind_0">kind</a></code> attribute is not in the <a href="#attr-track-kind-metadata" id="attr-track-kind-metadata_0" title="attr-track-kind-metadata">metadata</a> state, then the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#webvtt" title='Read about this "WebVTT" reference in the full HTML5 spec.'>WebVTT</a> file must be a <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#webvtt-file-using-cue-text" title='Read about this "WebVTT file using cue text" reference in the full HTML5 spec.'>WebVTT file using cue - text</a>. <a href="references.html#refsWEBVTT">[WEBVTT]</a><p>Furthermore, if the element's <a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-track-element.html#track-url" title='Read about this "track URL" reference in the full HTML5 spec.'>track URL</a> identifies a + text</a>. <a href="references.html#refsWEBVTT">[WEBVTT]</a></p> + + <p>Furthermore, if the element's <a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-track-element.html#track-url" title='Read about this "track URL" reference in the full HTML5 spec.'>track URL</a> identifies a <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#webvtt" title='Read about this "WebVTT" reference in the full HTML5 spec.'>WebVTT</a> resource, and the element's <code title="attr-track-kind"><a href="#attr-track-kind" id="kind_1">kind</a></code> attribute is in the <a href="#attr-track-kind-chapters" id="attr-track-kind-chapters_0" title="attr-track-kind-chapters">chapters</a> state, then the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#webvtt" title='Read about this "WebVTT" reference in the full HTML5 spec.'>WebVTT</a> file must be both a <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#webvtt-file-using-chapter-title-text" title='Read about this "WebVTT file using chapter title text" reference in the full HTML5 spec.'>WebVTT file using chapter title text</a> and a <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#webvtt-file-using-only-nested-cues" title='Read about this "WebVTT file using only nested cues" reference in the full HTML5 spec.'>WebVTT file using only nested - cues</a>. <a href="references.html#refsWEBVTT">[WEBVTT]</a><p>The <dfn aria-haspopup="true" id="attr-track-srclang" role="button" tabindex="0"><code>srclang</code></dfn> + cues</a>. <a href="references.html#refsWEBVTT">[WEBVTT]</a></p> + + <p>The <dfn aria-haspopup="true" id="attr-track-srclang" role="button" tabindex="0"><code>srclang</code></dfn> attribute gives the language of the text track data. The value must be a valid BCP 47 language tag. This attribute must be present if the element's <code title="attr-track-kind"><a href="#attr-track-kind" id="kind_2">kind</a></code> attribute is in the <a href="#attr-track-kind-subtitles" id="attr-track-kind-subtitles_1" title="attr-track-kind-subtitles">subtitles</a> - state. <a href="references.html#refsBCP47">[BCP47]</a><p>The <dfn aria-haspopup="true" id="attr-track-label" role="button" tabindex="0"><code>label</code></dfn> + state. <a href="references.html#refsBCP47">[BCP47]</a></p> + + + + <p>The <dfn aria-haspopup="true" id="attr-track-label" role="button" tabindex="0"><code>label</code></dfn> attribute gives a user-readable title for the track. This title is used by user agents when listing <a href="#attr-track-kind-subtitles" id="attr-track-kind-subtitles_2" title="attr-track-kind-subtitles">subtitle</a>, <a href="#attr-track-kind-captions" id="attr-track-kind-captions_0" title="attr-track-kind-captions">caption</a>, and <a href="#attr-track-kind-descriptions" id="attr-track-kind-descriptions_0" title="attr-track-kind-descriptions">audio description</a> tracks - in their user interface.<p>The value of the <code title="attr-track-label"><a href="#attr-track-label" id="label_2">label</a></code> + in their user interface.</p> + + <p>The value of the <code title="attr-track-label"><a href="#attr-track-label" id="label_2">label</a></code> attribute, if the attribute is present, must not be the empty string. Furthermore, there must not be two <code><a href="#the-track-element" id="track_14">track</a></code> element children of the same <a href="media-elements.html#media-element" id="media-element_12">media element</a> whose <code title="attr-track-kind"><a href="#attr-track-kind" id="kind_3">kind</a></code> attributes are in the same state, whose <code title="attr-track-srclang"><a href="#attr-track-srclang" id="srclang_0">srclang</a></code> attributes are both missing or have values that represent the same language, and whose <code title="attr-track-label"><a href="#attr-track-label" id="label_3">label</a></code> - attributes are again both missing or both have the same value.<p>The <dfn aria-haspopup="true" id="attr-track-default" role="button" tabindex="0"><code>default</code></dfn> + attributes are again both missing or both have the same value.</p> + + + + <p>The <dfn aria-haspopup="true" id="attr-track-default" role="button" tabindex="0"><code>default</code></dfn> attribute, if specified, indicates that the track is to be enabled if the user's preferences do not indicate that another track would be more appropriate. There must not be more than one - <code><a href="#the-track-element" id="track_15">track</a></code> element with the same parent node with the <code title="attr-track-default"><a href="#attr-track-default" id="default_0">default</a></code> attribute specified.<dl class="domintro"><dt><var title="">track</var> . <code id="dom-track-readystate" title="dom-track-readyState"><a href="#dom-track-readystate">readyState</a></code></dt> + <code><a href="#the-track-element" id="track_15">track</a></code> element with the same parent node with the <code title="attr-track-default"><a href="#attr-track-default" id="default_0">default</a></code> attribute specified.</p> + + <dl class="domintro"><dt><var title="">track</var> . <code id="dom-track-readystate" title="dom-track-readyState"><a href="#dom-track-readystate">readyState</a></code></dt> <dd> <p>Returns the <a href="media-elements.html#text-track-readiness-state" id="text-track-readiness-state_0">text track readiness state</a>, represented by a number from the following list:</p> @@ -479,7 +545,9 @@ same name. The <dfn aria-haspopup="true" id="dom-track-kind" role="button" tabindex="0"><code>kind</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_36">reflect</a> the content attribute of the same name, <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-dom-interfaces.html#limited-to-only-known-values" title='Read about this "limited to only known values" reference in the full HTML5 spec.'>limited to only known values</a>.</p> -<div class="example"> + + + <div class="example"> <p>This video has subtitles in several languages:</p> @@ -490,4 +558,7 @@ <track kind=subtitles src=brave.de.vtt srclang=de lang=de label="Deutsch"> </video></pre> - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: usage-summary.html =================================================================== RCS file: /sources/public/html5/spec-author-view/usage-summary.html,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- usage-summary.html 15 Feb 2012 10:14:27 -0000 1.19 +++ usage-summary.html 13 Mar 2012 19:59:03 -0000 1.20 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,19 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-wbr-element.html">← 4.6.27 The wbr element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="edits.html">4.7 Edits →</a> </div> - <h4 id="usage-summary"><span class="secno">4.6.28 </span>Usage summary</h4><table><thead><tr><th>Element + <h4 id="usage-summary"><span class="secno">4.6.28 </span>Usage summary</h4> + + + + <table><thead><tr><th>Element <th>Purpose <th>Example <tbody><tr><td><code><a href="the-a-element.html#the-a-element" id="a_22">a</a></code> Index: sections.html =================================================================== RCS file: /sources/public/html5/spec-author-view/sections.html,v retrieving revision 1.581 retrieving revision 1.582 diff -u -d -r1.581 -r1.582 --- sections.html 15 Feb 2012 10:14:13 -0000 1.581 +++ sections.html 13 Mar 2012 19:58:44 -0000 1.582 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,7 +380,9 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-noscript-element.html">← 4.3.2 The noscript element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-body-element.html">4.4.1 The body element →</a> @@ -362,4 +400,6 @@ <a href="the-footer-element.html#the-footer-element" id="footer_3">footer</a>, and <a href="the-address-element.html#the-address-element" id="address_2">address</a> - elements. \ No newline at end of file + elements.</p> + + \ No newline at end of file Index: the-h1-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-h1-element.html,v retrieving revision 1.117 retrieving revision 1.118 diff -u -d -r1.117 -r1.118 --- the-h1-element.html 5 Mar 2012 05:58:58 -0000 1.117 +++ the-h1-element.html 13 Mar 2012 19:58:57 -0000 1.118 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-aside-element.html">← 4.4.5 The aside element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-hgroup-element.html">4.4.7 The hgroup element →</a> </div> - <h4 id="the-h1-h2-h3-h4-h5-and-h6-elements"><span class="secno">4.4.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>h1</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h2</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h3</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h4</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h5</code></dfn>, and <dfn aria-haspopup="true" role="button" tabindex="0"><code>h6</code></dfn> elements</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_14" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-h1-h2-h3-h4-h5-and-h6-elements"><span class="secno">4.4.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>h1</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h2</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h3</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h4</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h5</code></dfn>, and <dfn aria-haspopup="true" role="button" tabindex="0"><code>h6</code></dfn> elements</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_14" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_29">Flow content</a>.</dd> <dd><a href="content-models.html#heading-content" id="heading-content_2">Heading content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_4">Palpable content</a>.</dd> @@ -366,11 +406,17 @@ <pre class="idl">interface <dfn aria-haspopup="true" id="htmlheadingelement" role="button" tabindex="0">HTMLHeadingElement</dfn> : <a href="elements.html#htmlelement" id="htmlelement_19">HTMLElement</a> {};</pre> </dd> </dl><p>These elements <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represent" reference in the full HTML5 spec.'>represent</a> headings - for their sections.<p>The semantics and meaning of these elements are defined in the - section on <a href="headings-and-sections.html#headings-and-sections" id="headings-and-sections_1">headings and sections</a>.<p>These elements have a <dfn aria-haspopup="true" id="rank" role="button" tabindex="0">rank</dfn> given by the number in + for their sections.</p> + + <p>The semantics and meaning of these elements are defined in the + section on <a href="headings-and-sections.html#headings-and-sections" id="headings-and-sections_1">headings and sections</a>.</p> + + <p>These elements have a <dfn aria-haspopup="true" id="rank" role="button" tabindex="0">rank</dfn> given by the number in their name. The <code><a href="#the-h1-h2-h3-h4-h5-and-h6-elements" id="h1_7">h1</a></code> element is said to have the highest rank, the <code><a href="#the-h1-h2-h3-h4-h5-and-h6-elements" id="h6_3">h6</a></code> element has the lowest rank, and two - elements with the same name have equal rank.<div class="example"> + elements with the same name have equal rank.</p> + + <div class="example"> <p>As far as their respective document outlines (their heading and section structures) are concerned, these two snippets are @@ -408,4 +454,9 @@ latter style for its convenience in the face of heavy editing; which is best is purely an issue of preferred authoring style.</p> - </div> \ No newline at end of file + </div> + + + + + \ No newline at end of file Index: content-models.html =================================================================== RCS file: /sources/public/html5/spec-author-view/content-models.html,v retrieving revision 1.607 retrieving revision 1.608 diff -u -d -r1.607 -r1.608 --- content-models.html 15 Feb 2012 10:14:02 -0000 1.607 +++ content-models.html 13 Mar 2012 19:58:36 -0000 1.608 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,7 +380,9 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="element-definitions.html">← 3.2.4 Element definitions</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="requirements-relating-to-bidirectional-algorithm-formatting-characters.html">3.2.6 Requirements relating to bidirectional-algorithm formatting characters →</a> @@ -352,37 +390,53 @@ <ol><li><a href="content-models.html#kinds-of-content"><span class="secno">3.2.5.1 </span>Kinds of content</a> <ol><li><a href="content-models.html#metadata-content-0"><span class="secno">3.2.5.1.1 </span>Metadata content</a><li><a href="content-models.html#flow-content-0"><span class="secno">3.2.5.1.2 </span>Flow content</a><li><a href="content-models.html#sectioning-content-0"><span class="secno">3.2.5.1.3 </span>Sectioning content</a><li><a href="content-models.html#heading-content-0"><span class="secno">3.2.5.1.4 </span>Heading content</a><li><a href="content-models.html#phrasing-content-0"><span class="secno">3.2.5.1.5 </span>Phrasing content</a><li><a href="content-models.html#embedded-content-0"><span class="secno">3.2.5.1.6 </span>Embedded content</a><li><a href="content-models.html#interactive-content-0"><span class="secno">3.2.5.1.7 </span>Interactive content</a><li><a href="content-models.html#palpable-content-0"><span class="secno">3.2.5.1.8 </span>Palpable content</a></ol><li><a href="content-models.html#transparent-content-models"><span class="secno">3.2.5.2 </span>Transparent content models</><li><a href="content-models.html#paragraphs"><span class="secno">3.2.5.3 </span>Paragraphs</a></ol></ol></ol></ol></div> - <h4 id="content-models"><span class="secno">3.2.5 </span><dfn aria-haspopup="true" role="button" tabindex="0">Content models</dfn></h4><p>Each element defined in this specification has a content model: a + <h4 id="content-models"><span class="secno">3.2.5 </span><dfn aria-haspopup="true" role="button" tabindex="0">Content models</dfn></h4> + + <p>Each element defined in this specification has a content model: a description of the element's expected contents. An <a href="infrastructure.html#html-elements" id="html-elements_18" title="HTML elements">HTML element</a> must have contents that match the - requirements described in the element's content model.<p>The <a href="common-microsyntaxes.html#space-character" id="space-character_12" title="space character">space characters</a> are + requirements described in the element's content model.</p> + + <p>The <a href="common-microsyntaxes.html#space-character" id="space-character_12" title="space character">space characters</a> are always allowed between elements. User agents represent these characters between elements in the source markup as <code><a href="obsolete.html#text">Text</a></code> nodes in the DOM. Empty <code><a href="obsolete.html#text">Text</a></code> nodes and <code><a href="obsolete.html#text">Text</a></code> nodes consisting of just sequences of those - characters are considered <dfn aria-haspopup="true" id="inter-element-whitespace" role="button" tabindex="0">inter-element whitespace</dfn>.<p><a href="#inter-element-whitespace" id="inter-element-whitespace_0">Inter-element whitespace</a>, comment nodes, and + characters are considered <dfn aria-haspopup="true" id="inter-element-whitespace" role="button" tabindex="0">inter-element whitespace</dfn>.</p> + + <p><a href="#inter-element-whitespace" id="inter-element-whitespace_0">Inter-element whitespace</a>, comment nodes, and processing instruction nodes must be ignored when establishing whether an element's contents match the element's content model or not, and must be ignored when following algorithms that define - document and element semantics.<p class="note">Thus, an element <var title="">A</var> is said to be + document and element semantics.</p> + + <p class="note">Thus, an element <var title="">A</var> is said to be <i>preceded or followed</i> by a second element <var title="">B</var> if <var title="">A</var> and <var title="">B</var> have the same parent node and there are no other element nodes or <code><a href="obsolete.html#text">Text</a></code> nodes (other than <a href="#inter-element-whitespace" id="inter-element-whitespace_1">inter-element whitespace</a>) between them. Similarly, a node is the <i>only child</i> of an element if that element contains no other nodes other than <a href="#inter-element-whitespace" id="inter-element-whitespace_2">inter-element whitespace</a>, comment nodes, and - processing instruction nodes.<p>Authors must not use <a href="infrastructure.html#html-elements" id="html-elements_19">HTML elements</a> anywhere except + processing instruction nodes.</p> + + <p>Authors must not use <a href="infrastructure.html#html-elements" id="html-elements_19">HTML elements</a> anywhere except where they are explicitly allowed, as defined for each element, or as explicitly required by other specifications. For XML compound documents, these contexts could be inside elements from other namespaces, if those elements are defined as providing the relevant - contexts.<div class="example"> + contexts.</p> + + <div class="example"> <p>For example, the Atom specification defines a <code title="">content</code> element. When its <code title="">type</code> attribute has the value <code title="">xhtml</code>, the Atom specification requires that it contain a single HTML <code><a href="the-div-element.html#the-div-element" id="div_3">div</a></code> element. Thus, a <code><a href="the-div-element.html#the-div-element" id="div_4">div</a></code> element is allowed in that context, even though this is not explicitly normatively stated by this specification. <a href="references.html#refsATOM">[ATOM]</a></p> - </div><p>In addition, <a href="infrastructure.html#html-elements" id="html-elements_20">HTML elements</a> may be orphan nodes - (i.e. without a parent node).<div class="example"> + </div> + + <p>In addition, <a href="infrastructure.html#html-elements" id="html-elements_20">HTML elements</a> may be orphan nodes + (i.e. without a parent node).</p> + + <div class="example"> <p>For example, creating a <code><a href="the-td-element.html#the-td-element" id="td_2">td</a></code> element and storing it in a global variable in a script is conforming, even though @@ -394,9 +448,16 @@ cell: document.createElement('td'), };</pre> - </div><h5 id="kinds-of-content"><span class="secno">3.2.5.1 </span>Kinds of content</h5><p>Each element in HTML falls into zero or more <dfn aria-haspopup="true" id="content-categories" role="button" tabindex="0">categories</dfn> that group elements with similar + </div> + + + <h5 id="kinds-of-content"><span class="secno">3.2.5.1 </span>Kinds of content</h5> + + <p>Each element in HTML falls into zero or more <dfn aria-haspopup="true" id="content-categories" role="button" tabindex="0">categories</dfn> that group elements with similar characteristics together. The following broad categories are used in - this specification:<ul class="brief"><li><a href="#metadata-content" id="metadata-content_0">Metadata content</a></li> + this specification:</p> + + <ul class="brief"><li><a href="#metadata-content" id="metadata-content_0">Metadata content</a></li> <li><a href="#flow-content" id="flow-content_4">Flow content</a></li> <li><a href="#sectioning-content" id="sectioning-content_0">Sectioning content</a></li> <li><a href="#heading-content" id="heading-content_0">Heading content</a></li> @@ -404,17 +465,33 @@ <li><a href="#embedded-content" id="embedded-content_0">Embedded content</a></li> <li><a href="#interactive-content" id="interactive-content_1">Interactive content</a></li> </ul><p class="note">Some elements also fall into other categories, which - are defined in other parts of this specification.<p>These categories are related as follows:<p><object data="images/content-venn.svg" height="288" width="1000"><img alt="" src="http://dev.w3.org/html5/spec/images/content-venn.png"></object><p>Sectioning content, heading content, phrasing content, embedded + are defined in other parts of this specification.</p> + + <p>These categories are related as follows:</p> + + <p><object data="images/content-venn.svg" height="288" width="1000"><img alt="" src="http://dev.w3.org/html5/spec/images/content-venn.png"></object></p> + + <p>Sectioning content, heading content, phrasing content, embedded content, and interactive content are all types of flow content. Metadata is sometimes flow content. Metadata and interactive content are sometimes phrasing content. Embedded content is also a type of - phrasing content, and sometimes is interactive content.<p>Other categories are also used for specific purposes, e.g. form + phrasing content, and sometimes is interactive content.</p> + + <p>Other categories are also used for specific purposes, e.g. form controls are specified using a number of categories to define common requirements. Some elements have unique requirements and do not fit - into any particular category.<h6 id="metadata-content-0"><span class="secno">3.2.5.1.1 </span>Metadata content</h6><p><dfn aria-haspopup="true" id="metadata-content" role="button" tabindex="0">Metadata content</dfn> is content that sets up the + into any particular category.</p> + + + <h6 id="metadata-content-0"><span class="secno">3.2.5.1.1 </span>Metadata content</h6> + + <p><dfn aria-haspopup="true" id="metadata-content" role="button" tabindex="0">Metadata content</dfn> is content that sets up the presentation or behavior of the rest of the content, or that sets up the relationship of the document with other documents, or that - conveys other "out of band" information.<ul class="brief category-list"><li><code><a href="the-base-element.html#the-base-element" id="base_0">base</a></code></li> + conveys other "out of band" information.</p> + + + <ul class="brief category-list"><li><code><a href="the-base-element.html#the-base-element" id="base_0">base</a></code></li> <li><code><a href="the-command-element.html#the-command-element" id="command_0">command</a></code></li> <li><code><a href="the-link-element.html#the-link-element" id="link_2">link</a></code></li> <li><code><a href="the-meta-element.html#the-meta-element" id="meta_2">meta</a></code></li> @@ -424,7 +501,9 @@ <li><code><a href="the-title-element.html#the-title-element" id="title_42">title</a></code></li> </ul><p>Elements from other namespaces whose semantics are primarily metadata-related (e.g. RDF) are also <a href="#metadata-content" id="metadata-content_1">metadata - content</a>.<div class="example"> + content</a>.</p> + + <div class="example"> <p>Thus, in the XML serialization, one can use RDF, like this:</p> @@ -450,8 +529,16 @@ <p>This isn't possible in the HTML serialization, however.</p> - </div><h6 id="flow-content-0"><span class="secno">3.2.5.1.2 </span>Flow content</h6><p>Most elements that are used in the body of documents and - applications are categorized as <dfn aria-haspopup="true" id="flow-content" role="button" tabindex="0">flow content</dfn>.<ul class="brief category-list"><li><code><a href="the-a-element.html#the-a-element" id="a_4">a</a></code></li> + </div> + + + <h6 id="flow-content-0"><span class="secno">3.2.5.1.2 </span>Flow content</h6> + + <p>Most elements that are used in the body of documents and + applications are categorized as <dfn aria-haspopup="true" id="flow-content" role="button" tabindex="0">flow content</dfn>.</p> + + + <ul class="brief category-list"><li><code><a href="the-a-element.html#the-a-element" id="a_4">a</a></code></li> <li><code><a href="the-abbr-element.html#the-abbr-element" id="abbr_0">abbr</a></code></li> <li><code><a href="the-address-element.html#the-address-element" id="address">address</a></code></li> <li><code><a href="the-area-element.html#the-area-element" id="area_3">area</a></code> (if it is a descendant of a <code><a href="the-map-element.html#the-map-element" id="map">map</a></code> element)</li> @@ -533,27 +620,47 @@ <li><code><a href="the-video-element.html#the-video-element" id="video_9">video</a></code></li> <li><code><a href="the-wbr-element.html#the-wbr-element" id="wbr">wbr</a></code></li> <li><a href="#text-content" id="text-content_0" title="text content">Text</a></li> - </ul><h6 id="sectioning-content-0"><span class="secno">3.2.5.1.3 </span>Sectioning content</h6><p><dfn aria-haspopup="true" id="sectioning-content" role="button" tabindex="0">Sectioning content</dfn> is content that defines the scope - of <a href="#heading-content" id="heading-content_1" title="heading content">headings</a> and <a href="the-footer-element.html#the-footer-element" id="footer_0" title="footer">footers</a>.<ul class="brief category-list"><li><code><a href="the-article-element.html#the-article-element" id="article_0">article</a></code></li> + </ul><h6 id="sectioning-content-0"><span class="secno">3.2.5.1.3 </span>Sectioning content</h6> + + <p><dfn aria-haspopup="true" id="sectioning-content" role="button" tabindex="0">Sectioning content</dfn> is content that defines the scope + of <a href="#heading-content" id="heading-content_1" title="heading content">headings</a> and <a href="the-footer-element.html#the-footer-element" id="footer_0" title="footer">footers</a>.</p> + + + <ul class="brief category-list"><li><code><a href="the-article-element.html#the-article-element" id="article_0">article</a></code></li> <li><code><a href="the-aside-element.html#the-aside-element" id="aside_0">aside</a></code></li> <li><code><a href="the-nav-element.html#the-nav-element" id="nav_0">nav</a></code></li> <li><code><a href="the-section-element.html#the-section-element" id="section_1">section</a></code></li> </ul><p>Each <a href="#sectioning-content" id="sectioning-content_1">sectioning content</a> element potentially has a heading and an <a href="headings-and-sections.html#outline" id="outline_0">outline</a>. See the section on - <a href="headings-and-sections.html#headings-and-sections" id="headings-and-sections_0">headings and sections</a> for further details.<p class="note">There are also certain elements that are <a href="headings-and-sections.html#sectioning-root" id="sectioning-root_0" title="sectioning root">sectioning roots</a>. These are distinct + <a href="headings-and-sections.html#headings-and-sections" id="headings-and-sections_0">headings and sections</a> for further details.</p> + + <p class="note">There are also certain elements that are <a href="headings-and-sections.html#sectioning-root" id="sectioning-root_0" title="sectioning root">sectioning roots</a>. These are distinct from <a href="#sectioning-content" id="sectioning-content_2">sectioning content</a>, but they can also have an - <a href="headings-and-sections.html#outline" id="outline_1">outline</a>.<h6 id="heading-content-0"><span class="secno">3.2.5.1.4 </span>Heading content</h6><p><dfn aria-haspopup="true" id="heading-content" role="button" tabindex="0">Heading content</dfn> defines the header of a section + <a href="headings-and-sections.html#outline" id="outline_1">outline</a>.</p> + + + <h6 id="heading-content-0"><span class="secno">3.2.5.1.4 </span>Heading content</h6> + + <p><dfn aria-haspopup="true" id="heading-content" role="button" tabindex="0">Heading content</dfn> defines the header of a section (whether explicitly marked up using <a href="#sectioning-content" id="sectioning-content_3">sectioning content</a> - elements, or implied by the heading content itself).<ul class="brief category-list"><li><code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h1_3">h1</a></code></li> + elements, or implied by the heading content itself).</p> + + + <ul class="brief category-list"><li><code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h1_3">h1</a></code></li> <li><code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h2_1">h2</a></code></li> <li><code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h3_0">h3</a></code></li> <li><code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h4_0">h4</a></code></li> <li><code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h5_0">h5</a></code></li> <li><code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h6_0">h6</a></code></li> <li><code><a href="the-hgroup-element.html#the-hgroup-element" id="hgroup_1">hgroup</a></code></li> - </ul><h6 id="phrasing-content-0"><span class="secno">3.2.5.1.5 </span>Phrasing content</h6><p><dfn aria-haspopup="true" id="phrasing-content" role="button" tabindex="0">Phrasing content</dfn> is the text of the document, as well + </ul><h6 id="phrasing-content-0"><span class="secno">3.2.5.1.5 </span>Phrasing content</h6> + + <p><dfn aria-haspopup="true" id="phrasing-content" role="button" tabindex="0">Phrasing content</dfn> is the text of the document, as well as elements that mark up that text at the intra-paragraph - level. Runs of <a href="#phrasing-content" id="phrasing-content_7">phrasing content</a> form <a href="#paragraph" id="paragraph_1" title="paragraph">paragraphs</a>.<ul class="brief category-list"><li><code><a href="the-a-element.html#the-a-element" id="a_5">a</a></code> (if it contains only <a href="#phrasing-content" id="phrasing-content_8">phrasing content</a>)</li> + level. Runs of <a href="#phrasing-content" id="phrasing-content_7">phrasing content</a> form <a href="#paragraph" id="paragraph_1" title="paragraph">paragraphs</a>.</p> + + + <ul class="brief category-list"><li><code><a href="the-a-element.html#the-a-element" id="a_5">a</a></code> (if it contains only <a href="#phrasing-content" id="phrasing-content_8">phrasing content</a>)</li> <li><code><a href="the-abbr-element.html#the-abbr-element" id="abbr_1">abbr</a></code></li> <li><code><a href="the-area-element.html#the-area-element" id="area_4">area</a></code> (if it is a descendant of a <code><a href="the-map-element.html#the-map-element" id="map_1">map</a></code> element)</li> <li><code><a href="the-audio-element.html#the-audio-element" id="audio_0">audio</a></code></li> @@ -613,15 +720,21 @@ <a href="#embedded-content" id="embedded-content_1">embedded content</a>. For the purposes of this requirement, nodes that are descendants of <code><a href="the-del-element.html#the-del-element" id="del_3">del</a></code> elements must not be counted as contributing to the ancestors of the <code><a href="the-del-element.html#the-del-element" id="del_4">del</a></code> - element.<p class="note">Most elements that are categorized as phrasing + element.</p> + + <p class="note">Most elements that are categorized as phrasing content can only contain elements that are themselves categorized as - phrasing content, not any flow content.<p><dfn aria-haspopup="true" id="text-content" role="button" tabindex="0">Text</dfn>, in the context of content + phrasing content, not any flow content.</p> + + <p><dfn aria-haspopup="true" id="text-content" role="button" tabindex="0">Text</dfn>, in the context of content models, means <code><a href="obsolete.html#text">Text</a></code> nodes. <a href="#text-content" id="text-content_2" title="text content">Text</a> is sometimes used as a content model on its own, but is also <a href="#phrasing-content" id="phrasing-content_13">phrasing content</a>, and can be <a href="#inter-element-whitespace" id="inter-element-whitespace_4">inter-element whitespace</a> (if the <code><a href="obsolete.html#text">Text</a></code> nodes are empty or contain just <a href="common-microsyntaxes.html#space-character" id="space-character_13" title="space character">space - characters</a>).<p><code><a href="obsolete.html#text">Text</a></code> nodes and attribute values must consist of + characters</a>).</p> + + <p><code><a href="obsolete.html#text">Text</a></code> nodes and attribute values must consist of <a href="infrastructure.html#unicode-character" id="unicode-character_1" title="Unicode character">Unicode characters</a>, must not contain U+0000 characters, must not contain permanently undefined Unicode characters (noncharacters), and must not contain control @@ -636,9 +749,18 @@ - <h6 id="embedded-content-0"><span class="secno">3.2.5.1.6 </span>Embedded content</h6><p><dfn aria-haspopup="true" id="embedded-content" role="button" tabindex="0">Embedded content</dfn> is content that imports another + </p> + + + + <h6 id="embedded-content-0"><span class="secno">3.2.5.1.6 </span>Embedded content</h6> + + <p><dfn aria-haspopup="true" id="embedded-content" role="button" tabindex="0">Embedded content</dfn> is content that imports another resource into the document, or content from another vocabulary that - is inserted into the document.<ul class="brief category-list"><li><code><a href="the-audio-element.html#the-audio-element" id="audio_1">audio</a></code></li> + is inserted into the document.</p> + + + <ul class="brief category-list"><li><code><a href="the-audio-element.html#the-audio-element" id="audio_1">audio</a></code></li> <li><code><a href="the-canvas-element.html#the-canvas-element" id="canvas_1">canvas</a></code></li> <li><code><a href="the-embed-element.html#the-embed-element" id="embed_4">embed</a></code></li> <li><code><a href="the-iframe-element.html#the-iframe-element" id="iframe_6">iframe</a></code></li> @@ -650,11 +772,24 @@ </ul><p>Elements that are from namespaces other than the <a href="namespaces.html#html-namespace-0" id="html-namespace_5">HTML namespace</a> and that convey content but not metadata, are <a href="#embedded-content" id="embedded-content_2">embedded content</a> for the purposes of the content models - defined in this specification. (For example, MathML, or SVG.)<p>Some embedded content elements can have <dfn aria-haspopup="true" id="fallback-content" role="button" tabindex="0">fallback + defined in this specification. (For example, MathML, or SVG.)</p> + + <p>Some embedded content elements can have <dfn aria-haspopup="true" id="fallback-content" role="button" tabindex="0">fallback content</dfn>: content that is to be used when the external resource cannot be used (e.g. because it is of an unsupported format). The - element definitions state what the fallback is, if any.<h6 id="interactive-content-0"><span class="secno">3.2.5.1.7 </span>Interactive content</h6><p><dfn aria-haspopup="true" id="interactive-content" role="button" tabindex="0">Interactive content</dfn> is content that is specifically - intended for user interaction.<ul class="brief category-list"><li><code><a href="the-a-element.html#the-a-element" id="a_6">a</a></code></li> + element definitions state what the fallback is, if any.</p> + + + + <h6 id="interactive-content-0"><span class="secno">3.2.5.1.7 </span>Interactive content</h6> + + + + <p><dfn aria-haspopup="true" id="interactive-content" role="button" tabindex="0">Interactive content</dfn> is content that is specifically + intended for user interaction.</p> + + + <ul class="brief category-list"><li><code><a href="the-a-element.html#the-a-element" id="a_6">a</a></code></li> <li><code><a href="the-audio-element.html#the-audio-element" id="audio_2">audio</a></code> (if the <code title="attr-media-controls"><a href="media-elements.html#attr-media-controls" id="controls">controls</a></code> attribute is present)</li> <li><code><a href="the-button-element.html#the-button-element" id="button_5">button</a></code></li> <li><code><a href="the-details-element.html#the-details-element" id="details_0">details</a></code></li> @@ -673,17 +808,34 @@ behavior</a>, which means that the user can activate them. This triggers a sequence of events dependent on the activation mechanism, and normally culminating in a <code title="event-click"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#event-click" title='Read about this "click" reference in the full HTML5 spec.'>click</a></code> - event.<h6 id="palpable-content-0"><span class="secno">3.2.5.1.8 </span>Palpable content</h6><p>As a general rule, elements whose content model allows any + event.</p> + + + + + + <h6 id="palpable-content-0"><span class="secno">3.2.5.1.8 </span>Palpable content</h6> + + <p>As a general rule, elements whose content model allows any <a href="#flow-content" id="flow-content_5">flow content</a> or <a href="#phrasing-content" id="phrasing-content_14">phrasing content</a> should have at least one child node that is <dfn aria-haspopup="true" id="palpable-content" role="button" tabindex="0">palpable content</dfn> and that does not have the <code title="attr-hidden"><a href="editing.html#the-hidden-attribute" id="hidden_1">hidden</a></code> - attribute specified.<p>This requirement is not a hard requirement, however, as there are + attribute specified.</p> + + <p>This requirement is not a hard requirement, however, as there are many cases where an element can be empty legitimately, for example when it is used as a placeholder which will later be filled in by a script, or when the element is part of a template and would on most - pages be filled in but on some pages is not relevant.<p>Conformance checkers are encouraged to provide a mechanism for + pages be filled in but on some pages is not relevant.</p> + + <p>Conformance checkers are encouraged to provide a mechanism for authors to find elements that fail to fulfill this requirement, as - an authoring aid.<p>The following elements are palpable content:<ul class="brief category-list"><li><code><a href="the-a-element.html#the-a-element" id="a_7">a</a></code></li> + an authoring aid.</p> + + <p>The following elements are palpable content:</p> + + + <ul class="brief category-list"><li><code><a href="the-a-element.html#the-a-element" id="a_7">a</a></code></li> <li><code><a href="the-abbr-element.html#the-abbr-element" id="abbr_2">abbr</a></code></li> <li><code><a href="the-address-element.html#the-address-element" id="address_0">address</a></code></li> <li><code><a href="the-article-element.html#the-article-element" id="article_1">article</a></code></li> @@ -755,14 +907,18 @@ <li><code><a href="the-var-element.html#the-var-element" id="var_1">var</a></code></li> <li><code><a href="the-video-element.html#the-video-element" id="video_13">video</a></code></li> <li><a href="#text-content" id="text-content_3" title="text content">Text</a> that is not <a href="#inter-element-whitespace" id="inter-element-whitespace_5">inter-element whitespace</a></li> - </ul><h5 id="transparent-content-models"><span class="secno">3.2.5.2 </span>Transparent content models</h5><p>Some elements are described as <dfn aria-haspopup="true" id="transparent" role="button" tabindex="0">transparent</dfn>; they have + </ul><h5 id="transparent-content-models"><span class="secno">3.2.5.2 </span>Transparent content models</h5> + + <p>Some elements are described as <dfn aria-haspopup="true" id="transparent" role="button" tabindex="0">transparent</dfn>; they have "transparent" in the description of their content model. The content model of a <a href="#transparent" id="transparent_0">transparent</a> element is derived from the content model of its parent element: the elements required in the part of the content model that is "transparent" are the same elements as required in the part of the content model of the parent of the transparent element in which the transparent element finds - itself.<div class="example"> + itself.</p> + + <div class="example"> <p>For instance, an <code><a href="the-ins-element.html#the-ins-element" id="ins_4">ins</a></code> element inside a <code><a href="the-ruby-element.html#the-ruby-element" id="ruby_2">ruby</a></code> element cannot contain an <code><a href="the-rt-element.html#the-rt-element" id="rt">rt</a></code> @@ -771,8 +927,14 @@ that allows <a href="#phrasing-content" id="phrasing-content_15">phrasing content</a>, and the <code><a href="the-rt-element.html#the-rt-element" id="rt_0">rt</a></code> element is not <a href="#phrasing-content" id="phrasing-content_16">phrasing content</a>.</p> - </div><p class="note">In some cases, where transparent elements are nested - in each other, the process has to be applied iteratively.<div class="example"> + </div> + + + + <p class="note">In some cases, where transparent elements are nested + in each other, the process has to be applied iteratively.</p> + + <div class="example"> <p>Consider the following markup fragment:</p> @@ -788,19 +950,31 @@ content</a>. Thus, "Apples" is allowed, as text is phrasing content.</p> - </div><p>When a transparent element has no parent, then the part of its + </div> + + <p>When a transparent element has no parent, then the part of its content model that is "transparent" must instead be treated as - accepting any <a href="#flow-content" id="flow-content_6">flow content</a>.<h5 id="paragraphs"><span class="secno">3.2.5.3 </span>Paragraphs</h5><p class="note">The term <a href="#paragraph" id="paragraph_2">paragraph</a> as defined in this + accepting any <a href="#flow-content" id="flow-content_6">flow content</a>.</p> + + + <h5 id="paragraphs"><span class="secno">3.2.5.3 </span>Paragraphs</h5> + + <p class="note">The term <a href="#paragraph" id="paragraph_2">paragraph</a> as defined in this section is used for more than just the definition of the <code><a href="the-p-element.html#the-p-element" id="p_10">p</a></code> element. The <a href="#paragraph" id="paragraph_3">paragraph</a> concept defined here is used to describe how to interpret documents. The <code><a href="the-p-element.html#the-p-element" id="p_11">p</a></code> element is merely one of several ways of marking up a - <a href="#paragraph" id="paragraph_4">paragraph</a>.<p>A <dfn aria-haspopup="true" id="paragraph" role="button" tabindex="0">paragraph</dfn> is typically a run of <a href="#phrasing-content" id="phrasing-content_18">phrasing + <a href="#paragraph" id="paragraph_4">paragraph</a>.</p> + + + <p>A <dfn aria-haspopup="true" id="paragraph" role="button" tabindex="0">paragraph</dfn> is typically a run of <a href="#phrasing-content" id="phrasing-content_18">phrasing content</a> that forms a block of text with one or more sentences that discuss a particular topic, as in typography, but can also be used for more general thematic grouping. For instance, an address is also a paragraph, as is a part of a form, a byline, or a stanza - in a poem.<div class="example"> + in a poem.</p> + + <div class="example"> <p>In the following example, there are two paragraphs in a section. There is also a heading, which contains phrasing content @@ -814,14 +988,20 @@ <!-- This is not a paragraph. --> </section></pre> - </div><p>Paragraphs in <a href="#flow-content" id="flow-content_7">flow content</a> are defined relative to + </div> + + <p>Paragraphs in <a href="#flow-content" id="flow-content_7">flow content</a> are defined relative to what the document looks like without the <code><a href="the-a-element.html#the-a-element" id="a_10">a</a></code>, <code><a href="the-ins-element.html#the-ins-element" id="ins_8">ins</a></code>, <code><a href="the-del-element.html#the-del-element" id="del_5">del</a></code>, and <code><a href="the-map-element.html#the-map-element" id="map_5">map</a></code> elements complicating matters, since those elements, with their hybrid content models, can straddle paragraph boundaries, as shown in the - first two examples below.<p class="note">Generally, having elements straddle paragraph + first two examples below.</p> + + <p class="note">Generally, having elements straddle paragraph boundaries is best avoided. Maintaining such markup can be - difficult.<div class="example"> + difficult.</p> + + <div class="example"> <p>The following example takes the markup from the earlier example and puts <code><a href="the-ins-element.html#the-ins-element" id="ins_9">ins</a></code> and <code><a href="the-del-element.html#the-del-element" id="del_6">del</a></code> elements around some @@ -840,11 +1020,19 @@ <!-- This is not a paragraph. --> </section></pre> - </div><p>A <a href="#paragraph" id="paragraph_5">paragraph</a> is also formed explicitly by - <code><a href="the-p-element.html#the-p-element" id="p_12">p</a></code> elements.<p class="note">The <code><a href="the-p-element.html#the-p-element" id="p_13">p</a></code> element can be used to wrap + </div> + + + + <p>A <a href="#paragraph" id="paragraph_5">paragraph</a> is also formed explicitly by + <code><a href="the-p-element.html#the-p-element" id="p_12">p</a></code> elements.</p> + + <p class="note">The <code><a href="the-p-element.html#the-p-element" id="p_13">p</a></code> element can be used to wrap individual paragraphs when there would otherwise not be any content other than phrasing content to separate the paragraphs from each - other.<div class="example"> + other.</p> + + <div class="example"> <p>In the following example, the link spans half of the first paragraph, all of the heading separating the two paragraphs, and @@ -873,7 +1061,9 @@ Falcon's innermost secrets.</p> </header></pre> - </div><div class="example"> + </div> + + <div class="example"> @@ -921,4 +1111,8 @@ <p>To avoid this confusion, explicit <code><a href="the-p-element.html#the-p-element" id="p_14">p</a></code> elements can be used.</p> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: the-progress-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-progress-element.html,v retrieving revision 1.134 retrieving revision 1.135 diff -u -d -r1.134 -r1.135 --- the-progress-element.html 21 Feb 2012 21:59:07 -0000 1.134 +++ the-progress-element.html 13 Mar 2012 19:59:00 -0000 1.135 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-output-element.html">← 4.10.15 The output element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-meter-element.html">4.10.17 The meter element →</a> </div> - <h4 id="the-progress-element"><span class="secno">4.10.16 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>progress</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_96" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-progress-element"><span class="secno">4.10.16 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>progress</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_96" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_136">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_153">Phrasing content</a>.</dd> <dd><a href="forms.html#category-label" id="category-label_8" title="category-label">Labelable element</a>.</dd> @@ -378,16 +418,24 @@ much more work remains to be done before the task is complete (e.g. because the task is waiting for a remote host to respond), or the progress is a number in the range zero to a maximum, giving the - fraction of work that has so far been completed.<p>There are two attributes that determine the current task + fraction of work that has so far been completed.</p> + + <p>There are two attributes that determine the current task completion represented by the element. The <dfn aria-haspopup="true" id="attr-progress-value" role="button" tabindex="0"><code>value</code></dfn> attribute specifies how much of the task has been completed, and the <dfn aria-haspopup="true" id="attr-progress-max" role="button" tabindex="0"><code>max</code></dfn> attribute specifies how much work the task requires in total. The units are arbitrary - and not specified.<p class="note">To make a determinate progress bar, add a <code title="attr-progress-value"><a href="#attr-progress-value" id="value_41">value</a></code> attribute with the current + and not specified.</p> + + <p class="note">To make a determinate progress bar, add a <code title="attr-progress-value"><a href="#attr-progress-value" id="value_41">value</a></code> attribute with the current progress (either a number from 0.0 to 1.0, or, if the <code title="attr-progress-max"><a href="#attr-progress-max" id="max_37">max</a></code> attribute is specified, a number from 0 to the value of the <code title="attr-progress-max"><a href="#attr-progress-max" id="max_38">max</a></code> attribute). To make an - indeterminate progress bar, remove the <code title="attr-progress-value"><a href="#attr-progress-value" id="value_42">value</a></code> attribute.<p>Authors are encouraged to also include the current value and the + indeterminate progress bar, remove the <code title="attr-progress-value"><a href="#attr-progress-value" id="value_42">value</a></code> attribute.</p> + + <p>Authors are encouraged to also include the current value and the maximum value inline as text inside the element, so that the - progress is made available to users of legacy user agents.<div class="example"> + progress is made available to users of legacy user agents.</p> + + <div class="example"> <p>Here is a snippet of a Web application that shows the progress of some automated task:</p> <pre><section> @@ -404,17 +452,26 @@ <p>(The <code>updateProgress()</code> method in this example would be called by some other code on the page to update the actual progress bar as the task progressed.)</p> - </div><p>The <code title="attr-progress-value"><a href="#attr-progress-value" id="value_43">value</a></code> and <code title="attr-progress-max"><a href="#attr-progress-max" id="max_39">max</a></code> attributes, when present, must + </div> + + <p>The <code title="attr-progress-value"><a href="#attr-progress-value" id="value_43">value</a></code> and <code title="attr-progress-max"><a href="#attr-progress-max" id="max_39">max</a></code> attributes, when present, must have values that are <a href="common-microsyntaxes.html#valid-floating-point-number" id="valid-floating-point-number_9" title="valid floating point number">valid floating point numbers</a>. The <code title="attr-progress-value"><a href="#attr-progress-value" id="value_44">value</a></code> attribute, if present, must have a value equal to or greater than zero, and less than or equal to the value of the <code title="attr-progress-max"><a href="#attr-progress-max" id="max_40">max</a></code> attribute, if present, or 1.0, otherwise. The <code title="attr-progress-max"><a href="#attr-progress-max" id="max_41">max</a></code> attribute, if present, must - have a value greater than zero.<p class="note">The <code><a href="#the-progress-element" id="progress_10">progress</a></code> element is the wrong + have a value greater than zero.</p> + + <p class="note">The <code><a href="#the-progress-element" id="progress_10">progress</a></code> element is the wrong element to use for something that is just a gauge, as opposed to task progress. For instance, indicating disk space usage using <code><a href="#the-progress-element" id="progress_11">progress</a></code> would be inappropriate. Instead, the - <code><a href="the-meter-element.html#the-meter-element" id="meter_7">meter</a></code> element is available for such use cases.<dl class="domintro"><dt><var title="">progress</var> . <code id="dom-progress-position" title="dom-progress-position"><a href="#dom-progress-position">position</a></code></dt> + <code><a href="the-meter-element.html#the-meter-element" id="meter_7">meter</a></code> element is available for such use cases.</p> + + + + + <dl class="domintro"><dt><var title="">progress</var> . <code id="dom-progress-position" title="dom-progress-position"><a href="#dom-progress-position">position</a></code></dt> <dd> @@ -440,3 +497,9 @@ same name, <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-dom-interfaces.html#limited-to-numbers-greater-than-zero" title='Read about this "limited to numbers greater than zero" reference in the full HTML5 spec.'>limited to numbers greater than zero</a>. The default value for <code title="dom-progress-max"><a href="#dom-progress-max" id="max_43">max</a></code> is 1.0.</p> + + + + + + \ No newline at end of file Index: the-thead-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-thead-element.html,v retrieving revision 1.115 retrieving revision 1.116 diff -u -d -r1.115 -r1.116 --- the-thead-element.html 15 Feb 2012 10:14:26 -0000 1.115 +++ the-thead-element.html 13 Mar 2012 19:59:02 -0000 1.116 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-tbody-element.html">← 4.9.5 The tbody element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-tfoot-element.html">4.9.7 The tfoot element →</a> </div> - <h4 id="the-thead-element"><span class="secno">4.9.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>thead</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_78" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-thead-element"><span class="secno">4.9.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>thead</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_78" title="element-dfn-categories">Categories</a>:</dt> <dd>None.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_78" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>As a child of a <code><a href="the-table-element.html#the-table-element" id="table_20">table</a></code> element, after any @@ -369,7 +409,11 @@ </dl><p>The <code><a href="#the-thead-element" id="thead_9">thead</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-td-and-th-elements.html#concept-row-group" title='Read about this "block" reference in the full HTML5 spec.'>block</a> of <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-td-and-th-elements.html#concept-row" title='Read about this "rows" reference in the full HTML5 spec.'>rows</a> that consist of the column labels (headers) for the parent <code><a href="the-table-element.html#the-table-element" id="table_22">table</a></code> element, if the <code><a href="#the-thead-element" id="thead_10">thead</a></code> element has a parent and it is a - <code><a href="the-table-element.html#the-table-element" id="table_23">table</a></code>.<div class="example"> + <code><a href="the-table-element.html#the-table-element" id="table_23">table</a></code>.</p> + + + + <div class="example"> <p>This example shows a <code><a href="#the-thead-element" id="thead_11">thead</a></code> element being used. Notice the use of both <code><a href="the-th-element.html#the-th-element" id="th_3">th</a></code> and <code><a href="the-td-element.html#the-td-element" id="td_6">td</a></code> elements @@ -406,4 +450,7 @@ <input type=button name=add value="Submit"> </form></pre> - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: infrastructure.html =================================================================== RCS file: /sources/public/html5/spec-author-view/infrastructure.html,v retrieving revision 1.1151 retrieving revision 1.1152 diff -u -d -r1.1151 -r1.1152 --- infrastructure.html 15 Feb 2012 10:14:11 -0000 1.1151 +++ infrastructure.html 13 Mar 2012 19:58:42 -0000 1.1152 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,7 +380,9 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="introduction.html">← 1 Introduction</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="common-microsyntaxes.html">2.4 Common microsyntaxes →</a> @@ -353,103 +391,168 @@ <ol><li><a href="infrastructure.html#resources"><span class="secno">2.1.1 </span>Resources</a><li><a href="infrastructure.html#xml"><span class="secno">2.1.2 </span>XML</a><li><a href="infrastructure.html#dom-trees"><span class="secno">2.1.3 </span>DOM trees</a><li><a href="infrastructure.html#scripting-0"><span class="secno">2.1.4 </span>Scripting</a><li><a href="infrastructure.html#plugins"><span class="secno">2.1.5 </span>Plugins</a><li><a href="infrastructure.html#character-encodings"><span class="secno">2.1.6 </span>Character encodings</a></ol><li><a href="infrastructure.html#conformance-requirements"><span class="secno">2.2 </span>Conformance requirements</a> <ol><li><a href="infrastructure.html#extensibility"><span class="secno">2.2.1 </span>Extensibility</a></ol><li><a href="infrastructure.html#case-sensitivity-and-string-comparison"><span class="secno">2.3 </span>Case-sensitivity and string comparison</a></ol></ol></div> - <h2 id="infrastructure"><span class="secno">2 </span>Common infrastructure</h2><h3 id="terminology"><span class="secno">2.1 </span>Terminology</h3><p>This specification refers to both HTML and XML attributes and IDL + <h2 id="infrastructure"><span class="secno">2 </span>Common infrastructure</h2> + + <h3 id="terminology"><span class="secno">2.1 </span>Terminology</h3> + + <p>This specification refers to both HTML and XML attributes and IDL attributes, often in the same context. When it is not clear which is being referred to, they are referred to as <dfn aria-haspopup="true" id="content-attributes" role="button" tabindex="0">content attributes</dfn> for HTML and XML attributes, and <dfn aria-haspopup="true" id="idl-attributes" role="button" tabindex="0">IDL attributes</dfn> for those defined on IDL interfaces. Similarly, the term "properties" is used for both JavaScript object properties and CSS properties. When these are ambiguous they are qualified as <dfn aria-haspopup="true" id="object-properties" role="button" tabindex="0">object properties</dfn> and <dfn aria-haspopup="true" id="css-properties" role="button" tabindex="0">CSS - properties</dfn> respectively.<p>Generally, when the specification states that a feature applies + properties</dfn> respectively.</p> + + <p>Generally, when the specification states that a feature applies to <a href="syntax.html#syntax" id="the-html-syntax_0">the HTML syntax</a> or <a href="the-xhtml-syntax.html#the-xhtml-syntax">the XHTML syntax</a>, it also includes the other. When a feature specifically only applies to one of the two languages, it is called out by explicitly stating that it does not apply to the other format, as in "for HTML, - ... (this does not apply to XHTML)".<p>This specification uses the term <dfn aria-haspopup="true" id="document_0" role="button" tabindex="0">document</dfn> to + ... (this does not apply to XHTML)".</p> + + <p>This specification uses the term <dfn aria-haspopup="true" id="document_0" role="button" tabindex="0">document</dfn> to refer to any use of HTML, ranging from short static documents to long essays or reports with rich multimedia, as well as to fully-fledged interactive applications. The term is used to refer both to <code><a href="dom.html#document" id="document_3">Document</a></code> objects and their descendant DOM trees, and to serialized byte streams using the <a href="syntax.html#syntax" id="the-html-syntax_1" title="the HTML syntax">HTML syntax</a> or <a href="the-xhtml-syntax.html#the-xhtml-syntax" title="the XHTML - syntax">XHTML syntax</a>, depending on context.<p>In the context of the DOM structures, the terms <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#html-documents" title='Read about this "HTML document" reference in the full HTML5 spec.'>HTML document</a> and <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#xml-documents" title='Read about this "XML document" reference in the full HTML5 spec.'>XML + syntax">XHTML syntax</a>, depending on context.</p> + + <p>In the context of the DOM structures, the terms <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#html-documents" title='Read about this "HTML document" reference in the full HTML5 spec.'>HTML document</a> and <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#xml-documents" title='Read about this "XML document" reference in the full HTML5 spec.'>XML document</a> are used as defined in the DOM Core specification, and refer specifically to two different modes that <code><a href="dom.html#document" id="document_4">Document</a></code> objects can find themselves in. <a href="references.html#refsDOMCORE">[DOMCORE]</a> (Such uses are always hyperlinked - to their definition.)<p>In the context of byte streams, the term HTML document refers to + to their definition.)</p> + + <p>In the context of byte streams, the term HTML document refers to resources labeled as <code><a href="iana.html#text-html" id="text/html_0">text/html</a></code>, and the term XML document refers to resources labeled with an <a href="#xml-mime-type" id="xml-mime-type_1">XML MIME - type</a>.<p>The term <dfn aria-haspopup="true" id="xhtml-document" role="button" tabindex="0">XHTML document</dfn> is used to refer to both + type</a>.</p> + + <p>The term <dfn aria-haspopup="true" id="xhtml-document" role="button" tabindex="0">XHTML document</dfn> is used to refer to both <code><a href="dom.html#document" id="document_5">Document</a></code>s in the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#xml-documents" title='Read about this "XML document" reference in the full HTML5 spec.'>XML document</a> mode that contains element nodes in the <a href="namespaces.html#html-namespace-0" id="html-namespace_0">HTML namespace</a>, and byte streams labeled with an <a href="#xml-mime-type" id="xml-mime-type_2">XML MIME type</a> that contain elements from the <a href="namespaces.html#html-namespace-0" id="html-namespace_1">HTML - namespace</a>, depending on context.<hr><p>For simplicity, terms such as <dfn aria-haspopup="true" id="shown" role="button" tabindex="0">shown</dfn>, <dfn aria-haspopup="true" id="displayed" role="button" tabindex="0">displayed</dfn>, and <dfn aria-haspopup="true" id="visible" role="button" tabindex="0">visible</dfn> might + namespace</a>, depending on context.</p> + + <hr><p>For simplicity, terms such as <dfn aria-haspopup="true" id="shown" role="button" tabindex="0">shown</dfn>, <dfn aria-haspopup="true" id="displayed" role="button" tabindex="0">displayed</dfn>, and <dfn aria-haspopup="true" id="visible" role="button" tabindex="0">visible</dfn> might sometimes be used when referring to the way a document is rendered to the user. These terms are not meant to imply a visual medium; they must be considered to apply to other media in equivalent - ways.<p>The term "transparent black" refers to the color with red, green, - blue, and alpha channels all set to zero.<h4 id="resources"><span class="secno">2.1.1 </span>Resources</h4><p>The specification uses the term <dfn aria-haspopup="true" id="supported" role="button" tabindex="0">supported</dfn> + ways.</p> + + + + + <p>The term "transparent black" refers to the color with red, green, + blue, and alpha channels all set to zero.</p> + + + <h4 id="resources"><span class="secno">2.1.1 </span>Resources</h4> + + <p>The specification uses the term <dfn aria-haspopup="true" id="supported" role="button" tabindex="0">supported</dfn> when referring to whether a user agent has an implementation capable of decoding the semantics of an external resource. A format or type is said to be <a href="#supported" id="supported_0"><i>supported</i></a> if the implementation can process an external resource of that format or type without critical aspects of the resource being ignored. Whether a specific resource is <a href="#supported" id="supported_1"><i>supported</i></a> can depend on what features of the resource's - format are in use.<p class="example">For example, a PNG image would be considered to + format are in use.</p> + + <p class="example">For example, a PNG image would be considered to be in a supported format if its pixel data could be decoded and rendered, even if, unbeknownst to the implementation, the image also - contained animation data.<p class="example">A MPEG4 video file would not be considered to be + contained animation data.</p> + + <p class="example">A MPEG4 video file would not be considered to be in a supported format if the compression format used was not supported, even if the implementation could determine the dimensions - of the movie from the file's metadata.<p>What some specifications, in particular the HTTP and URI + of the movie from the file's metadata.</p> + + <p>What some specifications, in particular the HTTP and URI specifications, refer to as a <i>representation</i> is referred to - in this specification as a <dfn aria-haspopup="true" id="resource" role="button" tabindex="0">resource</dfn>. <a href="references.html#refsHTTP">[HTTP]</a> <a href="references.html#refsRFC3986">[RFC3986]</a><p>The term <dfn aria-haspopup="true" id="mime-type" role="button" tabindex="0">MIME type</dfn> is used to refer to what is + in this specification as a <dfn aria-haspopup="true" id="resource" role="button" tabindex="0">resource</dfn>. <a href="references.html#refsHTTP">[HTTP]</a> <a href="references.html#refsRFC3986">[RFC3986]</a></p> + + <p>The term <dfn aria-haspopup="true" id="mime-type" role="button" tabindex="0">MIME type</dfn> is used to refer to what is sometimes called an <i>Internet media type</i> in protocol literature. The term <i>media type</i> in this specification is used to refer to the type of media intended for presentation, as used by - the CSS specifications. <a href="references.html#refsRFC2046">[RFC2046]</a> <a href="references.html#refsMQ">[MQ]</a><p>A string is a <dfn aria-haspopup="true" id="valid-mime-type" role="button" tabindex="0">valid MIME type</dfn> if it matches the <code title="">media-type</code> rule defined in section 3.7 "Media Types" + the CSS specifications. <a href="references.html#refsRFC2046">[RFC2046]</a> <a href="references.html#refsMQ">[MQ]</a></p> + + <p>A string is a <dfn aria-haspopup="true" id="valid-mime-type" role="button" tabindex="0">valid MIME type</dfn> if it matches the <code title="">media-type</code> rule defined in section 3.7 "Media Types" of RFC 2616. In particular, a <a href="#valid-mime-type" id="valid-mime-type_0">valid MIME type</a> may - include MIME type parameters. <a href="references.html#refsHTTP">[HTTP]</a><p>A string is a <dfn aria-haspopup="true" id="valid-mime-type-with-no-parameters" role="button" tabindex="0">valid MIME type with no parameters</dfn> if it + include MIME type parameters. <a href="references.html#refsHTTP">[HTTP]</a></p> + + <p>A string is a <dfn aria-haspopup="true" id="valid-mime-type-with-no-parameters" role="button" tabindex="0">valid MIME type with no parameters</dfn> if it matches the <code title="">media-type</code> rule defined in section - 3.7 "Media Types" of RFC 2616, but does not contain any U+003B - SEMICOLON characters (;). In other words, if it consists only of a - type and subtype, with no MIME Type parameters. <a href="references.html#refsHTTP">[HTTP]</a><p>The term <dfn aria-haspopup="true" id="html-mime-type" role="button" tabindex="0">HTML MIME type</dfn> is used to refer to the - <a href="#mime-type" id="mime-type_1">MIME type</a> <code><a href="iana.html#text-html" id="text/html_1">text/html</a></code>.<p>A resource's <dfn aria-haspopup="true" id="critical-subresources" role="button" tabindex="0">critical subresources</dfn> are those that the + 3.7 "Media Types" of RFC 2616, but does not contain any ";" (U+003B) characters. In other words, if it consists only of a + type and subtype, with no MIME Type parameters. <a href="references.html#refsHTTP">[HTTP]</a></p> + + <p>The term <dfn aria-haspopup="true" id="html-mime-type" role="button" tabindex="0">HTML MIME type</dfn> is used to refer to the + <a href="#mime-type" id="mime-type_1">MIME type</a> <code><a href="iana.html#text-html" id="text/html_1">text/html</a></code>.</p> + + <p>A resource's <dfn aria-haspopup="true" id="critical-subresources" role="button" tabindex="0">critical subresources</dfn> are those that the resource needs to have available to be correctly processed. Which resources are considered critical or not is defined by the specification that defines the resource's format. For CSS resources, only <code title="">@import</code> rules introduce <a href="#critical-subresources" id="critical-subresources_0">critical subresources</a>; other resources, e.g. fonts or backgrounds, are - not.<p>The term <dfn aria-haspopup="true" id="data-protocol" role="button" tabindex="0"><code title="">data:</code> - URL</dfn> refers to <a href="urls.html#url" id="url_0" title="URL">URLs</a> that use the <code title="">data:</code> scheme. <a href="references.html#refsRFC2397">[RFC2397]</a><h4 id="xml"><span class="secno">2.1.2 </span>XML</h4><p id="html-namespace">To ease migration from HTML to XHTML, UAs + not.</p> + + <p>The term <dfn aria-haspopup="true" id="data-protocol" role="button" tabindex="0"><code title="">data:</code> + URL</dfn> refers to <a href="urls.html#url" id="url_0" title="URL">URLs</a> that use the <code title="">data:</code> scheme. <a href="references.html#refsRFC2397">[RFC2397]</a></p> + + + <h4 id="xml"><span class="secno">2.1.2 </span>XML</h4> + + <p id="html-namespace">To ease migration from HTML to XHTML, UAs conforming to this specification will place elements in HTML in the <code>http://www.w3.org/1999/xhtml</code> namespace, at least for the purposes of the DOM and CSS. The term "<dfn aria-haspopup="true" id="html-elements" role="button" tabindex="0">HTML elements</dfn>", when used in this specification, refers to any element in that namespace, and thus refers to both HTML and XHTML - elements.<p>Except where otherwise stated, all elements defined or mentioned + elements.</p> + + <p>Except where otherwise stated, all elements defined or mentioned in this specification are in the <a href="namespaces.html#html-namespace-0" id="html-namespace_2">HTML namespace</a> ("<code>http://www.w3.org/1999/xhtml</code>"), and all attributes - defined or mentioned in this specification have no namespace.<p>The term <dfn aria-haspopup="true" id="element-type" role="button" tabindex="0">element type</dfn> is used to refer to the class of + defined or mentioned in this specification have no namespace.</p> + + <p>The term <dfn aria-haspopup="true" id="element-type" role="button" tabindex="0">element type</dfn> is used to refer to the class of elements have a given local name and namespace. For example, <code><a href="the-button-element.html#the-button-element" id="button_1">button</a></code> elements are elements with the element type <code><a href="the-button-element.html#the-button-element" id="button_2">button</a></code>, meaning they have the local name "<code title="">button</code>" and (implicitly as defined above) the - <a href="namespaces.html#html-namespace-0" id="html-namespace_3">HTML namespace</a>.<p>Attribute names are said to be <dfn aria-haspopup="true" id="xml-compatible" role="button" tabindex="0">XML-compatible</dfn> if they + <a href="namespaces.html#html-namespace-0" id="html-namespace_3">HTML namespace</a>.</p> + + <p>Attribute names are said to be <dfn aria-haspopup="true" id="xml-compatible" role="button" tabindex="0">XML-compatible</dfn> if they match the <a href="http://www.w3.org/TR/REC-xml/#NT-Name"><code title="">Name</code></a> production defined in XML, they contain no - U+003A COLON characters (:), and their first three characters are + ":" (U+003A) characters, and their first three characters are not an <a href="#ascii-case-insensitive" id="ascii-case-insensitive_0">ASCII case-insensitive</a> match for the string - "<code title="">xml</code>". <a href="references.html#refsXML">[XML]</a><p>The term <dfn aria-haspopup="true" id="xml-mime-type" role="button" tabindex="0">XML MIME type</dfn> is used to refer to the <a href="#mime-type" id="mime-type_2" title="MIME type">MIME types</a> <code title="">text/xml</code>, + "<code title="">xml</code>". <a href="references.html#refsXML">[XML]</a></p> + + <p>The term <dfn aria-haspopup="true" id="xml-mime-type" role="button" tabindex="0">XML MIME type</dfn> is used to refer to the <a href="#mime-type" id="mime-type_2" title="MIME type">MIME types</a> <code title="">text/xml</code>, <code title="">application/xml</code>, and any <a href="#mime-type" id="mime-type_3">MIME - type</a> whose subtype ends with the four characters "<code title="">+xml</code>". <a href="references.html#refsRFC3023">[RFC3023]</a><h4 id="dom-trees"><span class="secno">2.1.3 </span>DOM trees</h4><p>The <dfn aria-haspopup="true" id="root-element-of-a-document-object" role="button" tabindex="0">root element of a <code>Document</code> object</dfn> is + type</a> whose subtype ends with the four characters "<code title="">+xml</code>". <a href="references.html#refsRFC3023">[RFC3023]</a></p> + + + <h4 id="dom-trees"><span class="secno">2.1.3 </span>DOM trees</h4> + + <p>The <dfn aria-haspopup="true" id="root-element-of-a-document-object" role="button" tabindex="0">root element of a <code>Document</code> object</dfn> is that <code><a href="dom.html#document" id="document_6">Document</a></code>'s first element child, if any. If it does - not have one then the <code><a href="dom.html#document" id="document_7">Document</a></code> has no root element.<p>The term <dfn aria-haspopup="true" id="root-element" role="button" tabindex="0">root element</dfn>, when not referring to a + not have one then the <code><a href="dom.html#document" id="document_7">Document</a></code> has no root element.</p> + + <p>The term <dfn aria-haspopup="true" id="root-element" role="button" tabindex="0">root element</dfn>, when not referring to a <code><a href="dom.html#document" id="document_8">Document</a></code> object's root element, means the furthest ancestor element node of whatever node is being discussed, or the node itself if it has no ancestors. When the node is a part of the document, then the node's <a href="#root-element" id="root-element_1">root element</a> is indeed the document's root element; however, if the node is not currently part - of the document tree, the root element will be an orphaned node.<p>When an element's <a href="#root-element" id="root-element_2">root element</a> is the <a href="#root-element-of-a-document-object" id="root-element-of-a-document-object_0">root + of the document tree, the root element will be an orphaned node.</p> + + <p>When an element's <a href="#root-element" id="root-element_2">root element</a> is the <a href="#root-element-of-a-document-object" id="root-element-of-a-document-object_0">root element of a <code>Document</code> object</a>, it is said to be <dfn aria-haspopup="true" id="in-a-document" role="button" tabindex="0">in a <code>Document</code></dfn>. An element is said to have been <dfn aria-haspopup="true" id="insert-an-element-into-a-document" role="button" tabindex="0">inserted into a @@ -457,104 +560,203 @@ the document's <a href="#root-element" id="root-element_4">root element</a>. Analogously, an element is said to have been <dfn aria-haspopup="true" id="remove-an-element-from-a-document" role="button" tabindex="0">removed from a document</dfn> when its <a href="#root-element" id="root-element_5">root element</a> changes from being the document's <a href="#root-element" id="root-element_6">root - element</a> to being another element.<p>A node's <dfn aria-haspopup="true" id="home-subtree" role="button" tabindex="0">home subtree</dfn> is the subtree rooted at that + element</a> to being another element.</p> + + <p>A node's <dfn aria-haspopup="true" id="home-subtree" role="button" tabindex="0">home subtree</dfn> is the subtree rooted at that node's <a href="#root-element" id="root-element_7">root element</a>. When a node is <a href="#in-a-document" id="in-a-document_0">in a <code>Document</code></a>, its <a href="#home-subtree" id="home-subtree_0">home subtree</a> is that - <code><a href="dom.html#document" id="document_9">Document</a></code>'s tree.<p>The <code><a href="dom.html#document" id="document_10">Document</a></code> of a <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#node" title='Read about this "Node" reference in the full HTML5 spec.'>Node</a></code> (such as an + <code><a href="dom.html#document" id="document_9">Document</a></code>'s tree.</p> + + <p>The <code><a href="dom.html#document" id="document_10">Document</a></code> of a <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#node" title='Read about this "Node" reference in the full HTML5 spec.'>Node</a></code> (such as an element) is the <code><a href="dom.html#document" id="document_11">Document</a></code> that the <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#node" title='Read about this "Node" reference in the full HTML5 spec.'>Node</a></code>'s <code title="dom-Node-ownerDocument"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#dom-node-ownerdocument" title='Read about this "ownerDocument" reference in the full HTML5 spec.'>ownerDocument</a></code> IDL attribute returns. When a <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#node" title='Read about this "Node" reference in the full HTML5 spec.'>Node</a></code> is <a href="#in-a-document" id="in-a-document_1">in a <code>Document</code></a> then that <code><a href="dom.html#document" id="document_12">Document</a></code> is always the <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#node" title='Read about this "Node" reference in the full HTML5 spec.'>Node</a></code>'s <code><a href="dom.html#document" id="document_13">Document</a></code>, and the <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#node" title='Read about this "Node" reference in the full HTML5 spec.'>Node</a></code>'s <code title="dom-Node-ownerDocument"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#dom-node-ownerdocument" title='Read about this "ownerDocument" reference in the full HTML5 spec.'>ownerDocument</a></code> IDL attribute - thus always returns that <code><a href="dom.html#document" id="document_14">Document</a></code>.<p>The <code><a href="dom.html#document" id="document_15">Document</a></code> of a content attribute is the - <code><a href="dom.html#document" id="document_16">Document</a></code> of the attribute's element.<p>The term <dfn aria-haspopup="true" id="tree-order" role="button" tabindex="0">tree order</dfn> means a pre-order, depth-first - traversal of DOM nodes involved (through the <code title="dom-Node-parentNode"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#dom-node-parentnode" title='Read about this "parentNode" reference in the full HTML5 spec.'>parentNode</a></code>/<code title="dom-Node-childNodes"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#dom-node-childnodes" title='Read about this "childNodes" reference in the full HTML5 spec.'>childNodes</a></code> relationship).<p>When it is stated that some element or attribute is <dfn aria-haspopup="true" id="ignore" role="button" tabindex="0">ignored</dfn>, or treated as some other value, or + thus always returns that <code><a href="dom.html#document" id="document_14">Document</a></code>.</p> + + <p>The <code><a href="dom.html#document" id="document_15">Document</a></code> of a content attribute is the + <code><a href="dom.html#document" id="document_16">Document</a></code> of the attribute's element.</p> + + <p>The term <dfn aria-haspopup="true" id="tree-order" role="button" tabindex="0">tree order</dfn> means a pre-order, depth-first + traversal of DOM nodes involved (through the <code title="dom-Node-parentNode"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#dom-node-parentnode" title='Read about this "parentNode" reference in the full HTML5 spec.'>parentNode</a></code>/<code title="dom-Node-childNodes"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#dom-node-childnodes" title='Read about this "childNodes" reference in the full HTML5 spec.'>childNodes</a></code> relationship).</p> + + <p>When it is stated that some element or attribute is <dfn aria-haspopup="true" id="ignore" role="button" tabindex="0">ignored</dfn>, or treated as some other value, or handled as if it was something else, this refers only to the - processing of the node after it is in the DOM. <p>A content attribute is said to <dfn aria-haspopup="true" id="change" role="button" tabindex="0">change</dfn> value + processing of the node after it is in the DOM. </p> + + <p>A content attribute is said to <dfn aria-haspopup="true" id="change" role="button" tabindex="0">change</dfn> value only if its new value is different than its previous value; setting - an attribute to a value it already has does not change it.<p>The term <dfn aria-haspopup="true" id="empty" role="button" tabindex="0">empty</dfn>, when used of an attribute + an attribute to a value it already has does not change it.</p> + + <p>The term <dfn aria-haspopup="true" id="empty" role="button" tabindex="0">empty</dfn>, when used of an attribute value, <code><a href="obsolete.html#text">Text</a></code> node, or string, means that the length of the text is zero (i.e. not even containing spaces or control - characters).<h4 id="scripting-0"><span class="secno">2.1.4 </span>Scripting</h4><p>The construction "a <code>Foo</code> object", where + characters).</p> + + + <h4 id="scripting-0"><span class="secno">2.1.4 </span>Scripting</h4> + + <p>The construction "a <code>Foo</code> object", where <code>Foo</code> is actually an interface, is sometimes used instead of the more accurate "an object implementing the interface - <code>Foo</code>".<p>An IDL attribute is said to be <dfn aria-haspopup="true" id="getting" role="button" tabindex="0">getting</dfn> when + <code>Foo</code>".</p> + + <p>An IDL attribute is said to be <dfn aria-haspopup="true" id="getting" role="button" tabindex="0">getting</dfn> when its value is being retrieved (e.g. by author script), and is said to be <dfn aria-haspopup="true" id="setting" role="button" tabindex="0">setting</dfn> when a new value is assigned to - it.<p>If a DOM object is said to be <dfn aria-haspopup="true" id="live" role="button" tabindex="0">live</dfn>, then the + it.</p> + + <p>If a DOM object is said to be <dfn aria-haspopup="true" id="live" role="button" tabindex="0">live</dfn>, then the attributes and methods on that object operate on the actual underlying data, not a snapshot of the - data.<p>In the contexts of events, the terms <dfn aria-haspopup="true" id="fire" role="button" tabindex="0">fire</dfn> and + data.</p> + + <p>In the contexts of events, the terms <dfn aria-haspopup="true" id="fire" role="button" tabindex="0">fire</dfn> and <dfn aria-haspopup="true" id="concept-event-dispatch" role="button" tabindex="0">dispatch</dfn> are used as defined in the DOM Core specification: firing an event means to create and dispatch it, and dispatching an event means to follow the steps that propagate the event through the tree. The term <dfn aria-haspopup="true" id="concept-events-trusted" role="button" tabindex="0">trusted event</dfn> is used to refer to events whose <code title="dom-event-isTrusted"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#dom-event-istrusted" title='Read about this "isTrusted" reference in the full HTML5 spec.'>isTrusted</a></code> - attribute is initialized to true. <a href="references.html#refsDOMCORE">[DOMCORE]</a><h4 id="plugins"><span class="secno">2.1.5 </span>Plugins</h4><p>The term <dfn aria-haspopup="true" id="plugin" role="button" tabindex="0">plugin</dfn> refers to a user-agent defined set of + attribute is initialized to true. <a href="references.html#refsDOMCORE">[DOMCORE]</a></p> + + + <h4 id="plugins"><span class="secno">2.1.5 </span>Plugins</h4> + + <p>The term <dfn aria-haspopup="true" id="plugin" role="button" tabindex="0">plugin</dfn> refers to a user-agent defined set of content handlers used by the user agent that can take part in the user agent's rendering of a <code><a href="dom.html#document" id="document_17">Document</a></code> object, but that neither act as <a href="browsers.html#child-browsing-context" id="child-browsing-context_0" title="child browsing context">child browsing contexts</a> of the <code><a href="dom.html#document" id="document_18">Document</a></code> nor introduce any - <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#node" title='Read about this "Node" reference in the full HTML5 spec.'>Node</a></code> objects to the <code><a href="dom.html#document" id="document_19">Document</a></code>'s DOM.<p>Typically such content handlers are provided by third parties, + <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#node" title='Read about this "Node" reference in the full HTML5 spec.'>Node</a></code> objects to the <code><a href="dom.html#document" id="document_19">Document</a></code>'s DOM.</p> + + <p>Typically such content handlers are provided by third parties, though a user agent can also designate built-in content handlers as - plugins.<p class="example">One example of a plugin would be a PDF viewer + plugins.</p> + + + + <p class="example">One example of a plugin would be a PDF viewer that is instantiated in a <a href="browsers.html#browsing-context" id="browsing-context_1">browsing context</a> when the user navigates to a PDF file. This would count as a plugin regardless of whether the party that implemented the PDF viewer component was the same as that which implemented the user agent itself. However, a PDF viewer application that launches separate from the user agent (as opposed to using the same interface) is not - a plugin by this definition.<p class="note">This specification does not define a mechanism for + a plugin by this definition.</p> + + <p class="note">This specification does not define a mechanism for interacting with plugins, as it is expected to be user-agent- and platform-specific. Some UAs might opt to support a plugin mechanism such as the Netscape Plugin API; others might use remote content converters or have built-in support for certain types. Indeed, this specification doesn't require user agents to support plugins at all. - <a href="references.html#refsNPAPI">[NPAPI]</a><p>A plugin can be <dfn aria-haspopup="true" id="concept-plugin-secure" role="button" tabindex="0">secured</dfn> - if it honors the semantics of the <code title="attr-iframe-sandbox"><a href="the-iframe-element.html#attr-iframe-sandbox" id="sandbox">sandbox</a></code> attribute.<p class="example">For example, a secured plugin would prevent its + <a href="references.html#refsNPAPI">[NPAPI]</a></p> + + <p>A plugin can be <dfn aria-haspopup="true" id="concept-plugin-secure" role="button" tabindex="0">secured</dfn> + if it honors the semantics of the <code title="attr-iframe-sandbox"><a href="the-iframe-element.html#attr-iframe-sandbox" id="sandbox">sandbox</a></code> attribute.</p> + + <p class="example">For example, a secured plugin would prevent its contents from creating pop-up windows when the plugin is - instantiated inside a sandboxed <code><a href="the-iframe-element.html#the-iframe-element" id="iframe_1">iframe</a></code>.<h4 id="character-encodings"><span class="secno">2.1.6 </span>Character encodings</h4><p>The <dfn aria-haspopup="true" id="preferred-mime-name" role="button" tabindex="0">preferred MIME name</dfn> of a character encoding is the + instantiated inside a sandboxed <code><a href="the-iframe-element.html#the-iframe-element" id="iframe_1">iframe</a></code>.</p> + + + + + <h4 id="character-encodings"><span class="secno">2.1.6 </span>Character encodings</h4> + + <p>The <dfn aria-haspopup="true" id="preferred-mime-name" role="button" tabindex="0">preferred MIME name</dfn> of a character encoding is the name or alias labeled as "preferred MIME name" in the IANA <cite>Character Sets</cite> registry, if there is one, or the - encoding's name, if none of the aliases are so labeled. <a href="references.html#refsIANACHARSET">[IANACHARSET]</a><p>An <dfn aria-haspopup="true" id="ascii-compatible-character-encoding" role="button" tabindex="0">ASCII-compatible character encoding</dfn> is a + encoding's name, if none of the aliases are so labeled. <a href="references.html#refsIANACHARSET">[IANACHARSET]</a></p> + + <p>An <dfn aria-haspopup="true" id="ascii-compatible-character-encoding" role="button" tabindex="0">ASCII-compatible character encoding</dfn> is a single-byte or variable-length encoding in which the bytes 0x09, 0x0A, 0x0C, 0x0D, 0x20 - 0x22, 0x26, 0x27, 0x2C - 0x3F, 0x41 - 0x5A, and 0x61 - 0x7A, ignoring bytes that are the second and later bytes of multibyte sequences, all correspond to single-byte sequences that map to the same Unicode - characters as those bytes in ANSI_X3.4-1968 (US-ASCII). <a href="references.html#refsRFC1345">[RFC1345]</a><p class="note">This includes such encodings as Shift_JIS, + characters as those bytes in ANSI_X3.4-1968 (US-ASCII). <a href="references.html#refsRFC1345">[RFC1345]</a></p> + + <p class="note">This includes such encodings as Shift_JIS, HZ-GB-2312, and variants of ISO-2022, even though it is possible in these encodings for bytes like 0x70 to be part of longer sequences that are unrelated to their interpretation as ASCII. It excludes - such encodings as UTF-7, UTF-16, GSM03.38, and EBCDIC variants.<p>The term <dfn aria-haspopup="true" id="a-utf-16-encoding" role="button" tabindex="0">a UTF-16 encoding</dfn> refers to any variant of + such encodings as UTF-7, UTF-16, GSM03.38, and EBCDIC variants.</p> + + + + <p>The term <dfn aria-haspopup="true" id="a-utf-16-encoding" role="button" tabindex="0">a UTF-16 encoding</dfn> refers to any variant of UTF-16: self-describing UTF-16 with a BOM, ambiguous UTF-16 without - a BOM, raw UTF-16LE, and raw UTF-16BE. <a href="references.html#refsRFC2781">[RFC2781]</a><p>The term <dfn aria-haspopup="true" id="code-unit" role="button" tabindex="0">code unit</dfn> is used as defined in the Web IDL + a BOM, raw UTF-16LE, and raw UTF-16BE. <a href="references.html#refsRFC2781">[RFC2781]</a></p> + + <p>The term <dfn aria-haspopup="true" id="code-unit" role="button" tabindex="0">code unit</dfn> is used as defined in the Web IDL specification: a 16 bit unsigned integer, the smallest atomic component of a <code>DOMString</code>. (This is a narrower - definition than the one used in Unicode.) <a href="references.html#refsWEBIDL">[WEBIDL]</a><p>The term <dfn aria-haspopup="true" id="unicode-code-point" role="button" tabindex="0">Unicode code point</dfn> means a <i title="">Unicode scalar value</i> where possible, and an isolated + definition than the one used in Unicode.) <a href="references.html#refsWEBIDL">[WEBIDL]</a></p> + + <p>The term <dfn aria-haspopup="true" id="unicode-code-point" role="button" tabindex="0">Unicode code point</dfn> means a <i title="">Unicode scalar value</i> where possible, and an isolated surrogate code point when not. When a conformance requirement is defined in terms of characters or Unicode code points, a pair of <a href="#code-unit" id="code-unit_0" title="code unit">code units</a> consisting of a high surrogate followed by a low surrogate must be treated as the single code point represented by the surrogate pair, but isolated surrogates must each be treated as the single code point with the - value of the surrogate. <a href="references.html#refsUNICODE">[UNICODE]</a><p>In this specification, the term <dfn aria-haspopup="true" id="character" role="button" tabindex="0">character</dfn>, when not + value of the surrogate. <a href="references.html#refsUNICODE">[UNICODE]</a></p> + + <p>In this specification, the term <dfn aria-haspopup="true" id="character" role="button" tabindex="0">character</dfn>, when not qualified as <em>Unicode</em> character, is synonymous with the term - <a href="#unicode-code-point" id="unicode-code-point_0">Unicode code point</a>.<p>The term <dfn aria-haspopup="true" id="unicode-character" role="button" tabindex="0">Unicode character</dfn> is used to mean a <i title="">Unicode scalar value</i> (i.e. any Unicode code point that - is not a surrogate code point). <a href="references.html#refsUNICODE">[UNICODE]</a><p>The <dfn aria-haspopup="true" id="code-point-length" role="button" tabindex="0">code-point length</dfn> of a string is the number of - <a href="#code-unit" id="code-unit_1" title="code unit">code units</a> in that string.<p class="note">This complexity results from the historical decision + <a href="#unicode-code-point" id="unicode-code-point_0">Unicode code point</a>.</p> + + <p>The term <dfn aria-haspopup="true" id="unicode-character" role="button" tabindex="0">Unicode character</dfn> is used to mean a <i title="">Unicode scalar value</i> (i.e. any Unicode code point that + is not a surrogate code point). <a href="references.html#refsUNICODE">[UNICODE]</a></p> + + <p>The <dfn aria-haspopup="true" id="code-point-length" role="button" tabindex="0">code-point length</dfn> of a string is the number of + <a href="#code-unit" id="code-unit_1" title="code unit">code units</a> in that string.</p> + + <p class="note">This complexity results from the historical decision to define the DOM API in terms of 16 bit (UTF-16) <a href="#code-unit" id="code-unit_2" title="code - unit">code units</a>, rather than in terms of <a href="#unicode-character" id="unicode-character_0" title="Unicode character">Unicode characters</a>.<h3 id="conformance-requirements"><span class="secno">2.2 </span>Conformance requirements</h3><p>All diagrams, examples, and notes in this specification are + unit">code units</a>, rather than in terms of <a href="#unicode-character" id="unicode-character_0" title="Unicode character">Unicode characters</a>.</p> + + + + + + + <h3 id="conformance-requirements"><span class="secno">2.2 </span>Conformance requirements</h3> + + <p>All diagrams, examples, and notes in this specification are non-normative, as are all sections explicitly marked non-normative. - Everything else in this specification is normative.<p>The key words "MUST", "MUST NOT", "REQUIRED", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and + Everything else in this specification is normative.</p> + + <p>The key words "MUST", "MUST NOT", "REQUIRED", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in the normative parts of this document are to be interpreted as described in RFC2119. The key word "OPTIONALLY" in the normative parts of this document is to be interpreted with the same normative meaning as "MAY" and "OPTIONAL". For readability, these words do not appear in all uppercase letters in this - specification. <a href="references.html#refsRFC2119">[RFC2119]</a><h4 id="extensibility"><span class="secno">2.2.1 </span>Extensibility</h4><p>HTML has a wide number of extensibility mechanisms that can be - used for adding semantics in a safe manner:<ul><li>Authors can use the <code title="attr-class"><a href="global-attributes.html#classes" id="class">class</a></code> + specification. <a href="references.html#refsRFC2119">[RFC2119]</a></p> + + + + + + + + + + + + + + + <h4 id="extensibility"><span class="secno">2.2.1 </span>Extensibility</h4> + + <p>HTML has a wide number of extensibility mechanisms that can be + used for adding semantics in a safe manner:</p> + + <ul><li>Authors can use the <code title="attr-class"><a href="global-attributes.html#classes" id="class">class</a></code> attribute to extend elements, effectively creating their own elements, while using the most applicable existing "real" HTML element, so that browsers and other tools that don't know of the @@ -592,16 +794,40 @@ attributes corresponding to content attributes of the form "<code title="">x-<var title="">vendor</var>-<var title="">feature</var></code>", the IDL attribute should be named "<code title=""><var title="">vendor</var><var title="">Feature</var></code>" (i.e. the "<code title="">x</code>" is dropped from the IDL attribute's name).</p> -<h3 id="case-sensitivity-and-string-comparison"><span class="secno">2.3 </span>Case-sensitivity and string comparison</h3><p>Comparing two strings in a <dfn aria-haspopup="true" id="case-sensitive" role="button" tabindex="0">case-sensitive</dfn> manner means - comparing them exactly, code point for code point.<p>Comparing two strings in an <dfn aria-haspopup="true" id="ascii-case-insensitive" role="button" tabindex="0">ASCII case-insensitive</dfn> + + + + + <h3 id="case-sensitivity-and-string-comparison"><span class="secno">2.3 </span>Case-sensitivity and string comparison</h3> + + <p>Comparing two strings in a <dfn aria-haspopup="true" id="case-sensitive" role="button" tabindex="0">case-sensitive</dfn> manner means + comparing them exactly, code point for code point.</p> + + <p>Comparing two strings in an <dfn aria-haspopup="true" id="ascii-case-insensitive" role="button" tabindex="0">ASCII case-insensitive</dfn> manner means comparing them exactly, code point for code point, except that the characters in the range U+0041 to U+005A (i.e. LATIN CAPITAL LETTER A to LATIN CAPITAL LETTER Z) and the corresponding characters in the range U+0061 to U+007A (i.e. LATIN SMALL LETTER A - to LATIN SMALL LETTER Z) are considered to also match.<p>Comparing two strings in a <dfn aria-haspopup="true" id="compatibility-caseless" role="button" tabindex="0">compatibility caseless</dfn> + to LATIN SMALL LETTER Z) are considered to also match.</p> + + <p>Comparing two strings in a <dfn aria-haspopup="true" id="compatibility-caseless" role="button" tabindex="0">compatibility caseless</dfn> manner means using the Unicode <i>compatibility caseless match</i> - operation to compare the two strings. <a href="references.html#refsUNICODE">[UNICODE]</a><p>Except where otherwise stated, string comparisons must be - performed in a <a href="#case-sensitive" id="case-sensitive_0">case-sensitive</a> manner.<p>A string <var title="">pattern</var> is a <dfn aria-haspopup="true" id="prefix-match" role="button" tabindex="0">prefix match</dfn> + operation to compare the two strings. <a href="references.html#refsUNICODE">[UNICODE]</a></p> + + <p>Except where otherwise stated, string comparisons must be + performed in a <a href="#case-sensitive" id="case-sensitive_0">case-sensitive</a> manner.</p> + + + + + + <p>A string <var title="">pattern</var> is a <dfn aria-haspopup="true" id="prefix-match" role="button" tabindex="0">prefix match</dfn> for a string <var title="">s</var> when <var title="">pattern</var> is not longer than <var title="">s</var> and truncating <var title="">s</var> to <var title="">pattern</var>'s length leaves the - two strings as matches of each other. \ No newline at end of file + two strings as matches of each other.</p> + + + + + + \ No newline at end of file Index: the-dd-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-dd-element.html,v retrieving revision 1.117 retrieving revision 1.118 diff -u -d -r1.117 -r1.118 --- the-dd-element.html 21 Feb 2012 21:59:03 -0000 1.117 +++ the-dd-element.html 13 Mar 2012 19:58:56 -0000 1.118 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-dt-element.html">← 4.5.9 The dt element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-figure-element.html">4.5.11 The figure element →</a> </div> - <h4 id="the-dd-element"><span class="secno">4.5.10 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>dd</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_28" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-dd-element"><span class="secno">4.5.10 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>dd</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_28" title="element-dfn-categories">Categories</a>:</dt> <dd>None.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_28" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>After <code><a href="the-dt-element.html#the-dt-element" id="dt_7">dt</a></code> or <code><a href="#the-dd-element" id="dd_5">dd</a></code> elements inside <code><a href="the-dl-element.html#the-dl-element" id="dl_11">dl</a></code> elements.</dd> @@ -362,7 +402,9 @@ <dd>Uses <code><a href="elements.html#htmlelement" id="htmlelement_33">HTMLElement</a></code>.</dd> </dl><p>The <code><a href="#the-dd-element" id="dd_6">dd</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> the description, definition, or value, part of a term-description group - in a description list (<code><a href="the-dl-element.html#the-dl-element" id="dl_12">dl</a></code> element).<div class="example"> + in a description list (<code><a href="the-dl-element.html#the-dl-element" id="dl_12">dl</a></code> element).</p> + + <div class="example"> <p>A <code><a href="the-dl-element.html#the-dl-element" id="dl_13">dl</a></code> can be used to define a vocabulary list, like in a dictionary. In the following example, each entry, given by a @@ -381,4 +423,7 @@ <dd><i class="part-of-speech"><abbr>v.intr.</abbr></i> To be delighted oneself.</dd> <dd><i class="part-of-speech"><abbr>v.tr.</abbr></i> To cause one to be delighted.</dd> </dl></pre> - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: the-bdo-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-bdo-element.html,v retrieving revision 1.120 retrieving revision 1.121 diff -u -d -r1.120 -r1.121 --- the-bdo-element.html 21 Feb 2012 21:59:02 -0000 1.120 +++ the-bdo-element.html 13 Mar 2012 19:58:55 -0000 1.121 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-bdi-element.html">← 4.6.23 The bdi element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-span-element.html">4.6.25 The span element →</a> </div> - <h4 id="the-bdo-element"><span class="secno">4.6.24 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>bdo</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_55" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-bdo-element"><span class="secno">4.6.24 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>bdo</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_55" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_92">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_94">Phrasing content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_38">Palpable content</a>.</dd> @@ -366,7 +406,15 @@ </dl><p>The <code><a href="#the-bdo-element" id="bdo_4">bdo</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> explicit text directionality formatting control for its children. It allows authors to override the Unicode bidirectional algorithm by - explicitly specifying a direction override. <a href="references.html#refsBIDI">[BIDI]</a><p>Authors must specify the <code title="attr-dir"><a href="global-attributes.html#the-dir-attribute" id="dir_21">dir</a></code> + explicitly specifying a direction override. <a href="references.html#refsBIDI">[BIDI]</a></p> + + <p>Authors must specify the <code title="attr-dir"><a href="global-attributes.html#the-dir-attribute" id="dir_21">dir</a></code> attribute on this element, with the value <a href="global-attributes.html#concept-ltr" id="ltr_0"><code>ltr</code></a> to specify a left-to-right override and with the value <a href="global-attributes.html#concept-rtl" id="rtl_0"><code>rtl</code></a> - to specify a right-to-left override. \ No newline at end of file + to specify a right-to-left override.</p> + + + + + + \ No newline at end of file Index: the-object-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-object-element.html,v retrieving revision 1.150 retrieving revision 1.151 diff -u -d -r1.150 -r1.151 --- the-object-element.html 21 Feb 2012 21:59:06 -0000 1.150 +++ the-object-element.html 13 Mar 2012 19:59:00 -0000 1.151 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-embed-element.html">← 4.8.3 The embed element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-param-element.html">4.8.5 The param element →</a> </div> - <h4 id="the-object-element"><span class="secno">4.8.4 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>object</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_64" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-object-element"><span class="secno">4.8.4 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>object</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_64" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_103">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_118">Phrasing content</a>.</dd> <dd><a href="content-models.html#embedded-content" id="embedded-content_10">Embedded content</a>.</dd> @@ -399,32 +439,59 @@ resource, which, depending on the type of the resource, will either be treated as an image, as a <a href="browsers.html#nested-browsing-context" id="nested-browsing-context_7">nested browsing context</a>, or as an external resource to be processed by a - <a href="infrastructure.html#plugin" id="plugin_3">plugin</a>.<p>The <dfn aria-haspopup="true" id="attr-object-data" role="button" tabindex="0"><code>data</code></dfn> + <a href="infrastructure.html#plugin" id="plugin_3">plugin</a>.</p> + + <p>The <dfn aria-haspopup="true" id="attr-object-data" role="button" tabindex="0"><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-potentially-surrounded-by-spaces" id="valid-non-empty-url-potentially-surrounded-by-spaces_6">valid non-empty - URL potentially surrounded by spaces</a>.<p class="warning">Authors who reference resources from other <a href="origin-0.html#origin" id="origin_1" title="origin">origins</a> that they do not trust are urged to + URL potentially surrounded by spaces</a>.</p> + + <p class="warning">Authors who reference resources from other <a href="origin-0.html#origin" id="origin_1" title="origin">origins</a> that they do not trust are urged to use the <code title="attr-object-typemustmatch"><a href="#attr-object-typemustmatch" id="typemustmatch_0">typemustmatch</a></code> attribute defined below. Without that attribute, it is possible in certain cases for an attacker on the remote host to use the plugin mechanism to run arbitrary scripts, even if the author has used - features such as the Flash "allowScriptAccess" parameter.<p>The <dfn aria-haspopup="true" id="attr-object-type" role="button" tabindex="0"><code>type</code></dfn> + features such as the Flash "allowScriptAccess" parameter.</p> + + <p>The <dfn aria-haspopup="true" id="attr-object-type" role="button" tabindex="0"><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" id="valid-mime-type_5">valid MIME type</a>.<p>At least one of either the <code title="attr-object-data"><a href="#attr-object-data" id="data_0">data</a></code> attribute or the <code title="attr-object-type"><a href="#attr-object-type" id="type_22">type</a></code> attribute must be present.<p>The <dfn aria-haspopup="true" id="attr-object-typemustmatch" role="button" tabindex="0"><code>typemustmatch</code></dfn> + present, the attribute must be a <a href="infrastructure.html#valid-mime-type" id="valid-mime-type_5">valid MIME type</a>.</p> + + <p>At least one of either the <code title="attr-object-data"><a href="#attr-object-data" id="data_0">data</a></code> attribute or the <code title="attr-object-type"><a href="#attr-object-type" id="type_22">type</a></code> attribute must be present.</p> + + + <p>The <dfn aria-haspopup="true" id="attr-object-typemustmatch" role="button" tabindex="0"><code>typemustmatch</code></dfn> attribute is a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_5">boolean attribute</a> whose presence indicates that the resource specified by the <code title="attr-object-data"><a href="#attr-object-data" id="data_1">data</a></code> attribute is only to be used if the value of the <code title="attr-object-type"><a href="#attr-object-type" id="type_23">type</a></code> attribute and the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/urls.html#content-type" title='Read about this "Content-Type" reference in the full HTML5 spec.'>Content-Type</a> of the aforementioned - resource match.<p>The <code title="attr-object-typemustmatch"><a href="#attr-object-typemustmatch" id="typemustmatch_1">typemustmatch</a></code> - attribute must not be specified unless both the <code title="attr-object-data"><a href="#attr-object-data" id="data_2">data</a></code> attribute and the <code title="attr-object-type"><a href="#attr-object-type" id="type_24">type</a></code> attribute are present.<p>The <dfn aria-haspopup="true" id="attr-object-name" role="button" tabindex="0"><code>name</code></dfn> + resource match.</p> + + <p>The <code title="attr-object-typemustmatch"><a href="#attr-object-typemustmatch" id="typemustmatch_1">typemustmatch</a></code> + attribute must not be specified unless both the <code title="attr-object-data"><a href="#attr-object-data" id="data_2">data</a></code> attribute and the <code title="attr-object-type"><a href="#attr-object-type" id="type_24">type</a></code> attribute are present.</p> + + <p>The <dfn aria-haspopup="true" id="attr-object-name" role="button" tabindex="0"><code>name</code></dfn> attribute, if present, must be a <a href="browsers.html#valid-browsing-context-name" id="valid-browsing-context-name_1">valid browsing context name</a>. The given value is used to name the <a href="browsers.html#nested-browsing-context" id="nested-browsing-context_8">nested - browsing context</a>, if applicable.<p>The <code title="attr-hyperlink-usemap"><a href="image-maps.html#attr-hyperlink-usemap" id="usemap_6">usemap</a></code> attribute, + browsing context</a>, if applicable.</p> + + + + <p>The <code title="attr-hyperlink-usemap"><a href="image-maps.html#attr-hyperlink-usemap" id="usemap_6">usemap</a></code> attribute, if present while the <code><a href="#the-object-element" id="object_16">object</a></code> element represents an image, can indicate that the object has an associated <a href="image-maps.html#image-map" id="image-map_2">image - map</a>. <p>The <code title="attr-fae-form"><a href="association-of-controls-and-forms.html#attr-fae-form" id="form_43">form</a></code> attribute is used to + map</a>. </p> + + <p>The <code title="attr-fae-form"><a href="association-of-controls-and-forms.html#attr-fae-form" id="form_43">form</a></code> attribute is used to explicitly associate the <code><a href="#the-object-element" id="object_17">object</a></code> element with its - <a href="association-of-controls-and-forms.html#form-owner" id="form-owner_0">form owner</a>.<p>The <code><a href="#the-object-element" id="object_18">object</a></code> element supports <a href="dimension-attributes.html#dimension-attributes" id="dimension-attributes_3">dimension + <a href="association-of-controls-and-forms.html#form-owner" id="form-owner_0">form owner</a>.</p> + + + + <p>The <code><a href="#the-object-element" id="object_18">object</a></code> element supports <a href="dimension-attributes.html#dimension-attributes" id="dimension-attributes_3">dimension attributes</a>.</p> + + <p>The IDL attributes <dfn aria-haspopup="true" id="dom-object-data" role="button" tabindex="0"><code>data</code></dfn>, <dfn aria-haspopup="true" id="dom-object-type" role="button" tabindex="0"><code>type</code></dfn> and <dfn aria-haspopup="true" id="dom-object-name" role="button" tabindex="0"><code>name</code></dfn> each must <a href="common-dom-interfaces.html#reflect" id="reflect_29">reflect</a> the respective content attributes of the same name. The <dfn aria-haspopup="true" id="dom-object-typemustmatch" role="button" tabindex="0"><code>typeMustMatch</code></dfn> @@ -449,7 +516,9 @@ operation, then that must be the behavior of the object's legacy caller operation. Otherwise, the object's legacy caller operation must be to throw a <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#notsupportederror" title='Read about this "NotSupportedError" reference in the full HTML5 spec.'>NotSupportedError</a></code> exception.</p> -<div class="example"> + + + <div class="example"> <p>In the following example, a Java applet is embedded in a page using the <code><a href="#the-object-element" id="object_23">object</a></code> element. (Generally speaking, it is @@ -467,7 +536,9 @@ <figcaption>My Java Clock</figcaption> </figure></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>In this example, an HTML page is embedded in another using the <code><a href="#the-object-element" id="object_24">object</a></code> element.</p> @@ -477,7 +548,9 @@ <figcaption>My HTML Clock</figcaption> </figure></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>The following example shows how a plugin can be used in HTML (in this case the Flash plugin, to show a video file). Fallback is @@ -498,4 +571,8 @@ </object> </p></pre> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: edits-and-paragraphs.html =================================================================== RCS file: /sources/public/html5/spec-author-view/edits-and-paragraphs.html,v retrieving revision 1.17 retrieving revision 1.18 diff -u -d -r1.17 -r1.18 --- edits-and-paragraphs.html 15 Feb 2012 10:14:03 -0000 1.17 +++ edits-and-paragraphs.html 13 Mar 2012 19:58:38 -0000 1.18 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,19 +380,27 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="attributes-common-to-ins-and-del-elements.html">← 4.7.3 Attributes common to ins and del elements</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="edits-and-lists.html">4.7.5 Edits and lists →</a> </div> - <h4 id="edits-and-paragraphs"><span class="secno">4.7.4 </span>Edits and paragraphs</h4><p>Since the <code><a href="the-ins-element.html#the-ins-element" id="ins_19">ins</a></code> and <code><a href="the-del-element.html#the-del-element" id="del_15">del</a></code> elements do not + <h4 id="edits-and-paragraphs"><span class="secno">4.7.4 </span>Edits and paragraphs</h4> + + + + <p>Since the <code><a href="the-ins-element.html#the-ins-element" id="ins_19">ins</a></code> and <code><a href="the-del-element.html#the-del-element" id="del_15">del</a></code> elements do not affect <a href="content-models.html#paragraph" id="paragraph_15" title="paragraph">paragraphing</a>, it is possible, in some cases where paragraphs are <a href="content-models.html#paragraph" id="paragraph_16" title="paragraph">implied</a> (without explicit <code><a href="the-p-element.html#the-p-element" id="p_22">p</a></code> elements), for an <code><a href="the-ins-element.html#the-ins-element" id="ins_20">ins</a></code> or <code><a href="the-del-element.html#the-del-element" id="del_16">del</a></code> element to span both an entire paragraph or other non-<a href="content-models.html#phrasing-content" id="phrasing-content_113">phrasing content</a> elements and part of another paragraph. For - example:<pre><section> + example:</p> + + <pre><section> <ins> <p> This is a paragraph that was inserted. @@ -365,29 +409,42 @@ at the same time as the paragraph above. </ins> This is a second sentence, which was there all along. -</section></pre><p>By only wrapping some paragraphs in <code><a href="the-p-element.html#the-p-element" id="p_23">p</a></code> elements, one +</section></pre> + + <p>By only wrapping some paragraphs in <code><a href="the-p-element.html#the-p-element" id="p_23">p</a></code> elements, one can even get the end of one paragraph, a whole second paragraph, and the start of a third paragraph to be covered by the same <code><a href="the-ins-element.html#the-ins-element" id="ins_21">ins</a></code> or <code><a href="the-del-element.html#the-del-element" id="del_17">del</a></code> element (though this is very - confusing, and not considered good practice):<pre class="bad"><section> + confusing, and not considered good practice):</p> + + <pre class="bad"><section> This is the first paragraph. <ins>This sentence was inserted. <p>This second paragraph was inserted.</p> This sentence was inserted too.</ins> This is the third paragraph in this example. <!-- (don't do this) --> -</section></pre><p>However, due to the way <a href="content-models.html#paragraph" id="paragraph_17" title="paragraph">implied +</section></pre> + + <p>However, due to the way <a href="content-models.html#paragraph" id="paragraph_17" title="paragraph">implied paragraphs</a> are defined, it is not possible to mark up the end of one paragraph and the start of the very next one using the same <code><a href="the-ins-element.html#the-ins-element" id="ins_22">ins</a></code> or <code><a href="the-del-element.html#the-del-element" id="del_18">del</a></code> element. You instead have to use one (or two) <code><a href="the-p-element.html#the-p-element" id="p_24">p</a></code> element(s) and two - <code><a href="the-ins-element.html#the-ins-element" id="ins_23">ins</a></code> or <code><a href="the-del-element.html#the-del-element" id="del_19">del</a></code> elements, as for example:<pre><section> + <code><a href="the-ins-element.html#the-ins-element" id="ins_23">ins</a></code> or <code><a href="the-del-element.html#the-del-element" id="del_19">del</a></code> elements, as for example:</p> + + <pre><section> <p>This is the first paragraph. <del>This sentence was deleted.</del></p> <p><del>This sentence was deleted too.</del> That sentence needed a separate &lt;del&gt; element.</p> -</section></pre><p>Partly because of the confusion described above, authors are +</section></pre> + + <p>Partly because of the confusion described above, authors are strongly encouraged to always mark up all paragraphs with the <code><a href="the-p-element.html#the-p-element" id="p_25">p</a></code> element, instead of having <code><a href="the-ins-element.html#the-ins-element" id="ins_24">ins</a></code> or <code><a href="the-del-element.html#the-del-element" id="del_20">del</a></code> elements that cross <a href="content-models.html#paragraph" id="paragraph_18" title="paragraph">implied - paragraphs</a> boundaries. \ No newline at end of file + paragraphs</a> boundaries.</p> + + + \ No newline at end of file Index: index-of-terms.html =================================================================== RCS file: /sources/public/html5/spec-author-view/index-of-terms.html,v retrieving revision 1.573 retrieving revision 1.574 diff -u -d -r1.573 -r1.574 --- index-of-terms.html 7 Mar 2012 01:01:20 -0000 1.573 +++ index-of-terms.html 13 Mar 2012 19:58:41 -0000 1.574 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; [...3669 lines suppressed...] which maps to the <a href="the-textarea-element.html#attr-textarea-wrap-hard-state" title="attr-textarea-wrap-hard-state">Hard</a> state. The - <i>missing value default</i> is the <a href="the-textarea-element.html#attr-textarea-wrap-soft-state" title="attr-textarea-wrap-soft-state">Soft</a> state.</span></dd> + <i>missing value default</i> is the <a href="the-textarea-element.html#attr-textarea-wrap-soft-state" title="attr-textarea-wrap-soft-state">Soft</a> state.</span> + + </dd> <dd> <a href="the-textarea-element.html#wrap"><span class="secno">4.10.13 </span>The <span><code>textarea</code></span> element</a> <a class="dfn-ref" href="the-textarea-element.html#attr-textarea-wrap">(2)</a> @@ -35745,7 +36655,10 @@ <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-dom-interfaces.html#limited-to-only-non-negative-numbers" title='Read about this "limited to only non-negative numbers" reference in the full HTML5 spec.'>limited to only non-negative numbers</a>. The <span aria-haspopup="true" role="button" tabindex="0"><code>readOnly</code></span> IDL attribute must <a href="common-dom-interfaces.html#reflect">reflect</a> the <code title="attr-textarea-readonly"><a href="the-textarea-element.html#attr-textarea-readonly">readonly</a></code> content attribute.</span> -</dd> + + + + </dd> <dd> <a href="the-textarea-element.html#dom-textarea-wrap_0"><span class="secno">4.10.13 </span>The <span><code>textarea</code></span> element</a> <a class="dfn-ref" href="the-textarea-element.html#dom-textarea-wrap">(2)</a> Index: the-ol-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-ol-element.html,v retrieving revision 1.122 retrieving revision 1.123 diff -u -d -r1.122 -r1.123 --- the-ol-element.html 21 Feb 2012 21:59:06 -0000 1.122 +++ the-ol-element.html 13 Mar 2012 19:59:00 -0000 1.123 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-blockquote-element.html">← 4.5.4 The blockquote element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-ul-element.html">4.5.6 The ul element →</a> </div> - <h4 id="the-ol-element"><span class="secno">4.5.5 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>ol</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_23" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-ol-element"><span class="secno">4.5.5 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>ol</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_23" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_51">Flow content</a>.</dd> <dd>If the element's children include at least one <code><a href="the-li-element.html#the-li-element" id="li_5">li</a></code> element: <a href="content-models.html#palpable-content" id="palpable-content_12">Palpable content</a>.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_23" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> @@ -372,20 +412,32 @@ </dd> </dl><p>The <code><a href="#the-ol-element" id="ol_7">ol</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a list of items, where the items have been intentionally ordered, such that - changing the order would change the meaning of the document.<p>The items of the list are the <code><a href="the-li-element.html#the-li-element" id="li_7">li</a></code> element child nodes - of the <code><a href="#the-ol-element" id="ol_8">ol</a></code> element, in <a href="infrastructure.html#tree-order" id="tree-order_4">tree order</a>.<p>The <dfn aria-haspopup="true" id="attr-ol-reversed" role="button" tabindex="0"><code>reversed</code></dfn> + changing the order would change the meaning of the document.</p> + + <p>The items of the list are the <code><a href="the-li-element.html#the-li-element" id="li_7">li</a></code> element child nodes + of the <code><a href="#the-ol-element" id="ol_8">ol</a></code> element, in <a href="infrastructure.html#tree-order" id="tree-order_4">tree order</a>.</p> + + <p>The <dfn aria-haspopup="true" id="attr-ol-reversed" role="button" tabindex="0"><code>reversed</code></dfn> attribute is a <a href="common-microsyntaxes.html#boolean-attribute" id="boolean-attribute_2">boolean attribute</a>. If present, it indicates that the list is a descending list (..., 3, 2, 1). If the attribute is omitted, the list is an ascending list (1, 2, 3, - ...).<p>The <dfn aria-haspopup="true" id="attr-ol-start" role="button" tabindex="0"><code>start</code></dfn> + ...).</p> + + <p>The <dfn aria-haspopup="true" id="attr-ol-start" role="button" tabindex="0"><code>start</code></dfn> attribute, if present, must be a <a href="common-microsyntaxes.html#valid-integer" id="valid-integer_5">valid integer</a> giving - the <a href="the-li-element.html#ordinal-value" id="ordinal-value_0">ordinal value</a> of the first list item.<p>The <dfn aria-haspopup="true" id="attr-ol-type" role="button" tabindex="0"><code>type</code></dfn> attribute + the <a href="the-li-element.html#ordinal-value" id="ordinal-value_0">ordinal value</a> of the first list item.</p> + + + + <p>The <dfn aria-haspopup="true" id="attr-ol-type" role="button" tabindex="0"><code>type</code></dfn> attribute can be used to specify the kind of marker to use in the list, in the cases where that matters (e.g. because items are to be referenced by their number/letter). The attribute, if specified, must have a value that is a <a href="infrastructure.html#case-sensitive" id="case-sensitive_1">case-sensitive</a> match for one of the characters given in the first cell of one of the rows of the - following table. <table><thead><tr><th>Keyword + following table. </p> + + <table><thead><tr><th>Keyword <th>State <th>Description <th colspan="8">Examples for values 1-3 and 3999-4001 @@ -414,7 +466,9 @@ <a href="common-dom-interfaces.html#reflect" id="reflect_15">reflect</a> the respective content attributes of the same name. The <code title="dom-ol-start"><a href="#dom-ol-start" id="start_1">start</a></code> IDL attribute has the same default as its content attribute.</p> -<div class="example"> + + + <div class="example"> <p>The following markup shows a list where the order matters, and where the <code><a href="#the-ol-element" id="ol_9">ol</a></code> element is therefore appropriate. Compare @@ -445,4 +499,7 @@ <li>Norway </ol></pre> - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: the-area-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-area-element.html,v retrieving revision 1.135 retrieving revision 1.136 diff -u -d -r1.135 -r1.136 --- the-area-element.html 21 Feb 2012 21:59:02 -0000 1.135 +++ the-area-element.html 13 Mar 2012 19:58:55 -0000 1.136 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-map-element.html">← 4.8.12 The map element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="image-maps.html">4.8.14 Image maps →</a> </div> - <h4 id="the-area-element"><span class="secno">4.8.13 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>area</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_72" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-area-element"><span class="secno">4.8.13 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>area</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_72" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_112">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_126">Phrasing content</a>.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_72" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> @@ -394,7 +434,9 @@ </dd> </dl><p>The <code><a href="#the-area-element" id="area_10">area</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> either a hyperlink with some text and a corresponding area on an <a href="image-maps.html#image-map" id="image-map_4">image - map</a>, or a dead area on an image map.<p>If the <code><a href="#the-area-element" id="area_11">area</a></code> element has an <code title="attr-hyperlink-href"><a href="links.html#attr-hyperlink-href" id="href_19">href</a></code> attribute, then the + map</a>, or a dead area on an image map.</p> + + <p>If the <code><a href="#the-area-element" id="area_11">area</a></code> element has an <code title="attr-hyperlink-href"><a href="links.html#attr-hyperlink-href" id="href_19">href</a></code> attribute, then the <code><a href="#the-area-element" id="area_12">area</a></code> element represents a <a href="links.html#hyperlink" id="hyperlink_10">hyperlink</a>. In this case, the <dfn aria-haspopup="true" id="attr-area-alt" role="button" tabindex="0"><code>alt</code></dfn> attribute must be present. It specifies the text of the @@ -407,14 +449,22 @@ attribute may be left blank if there is another <code><a href="#the-area-element" id="area_13">area</a></code> element in the same <a href="image-maps.html#image-map" id="image-map_6">image map</a> that points to the same resource and has a non-blank <code title="attr-area-alt"><a href="#attr-area-alt" id="alt_35">alt</a></code> - attribute.<p>If the <code><a href="#the-area-element" id="area_14">area</a></code> element has no <code title="attr-hyperlink-href"><a href="links.html#attr-hyperlink-href" id="href_20">href</a></code> attribute, then the area - represented by the element cannot be selected, and the <code title="attr-area-alt"><a href="#attr-area-alt" id="alt_36">alt</a></code> attribute must be omitted.<p>In both cases, the <code title="attr-area-shape"><a href="#attr-area-shape" id="shape_1">shape</a></code> and + attribute.</p> + + <p>If the <code><a href="#the-area-element" id="area_14">area</a></code> element has no <code title="attr-hyperlink-href"><a href="links.html#attr-hyperlink-href" id="href_20">href</a></code> attribute, then the area + represented by the element cannot be selected, and the <code title="attr-area-alt"><a href="#attr-area-alt" id="alt_36">alt</a></code> attribute must be omitted.</p> + + <p>In both cases, the <code title="attr-area-shape"><a href="#attr-area-shape" id="shape_1">shape</a></code> and <code title="attr-area-coords"><a href="#attr-area-coords" id="coords_0">coords</a></code> attributes specify the - area.<p>The <dfn aria-haspopup="true" id="attr-area-shape" role="button" tabindex="0"><code>shape</code></dfn> + area.</p> + + <p>The <dfn aria-haspopup="true" id="attr-area-shape" role="button" tabindex="0"><code>shape</code></dfn> attribute is an <a href="common-microsyntaxes.html#enumerated-attribute" id="enumerated-attribute_6">enumerated attribute</a>. The following table lists the keywords defined for this attribute. The states given in the first cell of the rows with keywords give the states to - which those keywords map. <table><thead><tr><th>State + which those keywords map. </p> + + <table><thead><tr><th>State <th>Keywords <th class="removed"> <tbody><tr><td rowspan="2"><a href="#attr-area-shape-circle" id="attr-area-shape-circle_0" title="attr-area-shape-circle">Circle state</a> <td><dfn aria-haspopup="true" id="attr-area-shape-keyword-circle" role="button" tabindex="0"><code>circle</code></dfn> @@ -425,26 +475,38 @@ <td class="removed"> <tr><td class="removed"> <td class="removed"> <tr><td rowspan="2"><a href="#attr-area-shape-rect" id="attr-area-shape-rect_0" title="attr-area-shape-rect">Rectangle state</a> <td><dfn aria-haspopup="true" id="attr-area-shape-keyword-rect" role="button" tabindex="0"><code>rect</code></dfn> <td class="removed"> <tr><td class="removed"> <td class="removed"> </table><p>The attribute may be omitted. The <i>missing value default</i> is - the <a href="#attr-area-shape-rect" id="attr-area-shape-rect_1" title="attr-area-shape-rect">rectangle</a> state.<p>The <dfn aria-haspopup="true" id="attr-area-coords" role="button" tabindex="0"><code>coords</code></dfn> + the <a href="#attr-area-shape-rect" id="attr-area-shape-rect_1" title="attr-area-shape-rect">rectangle</a> state.</p> + + <p>The <dfn aria-haspopup="true" id="attr-area-coords" role="button" tabindex="0"><code>coords</code></dfn> attribute must, if specified, contain a <a href="common-microsyntaxes.html#valid-list-of-integers" id="valid-list-of-integers_0">valid list of integers</a>. This attribute gives the coordinates for the shape described by the <code title="attr-area-shape"><a href="#attr-area-shape" id="shape_2">shape</a></code> - attribute. <p>In the <dfn aria-haspopup="true" id="attr-area-shape-circle" role="button" tabindex="0">circle state</dfn>, + attribute. </p> + + + + <p>In the <dfn aria-haspopup="true" id="attr-area-shape-circle" role="button" tabindex="0">circle state</dfn>, <code><a href="#the-area-element" id="area_15">area</a></code> elements must have a <code title="attr-area-coords"><a href="#attr-area-coords" id="coords_1">coords</a></code> attribute present, with three integers, the last of which must be non-negative. The first integer must be the distance in CSS pixels from the left edge of the image to the center of the circle, the second integer must be the distance in CSS pixels from the top edge of the image to the center of the circle, and the third integer must be the radius of the circle, - again in CSS pixels.<p>In the <dfn aria-haspopup="true" id="attr-area-shape-default" role="button" tabindex="0">default state</dfn> + again in CSS pixels.</p> + + <p>In the <dfn aria-haspopup="true" id="attr-area-shape-default" role="button" tabindex="0">default state</dfn> state, <code><a href="#the-area-element" id="area_16">area</a></code> elements must not have a <code title="attr-area-coords"><a href="#attr-area-coords" id="coords_2">coords</a></code> attribute. (The area is the - whole image.)<p>In the <dfn aria-haspopup="true" id="attr-area-shape-poly" role="button" tabindex="0">polygon state</dfn>, + whole image.)</p> + + <p>In the <dfn aria-haspopup="true" id="attr-area-shape-poly" role="button" tabindex="0">polygon state</dfn>, <code><a href="#the-area-element" id="area_17">area</a></code> elements must have a <code title="attr-area-coords"><a href="#attr-area-coords" id="coords_3">coords</a></code> attribute with at least six integers, and the number of integers must be even. Each pair of integers must represent a coordinate given as the distances from the left and the top of the image in CSS pixels respectively, and all the coordinates together must represent the points of the polygon, - in order.<p>In the <dfn aria-haspopup="true" id="attr-area-shape-rect" role="button" tabindex="0">rectangle state</dfn>, + in order.</p> + + <p>In the <dfn aria-haspopup="true" id="attr-area-shape-rect" role="button" tabindex="0">rectangle state</dfn>, <code><a href="#the-area-element" id="area_18">area</a></code> elements must have a <code title="attr-area-coords"><a href="#attr-area-coords" id="coords_4">coords</a></code> attribute with exactly four integers, the first of which must be less than the third, and the second of which must be less than the fourth. The four points must @@ -452,10 +514,17 @@ image to the left side of the rectangle, the distance from the top edge to the top side, the distance from the left edge to the right side, and the distance from the top edge to the bottom side, - all in CSS pixels.<p>The <code title="attr-hyperlink-target"><a href="links.html#attr-hyperlink-target" id="target_15">target</a></code>, + all in CSS pixels.</p> + + + + <p>The <code title="attr-hyperlink-target"><a href="links.html#attr-hyperlink-target" id="target_15">target</a></code>, <code title="attr-hyperlink-rel"><a href="links.html#attr-hyperlink-rel" id="rel_16">rel</a></code>, <code title="attr-hyperlink-media"><a href="links.html#attr-hyperlink-media" id="media_11">media</a></code>, <code title="attr-hyperlink-hreflang"><a href="links.html#attr-hyperlink-hreflang" id="hreflang_4">hreflang</a></code>, and <code title="attr-hyperlink-type"><a href="links.html#attr-hyperlink-type" id="type_114">type</a></code> attributes must be omitted if the <code title="attr-hyperlink-href"><a href="links.html#attr-hyperlink-href" id="href_21">href</a></code> attribute is not present.</p> + + + <p>The IDL attributes <dfn aria-haspopup="true" id="dom-area-alt" role="button" tabindex="0"><code>alt</code></dfn>, <dfn aria-haspopup="true" id="dom-area-coords" role="button" tabindex="0"><code>coords</code></dfn>, <dfn aria-haspopup="true" id="dom-area-href" role="button" tabindex="0"><code>href</code></dfn>, <dfn aria-haspopup="true" id="dom-area-target" role="button" tabindex="0"><code>target</code></dfn>, <dfn aria-haspopup="true" id="dom-area-rel" role="button" tabindex="0"><code>rel</code></dfn>, <dfn aria-haspopup="true" id="dom-area-media" role="button" tabindex="0"><code>media</code></dfn>, <dfn aria-haspopup="true" id="dom-area-hreflang" role="button" tabindex="0"><code>hreflang</code></dfn>, and <dfn aria-haspopup="true" id="dom-area-type" role="button" tabindex="0"><code>type</code></dfn>, each must <a href="common-dom-interfaces.html#reflect" id="reflect_47">reflect</a> the respective content attributes of the same @@ -478,3 +547,8 @@ successful, or the empty string otherwise; and the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/urls.html#concept-uda-setter" title='Read about this "common setter action" reference in the full HTML5 spec.'>common setter action</a> being the same as setting the element's <code title="attr-hyperlink-href"><a href="links.html#attr-hyperlink-href" id="href_23">href</a></code> attribute to the new output value.</p> + + + + + \ No newline at end of file Index: the-datalist-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-datalist-element.html,v retrieving revision 1.133 retrieving revision 1.134 diff -u -d -r1.133 -r1.134 --- the-datalist-element.html 21 Feb 2012 21:59:03 -0000 1.133 +++ the-datalist-element.html 13 Mar 2012 19:58:56 -0000 1.134 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-select-element.html">← 4.10.9 The select element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-optgroup-element.html">4.10.11 The optgroup element →</a> </div> - <h4 id="the-datalist-element"><span class="secno">4.10.10 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>datalist</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_90" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-datalist-element"><span class="secno">4.10.10 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>datalist</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_90" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_132">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_143">Phrasing content</a>.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_90" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> @@ -372,9 +412,13 @@ content for legacy user agents, intermixed with <code><a href="the-option-element.html#the-option-element" id="option_17">option</a></code> elements that represent the predefined options. In the rendering, the <code><a href="#the-datalist-element" id="datalist_13">datalist</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> - nothing.<p>The <code><a href="#the-datalist-element" id="datalist_14">datalist</a></code> element is hooked up to an + nothing.</p> + + <p>The <code><a href="#the-datalist-element" id="datalist_14">datalist</a></code> element is hooked up to an <code><a href="the-input-element.html#the-input-element" id="input_122">input</a></code> element using the <code title="attr-input-list"><a href="common-input-element-attributes.html#attr-input-list" id="list_28">list</a></code> attribute on the - <code><a href="the-input-element.html#the-input-element" id="input_123">input</a></code> element.<p>Each <code><a href="the-option-element.html#the-option-element" id="option_18">option</a></code> element that is a descendant of the + <code><a href="the-input-element.html#the-input-element" id="input_123">input</a></code> element.</p> + + <p>Each <code><a href="the-option-element.html#the-option-element" id="option_18">option</a></code> element that is a descendant of the <code><a href="#the-datalist-element" id="datalist_15">datalist</a></code> element, that is not <a href="the-option-element.html#concept-option-disabled" id="concept-option-disabled_0" title="concept-option-disabled">disabled</a>, and whose <a href="the-option-element.html#concept-option-value" id="concept-option-value_1" title="concept-option-value">value</a> is a string that isn't the empty string, represents a suggestion. Each suggestion has a <a href="the-option-element.html#concept-option-value" id="concept-option-value_2" title="concept-option-value">value</a> and a <a href="the-option-element.html#concept-option-label" id="concept-option-label_0" title="concept-option-label">label</a>. Index: grouping-content.html =================================================================== RCS file: /sources/public/html5/spec-author-view/grouping-content.html,v retrieving revision 1.578 retrieving revision 1.579 diff -u -d -r1.578 -r1.579 --- grouping-content.html 15 Feb 2012 10:14:10 -0000 1.578 +++ grouping-content.html 13 Mar 2012 19:58:40 -0000 1.579 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,7 +380,9 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="headings-and-sections.html">← 4.4.11 Headings and sections</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-p-element.html">4.5.1 The p element →</a> @@ -365,4 +403,6 @@ <a href="the-figcaption-element.html#the-figcaption-element" id="figcaption">figcaption</a>, and <a href="the-div-element.html#the-div-element" id="div_9">div</a> - elements. \ No newline at end of file + elements.</p> + + \ No newline at end of file Index: the-mark-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-mark-element.html,v retrieving revision 1.117 retrieving revision 1.118 diff -u -d -r1.117 -r1.118 --- the-mark-element.html 21 Feb 2012 21:59:06 -0000 1.117 +++ the-mark-element.html 13 Mar 2012 19:58:59 -0000 1.118 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-u-element.html">← 4.6.18 The u element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-ruby-element.html">4.6.20 The ruby element →</a> </div> - <h4 id="the-mark-element"><span class="secno">4.6.19 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>mark</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_50" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-mark-element"><span class="secno">4.6.19 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>mark</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_50" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_89">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_83">Phrasing content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_35">Palpable content</a>.</dd> @@ -372,7 +412,9 @@ was originally written, but which is now under previously unexpected scrutiny. When used in the main prose of a document, it indicates a part of the document that has been highlighted due to its likely - relevance to the user's current activity.<div class="example"> + relevance to the user's current activity.</p> + + <div class="example"> <p>This example shows how the <code><a href="#the-mark-element" id="mark_6">mark</a></code> element can be used to bring attention to a particular part of a quotation:</p> <pre><p lang="en-US">Consider the following quote:</p> @@ -385,7 +427,9 @@ <p>(If the goal was to mark the element as misspelt, however, the <code><a href="the-u-element.html#the-u-element" id="u_7">u</a></code> element, possibly with a class, would be more appropriate.)</p> - </div><div class="example"> + </div> + + <div class="example"> <p>Another example of the <code><a href="#the-mark-element" id="mark_7">mark</a></code> element is highlighting parts of a document that are matching some search string. If @@ -397,7 +441,9 @@ these days. They're really cute. I think they like my garden! Maybe I should adopt a <mark>kitten</mark>.</p></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>In the following snippet, a paragraph of text refers to a specific part of a code fragment.</p> @@ -418,7 +464,9 @@ <span class=ident>i</span> := <span class=literal><mark>1.1</mark></span>; <span class=keyword>end</span>.</code></pre></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>This is another example showing the use of <code><a href="#the-mark-element" id="mark_8">mark</a></code> to highlight a part of quoted text that was originally not @@ -454,7 +502,9 @@ quoted, and the <code><a href="#the-mark-element" id="mark_10">mark</a></code> element, which is highlighting a part for comment.</p> - </div><div class="example"> + </div> + + <div class="example"> <p>The following example shows the difference between denoting the <em>importance</em> of a span of text (<code><a href="the-strong-element.html#the-strong-element" id="strong_12">strong</a></code>) as @@ -484,4 +534,7 @@ <p><mark>An obstruction in a gate will prevent it from accepting a wormhole connection.</mark></p></pre> - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: the-dfn-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-dfn-element.html,v retrieving revision 1.127 retrieving revision 1.128 diff -u -d -r1.127 -r1.128 --- the-dfn-element.html 21 Feb 2012 21:59:03 -0000 1.127 +++ the-dfn-element.html 13 Mar 2012 19:58:57 -0000 1.128 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-q-element.html">← 4.6.7 The q element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-abbr-element.html">4.6.9 The abbr element →</a> </div> - <h4 id="the-dfn-element"><span class="secno">4.6.8 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>dfn</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_39" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-dfn-element"><span class="secno">4.6.8 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>dfn</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_39" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_78">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_50">Phrasing content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_24">Palpable content</a>.</dd> @@ -368,7 +408,9 @@ <a href="the-dl-element.html#the-dl-element" id="dl_14" title="dl">description list group</a>, or <a href="content-models.html#sectioning-content" id="sectioning-content_20" title="sectioning content">section</a> that is the nearest ancestor of the <code><a href="#the-dfn-element" id="dfn_8">dfn</a></code> element must also contain the definition(s) for the <a href="#defining-term" id="defining-term_0" title="defining term">term</a> given - by the <code><a href="#the-dfn-element" id="dfn_9">dfn</a></code> element.<p><dfn aria-haspopup="true" id="defining-term" role="button" tabindex="0">Defining term</dfn>: If the <code><a href="#the-dfn-element" id="dfn_10">dfn</a></code> element has a + by the <code><a href="#the-dfn-element" id="dfn_9">dfn</a></code> element.</p> + + <p><dfn aria-haspopup="true" id="defining-term" role="button" tabindex="0">Defining term</dfn>: If the <code><a href="#the-dfn-element" id="dfn_10">dfn</a></code> element has a <dfn aria-haspopup="true" id="attr-dfn-title" role="button" tabindex="0"><code>title</code></dfn> attribute, then the exact value of that attribute is the term being defined. Otherwise, if it contains exactly one element child node and no @@ -376,12 +418,22 @@ element is an <code><a href="the-abbr-element.html#the-abbr-element" id="abbr_4">abbr</a></code> element with a <code title="attr-abbr-title"><a href="the-abbr-element.html#attr-abbr-title" id="title_68">title</a></code> attribute, then the exact value of <em>that</em> attribute is the term being defined. Otherwise, it is the exact <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#textcontent" title='Read about this "textContent" reference in the full HTML5 spec.'>textContent</a></code> of the <code><a href="#the-dfn-element" id="dfn_11">dfn</a></code> - element that gives the term being defined.<p>If the <code title="attr-dfn-title"><a href="#attr-dfn-title" id="title_67">title</a></code> attribute of the + element that gives the term being defined.</p> + + + + <p>If the <code title="attr-dfn-title"><a href="#attr-dfn-title" id="title_67">title</a></code> attribute of the <code><a href="#the-dfn-element" id="dfn_12">dfn</a></code> element is present, then it must contain only the - term being defined.<p class="note">The <code title="attr-title"><a href="global-attributes.html#the-title-attribute" id="title_11">title</a></code> attribute - of ancestor elements does not affect <code><a href="#the-dfn-element" id="dfn_13">dfn</a></code> elements.<p>An <code><a href="the-a-element.html#the-a-element" id="a_20">a</a></code> element that links to a <code><a href="#the-dfn-element" id="dfn_14">dfn</a></code> + term being defined.</p> + + <p class="note">The <code title="attr-title"><a href="global-attributes.html#the-title-attribute" id="title_11">title</a></code> attribute + of ancestor elements does not affect <code><a href="#the-dfn-element" id="dfn_13">dfn</a></code> elements.</p> + + <p>An <code><a href="the-a-element.html#the-a-element" id="a_20">a</a></code> element that links to a <code><a href="#the-dfn-element" id="dfn_14">dfn</a></code> element represents an instance of the term defined by the - <code><a href="#the-dfn-element" id="dfn_15">dfn</a></code> element.<div class="example"> + <code><a href="#the-dfn-element" id="dfn_15">dfn</a></code> element.</p> + + <div class="example"> <p>In the following fragment, the term "Garage Door Opener" is first defined in the first paragraph, then used in the second. In @@ -402,4 +454,8 @@ <p>Teal'c activated his <strong><a href=#gdo></strong><abbr title="Garage Door Opener">GDO</abbr><strong></a></strong> and so Hammond ordered the iris to be opened.</p></pre> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: acknowledgements.html =================================================================== RCS file: /sources/public/html5/spec-author-view/acknowledgements.html,v retrieving revision 1.1151 retrieving revision 1.1152 diff -u -d -r1.1151 -r1.1152 --- acknowledgements.html 5 Mar 2012 05:58:48 -0000 1.1151 +++ acknowledgements.html 13 Mar 2012 19:58:34 -0000 1.1152 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -343,13 +379,19 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="references.html">← References</a> – <a href="Overview.html#contents">Table of contents</a> </div> - <h2 class="no-num" id="acknowledgements">Acknowledgements</h2><!-- ACKS --><p>Thanks to Tim Berners-Lee for inventing HTML, without which none - of this would exist.<p>Thanks to + <h2 class="no-num" id="acknowledgements">Acknowledgements</h2> <!-- ACKS --> + + <p>Thanks to Tim Berners-Lee for inventing HTML, without which none + of this would exist.</p> + + <p>Thanks to Aankhen, Aaron Boodman, @@ -938,18 +980,30 @@ Øistein E. Andersen, for their useful comments, both large and small, that have led to - changes to this specification over the years.<p>Thanks also to everyone who has ever posted about HTML to their + changes to this specification over the years.</p> + + <p>Thanks also to everyone who has ever posted about HTML to their blogs, public mailing lists, or forums, including all the contributors to the <a href="http://www.w3.org/html/wg/lists/">various W3C HTML WG lists</a> and the <a href="http://www.whatwg.org/mailing-list">various WHATWG lists</a>. <p>Special thanks to Richard Williamson for creating the first implementation of <code><a href="the-canvas-element.html#the-canvas-element" id="canvas_30">canvas</a></code> in Safari, from which the - canvas feature was designed.<p>Special thanks also to the Microsoft employees who first + canvas feature was designed.</p> + + <p>Special thanks also to the Microsoft employees who first implemented the event-based drag-and-drop mechanism, <code title="attr-contenteditable"><a href="editing.html#attr-contenteditable" id="contenteditable_3">contenteditable</a></code>, and other features first widely deployed by the Windows Internet Explorer - browser.<p>Thanks to the many sources that provided inspiration for the - examples used in the specification.<p>Thanks also to the Microsoft blogging community for some ideas, + browser.</p> + + + + + <p>Thanks to the many sources that provided inspiration for the + examples used in the specification.</p> + + + <p>Thanks also to the Microsoft blogging community for some ideas, to the attendees of the W3C Workshop on Web Applications and Compound Documents for inspiration, to the #mrt crew, the #mrt.no crew, and the #whatwg crew, and to Pillar and Hedral for their ideas Index: the-header-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-header-element.html,v retrieving revision 1.119 retrieving revision 1.120 diff -u -d -r1.119 -r1.120 --- the-header-element.html 21 Feb 2012 21:59:05 -0000 1.119 +++ the-header-element.html 13 Mar 2012 19:58:58 -0000 1.120 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-hgroup-element.html">← 4.4.7 The hgroup element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-footer-element.html">4.4.9 The footer element →</a> </div> - <h4 id="the-header-element"><span class="secno">4.4.8 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>header</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_16" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-header-element"><span class="secno">4.4.8 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>header</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_16" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_33">Flow content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_6">Palpable content</a>.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_16" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> @@ -363,12 +403,16 @@ <dt><a href="element-definitions.html#element-dfn-dom" id="element-dfn-dom_16" title="element-dfn-dom">DOM interface</a>:</dt> <dd>Uses <code><a href="elements.html#htmlelement" id="htmlelement_21">HTMLElement</a></code>.</dd> </dl><p>The <code><a href="#the-header-element" id="header_5">header</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a group - of introductory or navigational aids.<p class="note">A <code><a href="#the-header-element" id="header_6">header</a></code> element is intended to usually + of introductory or navigational aids.</p> + + <p class="note">A <code><a href="#the-header-element" id="header_6">header</a></code> element is intended to usually contain the section's heading (an <code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h1_13">h1</a></code>–<code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h6_8">h6</a></code> element or an <code><a href="the-hgroup-element.html#the-hgroup-element" id="hgroup_21">hgroup</a></code> element), but this is not required. The <code><a href="#the-header-element" id="header_7">header</a></code> element can also be used to wrap a section's - table of contents, a search form, or any relevant logos.<div class="example"> + table of contents, a search form, or any relevant logos.</p> + + <div class="example"> <p>Here are some sample headers. This first one is for a game:</p> @@ -402,9 +446,13 @@ <p class="copyright"><a href="http://www.w3.org/Consortium/Legal/ipr-notic <em>...</em> </header></pre> - </div><p class="note">The <code><a href="#the-header-element" id="header_8">header</a></code> element is not + </div> + + <p class="note">The <code><a href="#the-header-element" id="header_8">header</a></code> element is not <a href="content-models.html#sectioning-content" id="sectioning-content_8">sectioning content</a>; it doesn't introduce a new - section.<div class="example"> + section.</p> + + <div class="example"> <p>In this example, the page has a page heading given by the <code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h1_14">h1</a></code> element, and two subsections whose headings are @@ -433,4 +481,9 @@ <!-- this is still part of the subsection entitled "Games" --> ...</pre> - </div> \ No newline at end of file + </div> + + + + + \ No newline at end of file Index: elements.html =================================================================== RCS file: /sources/public/html5/spec-author-view/elements.html,v retrieving revision 1.619 retrieving revision 1.620 diff -u -d -r1.619 -r1.620 --- elements.html 21 Feb 2012 21:58:42 -0000 1.619 +++ elements.html 13 Mar 2012 19:58:38 -0000 1.620 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,21 +380,31 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="dom.html">← 3 Semantics, structure, and APIs of HTML documents</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="global-attributes.html">3.2.3 Global attributes →</a> <ol class="toc"><li><ol><li><a href="elements.html#elements"><span class="secno">3.2 </span>Elements</a> <ol><li><a href="elements.html#semantics-0"><span class="secno">3.2.1 </span>Semantics</a><li><a href="elements.html#elements-in-the-dom"><span class="secno">3.2.2 </span>Elements in the DOM</a></ol></ol></ol></div> - <h3 id="elements"><span class="secno">3.2 </span>Elements</h3><h4 id="semantics-0"><span class="secno">3.2.1 </span>Semantics</h4><p>Elements, attributes, and attribute values in HTML are defined + <h3 id="elements"><span class="secno">3.2 </span>Elements</h3> + + <h4 id="semantics-0"><span class="secno">3.2.1 </span>Semantics</h4> + + <p>Elements, attributes, and attribute values in HTML are defined (by this specification) to have certain meanings (semantics). For example, the <code><a href="the-ol-element.html#the-ol-element" id="ol">ol</a></code> element represents an ordered list, and the <code title="attr-lang"><a href="global-attributes.html#attr-lang" id="lang_0">lang</a></code> attribute represents the - language of the content.<p>These definitions allow HTML processors, such as Web browsers or + language of the content.</p> + + <p>These definitions allow HTML processors, such as Web browsers or search engines, to present and use documents and applications in a wide variety of contexts that the author might not have - considered.<div class="example"> + considered.</p> + + <div class="example"> <p>As a simple example, consider a Web page written by an author who only considered desktop computer Web browsers. Because HTML @@ -393,10 +439,14 @@ <p>This example has focused on headings, but the same principle applies to all of the semantics in HTML.</p> - </div><p>Authors must not use elements, attributes, or attribute values + </div> + + <p>Authors must not use elements, attributes, or attribute values for purposes other than their appropriate intended semantic purpose, as doing so prevents software from correctly processing the - page.<div class="example"> + page.</p> + + <div class="example"> <p>For example, the following document is non-conforming, despite being syntactically correct:</p> @@ -442,7 +492,9 @@ </body> </html></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>This next document fragment, intended to represent the heading of a corporate site, is similarly non-conforming because the second @@ -465,10 +517,14 @@ </hgroup> ...</pre> - </div><p>Authors must not use elements, attributes, or attribute values + </div> + + <p>Authors must not use elements, attributes, or attribute values that are not permitted by this specification or <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#other-applicable-specifications" title='Read about this "other applicable specifications" reference in the full HTML5 spec.'>other applicable specifications</a>, as doing so makes it significantly - harder for the language to be extended in the future.<div class="example"> + harder for the language to be extended in the future.</p> + + <div class="example"> <p>In the next example, there is a non-conforming attribute value ("carpet") and a non-conforming attribute ("texture"), which @@ -480,26 +536,45 @@ <pre><label>Carpet: <input type="text" class="carpet" name="c" data-texture="deep pile"></label></pre> - </div><p>Through scripting and using other mechanisms, the values of + </div> + + <p>Through scripting and using other mechanisms, the values of attributes, text, and indeed the entire structure of the document may change dynamically while a user agent is processing it. The semantics of a document at an instant in time are those represented by the state of the document at that instant in time, and the semantics of a document can therefore change over time. User agents update their presentation of the - document as this occurs.<p class="example">HTML has a <code><a href="the-progress-element.html#the-progress-element" id="progress_2">progress</a></code> element that + document as this occurs.</p> + + <p class="example">HTML has a <code><a href="the-progress-element.html#the-progress-element" id="progress_2">progress</a></code> element that describes a progress bar. If its "value" attribute is dynamically updated by a script, the UA would update the rendering to show the - progress changing.<h4 id="elements-in-the-dom"><span class="secno">3.2.2 </span>Elements in the DOM</h4><p>The nodes representing <a href="infrastructure.html#html-elements" id="html-elements_0">HTML elements</a> in the DOM + progress changing.</p> + + + + + <h4 id="elements-in-the-dom"><span class="secno">3.2.2 </span>Elements in the DOM</h4> + + <p>The nodes representing <a href="infrastructure.html#html-elements" id="html-elements_0">HTML elements</a> in the DOM implement, and expose to scripts, the interfaces listed for them in the relevant sections of this specification. This includes <a href="infrastructure.html#html-elements" id="html-elements_1">HTML elements</a> in <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#xml-documents" title='Read about this "XML documents" reference in the full HTML5 spec.'>XML documents</a>, even when those documents are in another context - (e.g. inside an XSLT transform).<p>Elements in the DOM <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represent" reference in the full HTML5 spec.'>represent</a> + (e.g. inside an XSLT transform).</p> + + <p>Elements in the DOM <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represent" reference in the full HTML5 spec.'>represent</a> things; that is, they have intrinsic <em>meaning</em>, also known as - semantics.<p class="example">For example, an <code><a href="the-ol-element.html#the-ol-element" id="ol_0">ol</a></code> element - represents an ordered list.<p>The basic interface, from which all the <a href="infrastructure.html#html-elements" id="html-elements_2">HTML - elements</a>' interfaces inherit, is the <code><a href="#htmlelement" id="htmlelement_2">HTMLElement</a></code> interface.<pre class="idl">interface <dfn aria-haspopup="true" id="htmlelement" role="button" tabindex="0">HTMLElement</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#element" title='Read about this "Element" reference in the full HTML5 spec.'>Element</a> { + semantics.</p> + + <p class="example">For example, an <code><a href="the-ol-element.html#the-ol-element" id="ol_0">ol</a></code> element + represents an ordered list.</p> + + <p>The basic interface, from which all the <a href="infrastructure.html#html-elements" id="html-elements_2">HTML + elements</a>' interfaces inherit, is the <code><a href="#htmlelement" id="htmlelement_2">HTMLElement</a></code> interface.</p> + + <pre class="idl">interface <dfn aria-haspopup="true" id="htmlelement" role="button" tabindex="0">HTMLElement</dfn> : <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#element" title='Read about this "Element" reference in the full HTML5 spec.'>Element</a> { // <span>metadata attributes</span> attribute DOMString <a href="global-attributes.html#dom-title" id="dom-title_0" title="dom-title">title</a>; attribute DOMString <a href="global-attributes.html#dom-lang" id="dom-lang_0" title="dom-lang">lang</a>; @@ -591,7 +666,15 @@ [TreatNonCallableAsNull] attribute <a href="webappapis.html#function" id="function_106">Function</a>? <a href="index.html#ix-handler-onwaiting" title="handler-onwaiting">onwaiting</a>; }; -interface <dfn aria-haspopup="true" id="htmlunknownelement" role="button" tabindex="0">HTMLUnknownElement</dfn> : <a href="#htmlelement" id="htmlelement_3">HTMLElement</a> { };</pre><p>The <code><a href="#htmlelement" id="htmlelement_4">HTMLElement</a></code> interface holds methods and +interface <dfn aria-haspopup="true" id="htmlunknownelement" role="button" tabindex="0">HTMLUnknownElement</dfn> : <a href="#htmlelement" id="htmlelement_3">HTMLElement</a> { };</pre> + + <p>The <code><a href="#htmlelement" id="htmlelement_4">HTMLElement</a></code> interface holds methods and attributes related to a number of disparate features, and the members of this interface are therefore described in various - different sections of this specification. \ No newline at end of file + different sections of this specification.</p> + + + + + + \ No newline at end of file Index: the-sub-and-sup-elements.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-sub-and-sup-elements.html,v retrieving revision 1.117 retrieving revision 1.118 diff -u -d -r1.117 -r1.118 --- the-sub-and-sup-elements.html 21 Feb 2012 21:59:08 -0000 1.117 +++ the-sub-and-sup-elements.html 13 Mar 2012 19:59:01 -0000 1.118 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-kbd-element.html">← 4.6.14 The kbd element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-i-element.html">4.6.16 The i element →</a> </div> - <h4 id="the-sub-and-sup-elements"><span class="secno">4.6.15 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>sub</code></dfn> and <dfn aria-haspopup="true" role="button" tabindex="0"><code>sup</code></dfn> elements</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_46" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-sub-and-sup-elements"><span class="secno">4.6.15 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>sub</code></dfn> and <dfn aria-haspopup="true" role="button" tabindex="0"><code>sup</code></dfn> elements</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_46" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_85">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_71">Phrasing content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_31">Palpable content</a>.</dd> @@ -364,20 +404,30 @@ <dd>Use <code><a href="elements.html#htmlelement" id="htmlelement_50">HTMLElement</a></code>.</dd> </dl><p>The <code><a href="#the-sub-and-sup-elements" id="sup_2">sup</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a superscript and the <code><a href="#the-sub-and-sup-elements" id="sub_2">sub</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> - a subscript.<p>These elements must be used only to mark up typographical + a subscript.</p> + + <p>These elements must be used only to mark up typographical conventions with specific meanings, not for typographical presentation for presentation's sake. For example, it would be inappropriate for the <code><a href="#the-sub-and-sup-elements" id="sub_3">sub</a></code> and <code><a href="#the-sub-and-sup-elements" id="sup_3">sup</a></code> elements to be used in the name of the LaTeX document preparation system. In general, authors should use these elements only if the <em>absence</em> of those elements would change the meaning of the - content.<p>In certain languages, superscripts are part of the typographical - conventions for some abbreviations.<div class="example"> + content.</p> + + <p>In certain languages, superscripts are part of the typographical + conventions for some abbreviations.</p> + + <div class="example"> <pre><p>The most beautiful women are <span lang="fr"><abbr>M<sup>lle</sup></abbr> Gwendoline</span> and <span lang="fr"><abbr>M<sup>me</sup></abbr> Denise</span>.</p></pre> - </div><p>The <code><a href="#the-sub-and-sup-elements" id="sub_4">sub</a></code> element can be used inside a - <code><a href="the-var-element.html#the-var-element" id="var_6">var</a></code> element, for variables that have subscripts.<div class="example"> + </div> + + <p>The <code><a href="#the-sub-and-sup-elements" id="sub_4">sub</a></code> element can be used inside a + <code><a href="the-var-element.html#the-var-element" id="var_6">var</a></code> element, for variables that have subscripts.</p> + + <div class="example"> <p>Here, the <code><a href="#the-sub-and-sup-elements" id="sub_5">sub</a></code> element is used to represents the subscript that identifies the variable in a family of @@ -387,10 +437,18 @@ (<var>x<sub><var>i</var></sub></var>, <var>y<sub><var>i</var></sub></var>). For example, the 10th point has coordinate (<var>x<sub>10</sub></var>, <var>y<sub>10</sub></var>).</p></pre> - </div><p>Mathematical expressions often use subscripts and superscripts. + </div> + + <p>Mathematical expressions often use subscripts and superscripts. Authors are encouraged to use MathML for marking up mathematics, but authors may opt to use <code><a href="#the-sub-and-sup-elements" id="sub_6">sub</a></code> and <code><a href="#the-sub-and-sup-elements" id="sup_4">sup</a></code> if - detailed mathematical markup is not desired. <a href="references.html#refsMATHML">[MATHML]</a><div class="example"> + detailed mathematical markup is not desired. <a href="references.html#refsMATHML">[MATHML]</a></p> + + <div class="example"> <pre><var>E</var>=<var>m</var><var>c</var><sup>2</sup></pre> <pre>f(<var>x</var>, <var>n</var>) = log<sub>4</sub><var>x</var><sup><var>n</var></sup></pre> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: the-i-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-i-element.html,v retrieving revision 1.118 retrieving revision 1.119 diff -u -d -r1.118 -r1.119 --- the-i-element.html 21 Feb 2012 21:59:05 -0000 1.118 +++ the-i-element.html 13 Mar 2012 19:58:58 -0000 1.119 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-sub-and-sup-elements.html">← 4.6.15 The sub and sup elements</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-b-element.html">4.6.17 The b element →</a> </div> - <h4 id="the-i-element"><span class="secno">4.6.16 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>i</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_47" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-i-element"><span class="secno">4.6.16 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>i</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_47" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_86">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_74">Phrasing content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_32">Palpable content</a>.</dd> @@ -366,10 +406,14 @@ in an alternate voice or mood, or otherwise offset from the normal prose in a manner indicating a different quality of text, such as a taxonomic designation, a technical term, an idiomatic phrase from - another language, a thought, or a ship name in Western texts.<p>Terms in languages different from the main text should be + another language, a thought, or a ship name in Western texts.</p> + + <p>Terms in languages different from the main text should be annotated with <code title="attr-lang"><a href="global-attributes.html#attr-lang" id="lang_8">lang</a></code> attributes (or, in XML, <a href="global-attributes.html#attr-xml-lang" id="attr-xml-lang_4" title="attr-xml-lang"><code title="">lang</code> - attributes in the <span>XML namespace</span></a>).<div class="example"> + attributes in the <span>XML namespace</span></a>).</p> + + <div class="example"> <p>The examples below show uses of the <code><a href="#the-i-element" id="i_17">i</a></code> element:</p> <pre><p>The <i class="taxonomy">Felis silvestris catus</i> is cute.</p> <p>The term <i>prose content</i> is defined above.</p> @@ -384,16 +428,25 @@ <p><i>Finally one night he picked up the courage to speak with her—</i></p> <p>Raymond woke with a start as the fire alarm rang out.</p></pre> - </div><p>Authors can use the <code title="attr-class"><a href="global-attributes.html#classes" id="class_6">class</a></code> + </div> + + <p>Authors can use the <code title="attr-class"><a href="global-attributes.html#classes" id="class_6">class</a></code> attribute on the <code><a href="#the-i-element" id="i_19">i</a></code> element to identify why the element is being used, so that if the style of a particular use (e.g. dream sequences as opposed to taxonomic terms) is to be changed at a later date, the author doesn't have to go through the entire document (or - series of related documents) annotating each use.<p>Authors are encouraged to consider whether other elements might + series of related documents) annotating each use.</p> + + <p>Authors are encouraged to consider whether other elements might be more applicable than the <code><a href="#the-i-element" id="i_20">i</a></code> element, for instance the <code><a href="the-em-element.html#the-em-element" id="em_9">em</a></code> element for marking up stress emphasis, or the <code><a href="the-dfn-element.html#the-dfn-element" id="dfn_16">dfn</a></code> element to mark up the defining instance of a - term.<p class="note">Style sheets can be used to format <code><a href="#the-i-element" id="i_21">i</a></code> + term.</p> + + <p class="note">Style sheets can be used to format <code><a href="#the-i-element" id="i_21">i</a></code> elements, just like any other element can be restyled. Thus, it is not the case that content in <code><a href="#the-i-element" id="i_22">i</a></code> elements will - necessarily be italicized. \ No newline at end of file + necessarily be italicized.</p> + + + \ No newline at end of file Index: forms.html =================================================================== RCS file: /sources/public/html5/spec-author-view/forms.html,v retrieving revision 1.1148 retrieving revision 1.1149 diff -u -d -r1.1148 -r1.1149 --- forms.html 15 Feb 2012 10:14:04 -0000 1.1148 +++ forms.html 13 Mar 2012 19:58:38 -0000 1.1149 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,7 +380,9 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="examples.html">← 4.9.12 Examples</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-form-element.html">4.10.3 The form element →</a> @@ -352,18 +390,35 @@ <ol><li><a href="forms.html#introduction-1"><span class="secno">4.10.1 </span>Introduction</a> <ol><li><a href="forms.html#writing-a-form-s-user-interface"><span class="secno">4.10.1.1 </span>Writing a form's user interface</a><li><a href="forms.html#implementing-the-server-side-processing-for-a-form"><span class="secno">4.10.1.2 </span>Implementing the server-side processing for a form</a><li><a href="forms.html#configuring-a-form-to-communicate-with-a-server"><span class="secno">4.10.1.3 </span>Configuring a form to communicate with a server</a><li><a href="forms.html#client-side-form-validation"><span class="secno">4.10.1.4 </span>Client-side form validation</a><li><a href="forms.html#input-author-notes"><span class="secno">4.10.1.5 </span>Date, time, and number formats</a></ol><li><a href="forms.html#categories"><span class="secno">4.10.2 </span>Categories</a></ol></ol></ol></div> - <h3 id="forms"><span class="secno">4.10 </span>Forms</h3><h4 id="introduction-1"><span class="secno">4.10.1 </span>Introduction</h4><p>A form is a component of a Web page that has form controls, such + <h3 id="forms"><span class="secno">4.10 </span>Forms</h3> + + <h4 id="introduction-1"><span class="secno">4.10.1 </span>Introduction</h4> + + + + <p>A form is a component of a Web page that has form controls, such as text fields, buttons, checkboxes, range controls, or color pickers. A user can interact with such a form, providing data that can then be sent to the server for further processing (e.g. returning the results of a search or calculation). No client-side scripting is needed in many cases, though an API is available so that scripts can augment the user experience or use forms for - purposes other than submitting data to a server.<p>Writing a form consists of several steps, which can be performed + purposes other than submitting data to a server.</p> + + <p>Writing a form consists of several steps, which can be performed in any order: writing the user interface, implementing the server-side processing, and configuring the user interface to - communicate with the server.<h5 id="writing-a-form-s-user-interface"><span class="secno">4.10.1.1 </span>Writing a form's user interface</h5><p>For the purposes of this brief introduction, we will create a - pizza ordering form.<p>Any form starts with a <code><a href="the-form-element.html#the-form-element" id="form_12">form</a></code> element, inside which + communicate with the server.</p> + + + <h5 id="writing-a-form-s-user-interface"><span class="secno">4.10.1.1 </span>Writing a form's user interface</h5> + + + + <p>For the purposes of this brief introduction, we will create a + pizza ordering form.</p> + + <p>Any form starts with a <code><a href="the-form-element.html#the-form-element" id="form_12">form</a></code> element, inside which are placed the controls. Most controls are represented by the <code><a href="the-input-element.html#the-input-element" id="input_47">input</a></code> element, which by default provides a one-line text field. To label a control, the <code><a href="the-label-element.html#the-label-element" id="label_10">label</a></code> element is @@ -371,9 +426,13 @@ <code><a href="the-label-element.html#the-label-element" id="label_11">label</a></code> element. Each part of a form is considered a <a href="content-models.html#paragraph" id="paragraph_19">paragraph</a>, and is typically separated from other parts using <code><a href="the-p-element.html#the-p-element" id="p_26">p</a></code> elements. Putting this together, here is how - one might ask for the customer's name:<pre><strong><form> + one might ask for the customer's name:</p> + + <pre><strong><form> <p><label>Customer name: <input></label></p> -</form></strong></pre><p>To let the user select the size of the pizza, we can use a set of +</form></strong></pre> + + <p>To let the user select the size of the pizza, we can use a set of radio buttons. Radio buttons also use the <code><a href="the-input-element.html#the-input-element" id="input_48">input</a></code> element, this time with a <code title="attr-input-type"><a href="the-input-element.html#attr-input-type" id="type_62">type</a></code> attribute with the value <code title="attr-input-type-radio"><a href="states-of-the-type-attribute.html#radio-button-state-type-radio" id="radio_0">radio</a></code>. To make the radio @@ -383,7 +442,9 @@ can use the <code><a href="the-fieldset-element.html#the-fieldset-element" id="fieldset_5">fieldset</a></code> element. The title of such a group of controls is given by the first element in the <code><a href="the-fieldset-element.html#the-fieldset-element" id="fieldset_6">fieldset</a></code>, which has to be a <code><a href="the-legend-element.html#the-legend-element" id="legend">legend</a></code> - element.<pre><form> + element.</p> + + <pre><form> <p><label>Customer name: <input></label></p> <strong> <fieldset> <legend> Pizza Size </legend> @@ -391,8 +452,14 @@ <p><label> <input type=radio name=size> Medium </label></p> <p><label> <input type=radio name=size> Large </label></p> </fieldset></strong> -</form></pre><p class="note">Changes from the previous step are highlighted.<p>To pick toppings, we can use checkboxes. These use the - <code><a href="the-input-element.html#the-input-element" id="input_49">input</a></code> element with a <code title="attr-input-type"><a href="the-input-element.html#attr-input-type" id="type_63">type</a></code> attribute with the value <code title="attr-input-type-checkbox"><a href="states-of-the-type-attribute.html#checkbox-state-type-checkbox" id="checkbox">checkbox</a></code>:<pre><form> +</form></pre> + + <p class="note">Changes from the previous step are highlighted.</p> + + <p>To pick toppings, we can use checkboxes. These use the + <code><a href="the-input-element.html#the-input-element" id="input_49">input</a></code> element with a <code title="attr-input-type"><a href="the-input-element.html#attr-input-type" id="type_63">type</a></code> attribute with the value <code title="attr-input-type-checkbox"><a href="states-of-the-type-attribute.html#checkbox-state-type-checkbox" id="checkbox">checkbox</a></code>:</p> + + <pre><form> <p><label>Customer name: <input></label></p> <fieldset> <legend> Pizza Size </legend> @@ -407,11 +474,15 @@ <p><label> <input type=checkbox> Onion </label></p> <p><label> <input type=checkbox> Mushroom </label></p> </fieldset></strong> -</form></pre><p>The pizzeria for which this form is being written is always +</form></pre> + + <p>The pizzeria for which this form is being written is always making mistakes, so it needs a way to contact the customer. For this purpose, we can use form controls specifically for telephone numbers (<code><a href="the-input-element.html#the-input-element" id="input_50">input</a></code> elements with their <code title="attr-input-type"><a href="the-input-element.html#attr-input-type" id="type_64">type</a></code> attribute set to <code title="attr-input-type-tel"><a href="states-of-the-type-attribute.html#telephone-state-type-tel" id="tel">tel</a></code>) and e-mail addresses - (<code><a href="the-input-element.html#the-input-element" id="input_51">input</a></code> elements with their <code title="attr-input-type"><a href="the-input-element.html#attr-input-type" id="type_65">type</a></code> attribute set to <code title="attr-input-type-email"><a href="states-of-the-type-attribute.html#e-mail-state-type-email" id="email">email</a></code>):<pre><form> + (<code><a href="the-input-element.html#the-input-element" id="input_51">input</a></code> elements with their <code title="attr-input-type"><a href="the-input-element.html#attr-input-type" id="type_65">type</a></code> attribute set to <code title="attr-input-type-email"><a href="states-of-the-type-attribute.html#e-mail-state-type-email" id="email">email</a></code>):</p> + + <pre><form> <p><label>Customer name: <input></label></p> <strong> <p><label>Telephone: <input type=tel></label></p> <p><label>E-mail address: <input type=email></label></p></strong> @@ -428,7 +499,9 @@ <p><label> <input type=checkbox> Onion </label></p> <p><label> <input type=checkbox> Mushroom </label></p> </fieldset> -</form></pre><p>We can use an <code><a href="the-input-element.html#the-input-element" id="input_52">input</a></code> element with its <code title="attr-input-type"><a href="the-input-element.html#attr-input-type" id="type_66">type</a></code> attribute set to <code title="attr-input-type-time"><a href="states-of-the-type-attribute.html#time-state-type-time" id="time_20">time</a></code> to ask for a delivery +</form></pre> + + <p>We can use an <code><a href="the-input-element.html#the-input-element" id="input_52">input</a></code> element with its <code title="attr-input-type"><a href="the-input-element.html#attr-input-type" id="type_66">type</a></code> attribute set to <code title="attr-input-type-time"><a href="states-of-the-type-attribute.html#time-state-type-time" id="time_20">time</a></code> to ask for a delivery time. Many of these form controls have attributes to control exactly what values can be specified; in this case, three attributes of particular interest are <code title="attr-input-min"><a href="common-input-element-attributes.html#attr-input-min" id="min">min</a></code>, @@ -436,7 +509,9 @@ maximum time, and the interval between allowed values (in seconds). This pizzeria only delivers between 11am and 9pm, and doesn't promise anything better than 15 minute increments, which we - can mark up as follows:<pre><form> + can mark up as follows:</p> + + <pre><form> <p><label>Customer name: <input></label></p> <p><label>Telephone: <input type=tel></label></p> <p><label>E-mail address: <input type=email></label></p> @@ -454,9 +529,13 @@ <p><label> <input type=checkbox> Mushroom </label></p> </fieldset> <strong> <p><label>Preferred delivery time: <input type=time min="11:00" max="21:00" step="900"></label></p></strong> -</form></pre><p>The <code><a href="the-textarea-element.html#the-textarea-element" id="textarea_20">textarea</a></code> element can be used to provide a +</form></pre> + + <p>The <code><a href="the-textarea-element.html#the-textarea-element" id="textarea_20">textarea</a></code> element can be used to provide a free-form text field. In this instance, we are going to use it to - provide a space for the customer to give delivery instructions:<pre><form> + provide a space for the customer to give delivery instructions:</p> + + <pre><form> <p><label>Customer name: <input></label></p> <p><label>Telephone: <input type=tel></label></p> <p><label>E-mail address: <input type=email></label></p> @@ -475,8 +554,12 @@ </fieldset> <p><label>Preferred delivery time: <input type=time min="11:00" max="21:00" step="900"></label></p> <strong> <p><label>Delivery instructions: <textarea></textarea></label></p></strong> -</form></pre><p>Finally, to make the form submittable we use the - <code><a href="the-button-element.html#the-button-element" id="button_9">button</a></code> element:<pre><form> +</form></pre> + + <p>Finally, to make the form submittable we use the + <code><a href="the-button-element.html#the-button-element" id="button_9">button</a></code> element:</p> + + <pre><form> <p><label>Customer name: <input></label></p> <p><label>Telephone: <input type=tel></label></p> <p><label>E-mail address: <input type=email></label></p> @@ -496,12 +579,21 @@ <p><label>Preferred delivery time: <input type=time min="11:00" max="21:00" step="900"></label></p> <p><label>Delivery instructions: <textarea></textarea></label></p> <strong> <p><button>Submit order</button></p></strong> -</form></pre><h5 id="implementing-the-server-side-processing-for-a-form"><span class="secno">4.10.1.2 </span>Implementing the server-side processing for a form</h5><p>The exact details for writing a server-side processor are out of +</form></pre> + + + <h5 id="implementing-the-server-side-processing-for-a-form"><span class="secno">4.10.1.2 </span>Implementing the server-side processing for a form</h5> + + + + <p>The exact details for writing a server-side processor are out of scope for this specification. For the purposes of this introduction, we will assume that the script at <code title="">https://pizza.example.com/order.cgi</code> is configured to accept submissions using the <code title="attr-fs-enctype-urlencoded"><a href="attributes-common-to-form-controls.html#attr-fs-enctype-urlencoded" id="application/x-www-form-urlencoded">application/x-www-form-urlencoded</a></code> format, expecting the following parameters sent in an HTTP POST - body:<dl><dt><code title="">custname</code></dt> + body:</p> + + <dl><dt><code title="">custname</code></dt> <dd>Customer's name</dd> <dt><code title="">custtel</code></dt> @@ -522,25 +614,37 @@ <dt><code title="">comments</code></dt> <dd>The delivery instructions</dd> - </dl><h5 id="configuring-a-form-to-communicate-with-a-server"><span class="secno">4.10.1.3 </span>Configuring a form to communicate with a server</h5><p>Form submissions are exposed to servers in a variety of ways, + </dl><h5 id="configuring-a-form-to-communicate-with-a-server"><span class="secno">4.10.1.3 </span>Configuring a form to communicate with a server</h5> + + + + <p>Form submissions are exposed to servers in a variety of ways, most commonly as HTTP GET or POST requests. To specify the exact method used, the <code title="attr-fs-method"><a href="attributes-common-to-form-controls.html#attr-fs-method" id="method">method</a></code> attribute is specified on the <code><a href="the-form-element.html#the-form-element" id="form_13">form</a></code> element. This doesn't specify how the form data is encoded, though; to specify that, you use the <code title="attr-fs-enctype"><a href="attributes-common-to-form-controls.html#attr-fs-enctype" id="enctype">enctype</a></code> attribute. You also have to specify the <a href="urls.html#url" id="url_15">URL</a> of the - service that will handle the submitted data, using the <code title="attr-fs-action"><a href="attributes-common-to-form-controls.html#attr-fs-action" id="action">action</a></code> attribute.<p>For each form control you want submitted, you then have to give a + service that will handle the submitted data, using the <code title="attr-fs-action"><a href="attributes-common-to-form-controls.html#attr-fs-action" id="action">action</a></code> attribute.</p> + + <p>For each form control you want submitted, you then have to give a name that will be used to refer to the data in the submission. We already specified the name for the group of radio buttons; the same attribute (<code title="attr-fe-name"><a href="attributes-common-to-form-controls.html#attr-fe-name" id="name_25">name</a></code>) also specifies the submission name. Radio buttons can be distinguished from each other in the submission by giving them different values, using the - <code title="attr-input-value"><a href="the-input-element.html#attr-input-value" id="value_5">value</a></code> attribute.<p>Multiple controls can have the same name; for example, here we + <code title="attr-input-value"><a href="the-input-element.html#attr-input-value" id="value_5">value</a></code> attribute.</p> + + <p>Multiple controls can have the same name; for example, here we give all the checkboxes the same name, and the server distinguishes which checkbox was checked by seeing which values are submitted with that name — like the radio buttons, they are also given unique values with the <code title="attr-input-value"><a href="the-input-element.html#attr-input-value" id="value_6">value</a></code> - attribute.<p>Given the settings in the previous section, this all becomes:<pre><form<strong> method="post" + attribute.</p> + + <p>Given the settings in the previous section, this all becomes:</p> + + <pre><form<strong> method="post" enctype="application/x-www-form-urlencoded" action="https://pizza.example.com/order.cgi"</strong>> <p><label>Customer name: <input<strong> name="custname"</strong>></label></p> @@ -562,22 +666,38 @@ <p><label>Preferred delivery time: <input type=time min="11:00" max="21:00" step="900"<strong> name="delivery"</strong>></label></p> <p><label>Delivery instructions: <textarea<strong> name="comments"</strong>></textarea></label></p> <p><button>Submit order</button></p> -</form></pre><p>For example, if the customer entered "Denise Lawrence" as their +</form></pre> + + <p>For example, if the customer entered "Denise Lawrence" as their name, "555-321-8642" as their telephone number, did not specify an e-mail address, asked for a medium-sized pizza, selected the Extra Cheese and Mushroom toppings, entered a delivery time of 7pm, and left the delivery instructions text field blank, the user agent - would submit the following to the online Web service:<pre>custname=Denise+Lawrence&custtel=555-321-8624&custemail=&size=medium&topping=cheese&topping=mushroom&delivery=19%3A00&comments=</pre><h5 id="client-side-form-validation"><span class="secno">4.10.1.4 </span>Client-side form validation</h5><p>Forms can be annotated in such a way that the user agent will + would submit the following to the online Web service:</p> + + <pre>custname=Denise+Lawrence&custtel=555-321-8624&custemail=&size=medium&topping=cheese&topping=mushroom&delivery=19%3A00&comments=</pre> + + + + <h5 id="client-side-form-validation"><span class="secno">4.10.1.4 </span>Client-side form validation</h5> + + + + <p>Forms can be annotated in such a way that the user agent will check the user's input before the form is submitted. The server still has to verify the input is valid (since hostile users can easily bypass the form validation), but it allows the user to avoid the wait incurred by having the server be the sole checker of the - user's input.<p>The simplest annotation is the <code title="attr-input-required"><a href="common-input-element-attributes.html#attr-input-required" id="required">required</a></code> attribute, which can be + user's input.</p> + + <p>The simplest annotation is the <code title="attr-input-required"><a href="common-input-element-attributes.html#attr-input-required" id="required">required</a></code> attribute, which can be specified on <code><a href="the-input-element.html#the-input-element" id="input_53">input</a></code> elements to indicate that the form is not to be submitted until a value is given. By adding this attribute to the customer name and delivery time fields, we allow the user agent to notify the user when the user submits the form - without filling in those fields:<pre><form method="post" + without filling in those fields:</p> + + <pre><form method="post" enctype="application/x-www-form-urlencoded" action="https://pizza.example.com/order.cgi"> <p><label>Customer name: <input name="custname"<strong> required</strong>></label></p> @@ -599,12 +719,16 @@ <p><label>Preferred delivery time: <input type=time min="11:00" max="21:00" step="900" name="delivery"<strong> required</strong>></label></p> <p><label>Delivery instructions: <textarea name="comments"></textarea></label></p> <p><button>Submit order</button></p> -</form></pre><p>It is also possible to limit the length of the input, using the +</form></pre> + + <p>It is also possible to limit the length of the input, using the <code title="attr-fe-maxlength"><a href="attributes-common-to-form-controls.html#attr-fe-maxlength" id="maxlength">maxlength</a></code> attribute. By adding this to the <code><a href="the-textarea-element.html#the-textarea-element" id="textarea_21">textarea</a></code> element, we can limit users to 1000 characters, preventing them from writing huge essays to the busy delivery drivers instead of staying focused and to the - point:<pre><form method="post" + point:</p> + + <pre><form method="post" enctype="application/x-www-form-urlencoded" action="https://pizza.example.com/order.cgi"> <p><label>Customer name: <input name="custname" required></label></p> @@ -626,44 +750,75 @@ <p><label>Preferred delivery time: <input type=time min="11:00" max="21:00" step="900" name="delivery" required></label></p> <p><label>Delivery instructions: <textarea name="comments"<strong> maxlength=1000</strong>></textarea></label></p> <p><button>Submit order</button></p> -</form></pre><h5 id="input-author-notes"><span class="secno">4.10.1.5 </span>Date, time, and number formats</h5><p>In this pizze delivery example, the times are specified in the +</form></pre> + + + <h5 id="input-author-notes"><span class="secno">4.10.1.5 </span>Date, time, and number formats</h5> + + + + <p>In this pizze delivery example, the times are specified in the format "HH:MM": two digits for the hour, in 24-hour format, and two digits for the time. (Seconds could also be specified, though they - are not necessary in this example.)<p>In some locales, however, times are often expressed differently + are not necessary in this example.)</p> + + <p>In some locales, however, times are often expressed differently when presented to users. For example, in the United States, it is still common to use the 12-hour clock with an am/pm indicator, as in "2pm". In France, it is common to separate the hours from the - minutes using an "h" character, as in "14h00".<p>Similar issues exist with dates, with the added complication that + minutes using an "h" character, as in "14h00".</p> + + <p>Similar issues exist with dates, with the added complication that even the order of the components is not always consistent — for example, in Cyprus the first of February 2003 would typically be written "1/2/03", while that same date in Japan would typically be written as "2003年02月01日" — and even with numbers, where locales differ, for example, in what punctuation is - used as the decimal separator and the thousands separator.<p>It therefore is important to distinguish the time, date, and + used as the decimal separator and the thousands separator.</p> + + <p>It therefore is important to distinguish the time, date, and number formats used in HTML and in form submissions, which are always the formats defined in this specification (and based on the well-established ISO 8601 standard for computer-readable date and time formats), from the time, date, and number formats presented to the user by the browser and accepted as input from the user by the - browser.<p>The format used "on the wire", i.e. in HTML markup and in form + browser.</p> + + <p>The format used "on the wire", i.e. in HTML markup and in form submissions, is intended to be computer-readable and consistent irrespective of the user's locale. Dates, for instance, are always written in the format "YYYY-MM-DD", as in "2003-02-01". Users are - not expected to ever see this format.<p>The time, date, or number given by the page in the wire format is + not expected to ever see this format.</p> + + <p>The time, date, or number given by the page in the wire format is then translated to the user's preferred presentation (based on user preferences or on the locale of the page itself), before being displayed to the user. Similarly, after the user inputs a time, date, or number using their preferred format, the user agent converts it back to the wire format before putting it in the DOM or - submitting it.<p>This allows scripts in pages and on servers to process times, + submitting it.</p> + + <p>This allows scripts in pages and on servers to process times, dates, and numbers in a consistent manner without needing to support dozens of different formats, while still supporting the users' - needs.<h4 id="categories"><span class="secno">4.10.2 </span>Categories</h4><p>Mostly for historical reasons, elements in this section fall into + needs.</p> + + + + + <h4 id="categories"><span class="secno">4.10.2 </span>Categories</h4> + + <p>Mostly for historical reasons, elements in this section fall into several overlapping (but subtly different) categories in addition to the usual ones like <a href="content-models.html#flow-content" id="flow-content_121">flow content</a>, <a href="content-models.html#phrasing-content" id="phrasing-content_131">phrasing - content</a>, and <a href="content-models.html#interactive-content" id="interactive-content_10">interactive content</a>.<p>A number of the elements are <dfn aria-haspopup="true" id="form-associated-element" role="button" tabindex="0">form-associated elements</dfn>, which means they can have a + content</a>, and <a href="content-models.html#interactive-content" id="interactive-content_10">interactive content</a>.</p> + + <p>A number of the elements are <dfn aria-haspopup="true" id="form-associated-element" role="button" tabindex="0">form-associated elements</dfn>, which means they can have a <a href="association-of-controls-and-forms.html#form-owner" id="form-owner_1">form owner</a> and, to expose this, have a <code title="attr-fae-form"><a href="association-of-controls-and-forms.html#attr-fae-form" id="form_44">form</a></code> content attribute with a matching - <code title="dom-fae-form"><a href="association-of-controls-and-forms.html#dom-fae-form">form</a></code> IDL attribute.<ul class="brief category-list"><li><code><a href="the-button-element.html#the-button-element" id="button_10">button</a></code></li> + <code title="dom-fae-form"><a href="association-of-controls-and-forms.html#dom-fae-form">form</a></code> IDL attribute.</p> + + + <ul class="brief category-list"><li><code><a href="the-button-element.html#the-button-element" id="button_10">button</a></code></li> <li><code><a href="the-fieldset-element.html#the-fieldset-element" id="fieldset_7">fieldset</a></code></li> <li><code><a href="the-input-element.html#the-input-element" id="input_54">input</a></code></li> <li><code><a href="the-keygen-element.html#the-keygen-element" id="keygen_8">keygen</a></code></li> @@ -673,7 +828,9 @@ <li><code><a href="the-select-element.html#the-select-element" id="select_13">select</a></code></li> <li><code><a href="the-textarea-element.html#the-textarea-element" id="textarea_22">textarea</a></code></li> </ul><p>The <a href="#form-associated-element" id="form-associated-element_1" title="form-associated element">form-associated - elements</a> fall into several subcategories:<dl><dt><dfn aria-haspopup="true" id="category-listed" role="button" tabindex="0">Listed elements</dfn></dt> + elements</a> fall into several subcategories:</p> + + <dl><dt><dfn aria-haspopup="true" id="category-listed" role="button" tabindex="0">Listed elements</dfn></dt> <dd> Index: edits.html =================================================================== RCS file: /sources/public/html5/spec-author-view/edits.html,v retrieving revision 1.562 retrieving revision 1.563 diff -u -d -r1.562 -r1.563 --- edits.html 15 Feb 2012 10:14:03 -0000 1.562 +++ edits.html 13 Mar 2012 19:58:38 -0000 1.563 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,11 +380,18 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="usage-summary.html">← 4.6.28 Usage summary</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-ins-element.html">4.7.1 The ins element →</a> </div> - <h3 id="edits"><span class="secno">4.7 </span>Edits</h3><p>The <code><a href="the-ins-element.html#the-ins-element" id="ins_13">ins</a></code> and <code><a href="the-del-element.html#the-del-element" id="del_10">del</a></code> elements represent - edits to the document. \ No newline at end of file + <h3 id="edits"><span class="secno">4.7 </span>Edits</h3> + + <p>The <code><a href="the-ins-element.html#the-ins-element" id="ins_13">ins</a></code> and <code><a href="the-del-element.html#the-del-element" id="del_10">del</a></code> elements represent + edits to the document.</p> + + + \ No newline at end of file Index: the-canvas-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-canvas-element.html,v retrieving revision 1.1141 retrieving revision 1.1142 diff -u -d -r1.1141 -r1.1142 --- the-canvas-element.html 21 Feb 2012 21:59:02 -0000 1.1141 +++ the-canvas-element.html 13 Mar 2012 19:58:56 -0000 1.1142 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="media-elements.html">← 4.8.10 Media elements</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-map-element.html">4.8.12 The map element →</a> </div> - <h4 id="the-canvas-element"><span class="secno">4.8.11 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>canvas</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_70" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-canvas-element"><span class="secno">4.8.11 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>canvas</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_70" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_109">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_121">Phrasing content</a>.</dd> <dd><a href="content-models.html#embedded-content" id="embedded-content_16">Embedded content</a>.</dd> @@ -377,33 +417,46 @@ </dd> </dl><p>The <code><a href="#the-canvas-element" id="canvas_6">canvas</a></code> element provides scripts with a resolution-dependent bitmap canvas, which can be used for rendering - graphs, game graphics, or other visual images on the fly.<p>Authors should not use the <code><a href="#the-canvas-element" id="canvas_7">canvas</a></code> element in a + graphs, game graphics, or other visual images on the fly.</p> + + <p>Authors should not use the <code><a href="#the-canvas-element" id="canvas_7">canvas</a></code> element in a document when a more suitable element is available. For example, it is inappropriate to use a <code><a href="#the-canvas-element" id="canvas_8">canvas</a></code> element to render a page heading: if the desired presentation of the heading is graphically intense, it should be marked up using appropriate elements (typically <code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h1_20">h1</a></code>) and then styled using CSS and - supporting technologies such as XBL.<p>When authors use the <code><a href="#the-canvas-element" id="canvas_9">canvas</a></code> element, they must also + supporting technologies such as XBL.</p> + + <p>When authors use the <code><a href="#the-canvas-element" id="canvas_9">canvas</a></code> element, they must also provide content that, when presented to the user, conveys essentially the same function or purpose as the bitmap canvas. This content may be placed as content of the <code><a href="#the-canvas-element" id="canvas_10">canvas</a></code> element. The contents of the <code><a href="#the-canvas-element" id="canvas_11">canvas</a></code> element, if any, - are the element's <a href="content-models.html#fallback-content" id="fallback-content_1">fallback content</a>.<p>In interactive visual media, if <a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#concept-n-script" title='Read about this "scripting is enabled" reference in the full HTML5 spec.'>scripting is enabled</a> for the + are the element's <a href="content-models.html#fallback-content" id="fallback-content_1">fallback content</a>.</p> + + <p>In interactive visual media, if <a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#concept-n-script" title='Read about this "scripting is enabled" reference in the full HTML5 spec.'>scripting is enabled</a> for the <code><a href="#the-canvas-element" id="canvas_12">canvas</a></code> element, and if support for <code><a href="#the-canvas-element" id="canvas_13">canvas</a></code> elements has been enabled, the <code><a href="#the-canvas-element" id="canvas_14">canvas</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> <a href="content-models.html#embedded-content" id="embedded-content_18">embedded content</a> consisting of - a dynamically created image.<p>In non-interactive, static, visual media, if the + a dynamically created image.</p> + + <p>In non-interactive, static, visual media, if the <code><a href="#the-canvas-element" id="canvas_15">canvas</a></code> element has been previously painted on (e.g. if the page was viewed in an interactive visual medium and is now being printed, or if some script that ran during the page layout process painted on the element), then the <code><a href="#the-canvas-element" id="canvas_16">canvas</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> <a href="content-models.html#embedded-content" id="embedded-content_19">embedded content</a> with the current image and size. Otherwise, the element represents its - <a href="content-models.html#fallback-content" id="fallback-content_2">fallback content</a> instead.<p>In non-visual media, and in visual media if <a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#concept-n-noscript" title='Read about this "scripting is disabled" reference in the full HTML5 spec.'>scripting is disabled</a> for the + <a href="content-models.html#fallback-content" id="fallback-content_2">fallback content</a> instead.</p> + + <p>In non-visual media, and in visual media if <a class="full-spec-link" href="http://dev.w3.org/html5/spec/webappapis.html#concept-n-noscript" title='Read about this "scripting is disabled" reference in the full HTML5 spec.'>scripting is disabled</a> for the <code><a href="#the-canvas-element" id="canvas_17">canvas</a></code> element or if support for <code><a href="#the-canvas-element" id="canvas_18">canvas</a></code> elements has been disabled, the <code><a href="#the-canvas-element" id="canvas_19">canvas</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> its <a href="content-models.html#fallback-content" id="fallback-content_3">fallback content</a> - instead.</p><!-- CANVAS-FOCUS-FALLBACK --><p>When a <code><a href="#the-canvas-element" id="canvas_20">canvas</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> + instead.</p> + + <!-- CANVAS-FOCUS-FALLBACK --> + <p>When a <code><a href="#the-canvas-element" id="canvas_20">canvas</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> <a href="content-models.html#embedded-content" id="embedded-content_20">embedded content</a>, the user can still focus descendants of the <code><a href="#the-canvas-element" id="canvas_21">canvas</a></code> element (in the <a href="content-models.html#fallback-content" id="fallback-content_4">fallback content</a>). When an element is focused, it is the target of @@ -412,22 +465,30 @@ keyboard-accessible: authors should have a one-to-one mapping of interactive regions to focusable elements in the <a href="content-models.html#fallback-content" id="fallback-content_5">fallback content</a>. (Focus has no effect on mouse interaction - events.) <a href="references.html#refsDOMEVENTS">[DOMEVENTS]</a><p>The <code><a href="#the-canvas-element" id="canvas_22">canvas</a></code> element has two attributes to control the + events.) <a href="references.html#refsDOMEVENTS">[DOMEVENTS]</a></p> + + <p>The <code><a href="#the-canvas-element" id="canvas_22">canvas</a></code> element has two attributes to control the size of the coordinate space: <dfn aria-haspopup="true" id="attr-canvas-width" role="button" tabindex="0"><code>width</code></dfn> and <dfn aria-haspopup="true" id="attr-canvas-height" role="button" tabindex="0"><code>height</code></dfn>. These attributes, when specified, must have values that are <a href="common-microsyntaxes.html#valid-non-negative-integer" id="valid-non-negative-integer_4" title="valid non-negative integer">valid non-negative integers</a>. The <code title="attr-canvas-width"><a href="#attr-canvas-width" id="width_0">width</a></code> attribute defaults to 300, and the <code title="attr-canvas-height"><a href="#attr-canvas-height" id="height_0">height</a></code> - attribute defaults to 150.<p>The intrinsic dimensions of the <code><a href="#the-canvas-element" id="canvas_23">canvas</a></code> element equal + attribute defaults to 150.</p> + + <p>The intrinsic dimensions of the <code><a href="#the-canvas-element" id="canvas_23">canvas</a></code> element equal the size of the coordinate space, with the numbers interpreted in CSS pixels. However, the element can be sized arbitrarily by a style sheet. During rendering, the image is scaled to fit this layout size.</p> + + <p>The <dfn aria-haspopup="true" id="dom-canvas-width" role="button" tabindex="0"><code>width</code></dfn> and <dfn aria-haspopup="true" id="dom-canvas-height" role="button" tabindex="0"><code>height</code></dfn> IDL attributes must <a href="common-dom-interfaces.html#reflect" id="reflect_45">reflect</a> the respective content attributes of the same name, with the same defaults.</p> -<div class="example"> + + + <div class="example"> <p>Only one square appears to be drawn in the following example:</p> <pre> // canvas is a reference to a <canvas> element var context = canvas.getContext('2d'); @@ -436,7 +497,9 @@ context.fillRect(0,100,50,50); canvas.width = canvas.width; // clears the canvas context.fillRect(100,0,50,50); // only this square remains</pre> - </div><hr><dl class="domintro"><dt><var title="">context</var> = <var title="">canvas</var> . <code id="dom-canvas-getcontext" title="dom-canvas-getContext"><a href="#dom-canvas-getcontext">getContext</a></code>(<var title="">contextId</var> [, ... ])</dt> + </div> + + <hr><dl class="domintro"><dt><var title="">context</var> = <var title="">canvas</var> . <code id="dom-canvas-getcontext" title="dom-canvas-getContext"><a href="#dom-canvas-getcontext">getContext</a></code>(<var title="">contextId</var> [, ... ])</dt> <dd> Index: commands.html =================================================================== RCS file: /sources/public/html5/spec-author-view/commands.html,v retrieving revision 1.597 retrieving revision 1.598 diff -u -d -r1.597 -r1.598 --- commands.html 22 Feb 2012 01:00:48 -0000 1.597 +++ commands.html 13 Mar 2012 19:58:36 -0000 1.598 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,18 +380,26 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-menu-element.html">← 4.11.4 The menu element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="links.html">4.12 Links →</a> </div> - <h4 id="commands"><span class="secno">4.11.5 </span>Commands</h4><p>A <dfn aria-haspopup="true" id="concept-command" role="button" tabindex="0">command</dfn> is the abstraction + <h4 id="commands"><span class="secno">4.11.5 </span>Commands</h4> + + <p>A <dfn aria-haspopup="true" id="concept-command" role="button" tabindex="0">command</dfn> is the abstraction behind menu items, buttons, and links. Once a command is defined, other parts of the interface can refer to the same command, allowing many access points to a single feature to share - facets such as the <a href="#command-facet-disabledstate" id="command-facet-disabledstate_0" title="command-facet-DisabledState">Disabled State</a>.<p id="facets">Commands are defined to have the following - <dfn aria-haspopup="true" id="concept-facet" role="button" tabindex="0">facets</dfn>:<dl><dt><dfn aria-haspopup="true" id="command-facet-type" role="button" tabindex="0">Type</dfn></dt> + facets such as the <a href="#command-facet-disabledstate" id="command-facet-disabledstate_0" title="command-facet-DisabledState">Disabled State</a>.</p> + + <p id="facets">Commands are defined to have the following + <dfn aria-haspopup="true" id="concept-facet" role="button" tabindex="0">facets</dfn>:</p> + + <dl><dt><dfn aria-haspopup="true" id="command-facet-type" role="button" tabindex="0">Type</dfn></dt> <dd>The kind of command: "command", meaning it is a normal command; "radio", meaning that triggering the command will, amongst other @@ -411,7 +455,9 @@ </dl><p>These facets are exposed on elements using the <dfn aria-haspopup="true" id="command-api" role="button" tabindex="0">command - API</dfn>:<dl class="domintro"><dt><var title="">element</var> . <code id="dom-command-ro-commandtype" title="dom-command-ro-commandType"><a href="#dom-command-ro-commandtype">commandType</a></code></dt> + API</dfn>:</p> + + <dl class="domintro"><dt><var title="">element</var> . <code id="dom-command-ro-commandtype" title="dom-command-ro-commandType"><a href="#dom-command-ro-commandtype">commandType</a></code></dt> <dd> @@ -504,4 +550,12 @@ <code>Document</code></a>. For example, such commands could be listed in the user agent's menu bar. User agents are encouraged to do this especially for commands that have <a href="#command-facet-accesskey" id="command-facet-accesskey_1" title="command-facet-AccessKey">Access Keys</a>, as a way to - advertise those keys to the user. \ No newline at end of file + advertise those keys to the user.</p> + + + + + + + + \ No newline at end of file Index: the-samp-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-samp-element.html,v retrieving revision 1.117 retrieving revision 1.118 diff -u -d -r1.117 -r1.118 --- the-samp-element.html 21 Feb 2012 21:59:07 -0000 1.117 +++ the-samp-element.html 13 Mar 2012 19:59:01 -0000 1.118 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-var-element.html">← 4.6.12 The var element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-kbd-element.html">4.6.14 The kbd element →</a> </div> - <h4 id="the-samp-element"><span class="secno">4.6.13 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>samp</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_44" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-samp-element"><span class="secno">4.6.13 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>samp</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_44" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_83">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_65">Phrasing content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_29">Palpable content</a>.</dd> @@ -363,8 +403,12 @@ <dt><a href="element-definitions.html#element-dfn-dom" id="element-dfn-dom_44" title="element-dfn-dom">DOM interface</a>:</dt> <dd>Uses <code><a href="elements.html#htmlelement" id="htmlelement_48">HTMLElement</a></code>.</dd> </dl><p>The <code><a href="#the-samp-element" id="samp_5">samp</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> (sample) - output from a program or computing system.<p class="note">See the <code><a href="the-pre-element.html#the-pre-element" id="pre_13">pre</a></code> and <code><a href="the-kbd-element.html#the-kbd-element" id="kbd_6">kbd</a></code> - elements for more details.<div class="example"> + output from a program or computing system.</p> + + <p class="note">See the <code><a href="the-pre-element.html#the-pre-element" id="pre_13">pre</a></code> and <code><a href="the-kbd-element.html#the-kbd-element" id="kbd_6">kbd</a></code> + elements for more details.</p> + + <div class="example"> <p>This example shows the <code><a href="#the-samp-element" id="samp_6">samp</a></code> element being used inline:</p> <pre><p>The computer said <samp>Too much cheese in tray @@ -380,4 +424,7 @@ Linux demo 2.6.10-grsec+gg3+e+fhs6b+nfs+gr0501+++p3+c4a+gr2b-reslog-v6.189 #1 SMP Tue Feb 1 11:22:36 PST 2005 i686 unknown <span class="prompt">jdoe@demo:~$</span> <span class="cursor">_</span></samp></pre></pre> - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: the-u-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-u-element.html,v retrieving revision 1.117 retrieving revision 1.118 diff -u -d -r1.117 -r1.118 --- the-u-element.html 21 Feb 2012 21:59:09 -0000 1.117 +++ the-u-element.html 13 Mar 2012 19:59:02 -0000 1.118 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-b-element.html">← 4.6.17 The b element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-mark-element.html">4.6.19 The mark element →</a> </div> - <h4 id="the-u-element"><span class="secno">4.6.18 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>u</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_49" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-u-element"><span class="secno">4.6.18 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>u</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_49" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_88">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_80">Phrasing content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_34">Palpable content</a>.</dd> @@ -366,7 +406,9 @@ with an unarticulated, though explicitly rendered, non-textual annotation, such as labeling the text as being a proper name in Chinese text (a Chinese proper name mark), or labeling the text as - being misspelt.<p>In most cases, another element is likely to be more appropriate: + being misspelt.</p> + + <p>In most cases, another element is likely to be more appropriate: for marking stress emphasis, the <code><a href="the-em-element.html#the-em-element" id="em_11">em</a></code> element should be used; for marking key words or phrases either the <code><a href="the-b-element.html#the-b-element" id="b_15">b</a></code> element or the <code><a href="the-mark-element.html#the-mark-element" id="mark_4">mark</a></code> element should be used, depending @@ -374,8 +416,15 @@ element should be used; for labeling text with explicit textual annotations, the <code><a href="the-ruby-element.html#the-ruby-element" id="ruby_5">ruby</a></code> element should be used; for labeling ship names in Western texts, the <code><a href="the-i-element.html#the-i-element" id="i_24">i</a></code> element - should be used.<p class="note">The default rendering of the <code><a href="#the-u-element" id="u_5">u</a></code> element + should be used.</p> + + <p class="note">The default rendering of the <code><a href="#the-u-element" id="u_5">u</a></code> element in visual presentations clashes with the conventional rendering of hyperlinks (underlining). Authors are encouraged to avoid using the <code><a href="#the-u-element" id="u_6">u</a></code> element where it could be confused for a - hyperlink. \ No newline at end of file + hyperlink.</p> + + + + + \ No newline at end of file Index: headings-and-sections.html =================================================================== RCS file: /sources/public/html5/spec-author-view/headings-and-sections.html,v retrieving revision 1.79 retrieving revision 1.80 diff -u -d -r1.79 -r1.80 --- headings-and-sections.html 15 Feb 2012 10:14:10 -0000 1.79 +++ headings-and-sections.html 13 Mar 2012 19:58:40 -0000 1.80 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,24 +380,35 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-address-element.html">← 4.4.10 The address element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="grouping-content.html">4.5 Grouping content →</a> <ol class="toc"><li><ol><li><ol><li><a href="headings-and-sections.html#headings-and-sections" id="4.4.11-headings-and-sections"><span class="secno">4.4.11 </span>Headings and sections</a> <ol><li><a href="headings-and-sections.html#outlines"><span class="secno">4.4.11.1 </span>Creating an outline</a></ol></ol></ol></ol></div> - <h4 id="headings-and-sections"><span class="secno">4.4.11 </span><dfn aria-haspopup="true" role="button" tabindex="0">Headings and sections</dfn></h4><p>The <code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h1_15">h1</a></code>–<code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h6_9">h6</a></code> elements and the - <code><a href="the-hgroup-element.html#the-hgroup-element" id="hgroup_22">hgroup</a></code> element are headings.<p>The first element of <a href="content-models.html#heading-content" id="heading-content_6">heading content</a> in an element + <h4 id="headings-and-sections"><span class="secno">4.4.11 </span><dfn aria-haspopup="true" role="button" tabindex="0">Headings and sections</dfn></h4> + + <p>The <code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h1_15">h1</a></code>–<code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h6_9">h6</a></code> elements and the + <code><a href="the-hgroup-element.html#the-hgroup-element" id="hgroup_22">hgroup</a></code> element are headings.</p> + + <p>The first element of <a href="content-models.html#heading-content" id="heading-content_6">heading content</a> in an element of <a href="content-models.html#sectioning-content" id="sectioning-content_13">sectioning content</a> <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> the heading for that section. Subsequent headings of equal or higher <a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#rank" id="rank_3">rank</a> start new (implied) sections, headings of lower <a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#rank" id="rank_4">rank</a> start implied subsections that are part of the previous one. In both cases, the element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> the - heading of the implied section.<p>Certain elements are said to be <dfn aria-haspopup="true" id="sectioning-root" role="button" tabindex="0">sectioning roots</dfn>, including <code><a href="the-blockquote-element.html#the-blockquote-element" id="blockquote_1">blockquote</a></code> and + heading of the implied section.</p> + + <p>Certain elements are said to be <dfn aria-haspopup="true" id="sectioning-root" role="button" tabindex="0">sectioning roots</dfn>, including <code><a href="the-blockquote-element.html#the-blockquote-element" id="blockquote_1">blockquote</a></code> and <code><a href="the-td-element.html#the-td-element" id="td_4">td</a></code> elements. These elements can have their own outlines, but the sections and headings inside these elements do not - contribute to the outlines of their ancestors.<ul class="brief category-list"><li><code><a href="the-blockquote-element.html#the-blockquote-element" id="blockquote_2">blockquote</a></code></li> + contribute to the outlines of their ancestors.</p> + + + <ul class="brief category-list"><li><code><a href="the-blockquote-element.html#the-blockquote-element" id="blockquote_2">blockquote</a></code></li> <li><code><a href="the-body-element.html#the-body-element" id="body_21">body</a></code></li> <li><code><a href="the-details-element.html#the-details-element" id="details_5">details</a></code></li> <li><code><a href="the-fieldset-element.html#the-fieldset-element" id="fieldset_3">fieldset</a></code></li> @@ -371,7 +418,9 @@ subsections of their nearest ancestor <a href="#sectioning-root" id="sectioning-root_4">sectioning root</a> or their nearest ancestor element of <a href="content-models.html#sectioning-content" id="sectioning-content_15">sectioning content</a>, whichever is nearest, regardless of what implied - sections other headings may have created.<div class="example"> + sections other headings may have created.</p> + + <div class="example"> <p>For the following fragment:</p> <pre><body> <h1>Foo</h1> @@ -402,13 +451,19 @@ </ol><p>Notice how the <code><a href="the-section-element.html#the-section-element" id="section_11">section</a></code> ends the earlier implicit section so that a later paragraph ("Grunt") is back at the top level.</p> - </div><p>Sections may contain headings of any <a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#rank" id="rank_5">rank</a>, but + </div> + + <p>Sections may contain headings of any <a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#rank" id="rank_5">rank</a>, but authors are strongly encouraged to either use only <code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h1_16">h1</a></code> elements, or to use elements of the appropriate <a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#rank" id="rank_6">rank</a> - for the section's nesting level.<p>Authors are also encouraged to explicitly wrap sections in + for the section's nesting level.</p> + + <p>Authors are also encouraged to explicitly wrap sections in elements of <a href="content-models.html#sectioning-content" id="sectioning-content_16">sectioning content</a>, instead of relying on the implicit sections generated by having multiple headings in one - element of <a href="content-models.html#sectioning-content" id="sectioning-content_17">sectioning content</a>.<div class="example"> + element of <a href="content-models.html#sectioning-content" id="sectioning-content_17">sectioning content</a>.</p> + + <div class="example"> <p>For example, the following is correct:</p> <pre><body> @@ -472,7 +527,14 @@ rendered well in legacy browsers. Legacy browsers without CSS support would render all the headings as top-level headings.</p> - </div><h5 id="outlines"><span class="secno">4.4.11.1 </span>Creating an outline</h5><p>The <dfn aria-haspopup="true" id="outline" role="button" tabindex="0">outline</dfn> for a <a href="content-models.html#sectioning-content" id="sectioning-content_18">sectioning content</a> + </div> + + + <h5 id="outlines"><span class="secno">4.4.11.1 </span>Creating an outline</h5> + + + + <p>The <dfn aria-haspopup="true" id="outline" role="button" tabindex="0">outline</dfn> for a <a href="content-models.html#sectioning-content" id="sectioning-content_18">sectioning content</a> element or a <a href="#sectioning-root" id="sectioning-root_5">sectioning root</a> element consists of a list of one or more potentially nested <a href="#concept-section" id="concept-section_0" title="concept-section">sections</a>. A <dfn aria-haspopup="true" id="concept-section" role="button" tabindex="0">section</dfn> is a container that corresponds to some nodes in the original DOM tree. Each section can @@ -480,7 +542,9 @@ further nested sections. (The sections in the outline aren't <code><a href="the-section-element.html#the-section-element" id="section_12">section</a></code> elements, though some may correspond to such elements — they are merely conceptual - sections.)<div class="example"> + sections.)</p> + + <div class="example"> <p>The following markup fragment:</p> @@ -514,4 +578,10 @@ <p>No nested sections.</p> </li> </ol></li> - </ol></div> \ No newline at end of file + </ol></div> + + + + + + \ No newline at end of file Index: obsolete.html =================================================================== RCS file: /sources/public/html5/spec-author-view/obsolete.html,v retrieving revision 1.1189 retrieving revision 1.1190 diff -u -d -r1.1189 -r1.1190 --- obsolete.html 15 Feb 2012 10:14:12 -0000 1.1189 +++ obsolete.html 13 Mar 2012 19:58:43 -0000 1.1190 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,25 +380,37 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-xhtml-syntax.html">← 9 The XHTML syntax</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="iana.html">11 IANA considerations →</a> <ol class="toc"><li><a href="obsolete.html#obsolete"><span class="secno">10 </span>Obsolete features</a> <ol><li><a href="obsolete.html#obsolete-but-conforming-features"><span class="secno">10.1 </span>Obsolete but conforming features</a><li><a href="obsolete.html#non-conforming-features"><span class="secno">10.2 </span>Non-conforming features</a></ol></ol></div> - <h2 id="obsolete"><span class="secno">10 </span>Obsolete features</h2><h3 id="obsolete-but-conforming-features"><span class="secno">10.1 </span>Obsolete but conforming features</h3><p>Features listed in this section will trigger warnings in - conformance checkers.<p>Authors should not specify a <code title="attr-img-border"><a href="#attr-img-border" id="border_3">border</a></code> attribute on an + <h2 id="obsolete"><span class="secno">10 </span>Obsolete features</h2> + + <h3 id="obsolete-but-conforming-features"><span class="secno">10.1 </span>Obsolete but conforming features</h3> + + <p>Features listed in this section will trigger warnings in + conformance checkers.</p> + + <p>Authors should not specify a <code title="attr-img-border"><a href="#attr-img-border" id="border_3">border</a></code> attribute on an <code><a href="the-img-element.html#the-img-element" id="img_36">img</a></code> element. If the attribute is present, its value must be the string "<code title="">0</code>". CSS should be used - instead.<p>Authors should not specify a <code title="attr-script-language"><a href="#attr-script-language" id="language">language</a></code> attribute on a + instead.</p> + + <p>Authors should not specify a <code title="attr-script-language"><a href="#attr-script-language" id="language">language</a></code> attribute on a <code><a href="the-script-element.html#the-script-element" id="script_32">script</a></code> element. If the attribute is present, its value must be an <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_30">ASCII case-insensitive</a> match for the string "<code title="">JavaScript</code>" and either the <code title="attr-script-type"><a href="the-script-element.html#attr-script-type" id="type_12">type</a></code> attribute must be omitted or its value must be an <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_31">ASCII case-insensitive</a> match for the string "<code title="">text/javascript</code>". The attribute should be entirely omitted instead (with the value "<code title="">JavaScript</code>", it has no effect), or replaced with use - of the <code title="attr-script-type"><a href="the-script-element.html#attr-script-type" id="type_13">type</a></code> attribute.<p>Authors should not specify the <code title="attr-a-name"><a href="#attr-a-name" id="name_56">name</a></code> attribute on <code><a href="the-a-element.html#the-a-element" id="a_60">a</a></code> + of the <code title="attr-script-type"><a href="the-script-element.html#attr-script-type" id="type_13">type</a></code> attribute.</p> + + <p>Authors should not specify the <code title="attr-a-name"><a href="#attr-a-name" id="name_56">name</a></code> attribute on <code><a href="the-a-element.html#the-a-element" id="a_60">a</a></code> elements. If the attribute is present, its value must not be the empty string and must neither be equal to the value of any of the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#concept-id" title='Read about this "IDs" reference in the full HTML5 spec.'>IDs</a> in the element's <a href="infrastructure.html#home-subtree" id="home-subtree_2">home @@ -374,16 +422,31 @@ be equal to the element's <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#concept-id" title='Read about this "ID" reference in the full HTML5 spec.'>ID</a>. In earlier versions of the language, this attribute was intended as a way to specify possible targets for fragment identifiers in <a href="urls.html#url" id="url_24" title="URL">URLs</a>. The <code title="attr-id"><a href="global-attributes.html#the-id-attribute" id="id_3">id</a></code> - attribute should be used instead.<p>Authors should not, but may despite requirements to the contrary + attribute should be used instead.</p> + + + <p>Authors should not, but may despite requirements to the contrary elsewhere in this specification, specify the <code title="attr-input-maxlength"><a href="common-input-element-attributes.html#attr-input-maxlength" id="maxlength_27">maxlength</a></code> and <code title="attr-input-size"><a href="common-input-element-attributes.html#attr-input-size" id="size_26">size</a></code> attributes on <code><a href="the-input-element.html#the-input-element" id="input_130">input</a></code> elements whose <code title="attr-input-type"><a href="the-input-element.html#attr-input-type" id="type_79">type</a></code> attributes are in the <a href="states-of-the-type-attribute.html#number-state-type-number" id="attr-input-type-number_4" title="attr-input-type-number">Number</a> state. One valid reason for using these attributes regardless is to help legacy user agents that do not support <code><a href="the-input-element.html#the-input-element" id="input_131">input</a></code> elements with <code title="">type="number"</code> to still render the text - field with a useful width.<p class="note">In <a href="syntax.html#syntax" id="the-html-syntax_9">the HTML syntax</a>, specifying a <a href="syntax.html#syntax-doctype" id="syntax-doctype_4" title="syntax-DOCTYPE">DOCTYPE</a> that is an <a href="syntax.html#obsolete-permitted-doctype" id="obsolete-permitted-doctype_1">obsolete - permitted DOCTYPE</a> will also trigger a warning.<h3 id="non-conforming-features"><span class="secno">10.2 </span>Non-conforming features</h3><p>Elements in the following list are entirely obsolete, and must - not be used by authors:<dl><dt><code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/obsolete.html#the-applet-element" title='Read about this "applet" reference in the full HTML5 spec.'>applet</a></code></dt> + field with a useful width.</p> + + <p class="note">In <a href="syntax.html#syntax" id="the-html-syntax_9">the HTML syntax</a>, specifying a <a href="syntax.html#syntax-doctype" id="syntax-doctype_4" title="syntax-DOCTYPE">DOCTYPE</a> that is an <a href="syntax.html#obsolete-permitted-doctype" id="obsolete-permitted-doctype_1">obsolete + permitted DOCTYPE</a> will also trigger a warning.</p> + + + + + + <h3 id="non-conforming-features"><span class="secno">10.2 </span>Non-conforming features</h3> + + <p>Elements in the following list are entirely obsolete, and must + not be used by authors:</p> + + <dl><dt><code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/obsolete.html#the-applet-element" title='Read about this "applet" reference in the full HTML5 spec.'>applet</a></code></dt> <dd><p>Use <code><a href="the-embed-element.html#the-embed-element" id="embed_15">embed</a></code> or <code><a href="the-object-element.html#the-object-element" id="object_35">object</a></code> instead.</dd> <dt><dfn aria-haspopup="true" id="acronym" role="button" tabindex="0"><code>acronym</code></dfn></dt> @@ -458,7 +521,9 @@ </dd> </dl><hr><p>The following attributes are obsolete (though the elements are - still part of the language), and must not be used by authors:<dl><dt><dfn aria-haspopup="true" id="attr-a-charset" role="button" tabindex="0"><code>charset</code></dfn> on <code><a href="the-a-element.html#the-a-element" id="a_62">a</a></code> elements</dt> + still part of the language), and must not be used by authors:</p> + + <dl><dt><dfn aria-haspopup="true" id="attr-a-charset" role="button" tabindex="0"><code>charset</code></dfn> on <code><a href="the-a-element.html#the-a-element" id="a_62">a</a></code> elements</dt> <dt><dfn aria-haspopup="true" id="attr-link-charset" role="button" tabindex="0"><code>charset</code></dfn> on <code><a href="the-link-element.html#the-link-element" id="link_54">link</a></code> elements</dt> <dd><p>Use an HTTP Content-Type header on the linked resource instead.</dd> @@ -664,6 +729,9 @@ string and the value "<code title="">1</code>" may be used as <code title="attr-table-border"><a href="the-table-element.html#attr-table-border" id="border_1">border</a></code> values for this purpose. Other values are considered obsolete. To regulate the thickness of such borders, authors should instead use CSS.</p> + + + <p>The <dfn aria-haspopup="true" id="dom-applet-align" role="button" tabindex="0"><code>align</code></dfn>, <dfn aria-haspopup="true" id="dom-applet-alt" role="button" tabindex="0"><code>alt</code></dfn>, <dfn aria-haspopup="true" id="dom-applet-archive" role="button" tabindex="0"><code>archive</code></dfn>, <dfn aria-haspopup="true" id="dom-applet-code" role="button" tabindex="0"><code>code</code></dfn>, <dfn aria-haspopup="true" id="dom-applet-height" role="button" tabindex="0"><code>height</code></dfn>, <dfn aria-haspopup="true" id="dom-applet-hspace" role="button" tabindex="0"><code>hspace</code></dfn>, <dfn aria-haspopup="true" id="dom-applet-name" role="button" tabindex="0"><code>name</code></dfn>, <dfn aria-haspopup="true" id="dom-applet-object" role="button" tabindex="0"><code>object</code></dfn>, <dfn aria-haspopup="true" id="dom-applet-vspace" role="button" tabindex="0"><code>vspace</code></dfn>, and <dfn aria-haspopup="true" id="dom-applet-width" role="button" tabindex="0"><code>width</code></df> IDL attributes must <a href="common-dom-interfaces.html#reflect" id="reflect_101">reflect</a> the respective content attributes of the same name. For the purposes of reflection, the <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/obsolete.html#the-applet-element" title='Read about this "applet" reference in the full HTML5 spec.'>applet</a></code> @@ -1043,3 +1111,9 @@ <a href="dom.html#the-body-element-0" id="the-body-element_9" title="the body element">body element</a> or if it is a <code><a class="full-spec-link" href="http://dev.w3.org/html5/spec/obsolete.html#frameset" title='Read about this "frameset" reference in the full HTML5 spec.'>frameset</a></code> element, the attributes must instead return the empty string on getting and do nothing on setting.</p> + + + + + + \ No newline at end of file Index: named-character-references.html =================================================================== RCS file: /sources/public/html5/spec-author-view/named-character-references.html,v retrieving revision 1.1114 retrieving revision 1.1115 diff -u -d -r1.1114 -r1.1115 --- named-character-references.html 15 Feb 2012 10:14:12 -0000 1.1114 +++ named-character-references.html 13 Mar 2012 19:58:43 -0000 1.1115 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,15 +380,27 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="syntax.html">← 8 The HTML syntax</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-xhtml-syntax.html">9 The XHTML syntax →</a> </div> - <h3 id="named-character-references"><span class="secno">8.2 </span><dfn aria-haspopup="true" role="button" tabindex="0">Named character references</dfn></h3><p>This table lists the character reference names that are supported + <h3 id="named-character-references"><span class="secno">8.2 </span><dfn aria-haspopup="true" role="button" tabindex="0">Named character references</dfn></h3> + + <p>This table lists the character reference names that are supported by HTML, and the code points to which they refer. It is referenced - by the previous sections.<div id="named-character-references-table"> - <table><thead><tr><th> Name </th> <th> Character(s) </th> <th> Glyph </th> <tbody><tr id="entity-Aacute"><td> <code title="">Aacute;</code> </td> <td> U+000C1 </td> <td> <span class="glyph" title="">Á</span> </td> <tr id="entity-aacute"><td> <code title="">aacute;</code> </td> <td> U+000E1 </td> <td> <span class="glyph" title="">á</span> </td> <tr id="entity-Abreve"><td> <code title="">Abreve;</code> </td> <td> U+00102 </td> <td> <span class="glyph" title="">Ă</span> </td> <tr id="entity-abreve"><td> <code title="">abreve;</code> </td> <td> U+00103 </td> <td> <span class="glyph" title="">ă</span> </td> <tr id="entity-ac"><td> <code title="">ac;</code> </td> <td> U+0223E </td> <td> <span class="glyph" title="">∾</span> </td> <tr id="entity-acd"><td> <code title="">acd;</code> </td> <td> U+0223F </td> <td> <span class="glyph" title="">∿</span> </td> <tr id="entity-acE"><td> <code title="">acE;</code> </td> <td> U+0223E U+00333 </td> <td> <span class="glyph compound" tite="">∾̳</span> </td> <tr id="entity-Acirc"><td> <code title="">Acirc;</code> </td> <td> U+000C2 </td> <td> <span class="glyph" title="">Â</span> </td> <tr id="entity-acirc"><td> <code title="">acirc;</code> </td> <td> U+000E2 </td> <td> <span class="glyph" title="">â</span> </td> <tr id="entity-acute"><td> <code title="">acute;</code> </td> <td> U+000B4 </td> <td> <span class="glyph" title="">´</span> </td> <tr id="entity-Acy"><td> <code title="">Acy;</code> </td> <td> U+00410 </td> <td> <span class="glyph" title="">А</span> </td> <tr id="entity-acy"><td> <code title="">acy;</code> </td> <td> U+00430 </td> <td> <span class="glyph" title="">а</span> </td> <tr id="entity-AElig"><td> <code title="">AElig;</code> </td> <td> U+000C6 </td> <td> <span class="glyph" title="">Æ</span> </td> <tr id="entity-aelig"><td> <code title="">aelig;</code> </td> <td> U+000E6 </td> <td> <span class="glyph" title="">æ</span> </td> <tr id="entity-af"><td> <code title="">af;</coe> </td> <td> U+02061 </td> <td> <span class="glyph" title="">⁡</span> </td> <tr id="entity-Afr"><td> <code title="">Afr;</code> </td> <td> U+1D504 </td> <td> <span class="glyph" title="">𝔄</span> </td> <tr id="entity-afr"><td> <code title="">afr;</code> </td> <td> U+1D51E </td> <td> <span class="glyph" title="">𝔞</span> </td> <tr id="entity-Agrave"><td> <code title="">Agrave;</code> </td> <td> U+000C0 </td> <td> <span class="glyph" title="">À</span> </td> <tr id="entity-agrave"><td> <code title="">agrave;</code> </td> <td> U+000E0 </td> <td> <span class="glyph" title="">à</span> </td> <tr id="entity-alefsym"><td> <code title="">alefsym;</code> </td> <td> U+02135 </td> <td> <span class="glyph" title="">ℵ</span> </td> <tr id="entity-aleph"><td> <code title="">aleph;</code> </td> <td> U+02135 </td> <td> <span class="glyph" title="">ℵ</span> </td> <tr id="entity-Alpha"><td> <code title="">Alpha;</code> </td> <td> U+00391 </td> <td> <span class="glyph" title=">Α</span> </td> <tr id="entity-alpha"><td> <code title="">alpha;</code> </td> <td> U+003B1 </td> <td> <span class="glyph" title="">α</span> </td> <tr id="entity-Amacr"><td> <code title="">Amacr;</code> </td> <td> U+00100 </td> <td> <span class="glyph" title="">Ā</span> </td> <tr id="entity-amacr"><td> <code title="">amacr;</code> </td> <td> U+00101 </td> <td> <span class="glyph" title="">ā</span> </td> <tr id="entity-amalg"><td> <code title="">amalg;</code> </td> <td> U+02A3F </td> <td> <span class="glyph" title="">⨿</span> </td> <tr id="entity-AMP"><td> <code title="">AMP;</code> </td> <td> U+00026 </td> <td> <span class="glyph" title="">&</span> </td> <tr id="entity-amp"><td> <code title="">amp;</code> </td> <td> U+00026 </td> <td> <span class="glyph" title="">&</span> </td> <tr id="entity-And"><td> <code title="">And;</code> </td> <td> U+02A53 </td> <td> <span class="glyph" title="">⩓</span> </td> <tr id="entity-and"><td> <code title="">and;</code> </td> <td> U02227 </td> <td> <span class="glyph" title="">∧</span> </td> <tr id="entity-andand"><td> <code title="">andand;</code> </td> <td> U+02A55 </td> <td> <span class="glyph" title="">⩕</span> </td> <tr id="entity-andd"><td> <code title="">andd;</code> </td> <td> U+02A5C </td> <td> <span class="glyph" title="">⩜</span> </td> <tr id="entity-andslope"><td> <code title="">andslope;</code> </td> <td> U+02A58 </td> <td> <span class="glyph" title="">⩘</span> </td> <tr id="entity-andv"><td> <code title="">andv;</code> </td> <td> U+02A5A </td> <td> <span class="glyph" title="">⩚</span> </td> <tr id="entity-ang"><td> <code title="">ang;</code> </td> <td> U+02220 </td> <td> <span class="glyph" title="">∠</span> </td> <tr id="entity-ange"><td> <code title="">ange;</code> </td> <td> U+029A4 </td> <td> <span class="glyph" title="">⦤</span> </td> <tr id="entity-angle"><td> <code title="">angle;</code> </td> <td> U+02220 </td> <td> <span class="glyph" title="">∠</span> </td> <tr id"entity-angmsd"><td> <code title="">angmsd;</code> </td> <td> U+02221 </td> <td> <span class="glyph" title="">∡</span> </td> <tr id="entity-angmsdaa"><td> <code title="">angmsdaa;</code> </td> <td> U+029A8 </td> <td> <span class="glyph" title="">⦨</span> </td> <tr id="entity-angmsdab"><td> <code title="">angmsdab;</code> </td> <td> U+029A9 </td> <td> <span class="glyph" title="">⦩</span> </td> <tr id="entity-angmsdac"><td> <code title="">angmsdac;</code> </td> <td> U+029AA </td> <td> <span class="glyph" title="">⦪</span> </td> <tr id="entity-angmsdad"><td> <code title="">angmsdad;</code> </td> <td> U+029AB </td> <td> <span class="glyph" title="">⦫</span> </td> <tr id="entity-angmsdae"><td> <code title="">angmsdae;</code> </td> <td> U+029AC </td> <td> <span class="glyph" title="">⦬</span> </td> <tr id="entity-angmsdaf"><td> <code title="">angmsdaf;</code> </td> <td> U+029AD </td> <td> <span class="glyph" title="">⦭</span> </td> <tr id="entity-angmsdag"><td> <coe title="">angmsdag;</code> </td> <td> U+029AE </td> <td> <span class="glyph" title="">⦮</span> </td> <tr id="entity-angmsdah"><td> <code title="">angmsdah;</code> </td> <td> U+029AF </td> <td> <span class="glyph" title="">⦯</span> </td> <tr id="entity-angrt"><td> <code title="">angrt;</code> </td> <td> U+0221F </td> <td> <span class="glyph" title="">∟</span> </td> <tr id="entity-angrtvb"><td> <code title="">angrtvb;</code> </td> <td> U+022BE </td> <td> <span class="glyph" title="">⊾</span> </td> <tr id="entity-angrtvbd"><td> <code title="">angrtvbd;</code> </td> <td> U+0299D </td> <td> <span class="glyph" title="">⦝</span> </td> <tr id="entity-angsph"><td> <code title="">angsph;</code> </td> <td> U+02222 </td> <td> <span class="glyph" title="">∢</span> </td> <tr id="entity-angst"><td> <code title="">angst;</code> </td> <td> U+000C5 </td> <td> <span class="glyph" title="">Å</span> </td> <tr id="entity-angzarr"><td> <code title="">angzarr;</code> </td> <td> U+0237 </td> <td> <span class="glyph" title="">⍼</span> </td> <tr id="entity-Aogon"><td> <code title="">Aogon;</code> </td> <td> U+00104 </td> <td> <span class="glyph" title="">Ą</span> </td> <tr id="entity-aogon"><td> <code title="">aogon;</code> </td> <td> U+00105 </td> <td> <span class="glyph" title="">ą</span> </td> <tr id="entity-Aopf"><td> <code title="">Aopf;</code> </td> <td> U+1D538 </td> <td> <span class="glyph" title="">𝔸</span> </td> <tr id="entity-aopf"><td> <code title="">aopf;</code> </td> <td> U+1D552 </td> <td> <span class="glyph" title="">𝕒</span> </td> <tr id="entity-ap"><td> <code title="">ap;</code> </td> <td> U+02248 </td> <td> <span class="glyph" title="">≈</span> </td> <tr id="entity-apacir"><td> <code title="">apacir;</code> </td> <td> U+02A6F </td> <td> <span class="glyph" title="">⩯</span> </td> <tr id="entity-apE"><td> <code title="">apE;</code> </td> <td> U+02A70 </td> <td> <span class="glyph" title="">⩰</span> </td> <tr id="entity-ae"><td> <code title="">ape;</code> </td> <td> U+0224A </td> <td> <span class="glyph" title="">≊</span> </td> <tr id="entity-apid"><td> <code title="">apid;</code> </td> <td> U+0224B </td> <td> <span class="glyph" title="">≋</span> </td> <tr id="entity-apos"><td> <code title="">apos;</code> </td> <td> U+00027 </td> <td> <span class="glyph" title="">'</span> </td> <tr id="entity-ApplyFunction"><td> <code title="">ApplyFunction;</code> </td> <td> U+02061 </td> <td> <span class="glyph" title="">⁡</span> </td> <tr id="entity-approx"><td> <code title="">approx;</code> </td> <td> U+02248 </td> <td> <span class="glyph" title="">≈</span> </td> <tr id="entity-approxeq"><td> <code title="">approxeq;</code> </td> <td> U+0224A </td> <td> <span class="glyph" title="">≊</span> </td> <tr id="entity-Aring"><td> <code title="">Aring;</code> </td> <td> U+000C5 </td> <td> <span class="glyph" title="">Å</span> </td> <tr id="entity-aring"><td> <code title="">aring;</code> </td> <td> U+000E5 </d> <td> <span class="glyph" title="">å</span> </td> <tr id="entity-Ascr"><td> <code title="">Ascr;</code> </td> <td> U+1D49C </td> <td> <span class="glyph" title="">𝒜</span> </td> <tr id="entity-ascr"><td> <code title="">ascr;</code> </td> <td> U+1D4B6 </td> <td> <span class="glyph" title="">𝒶</span> </td> <tr id="entity-Assign"><td> <code title="">Assign;</code> </td> <td> U+02254 </td> <td> <span class="glyph" title="">≔</span> </td> <tr id="entity-ast"><td> <code title="">ast;</code> </td> <td> U+0002A </td> <td> <span class="glyph" title="">*</span> </td> <tr id="entity-asymp"><td> <code title="">asymp;</code> </td> <td> U+02248 </td> <td> <span class="glyph" title="">≈</span> </td> <tr id="entity-asympeq"><td> <code title="">asympeq;</code> </td> <td> U+0224D </td> <td> <span class="glyph" title="">≍</span> </td> <tr id="entity-Atilde"><td> <code title="">Atilde;</code> </td> <td> U+000C3 </td> <td> <span class="glyph" title="">Ã</span> </td> <tr id="entit-atilde"><td> <code title="">atilde;</code> </td> <td> U+000E3 </td> <td> <span class="glyph" title="">ã</span> </td> <tr id="entity-Auml"><td> <code title="">Auml;</code> </td> <td> U+000C4 </td> <td> <span class="glyph" title="">Ä</span> </td> <tr id="entity-auml"><td> <code title="">auml;</code> </td> <td> U+000E4 </td> <td> <span class="glyph" title="">ä</span> </td> <tr id="entity-awconint"><td> <code title="">awconint;</code> </td> <td> U+02233 </td> <td> <span class="glyph" title="">∳</span> </td> <tr id="entity-awint"><td> <code title="">awint;</code> </td> <td> U+02A11 </td> <td> <span class="glyph" title="">⨑</span> </td> <tr id="entity-backcong"><td> <code title="">backcong;</code> </td> <td> U+0224C </td> <td> <span class="glyph" title="">≌</span> </td> <tr id="entity-backepsilon"><td> <code title="">backepsilon;</code> </td> <td> U+003F6 </td> <td> <span class="glyph" title="">϶</span> </td> <tr id="entity-backprime"><td> <code title="">backprime;</code </td> <td> U+02035 </td> <td> <span class="glyph" title="">‵</span> </td> <tr id="entity-backsim"><td> <code title="">backsim;</code> </td> <td> U+0223D </td> <td> <span class="glyph" title="">∽</span> </td> <tr id="entity-backsimeq"><td> <code title="">backsimeq;</code> </td> <td> U+022CD </td> <td> <span class="glyph" title="">⋍</span> </td> <tr id="entity-Backslash"><td> <code title="">Backslash;</code> </td> <td> U+02216 </td> <td> <span class="glyph" title="">∖</span> </td> <tr id="entity-Barv"><td> <code title="">Barv;</code> </td> <td> U+02AE7 </td> <td> <span class="glyph" title="">⫧</span> </td> <tr id="entity-barvee"><td> <code title="">barvee;</code> </td> <td> U+022BD </td> <td> <span class="glyph" title="">⊽</span> </td> <tr id="entity-Barwed"><td> <code title="">Barwed;</code> </td> <td> U+02306 </td> <td> <span class="glyph" title="">⌆</span> </td> <tr id="entity-barwed"><td> <code title="">barwed;</code> </td> <td> U+02305 </td> <td> <span class="gyph" title="">⌅</span> </td> <tr id="entity-barwedge"><td> <code title="">barwedge;</code> </td> <td> U+02305 </td> <td> <span class="glyph" title="">⌅</span> </td> <tr id="entity-bbrk"><td> <code title="">bbrk;</code> </td> <td> U+023B5 </td> <td> <span class="glyph" title="">⎵</span> </td> <tr id="entity-bbrktbrk"><td> <code title="">bbrktbrk;</code> </td> <td> U+023B6 </td> <td> <span class="glyph" title="">⎶</span> </td> <tr id="entity-bcong"><td> <code title="">bcong;</code> </td> <td> U+0224C </td> <td> <span class="glyph" title="">≌</span> </td> <tr id="entity-Bcy"><td> <code title="">Bcy;</code> </td> <td> U+00411 </td> <td> <span class="glyph" title="">Б</span> </td> <tr id="entity-bcy"><td> <code title="">bcy;</code> </td> <td> U+00431 </td> <td> <span class="glyph" title="">б</span> </td> <tr id="entity-bdquo"><td> <code title="">bdquo;</code> </td> <td> U+0201E </td> <td> <span class="glyph" title="">„</span> </td> <tr id="entity-becaus"><td> <codetitle="">becaus;</code> </td> <td> U+02235 </td> <td> <span class="glyph" title="">∵</span> </td> <tr id="entity-Because"><td> <code title="">Because;</code> </td> <td> U+02235 </td> <td> <span class="glyph" title="">∵</span> </td> <tr id="entity-because"><td> <code title="">because;</code> </td> <td> U+02235 </td> <td> <span class="glyph" title="">∵</span> </td> <tr id="entity-bemptyv"><td> <code title="">bemptyv;</code> </td> <td> U+029B0 </td> <td> <span class="glyph" title="">⦰</span> </td> <tr id="entity-bepsi"><td> <code title="">bepsi;</code> </td> <td> U+003F6 </td> <td> <span class="glyph" title="">϶</span> </td> <tr id="entity-bernou"><td> <code title="">bernou;</code> </td> <td> U+0212C </td> <td> <span class="glyph" title="">ℬ</span> </td> <tr id="entity-Bernoullis"><td> <code title="">Bernoullis;</code> </td> <td> U+0212C </td> <td> <span class="glyph" title="">ℬ</span> </td> <tr id="entity-Beta"><td> <code title="">Beta;</code> </td> <td> U+00392 </td <td> <span class="glyph" title="">Β</span> </td> <tr id="entity-beta"><td> <code title="">beta;</code> </td> <td> U+003B2 </td> <td> <span class="glyph" title="">β</span> </td> <tr id="entity-beth"><td> <code title="">beth;</code> </td> <td> U+02136 </td> <td> <span class="glyph" title="">ℶ</span> </td> <tr id="entity-between"><td> <code title="">between;</code> </td> <td> U+0226C </td> <td> <span class="glyph" title="">≬</span> </td> <tr id="entity-Bfr"><td> <code title="">Bfr;</code> </td> <td> U+1D505 </td> <td> <span class="glyph" title="">𝔅</span> </td> <tr id="entity-bfr"><td> <code title="">bfr;</code> </td> <td> U+1D51F </td> <td> <span class="glyph" title="">𝔟</span> </td> <tr id="entity-bigcap"><td> <code title="">bigcap;</code> </td> <td> U+022C2 </td> <td> <span class="glyph" title="">⋂</span> </td> <tr id="entity-bigcirc"><td> <code title="">bigcirc;</code> </td> <td> U+025EF </td> <td> <span class="glyph" title="">◯</span> </td> <tr id="entitybigcup"><td> <code title="">bigcup;</code> </td> <td> U+022C3 </td> <td> <span class="glyph" title="">⋃</span> </td> <tr id="entity-bigodot"><td> <code title="">bigodot;</code> </td> <td> U+02A00 </td> <td> <span class="glyph" title="">⨀</span> </td> <tr id="entity-bigoplus"><td> <code title="">bigoplus;</code> </td> <td> U+02A01 </td> <td> <span class="glyph" title="">⨁</span> </td> <tr id="entity-bigotimes"><td> <code title="">bigotimes;</code> </td> <td> U+02A02 </td> <td> <span class="glyph" title="">⨂</span> </td> <tr id="entity-bigsqcup"><td> <code title="">bigsqcup;</code> </td> <td> U+02A06 </td> <td> <span class="glyph" title="">⨆</span> </td> <tr id="entity-bigstar"><td> <code title="">bigstar;</code> </td> <td> U+02605 </td> <td> <span class="glyph" title="">★</span> </td> <tr id="entity-bigtriangledown"><td> <code title="">bigtriangledown;</code> </td> <td> U+025BD </td> <td> <span class="glyph" title="">▽</span> </td> <tr id="entity-bigtriangleup"><d> <code title="">bigtriangleup;</code> </td> <td> U+025B3 </td> <td> <span class="glyph" title="">△</span> </td> <tr id="entity-biguplus"><td> <code title="">biguplus;</code> </td> <td> U+02A04 </td> <td> <span class="glyph" title="">⨄</span> </td> <tr id="entity-bigvee"><td> <code title="">bigvee;</code> </td> <td> U+022C1 </td> <td> <span class="glyph" title="">⋁</span> </td> <tr id="entity-bigwedge"><td> <code title="">bigwedge;</code> </td> <td> U+022C0 </td> <td> <span class="glyph" title="">⋀</span> </td> <tr id="entity-bkarow"><td> <code title="">bkarow;</code> </td> <td> U+0290D </td> <td> <span class="glyph" title="">⤍</span> </td> <tr id="entity-blacklozenge"><td> <code title="">blacklozenge;</code> </td> <td> U+029EB </td> <td> <span class="glyph" title="">⧫</span> </td> <tr id="entity-blacksquare"><td> <code title="">blacksquare;</code> </td> <td> U+025AA </td> <td> <span class="glyph" title="">▪</span> </td> <tr id="entity-blacktriangle"><td> <code itle="">blacktriangle;</code> </td> <td> U+025B4 </td> <td> <span class="glyph" title="">▴</span> </td> <tr id="entity-blacktriangledown"><td> <code title="">blacktriangledown;</code> </td> <td> U+025BE </td> <td> <span class="glyph" title="">▾</span> </td> <tr id="entity-blacktriangleleft"><td> <code title="">blacktriangleleft;</code> </td> <td> U+025C2 </td> <td> <span class="glyph" title="">◂</span> </td> <tr id="entity-blacktriangleright"><td> <code title="">blacktriangleright;</code> </td> <td> U+025B8 </td> <td> <span class="glyph" title="">▸</span> </td> <tr id="entity-blank"><td> <code title="">blank;</code> </td> <td> U+02423 </td> <td> <span class="glyph" title="">␣</span> </td> <tr id="entity-blk12"><td> <code title="">blk12;</code> </td> <td> U+02592 </td> <td> <span class="glyph" title="">▒</span> </td> <tr id="entity-blk14"><td> <code title="">blk14;</code> </td> <td> U+02591 </td> <td> <span class="glyph" title="">░</span> </td> <tr id="entity-blk34">td> <code title="">blk34;</code> </td> <td> U+02593 </td> <td> <span class="glyph" title="">▓</span> </td> <tr id="entity-block"><td> <code title="">block;</code> </td> <td> U+02588 </td> <td> <span class="glyph" title="">█</span> </td> <tr id="entity-bne"><td> <code title="">bne;</code> </td> <td> U+0003D U+020E5 </td> <td> <span class="glyph compound" title="">=⃥</span> </td> <tr id="entity-bnequiv"><td> <code title="">bnequiv;</code> </td> <td> U+02261 U+020E5 </td> <td> <span class="glyph compound" title="">≡⃥</span> </td> <tr id="entity-bNot"><td> <code title="">bNot;</code> </td> <td> U+02AED </td> <td> <span class="glyph" title="">⫭</span> </td> <tr id="entity-bnot"><td> <code title="">bnot;</code> </td> <td> U+02310 </td> <td> <span class="glyph" title="">⌐</span> </td> <tr id="entity-Bopf"><td> <code title="">Bopf;</code> </td> <td> U+1D539 </td> <td> <span class="glyph" title="">𝔹</span> </td> <tr id="entity-bopf"><td> <code title="">bopf;</code> /td> <td> U+1D553 </td> <td> <span class="glyph" title="">𝕓</span> </td> <tr id="entity-bot"><td> <code title="">bot;</code> </td> <td> U+022A5 </td> <td> <span class="glyph" title="">⊥</span> </td> <tr id="entity-bottom"><td> <code title="">bottom;</code> </td> <td> U+022A5 </td> <td> <span class="glyph" title="">⊥</span> </td> <tr id="entity-bowtie"><td> <code title="">bowtie;</code> </td> <td> U+022C8 </td> <td> <span class="glyph" title="">⋈</span> </td> <tr id="entity-boxbox"><td> <code title="">boxbox;</code> </td> <td> U+029C9 </td> <td> <span class="glyph" title="">⧉</span> </td> <tr id="entity-boxDL"><td> <code title="">boxDL;</code> </td> <td> U+02557 </td> <td> <span class="glyph" title="">╗</span> </td> <tr id="entity-boxDl"><td> <code title="">boxDl;</code> </td> <td> U+02556 </td> <td> <span class="glyph" title="">╖</span> </td> <tr id="entity-boxdL"><td> <code title="">boxdL;</code> </td> <td> U+02555 </td> <td> <span class="glyph" title="">╕</pan> </td> <tr id="entity-boxdl"><td> <code title="">boxdl;</code> </td> <td> U+02510 </td> <td> <span class="glyph" title="">┐</span> </td> <tr id="entity-boxDR"><td> <code title="">boxDR;</code> </td> <td> U+02554 </td> <td> <span class="glyph" title="">╔</span> </td> <tr id="entity-boxDr"><td> <code title="">boxDr;</code> </td> <td> U+02553 </td> <td> <span class="glyph" title="">╓</span> </td> <tr id="entity-boxdR"><td> <code title="">boxdR;</code> </td> <td> U+02552 </td> <td> <span class="glyph" title="">╒</span> </td> <tr id="entity-boxdr"><td> <code title="">boxdr;</code> </td> <td> U+0250C </td> <td> <span class="glyph" title="">┌</span> </td> <tr id="entity-boxH"><td> <code title="">boxH;</code> </td> <td> U+02550 </td> <td> <span class="glyph" title="">═</span> </td> <tr id="entity-boxh"><td> <code title="">boxh;</code> </td> <td> U+02500 </td> <td> <span class="glyph" title="">─</span> </td> <tr id="entity-boxHD"><td> <code title="">boxHD;</code> </td> <d> U+02566 </td> <td> <span class="glyph" title="">╦</span> </td> <tr id="entity-boxHd"><td> <code title="">boxHd;</code> </td> <td> U+02564 </td> <td> <span class="glyph" title="">╤</span> </td> <tr id="entity-boxhD"><td> <code title="">boxhD;</code> </td> <td> U+02565 </td> <td> <span class="glyph" title="">╥</span> </td> <tr id="entity-boxhd"><td> <code title="">boxhd;</code> </td> <td> U+0252C </td> <td> <span class="glyph" title="">┬</span> </td> <tr id="entity-boxHU"><td> <code title="">boxHU;</code> </td> <td> U+02569 </td> <td> <span class="glyph" title="">╩</span> </td> <tr id="entity-boxHu"><td> <code title="">boxHu;</code> </td> <td> U+02567 </td> <td> <span class="glyph" title="">╧</span> </td> <tr id="entity-boxhU"><td> <code title="">boxhU;</code> </td> <td> U+02568 </td> <td> <span class="glyph" title="">╨</span> </td> <tr id="entity-boxhu"><td> <code title="">boxhu;</code> </td> <td> U+02534 </td> <td> <span class="glyph" title="">┴</span> </td <tr id="entity-boxminus"><td> <code title="">boxminus;</code> </td> <td> U+0229F </td> <td> <span class="glyph" title="">⊟</span> </td> <tr id="entity-boxplus"><td> <code title="">boxplus;</code> </td> <td> U+0229E </td> <td> <span class="glyph" title="">⊞</span> </td> <tr id="entity-boxtimes"><td> <code title="">boxtimes;</code> </td> <td> U+022A0 </td> <td> <span class="glyph" title="">⊠</span> </td> <tr id="entity-boxUL"><td> <code title="">boxUL;</code> </td> <td> U+0255D </td> <td> <span class="glyph" title="">╝</span> </td> <tr id="entity-boxUl"><td> <code title="">boxUl;</code> </td> <td> U+0255C </td> <td> <span class="glyph" title="">╜</span> </td> <tr id="entity-boxuL"><td> <code title="">boxuL;</code> </td> <td> U+0255B </td> <td> <span class="glyph" title="">╛</span> </td> <tr id="entity-boxul"><td> <code title="">boxul;</code> </td> <td> U+02518 </td> <td> <span class="glyph" title="">┘</span> </td> <tr id="entity-boxUR"><td> <code title="">boxUR;</cod> </td> <td> U+0255A </td> <td> <span class="glyph" title="">╚</span> </td> <tr id="entity-boxUr"><td> <code title="">boxUr;</code> </td> <td> U+02559 </td> <td> <span class="glyph" title="">╙</span> </td> <tr id="entity-boxuR"><td> <code title="">boxuR;</code> </td> <td> U+02558 </td> <td> <span class="glyph" title="">╘</span> </td> <tr id="entity-boxur"><td> <code title="">boxur;</code> </td> <td> U+02514 </td> <td> <span class="glyph" title="">└</span> </td> <tr id="entity-boxV"><td> <code title="">boxV;</code> </td> <td> U+02551 </td> <td> <span class="glyph" title="">║</span> </td> <tr id="entity-boxv"><td> <code title="">boxv;</code> </td> <td> U+02502 </td> <td> <span class="glyph" title="">│</span> </td> <tr id="entity-boxVH"><td> <code title="">boxVH;</code> </td> <td> U+0256C </td> <td> <span class="glyph" title="">╬</span> </td> <tr id="entity-boxVh"><td> <code title="">boxVh;</code> </td> <td> U+0256B </td> <td> <span class="glyph" title="">╫</span </td> <tr id="entity-boxvH"><td> <code title="">boxvH;</code> </td> <td> U+0256A </td> <td> <span class="glyph" title="">╪</span> </td> <tr id="entity-boxvh"><td> <code title="">boxvh;</code> </td> <td> U+0253C </td> <td> <span class="glyph" title="">┼</span> </td> <tr id="entity-boxVL"><td> <code title="">boxVL;</code> </td> <td> U+02563 </td> <td> <span class="glyph" title="">╣</span> </td> <tr id="entity-boxVl"><td> <code title="">boxVl;</code> </td> <td> U+02562 </td> <td> <span class="glyph" title="">╢</span> </td> <tr id="entity-boxvL"><td> <code title="">boxvL;</code> </td> <td> U+02561 </td> <td> <span class="glyph" title="">╡</span> </td> <tr id="entity-boxvl"><td> <code title="">boxvl;</code> </td> <td> U+02524 </td> <td> <span class="glyph" title="">┤</span> </td> <tr id="entity-boxVR"><td> <code title="">boxVR;</code> </td> <td> U+02560 </td> <td> <span class="glyph" title="">╠</span> </td> <tr id="entity-boxVr"><td> <code title="">boxVr;</code> </td> <d> U+0255F </td> <td> <span class="glyph" title="">╟</span> </td> <tr id="entity-boxvR"><td> <code title="">boxvR;</code> </td> <td> U+0255E </td> <td> <span class="glyph" title="">╞</span> </td> <tr id="entity-boxvr"><td> <code title="">boxvr;</code> </td> <td> U+0251C </td> <td> <span class="glyph" title="">├</span> </td> <tr id="entity-bprime"><td> <code title="">bprime;</code> </td> <td> U+02035 </td> <td> <span class="glyph" title="">‵</span> </td> <tr id="entity-Breve"><td> <code title="">Breve;</code> </td> <td> U+002D8 </td> <td> <span class="glyph" title="">˘</span> </td> <tr id="entity-breve"><td> <code title="">breve;</code> </td> <td> U+002D8 </td> <td> <span class="glyph" title="">˘</span> </td> <tr id="entity-brvbar"><td> <code title="">brvbar;</code> </td> <td> U+000A6 </td> <td> <span class="glyph" title="">¦</span> </td> <tr id="entity-Bscr"><td> <code title="">Bscr;</code> </td> <td> U+0212C </td> <td> <span class="glyph" title="">ℬ</span> </t> <tr id="entity-bscr"><td> <code title="">bscr;</code> </td> <td> U+1D4B7 </td> <td> <span class="glyph" title="">𝒷</span> </td> <tr id="entity-bsemi"><td> <code title="">bsemi;</code> </td> <td> U+0204F </td> <td> <span class="glyph" title="">⁏</span> </td> <tr id="entity-bsim"><td> <code title="">bsim;</code> </td> <td> U+0223D </td> <td> <span class="glyph" title="">∽</span> </td> <tr id="entity-bsime"><td> <code title="">bsime;</code> </td> <td> U+022CD </td> <td> <span class="glyph" title="">⋍</span> </td> <tr id="entity-bsol"><td> <code title="">bsol;</code> </td> <td> U+0005C </td> <td> <span class="glyph" title="">\</span> </td> <tr id="entity-bsolb"><td> <code title="">bsolb;</code> </td> <td> U+029C5 </td> <td> <span class="glyph" title="">⧅</span> </td> <tr id="entity-bsolhsub"><td> <code title="">bsolhsub;</code> </td> <td> U+027C8 </td> <td> <span class="glyph" title="">⟈</span> </td> <tr id="entity-bull"><td> <code title="">bull;</code> </td> <td> U+0202 </td> <td> <span class="glyph" title="">•</span> </td> <tr id="entity-bullet"><td> <code title="">bullet;</code> </td> <td> U+02022 </td> <td> <span class="glyph" title="">•</span> </td> <tr id="entity-bump"><td> <code title="">bump;</code> </td> <td> U+0224E </td> <td> <span class="glyph" title="">≎</span> </td> <tr id="entity-bumpE"><td> <code title="">bumpE;</code> </td> <td> U+02AAE </td> <td> <span class="glyph" title="">⪮</span> </td> <tr id="entity-bumpe"><td> <code title="">bumpe;</code> </td> <td> U+0224F </td> <td> <span class="glyph" title="">≏</span> </td> <tr id="entity-Bumpeq"><td> <code title="">Bumpeq;</code> </td> <td> U+0224E </td> <td> <span class="glyph" title="">≎</span> </td> <tr id="entity-bumpeq"><td> <code title="">bumpeq;</code> </td> <td> U+0224F </td> <td> <span class="glyph" title="">≏</span> </td> <tr id="entity-Cacute"><td> <code title="">Cacute;</code> </td> <td> U+00106 </td> <td> <span class="glyph" title="">Ć</span> </td> <trid="entity-cacute"><td> <code title="">cacute;</code> </td> <td> U+00107 </td> <td> <span class="glyph" title="">ć</span> </td> <tr id="entity-Cap"><td> <code title="">Cap;</code> </td> <td> U+022D2 </td> <td> <span class="glyph" title="">⋒</span> </td> <tr id="entity-cap"><td> <code title="">cap;</code> </td> <td> U+02229 </td> <td> <span class="glyph" title="">∩</span> </td> <tr id="entity-capand"><td> <code title="">capand;</code> </td> <td> U+02A44 </td> <td> <span class="glyph" title="">⩄</span> </td> <tr id="entity-capbrcup"><td> <code title="">capbrcup;</code> </td> <td> U+02A49 </td> <td> <span class="glyph" title="">⩉</span> </td> <tr id="entity-capcap"><td> <code title="">capcap;</code> </td> <td> U+02A4B </td> <td> <span class="glyph" title="">⩋</span> </td> <tr id="entity-capcup"><td> <code title="">capcup;</code> </td> <td> U+02A47 </td> <td> <span class="glyph" title="">⩇</span> </td> <tr id="entity-capdot"><td> <code title="">capdot;</code> </td> <td U+02A40 </td> <td> <span class="glyph" title="">⩀</span> </td> <tr id="entity-CapitalDifferentialD"><td> <code title="">CapitalDifferentialD;</code> </td> <td> U+02145 </td> <td> <span class="glyph" title="">ⅅ</span> </td> <tr id="entity-caps"><td> <code title="">caps;</code> </td> <td> U+02229 U+0FE00 </td> <td> <span class="glyph compound" title="">∩︀</span> </td> <tr id="entity-caret"><td> <code title="">caret;</code> </td> <td> U+02041 </td> <td> <span class="glyph" title="">⁁</span> </td> <tr id="entity-caron"><td> <code title="">caron;</code> </td> <td> U+002C7 </td> <td> <span class="glyph" title="">ˇ</span> </td> <tr id="entity-Cayleys"><td> <code title="">Cayleys;</code> </td> <td> U+0212D </td> <td> <span class="glyph" title="">ℭ</span> </td> <tr id="entity-ccaps"><td> <code title="">ccaps;</code> </td> <td> U+02A4D </td> <td> <span class="glyph" title="">⩍</span> </td> <tr id="entity-Ccaron"><td> <code title="">Ccaron;</code> </td> <td> U+0010C </t> <td> <span class="glyph" title="">Č</span> </td> <tr id="entity-ccaron"><td> <code title="">ccaron;</code> </td> <td> U+0010D </td> <td> <span class="glyph" title="">č</span> </td> <tr id="entity-Ccedil"><td> <code title="">Ccedil;</code> </td> <td> U+000C7 </td> <td> <span class="glyph" title="">Ç</span> </td> <tr id="entity-ccedil"><td> <code title="">ccedil;</code> </td> <td> U+000E7 </td> <td> <span class="glyph" title="">ç</span> </td> <tr id="entity-Ccirc"><td> <code title="">Ccirc;</code> </td> <td> U+00108 </td> <td> <span class="glyph" title="">Ĉ</span> </td> <tr id="entity-ccirc"><td> <code title="">ccirc;</code> </td> <td> U+00109 </td> <td> <span class="glyph" title="">ĉ</span> </td> <tr id="entity-Cconint"><td> <code title="">Cconint;</code> </td> <td> U+02230 </td> <td> <span class="glyph" title="">∰</span> </td> <tr id="entity-ccups"><td> <code title="">ccups;</code> </td> <td> U+02A4C </td> <td> <span class="glyph" title="">⩌</span> </td> <tr d="entity-ccupssm"><td> <code title="">ccupssm;</code> </td> <td> U+02A50 </td> <td> <span class="glyph" title="">⩐</span> </td> <tr id="entity-Cdot"><td> <code title="">Cdot;</code> </td> <td> U+0010A </td> <td> <span class="glyph" title="">Ċ</span> </td> <tr id="entity-cdot"><td> <code title="">cdot;</code> </td> <td> U+0010B </td> <td> <span class="glyph" title="">ċ</span> </td> <tr id="entity-cedil"><td> <code title="">cedil;</code> </td> <td> U+000B8 </td> <td> <span class="glyph" title="">¸</span> </td> <tr id="entity-Cedilla"><td> <code title="">Cedilla;</code> </td> <td> U+000B8 </td> <td> <span class="glyph" title="">¸</span> </td> <tr id="entity-cemptyv"><td> <code title="">cemptyv;</code> </td> <td> U+029B2 </td> <td> <span class="glyph" title="">⦲</span> </td> <tr id="entity-cent"><td> <code title="">cent;</code> </td> <td> U+000A2 </td> <td> <span class="glyph" title="">¢</span> </td> <tr id="entity-CenterDot"><td> <code title="">CenterDot;</code> </td> td> U+000B7 </td> <td> <span class="glyph" title="">·</span> </td> <tr id="entity-centerdot"><td> <code title="">centerdot;</code> </td> <td> U+000B7 </td> <td> <span class="glyph" title="">·</span> </td> <tr id="entity-Cfr"><td> <code title="">Cfr;</code> </td> <td> U+0212D </td> <td> <span class="glyph" title="">ℭ</span> </td> <tr id="entity-cfr"><td> <code title="">cfr;</code> </td> <td> U+1D520 </td> <td> <span class="glyph" title="">𝔠</span> </td> <tr id="entity-CHcy"><td> <code title="">CHcy;</code> </td> <td> U+00427 </td> <td> <span class="glyph" title="">Ч</span> </td> <tr id="entity-chcy"><td> <code title="">chcy;</code> </td> <td> U+00447 </td> <td> <span class="glyph" title="">ч</span> </td> <tr id="entity-check"><td> <code title="">check;</code> </td> <td> U+02713 </td> <td> <span class="glyph" title="">✓</span> </td> <tr id="entity-checkmark"><td> <code title="">checkmark;</code> </td> <td> U+02713 </td> <td> <span class="glyph" title="">✓<span> </td> <tr id="entity-Chi"><td> <code title="">Chi;</code> </td> <td> U+003A7 </td> <td> <span class="glyph" title="">Χ</span> </td> <tr id="entity-chi"><td> <code title="">chi;</code> </td> <td> U+003C7 </td> <td> <span class="glyph" title="">χ</span> </td> <tr id="entity-cir"><td> <code title="">cir;</code> </td> <td> U+025CB </td> <td> <span class="glyph" title="">○</span> </td> <tr id="entity-circ"><td> <code title="">circ;</code> </td> <td> U+002C6 </td> <td> <span class="glyph" title="">ˆ</span> </td> <tr id="entity-circeq"><td> <code title="">circeq;</code> </td> <td> U+02257 </td> <td> <span class="glyph" title="">≗</span> </td> <tr id="entity-circlearrowleft"><td> <code title="">circlearrowleft;</code> </td> <td> U+021BA </td> <td> <span class="glyph" title="">↺</span> </td> <tr id="entity-circlearrowright"><td> <code title="">circlearrowright;</code> </td> <td> U+021BB </td> <td> <span class="glyph" title="">↻</span> </td> <tr id="entity-circledast"><td> <ode title="">circledast;</code> </td> <td> U+0229B </td> <td> <span class="glyph" title="">⊛</span> </td> <tr id="entity-circledcirc"><td> <code title="">circledcirc;</code> </td> <td> U+0229A </td> <td> <span class="glyph" title="">⊚</span> </td> <tr id="entity-circleddash"><td> <code title="">circleddash;</code> </td> <td> U+0229D </td> <td> <span class="glyph" title="">⊝</span> </td> <tr id="entity-CircleDot"><td> <code title="">CircleDot;</code> </td> <td> U+02299 </td> <td> <span class="glyph" title="">⊙</span> </td> <tr id="entity-circledR"><td> <code title="">circledR;</code> </td> <td> U+000AE </td> <td> <span class="glyph" title="">®</span> </td> <tr id="entity-circledS"><td> <code title="">circledS;</code> </td> <td> U+024C8 </td> <td> <span class="glyph" title="">Ⓢ</span> </td> <tr id="entity-CircleMinus"><td> <code title="">CircleMinus;</code> </td> <td> U+02296 </td> <td> <span class="glyph" title="">⊖</span> </td> <tr id="entity-CirclePlus"><td> <code tile="">CirclePlus;</code> </td> <td> U+02295 </td> <td> <span class="glyph" title="">⊕</span> </td> <tr id="entity-CircleTimes"><td> <code title="">CircleTimes;</code> </td> <td> U+02297 </td> <td> <span class="glyph" title="">⊗</span> </td> <tr id="entity-cirE"><td> <code title="">cirE;</code> </td> <td> U+029C3 </td> <td> <span class="glyph" title="">⧃</span> </td> <tr id="entity-cire"><td> <code title="">cire;</code> </td> <td> U+02257 </td> <td> <span class="glyph" title="">≗</span> </td> <tr id="entity-cirfnint"><td> <code title="">cirfnint;</code> </td> <td> U+02A10 </td> <td> <span class="glyph" title="">⨐</span> </td> <tr id="entity-cirmid"><td> <code title="">cirmid;</code> </td> <td> U+02AEF </td> <td> <span class="glyph" title="">⫯</span> </td> <tr id="entity-cirscir"><td> <code title="">cirscir;</code> </td> <td> U+029C2 </td> <td> <span class="glyph" title="">⧂</span> </td> <tr id="entity-ClockwiseContourIntegral"><td> <code title="">ClockwiseContouIntegral;</code> </td> <td> U+02232 </td> <td> <span class="glyph" title="">∲</span> </td> <tr id="entity-CloseCurlyDoubleQuote"><td> <code title="">CloseCurlyDoubleQuote;</code> </td> <td> U+0201D </td> <td> <span class="glyph" title="">”</span> </td> <tr id="entity-CloseCurlyQuote"><td> <code title="">CloseCurlyQuote;</code> </td> <td> U+02019 </td> <td> <span class="glyph" title="">’</span> </td> <tr id="entity-clubs"><td> <code title="">clubs;</code> </td> <td> U+02663 </td> <td> <span class="glyph" title="">♣</span> </td> <tr id="entity-clubsuit"><td> <code title="">clubsuit;</code> </td> <td> U+02663 </td> <td> <span class="glyph" title="">♣</span> </td> <tr id="entity-Colon"><td> <code title="">Colon;</code> </td> <td> U+02237 </td> <td> <span class="glyph" title="">∷</span> </td> <tr id="entity-colon"><td> <code title="">colon;</code> </td> <td> U+0003A </td> <td> <span class="glyph" title="">:</span> </td> <tr id="entity-Colone"><td> <code title="">Colone;</code></td> <td> U+02A74 </td> <td> <span class="glyph" title="">⩴</span> </td> <tr id="entity-colone"><td> <code title="">colone;</code> </td> <td> U+02254 </td> <td> <span class="glyph" title="">≔</span> </td> <tr id="entity-coloneq"><td> <code title="">coloneq;</code> </td> <td> U+02254 </td> <td> <span class="glyph" title="">≔</span> </td> <tr id="entity-comma"><td> <code title="">comma;</code> </td> <td> U+0002C </td> <td> <span class="glyph" title="">,</span> </td> <tr id="entity-commat"><td> <code title="">commat;</code> </td> <td> U+00040 </td> <td> <span class="glyph" title="">@</span> </td> <tr id="entity-comp"><td> <code title="">comp;</code> </td> <td> U+02201 </td> <td> <span class="glyph" title="">∁</span> </td> <tr id="entity-compfn"><td> <code title="">compfn;</code> </td> <td> U+02218 </td> <td> <span class="glyph" title="">∘</span> </td> <tr id="entity-complement"><td> <code title="">complement;</code> </td> <td> U+02201 </td> <td> <span class="glyph" title="">ͫ</span> </td> <tr id="entity-complexes"><td> <code title="">complexes;</code> </td> <td> U+02102 </td> <td> <span class="glyph" title="">ℂ</span> </td> <tr id="entity-cong"><td> <code title="">cong;</code> </td> <td> U+02245 </td> <td> <span class="glyph" title="">≅</span> </td> <tr id="entity-congdot"><td> <code title="">congdot;</code> </td> <td> U+02A6D </td> <td> <span class="glyph" title="">⩭</span> </td> <tr id="entity-Congruent"><td> <code title="">Congruent;</code> </td> <td> U+02261 </td> <td> <span class="glyph" title="">≡</span> </td> <tr id="entity-Conint"><td> <code title="">Conint;</code> </td> <td> U+0222F </td> <td> <span class="glyph" title="">∯</span> </td> <tr id="entity-conint"><td> <code title="">conint;</code> </td> <td> U+0222E </td> <td> <span class="glyph" title="">∮</span> </td> <tr id="entity-ContourIntegral"><td> <code title="">ContourIntegral;</code> </td> <td> U+0222E </td> <td> <span class="glyph" title="">∮</span> </td> <tr id="entiy-Copf"><td> <code title="">Copf;</code> </td> <td> U+02102 </td> <td> <span class="glyph" title="">ℂ</span> </td> <tr id="entity-copf"><td> <code title="">copf;</code> </td> <td> U+1D554 </td> <td> <span class="glyph" title="">𝕔</span> </td> <tr id="entity-coprod"><td> <code title="">coprod;</code> </td> <td> U+02210 </td> <td> <span class="glyph" title="">∐</span> </td> <tr id="entity-Coproduct"><td> <code title="">Coproduct;</code> </td> <td> U+02210 </td> <td> <span class="glyph" title="">∐</span> </td> <tr id="entity-COPY"><td> <code title="">COPY;</code> </td> <td> U+000A9 </td> <td> <span class="glyph" title="">©</span> </td> <tr id="entity-copy"><td> <code title="">copy;</code> </td> <td> U+000A9 </td> <td> <span class="glyph" title="">©</span> </td> <tr id="entity-copysr"><td> <code title="">copysr;</code> </td> <td> U+02117 </td> <td> <span class="glyph" title="">℗</span> </td> <tr id="entity-CounterClockwiseContourIntegral"><td> <code title="">CounterClocwiseContourIntegral;</code> </td> <td> U+02233 </td> <td> <span class="glyph" title="">∳</span> </td> <tr id="entity-crarr"><td> <code title="">crarr;</code> </td> <td> U+021B5 </td> <td> <span class="glyph" title="">↵</span> </td> <tr id="entity-Cross"><td> <code title="">Cross;</code> </td> <td> U+02A2F </td> <td> <span class="glyph" title="">⨯</span> </td> <tr id="entity-cross"><td> <code title="">cross;</code> </td> <td> U+02717 </td> <td> <span class="glyph" title="">✗</span> </td> <tr id="entity-Cscr"><td> <code title="">Cscr;</code> </td> <td> U+1D49E </td> <td> <span class="glyph" title="">𝒞</span> </td> <tr id="entity-cscr"><td> <code title="">cscr;</code> </td> <td> U+1D4B8 </td> <td> <span class="glyph" title="">𝒸</span> </td> <tr id="entity-csub"><td> <code title="">csub;</code> </td> <td> U+02ACF </td> <td> <span class="glyph" title="">⫏</span> </td> <tr id="entity-csube"><td> <code title="">csube;</code> </td> <td> U+02AD1 </td> <td> <span class"glyph" title="">⫑</span> </td> <tr id="entity-csup"><td> <code title="">csup;</code> </td> <td> U+02AD0 </td> <td> <span class="glyph" title="">⫐</span> </td> <tr id="entity-csupe"><td> <code title="">csupe;</code> </td> <td> U+02AD2 </td> <td> <span class="glyph" title="">⫒</span> </td> <tr id="entity-ctdot"><td> <code title="">ctdot;</code> </td> <td> U+022EF </td> <td> <span class="glyph" title="">⋯</span> </td> <tr id="entity-cudarrl"><td> <code title="">cudarrl;</code> </td> <td> U+02938 </td> <td> <span class="glyph" title="">⤸</span> </td> <tr id="entity-cudarrr"><td> <code title="">cudarrr;</code> </td> <td> U+02935 </td> <td> <span class="glyph" title="">⤵</span> </td> <tr id="entity-cuepr"><td> <code title="">cuepr;</code> </td> <td> U+022DE </td> <td> <span class="glyph" title="">⋞</span> </td> <tr id="entity-cuesc"><td> <code title="">cuesc;</code> </td> <td> U+022DF </td> <td> <span class="glyph" title="">⋟</span> </td> <tr id="entity-cularr><td> <code title="">cularr;</code> </td> <td> U+021B6 </td> <td> <span class="glyph" title="">↶</span> </td> <tr id="entity-cularrp"><td> <code title="">cularrp;</code> </td> <td> U+0293D </td> <td> <span class="glyph" title="">⤽</span> </td> <tr id="entity-Cup"><td> <code title="">Cup;</code> </td> <td> U+022D3 </td> <td> <span class="glyph" title="">⋓</span> </td> <tr id="entity-cup"><td> <code title="">cup;</code> </td> <td> U+0222A </td> <td> <span class="glyph" title="">∪</span> </td> <tr id="entity-cupbrcap"><td> <code title="">cupbrcap;</code> </td> <td> U+02A48 </td> <td> <span class="glyph" title="">⩈</span> </td> <tr id="entity-CupCap"><td> <code title="">CupCap;</code> </td> <td> U+0224D </td> <td> <span class="glyph" title="">≍</span> </td> <tr id="entity-cupcap"><td> <code title="">cupcap;</code> </td> <td> U+02A46 </td> <td> <span class="glyph" title="">⩆</span> </td> <tr id="entity-cupcup"><td> <code title="">cupcup;</code> </td> <td> U+02A4A </td> td> <span class="glyph" title="">⩊</span> </td> <tr id="entity-cupdot"><td> <code title="">cupdot;</code> </td> <td> U+0228D </td> <td> <span class="glyph" title="">⊍</span> </td> <tr id="entity-cupor"><td> <code title="">cupor;</code> </td> <td> U+02A45 </td> <td> <span class="glyph" title="">⩅</span> </td> <tr id="entity-cups"><td> <code title="">cups;</code> </td> <td> U+0222A U+0FE00 </td> <td> <span class="glyph compound" title="">∪︀</span> </td> <tr id="entity-curarr"><td> <code title="">curarr;</code> </td> <td> U+021B7 </td> <td> <span class="glyph" title="">↷</span> </td> <tr id="entity-curarrm"><td> <code title="">curarrm;</code> </td> <td> U+0293C </td> <td> <span class="glyph" title="">⤼</span> </td> <tr id="entity-curlyeqprec"><td> <code title="">curlyeqprec;</code> </td> <td> U+022DE </td> <td> <span class="glyph" title="">⋞</span> </td> <tr id="entity-curlyeqsucc"><td> <code title="">curlyeqsucc;</code> </td> <td> U+022DF </td> <td> <span clas="glyph" title="">⋟</span> </td> <tr id="entity-curlyvee"><td> <code title="">curlyvee;</code> </td> <td> U+022CE </td> <td> <span class="glyph" title="">⋎</span> </td> <tr id="entity-curlywedge"><td> <code title="">curlywedge;</code> </td> <td> U+022CF </td> <td> <span class="glyph" title="">⋏</span> </td> <tr id="entity-curren"><td> <code title="">curren;</code> </td> <td> U+000A4 </td> <td> <span class="glyph" title="">¤</span> </td> <tr id="entity-curvearrowleft"><td> <code title="">curvearrowleft;</code> </td> <td> U+021B6 </td> <td> <span class="glyph" title="">↶</span> </td> <tr id="entity-curvearrowright"><td> <code title="">curvearrowright;</code> </td> <td> U+021B7 </td> <td> <span class="glyph" title="">↷</span> </td> <tr id="entity-cuvee"><td> <code title="">cuvee;</code> </td> <td> U+022CE </td> <td> <span class="glyph" title="">⋎</span> </td> <tr id="entity-cuwed"><td> <code title="">cuwed;</code> </td> <td> U+022CF </td> <td> <span class="glyph" titl="">⋏</span> </td> <tr id="entity-cwconint"><td> <code title="">cwconint;</code> </td> <td> U+02232 </td> <td> <span class="glyph" title="">∲</span> </td> <tr id="entity-cwint"><td> <code title="">cwint;</code> </td> <td> U+02231 </td> <td> <span class="glyph" title="">∱</span> </td> <tr id="entity-cylcty"><td> <code title="">cylcty;</code> </td> <td> U+0232D </td> <td> <span class="glyph" title="">⌭</span> </td> <tr id="entity-Dagger"><td> <code title="">Dagger;</code> </td> <td> U+02021 </td> <td> <span class="glyph" title="">‡</span> </td> <tr id="entity-dagger"><td> <code title="">dagger;</code> </td> <td> U+02020 </td> <td> <span class="glyph" title="">†</span> </td> <tr id="entity-daleth"><td> <code title="">daleth;</code> </td> <td> U+02138 </td> <td> <span class="glyph" title="">ℸ</span> </td> <tr id="entity-Darr"><td> <code title="">Darr;</code> </td> <td> U+021A1 </td> <td> <span class="glyph" title="">↡</span> </td> <tr id="entity-dArr"><td> <codetitle="">dArr;</code> </td> <td> U+021D3 </td> <td> <span class="glyph" title="">⇓</span> </td> <tr id="entity-darr"><td> <code title="">darr;</code> </td> <td> U+02193 </td> <td> <span class="glyph" title="">↓</span> </td> <tr id="entity-dash"><td> <code title="">dash;</code> </td> <td> U+02010 </td> <td> <span class="glyph" title="">‐</span> </td> <tr id="entity-Dashv"><td> <code title="">Dashv;</code> </td> <td> U+02AE4 </td> <td> <span class="glyph" title="">⫤</span> </td> <tr id="entity-dashv"><td> <code title="">dashv;</code> </td> <td> U+022A3 </td> <td> <span class="glyph" title="">⊣</span> </td> <tr id="entity-dbkarow"><td> <code title="">dbkarow;</code> </td> <td> U+0290F </td> <td> <span class="glyph" title="">⤏</span> </td> <tr id="entity-dblac"><td> <code title="">dblac;</code> </td> <td> U+002DD </td> <td> <span class="glyph" title="">˝</span> </td> <tr id="entity-Dcaron"><td> <code title="">Dcaron;</code> </td> <td> U+0010E </td> <td> <span class="glyp" title="">Ď</span> </td> <tr id="entity-dcaron"><td> <code title="">dcaron;</code> </td> <td> U+0010F </td> <td> <span class="glyph" title="">ď</span> </td> <tr id="entity-Dcy"><td> <code title="">Dcy;</code> </td> <td> U+00414 </td> <td> <span class="glyph" title="">Д</span> </td> <tr id="entity-dcy"><td> <code title="">dcy;</code> </td> <td> U+00434 </td> <td> <span class="glyph" title="">д</span> </td> <tr id="entity-DD"><td> <code title="">DD;</code> </td> <td> U+02145 </td> <td> <span class="glyph" title="">ⅅ</span> </td> <tr id="entity-dd"><td> <code title="">dd;</code> </td> <td> U+02146 </td> <td> <span class="glyph" title="">ⅆ</span> </td> <tr id="entity-ddagger"><td> <code title="">ddagger;</code> </td> <td> U+02021 </td> <td> <span class="glyph" title="">‡</span> </td> <tr id="entity-ddarr"><td> <code title="">ddarr;</code> </td> <td> U+021CA </td> <td> <span class="glyph" title="">⇊</span> </td> <tr id="entity-DDotrahd"><td> <code title="">DDotrahd</code> </td> <td> U+02911 </td> <td> <span class="glyph" title="">⤑</span> </td> <tr id="entity-ddotseq"><td> <code title="">ddotseq;</code> </td> <td> U+02A77 </td> <td> <span class="glyph" title="">⩷</span> </td> <tr id="entity-deg"><td> <code title="">deg;</code> </td> <td> U+000B0 </td> <td> <span class="glyph" title="">°</span> </td> <tr id="entity-Del"><td> <code title="">Del;</code> </td> <td> U+02207 </td> <td> <span class="glyph" title="">∇</span> </td> <tr id="entity-Delta"><td> <code title="">Delta;</code> </td> <td> U+00394 </td> <td> <span class="glyph" title="">Δ</span> </td> <tr id="entity-delta"><td> <code title="">delta;</code> </td> <td> U+003B4 </td> <td> <span class="glyph" title="">δ</span> </td> <tr id="entity-demptyv"><td> <code title="">demptyv;</code> </td> <td> U+029B1 </td> <td> <span class="glyph" title="">⦱</span> </td> <tr id="entity-dfisht"><td> <code title="">dfisht;</code> </td> <td> U+0297F </td> <td> <span class="glyph" title="">#10623;</span> </td> <tr id="entity-Dfr"><td> <code title="">Dfr;</code> </td> <td> U+1D507 </td> <td> <span class="glyph" title="">𝔇</span> </td> <tr id="entity-dfr"><td> <code title="">dfr;</code> </td> <td> U+1D521 </td> <td> <span class="glyph" title="">𝔡</span> </td> <tr id="entity-dHar"><td> <code title="">dHar;</code> </td> <td> U+02965 </td> <td> <span class="glyph" title="">⥥</span> </td> <tr id="entity-dharl"><td> <code title="">dharl;</code> </td> <td> U+021C3 </td> <td> <span class="glyph" title="">⇃</span> </td> <tr id="entity-dharr"><td> <code title="">dharr;</code> </td> <td> U+021C2 </td> <td> <span class="glyph" title="">⇂</span> </td> <tr id="entity-DiacriticalAcute"><td> <code title="">DiacriticalAcute;</code> </td> <td> U+000B4 </td> <td> <span class="glyph" title="">´</span> </td> <tr id="entity-DiacriticalDot"><td> <code title="">DiacriticalDot;</code> </td> <td> U+002D9 </td> <td> <span class="glyph" title="">˙</span> </td> <tr id="entity-iacriticalDoubleAcute"><td> <code title="">DiacriticalDoubleAcute;</code> </td> <td> U+002DD </td> <td> <span class="glyph" title="">˝</span> </td> <tr id="entity-DiacriticalGrave"><td> <code title="">DiacriticalGrave;</code> </td> <td> U+00060 </td> <td> <span class="glyph" title="">`</span> </td> <tr id="entity-DiacriticalTilde"><td> <code title="">DiacriticalTilde;</code> </td> <td> U+002DC </td> <td> <span class="glyph" title="">˜</span> </td> <tr id="entity-diam"><td> <code title="">diam;</code> </td> <td> U+022C4 </td> <td> <span class="glyph" title="">⋄</span> </td> <tr id="entity-Diamond"><td> <code title="">Diamond;</code> </td> <td> U+022C4 </td> <td> <span class="glyph" title="">⋄</span> </td> <tr id="entity-diamond"><td> <code title="">diamond;</code> </td> <td> U+022C4 </td> <td> <span class="glyph" title="">⋄</span> </td> <tr id="entity-diamondsuit"><td> <code title="">diamondsuit;</code> </td> <td> U+02666 </td> <td> <span class="glyph" title="">♦</span> </t> <tr id="entity-diams"><td> <code title="">diams;</code> </td> <td> U+02666 </td> <td> <span class="glyph" title="">♦</span> </td> <tr id="entity-die"><td> <code title="">die;</code> </td> <td> U+000A8 </td> <td> <span class="glyph" title="">¨</span> </td> <tr id="entity-DifferentialD"><td> <code title="">DifferentialD;</code> </td> <td> U+02146 </td> <td> <span class="glyph" title="">ⅆ</span> </td> <tr id="entity-digamma"><td> <code title="">digamma;</code> </td> <td> U+003DD </td> <td> <span class="glyph" title="">ϝ</span> </td> <tr id="entity-disin"><td> <code title="">disin;</code> </td> <td> U+022F2 </td> <td> <span class="glyph" title="">⋲</span> </td> <tr id="entity-div"><td> <code title="">div;</code> </td> <td> U+000F7 </td> <td> <span class="glyph" title="">÷</span> </td> <tr id="entity-divide"><td> <code title="">divide;</code> </td> <td> U+000F7 </td> <td> <span class="glyph" title="">÷</span> </td> <tr id="entity-divideontimes"><td> <code title="">dividontimes;</code> </td> <td> U+022C7 </td> <td> <span class="glyph" title="">⋇</span> </td> <tr id="entity-divonx"><td> <code title="">divonx;</code> </td> <td> U+022C7 </td> <td> <span class="glyph" title="">⋇</span> </td> <tr id="entity-DJcy"><td> <code title="">DJcy;</code> </td> <td> U+00402 </td> <td> <span class="glyph" title="">Ђ</span> </td> <tr id="entity-djcy"><td> <code title="">djcy;</code> </td> <td> U+00452 </td> <td> <span class="glyph" title="">ђ</span> </td> <tr id="entity-dlcorn"><td> <code title="">dlcorn;</code> </td> <td> U+0231E </td> <td> <span class="glyph" title="">⌞</span> </td> <tr id="entity-dlcrop"><td> <code title="">dlcrop;</code> </td> <td> U+0230D </td> <td> <span class="glyph" title="">⌍</span> </td> <tr id="entity-dollar"><td> <code title="">dollar;</code> </td> <td> U+00024 </td> <td> <span class="glyph" title="">$</span> </td> <tr id="entity-Dopf"><td> <code title="">Dopf;</code> </td> <td> U+1D53B </td> <td> <span class="glyph" title=""𝔻</span> </td> <tr id="entity-dopf"><td> <code title="">dopf;</code> </td> <td> U+1D555 </td> <td> <span class="glyph" title="">𝕕</span> </td> <tr id="entity-Dot"><td> <code title="">Dot;</code> </td> <td> U+000A8 </td> <td> <span class="glyph" title="">¨</span> </td> <tr id="entity-dot"><td> <code title="">dot;</code> </td> <td> U+002D9 </td> <td> <span class="glyph" title="">˙</span> </td> <tr id="entity-DotDot"><td> <code title="">DotDot;</code> </td> <td> U+020DC </td> <td> <span class="glyph composition" title="">◌⃜</span> </td> <tr id="entity-doteq"><td> <code title="">doteq;</code> </td> <td> U+02250 </td> <td> <span class="glyph" title="">≐</span> </td> <tr id="entity-doteqdot"><td> <code title="">doteqdot;</code> </td> <td> U+02251 </td> <td> <span class="glyph" title="">≑</span> </td> <tr id="entity-DotEqual"><td> <code title="">DotEqual;</code> </td> <td> U+02250 </td> <td> <span class="glyph" title="">≐</span> </td> <tr id="entity-dotminus">td> <code title="">dotminus;</code> </td> <td> U+02238 </td> <td> <span class="glyph" title="">∸</span> </td> <tr id="entity-dotplus"><td> <code title="">dotplus;</code> </td> <td> U+02214 </td> <td> <span class="glyph" title="">∔</span> </td> <tr id="entity-dotsquare"><td> <code title="">dotsquare;</code> </td> <td> U+022A1 </td> <td> <span class="glyph" title="">⊡</span> </td> <tr id="entity-doublebarwedge"><td> <code title="">doublebarwedge;</code> </td> <td> U+02306 </td> <td> <span class="glyph" title="">⌆</span> </td> <tr id="entity-DoubleContourIntegral"><td> <code title="">DoubleContourIntegral;</code> </td> <td> U+0222F </td> <td> <span class="glyph" title="">∯</span> </td> <tr id="entity-DoubleDot"><td> <code title="">DoubleDot;</code> </td> <td> U+000A8 </td> <td> <span class="glyph" title="">¨</span> </td> <tr id="entity-DoubleDownArrow"><td> <code title="">DoubleDownArrow;</code> </td> <td> U+021D3 </td> <td> <span class="glyph" title="">⇓</span> </td> <trid="entity-DoubleLeftArrow"><td> <code title="">DoubleLeftArrow;</code> </td> <td> U+021D0 </td> <td> <span class="glyph" title="">⇐</span> </td> <tr id="entity-DoubleLeftRightArrow"><td> <code title="">DoubleLeftRightArrow;</code> </td> <td> U+021D4 </td> <td> <span class="glyph" title="">⇔</span> </td> <tr id="entity-DoubleLeftTee"><td> <code title="">DoubleLeftTee;</code> </td> <td> U+02AE4 </td> <td> <span class="glyph" title="">⫤</span> </td> <tr id="entity-DoubleLongLeftArrow"><td> <code title="">DoubleLongLeftArrow;</code> </td> <td> U+027F8 </td> <td> <span class="glyph" title="">⟸</span> </td> <tr id="entity-DoubleLongLeftRightArrow"><td> <code title="">DoubleLongLeftRightArrow;</code> </td> <td> U+027FA </td> <td> <span class="glyph" title="">⟺</span> </td> <tr id="entity-DoubleLongRightArrow"><td> <code title="">DoubleLongRightArrow;</code> </td> <td> U+027F9 </td> <td> <span class="glyph" title="">⟹</span> </td> <tr id="entity-DoubleRightArrow"><td> <code tile="">DoubleRightArrow;</code> </td> <td> U+021D2 </td> <td> <span class="glyph" title="">⇒</span> </td> <tr id="entity-DoubleRightTee"><td> <code title="">DoubleRightTee;</code> </td> <td> U+022A8 </td> <td> <span class="glyph" title="">⊨</span> </td> <tr id="entity-DoubleUpArrow"><td> <code title="">DoubleUpArrow;</code> </td> <td> U+021D1 </td> <td> <span class="glyph" title="">⇑</span> </td> <tr id="entity-DoubleUpDownArrow"><td> <code title="">DoubleUpDownArrow;</code> </td> <td> U+021D5 </td> <td> <span class="glyph" title="">⇕</span> </td> <tr id="entity-DoubleVerticalBar"><td> <code title="">DoubleVerticalBar;</code> </td> <td> U+02225 </td> <td> <span class="glyph" title="">∥</span> </td> <tr id="entity-DownArrow"><td> <code title="">DownArrow;</code> </td> <td> U+02193 </td> <td> <span class="glyph" title="">↓</span> </td> <tr id="entity-Downarrow"><td> <code title="">Downarrow;</code> </td> <td> U+021D3 </td> <td> <span class="glyph" title="">⇓</span> </td> <r id="entity-downarrow"><td> <code title="">downarrow;</code> </td> <td> U+02193 </td> <td> <span class="glyph" title="">↓</span> </td> <tr id="entity-DownArrowBar"><td> <code title="">DownArrowBar;</code> </td> <td> U+02913 </td> <td> <span class="glyph" title="">⤓</span> </td> <tr id="entity-DownArrowUpArrow"><td> <code title="">DownArrowUpArrow;</code> </td> <td> U+021F5 </td> <td> <span class="glyph" title="">⇵</span> </td> <tr id="entity-DownBreve"><td> <code title="">DownBreve;</code> </td> <td> U+00311 </td> <td> <span class="glyph composition" title="">◌̑</span> </td> <tr id="entity-downdownarrows"><td> <code title="">downdownarrows;</code> </td> <td> U+021CA </td> <td> <span class="glyph" title="">⇊</span> </td> <tr id="entity-downharpoonleft"><td> <code title="">downharpoonleft;</code> </td> <td> U+021C3 </td> <td> <span class="glyph" title="">⇃</span> </td> <tr id="entity-downharpoonright"><td> <code title="">downharpoonright;</code> </td> <td> U+021C2 </t> <td> <span class="glyph" title="">⇂</span> </td> <tr id="entity-DownLeftRightVector"><td> <code title="">DownLeftRightVector;</code> </td> <td> U+02950 </td> <td> <span class="glyph" title="">⥐</span> </td> <tr id="entity-DownLeftTeeVector"><td> <code title="">DownLeftTeeVector;</code> </td> <td> U+0295E </td> <td> <span class="glyph" title="">⥞</span> </td> <tr id="entity-DownLeftVector"><td> <code title="">DownLeftVector;</code> </td> <td> U+021BD </td> <td> <span class="glyph" title="">↽</span> </td> <tr id="entity-DownLeftVectorBar"><td> <code title="">DownLeftVectorBar;</code> </td> <td> U+02956 </td> <td> <span class="glyph" title="">⥖</span> </td> <tr id="entity-DownRightTeeVector"><td> <code title="">DownRightTeeVector;</code> </td> <td> U+0295F </td> <td> <span class="glyph" title="">⥟</span> </td> <tr id="entity-DownRightVector"><td> <code title="">DownRightVector;</code> </td> <td> U+021C1 </td> <td> <span class="glyph" title="">⇁</span> </td> <tr i="entity-DownRightVectorBar"><td> <code title="">DownRightVectorBar;</code> </td> <td> U+02957 </td> <td> <span class="glyph" title="">⥗</span> </td> <tr id="entity-DownTee"><td> <code title="">DownTee;</code> </td> <td> U+022A4 </td> <td> <span class="glyph" title="">⊤</span> </td> <tr id="entity-DownTeeArrow"><td> <code title="">DownTeeArrow;</code> </td> <td> U+021A7 </td> <td> <span class="glyph" title="">↧</span> </td> <tr id="entity-drbkarow"><td> <code title="">drbkarow;</code> </td> <td> U+02910 </td> <td> <span class="glyph" title="">⤐</span> </td> <tr id="entity-drcorn"><td> <code title="">drcorn;</code> </td> <td> U+0231F </td> <td> <span class="glyph" title="">⌟</span> </td> <tr id="entity-drcrop"><td> <code title="">drcrop;</code> </td> <td> U+0230C </td> <td> <span class="glyph" title="">⌌</span> </td> <tr id="entity-Dscr"><td> <code title="">Dscr;</code> </td> <td> U+1D49F </td> <td> <span class="glyph" title="">𝒟</span> </td> <tr id="entity-dscr"<td> <code title="">dscr;</code> </td> <td> U+1D4B9 </td> <td> <span class="glyph" title="">𝒹</span> </td> <tr id="entity-DScy"><td> <code title="">DScy;</code> </td> <td> U+00405 </td> <td> <span class="glyph" title="">Ѕ</span> </td> <tr id="entity-dscy"><td> <code title="">dscy;</code> </td> <td> U+00455 </td> <td> <span class="glyph" title="">ѕ</span> </td> <tr id="entity-dsol"><td> <code title="">dsol;</code> </td> <td> U+029F6 </td> <td> <span class="glyph" title="">⧶</span> </td> <tr id="entity-Dstrok"><td> <code title="">Dstrok;</code> </td> <td> U+00110 </td> <td> <span class="glyph" title="">Đ</span> </td> <tr id="entity-dstrok"><td> <code title="">dstrok;</code> </td> <td> U+00111 </td> <td> <span class="glyph" title="">đ</span> </td> <tr id="entity-dtdot"><td> <code title="">dtdot;</code> </td> <td> U+022F1 </td> <td> <span class="glyph" title="">⋱</span> </td> <tr id="entity-dtri"><td> <code title="">dtri;</code> </td> <td> U+025BF </td> <td> <span clas="glyph" title="">▿</span> </td> <tr id="entity-dtrif"><td> <code title="">dtrif;</code> </td> <td> U+025BE </td> <td> <span class="glyph" title="">▾</span> </td> <tr id="entity-duarr"><td> <code title="">duarr;</code> </td> <td> U+021F5 </td> <td> <span class="glyph" title="">⇵</span> </td> <tr id="entity-duhar"><td> <code title="">duhar;</code> </td> <td> U+0296F </td> <td> <span class="glyph" title="">⥯</span> </td> <tr id="entity-dwangle"><td> <code title="">dwangle;</code> </td> <td> U+029A6 </td> <td> <span class="glyph" title="">⦦</span> </td> <tr id="entity-DZcy"><td> <code title="">DZcy;</code> </td> <td> U+0040F </td> <td> <span class="glyph" title="">Џ</span> </td> <tr id="entity-dzcy"><td> <code title="">dzcy;</code> </td> <td> U+0045F </td> <td> <span class="glyph" title="">џ</span> </td> <tr id="entity-dzigrarr"><td> <code title="">dzigrarr;</code> </td> <td> U+027FF </td> <td> <span class="glyph" title="">⟿</span> </td> <tr id="entity-Eacute"<td> <code title="">Eacute;</code> </td> <td> U+000C9 </td> <td> <span class="glyph" title="">É</span> </td> <tr id="entity-eacute"><td> <code title="">eacute;</code> </td> <td> U+000E9 </td> <td> <span class="glyph" title="">é</span> </td> <tr id="entity-easter"><td> <code title="">easter;</code> </td> <td> U+02A6E </td> <td> <span class="glyph" title="">⩮</span> </td> <tr id="entity-Ecaron"><td> <code title="">Ecaron;</code> </td> <td> U+0011A </td> <td> <span class="glyph" title="">Ě</span> </td> <tr id="entity-ecaron"><td> <code title="">ecaron;</code> </td> <td> U+0011B </td> <td> <span class="glyph" title="">ě</span> </td> <tr id="entity-ecir"><td> <code title="">ecir;</code> </td> <td> U+02256 </td> <td> <span class="glyph" title="">≖</span> </td> <tr id="entity-Ecirc"><td> <code title="">Ecirc;</code> </td> <td> U+000CA </td> <td> <span class="glyph" title="">Ê</span> </td> <tr id="entity-ecirc"><td> <code title="">ecirc;</code> </td> <td> U+000EA </td> <td <span class="glyph" title="">ê</span> </td> <tr id="entity-ecolon"><td> <code title="">ecolon;</code> </td> <td> U+02255 </td> <td> <span class="glyph" title="">≕</span> </td> <tr id="entity-Ecy"><td> <code title="">Ecy;</code> </td> <td> U+0042D </td> <td> <span class="glyph" title="">Э</span> </td> <tr id="entity-ecy"><td> <code title="">ecy;</code> </td> <td> U+0044D </td> <td> <span class="glyph" title="">э</span> </td> <tr id="entity-eDDot"><td> <code title="">eDDot;</code> </td> <td> U+02A77 </td> <td> <span class="glyph" title="">⩷</span> </td> <tr id="entity-Edot"><td> <code title="">Edot;</code> </td> <td> U+00116 </td> <td> <span class="glyph" title="">Ė</span> </td> <tr id="entity-eDot"><td> <code title="">eDot;</code> </td> <td> U+02251 </td> <td> <span class="glyph" title="">≑</span> </td> <tr id="entity-edot"><td> <code title="">edot;</code> </td> <td> U+00117 </td> <td> <span class="glyph" title="">ė</span> </td> <tr id="entity-ee"><td> <code tile="">ee;</code> </td> <td> U+02147 </td> <td> <span class="glyph" title="">ⅇ</span> </td> <tr id="entity-efDot"><td> <code title="">efDot;</code> </td> <td> U+02252 </td> <td> <span class="glyph" title="">≒</span> </td> <tr id="entity-Efr"><td> <code title="">Efr;</code> </td> <td> U+1D508 </td> <td> <span class="glyph" title="">𝔈</span> </td> <tr id="entity-efr"><td> <code title="">efr;</code> </td> <td> U+1D522 </td> <td> <span class="glyph" title="">𝔢</span> </td> <tr id="entity-eg"><td> <code title="">eg;</code> </td> <td> U+02A9A </td> <td> <span class="glyph" title="">⪚</span> </td> <tr id="entity-Egrave"><td> <code title="">Egrave;</code> </td> <td> U+000C8 </td> <td> <span class="glyph" title="">È</span> </td> <tr id="entity-egrave"><td> <code title="">egrave;</code> </td> <td> U+000E8 </td> <td> <span class="glyph" title="">è</span> </td> <tr id="entity-egs"><td> <code title="">egs;</code> </td> <td> U+02A96 </td> <td> <span class="glyph" title="">&10902;</span> </td> <tr id="entity-egsdot"><td> <code title="">egsdot;</code> </td> <td> U+02A98 </td> <td> <span class="glyph" title="">⪘</span> </td> <tr id="entity-el"><td> <code title="">el;</code> </td> <td> U+02A99 </td> <td> <span class="glyph" title="">⪙</span> </td> <tr id="entity-Element"><td> <code title="">Element;</code> </td> <td> U+02208 </td> <td> <span class="glyph" title="">∈</span> </td> <tr id="entity-elinters"><td> <code title="">elinters;</code> </td> <td> U+023E7 </td> <td> <span class="glyph" title="">⏧</span> </td> <tr id="entity-ell"><td> <code title="">ell;</code> </td> <td> U+02113 </td> <td> <span class="glyph" title="">ℓ</span> </td> <tr id="entity-els"><td> <code title="">els;</code> </td> <td> U+02A95 </td> <td> <span class="glyph" title="">⪕</span> </td> <tr id="entity-elsdot"><td> <code title="">elsdot;</code> </td> <td> U+02A97 </td> <td> <span class="glyph" title="">⪗</span> </td> <tr id="entity-Emacr"><td> <code title="">Emacr</code> </td> <td> U+00112 </td> <td> <span class="glyph" title="">Ē</span> </td> <tr id="entity-emacr"><td> <code title="">emacr;</code> </td> <td> U+00113 </td> <td> <span class="glyph" title="">ē</span> </td> <tr id="entity-empty"><td> <code title="">empty;</code> </td> <td> U+02205 </td> <td> <span class="glyph" title="">∅</span> </td> <tr id="entity-emptyset"><td> <code title="">emptyset;</code> </td> <td> U+02205 </td> <td> <span class="glyph" title="">∅</span> </td> <tr id="entity-EmptySmallSquare"><td> <code title="">EmptySmallSquare;</code> </td> <td> U+025FB </td> <td> <span class="glyph" title="">◻</span> </td> <tr id="entity-emptyv"><td> <code title="">emptyv;</code> </td> <td> U+02205 </td> <td> <span class="glyph" title="">∅</span> </td> <tr id="entity-EmptyVerySmallSquare"><td> <code title="">EmptyVerySmallSquare;</code> </td> <td> U+025AB </td> <td> <span class="glyph" title="">▫</span> </td> <tr id="entity-emsp"><td> <code title="">emsp;</code> </td> td> U+02003 </td> <td> <span class="glyph" title=""> </span> </td> <tr id="entity-emsp13"><td> <code title="">emsp13;</code> </td> <td> U+02004 </td> <td> <span class="glyph" title=""> </span> </td> <tr id="entity-emsp14"><td> <code title="">emsp14;</code> </td> <td> U+02005 </td> <td> <span class="glyph" title=""> </span> </td> <tr id="entity-ENG"><td> <code title="">ENG;</code> </td> <td> U+0014A </td> <td> <span class="glyph" title="">Ŋ</span> </td> <tr id="entity-eng"><td> <code title="">eng;</code> </td> <td> U+0014B </td> <td> <span class="glyph" title="">ŋ</span> </td> <tr id="entity-ensp"><td> <code title="">ensp;</code> </td> <td> U+02002 </td> <td> <span class="glyph" title=""> </span> </td> <tr id="entity-Eogon"><td> <code title="">Eogon;</code> </td> <td> U+00118 </td> <td> <span class="glyph" title="">Ę</span> </td> <tr id="entity-eogon"><td> <code title="">eogon;</code> </td> <td> U+00119 </td> <td> <span class="glyph" title="">ę</span> </td> <tr id="etity-Eopf"><td> <code title="">Eopf;</code> </td> <td> U+1D53C </td> <td> <span class="glyph" title="">𝔼</span> </td> <tr id="entity-eopf"><td> <code title="">eopf;</code> </td> <td> U+1D556 </td> <td> <span class="glyph" title="">𝕖</span> </td> <tr id="entity-epar"><td> <code title="">epar;</code> </td> <td> U+022D5 </td> <td> <span class="glyph" title="">⋕</span> </td> <tr id="entity-eparsl"><td> <code title="">eparsl;</code> </td> <td> U+029E3 </td> <td> <span class="glyph" title="">⧣</span> </td> <tr id="entity-eplus"><td> <code title="">eplus;</code> </td> <td> U+02A71 </td> <td> <span class="glyph" title="">⩱</span> </td> <tr id="entity-epsi"><td> <code title="">epsi;</code> </td> <td> U+003B5 </td> <td> <span class="glyph" title="">ε</span> </td> <tr id="entity-Epsilon"><td> <code title="">Epsilon;</code> </td> <td> U+00395 </td> <td> <span class="glyph" title="">Ε</span> </td> <tr id="entity-epsilon"><td> <code title="">epsilon;</code> </td> <td> U003B5 </td> <td> <span class="glyph" title="">ε</span> </td> <tr id="entity-epsiv"><td> <code title="">epsiv;</code> </td> <td> U+003F5 </td> <td> <span class="glyph" title="">ϵ</span> </td> <tr id="entity-eqcirc"><td> <code title="">eqcirc;</code> </td> <td> U+02256 </td> <td> <span class="glyph" title="">≖</span> </td> <tr id="entity-eqcolon"><td> <code title="">eqcolon;</code> </td> <td> U+02255 </td> <td> <span class="glyph" title="">≕</span> </td> <tr id="entity-eqsim"><td> <code title="">eqsim;</code> </td> <td> U+02242 </td> <td> <span class="glyph" title="">≂</span> </td> <tr id="entity-eqslantgtr"><td> <code title="">eqslantgtr;</code> </td> <td> U+02A96 </td> <td> <span class="glyph" title="">⪖</span> </td> <tr id="entity-eqslantless"><td> <code title="">eqslantless;</code> </td> <td> U+02A95 </td> <td> <span class="glyph" title="">⪕</span> </td> <tr id="entity-Equal"><td> <code title="">Equal;</code> </td> <td> U+02A75 </td> <td> <span class="glyph" ttle="">⩵</span> </td> <tr id="entity-equals"><td> <code title="">equals;</code> </td> <td> U+0003D </td> <td> <span class="glyph" title="">=</span> </td> <tr id="entity-EqualTilde"><td> <code title="">EqualTilde;</code> </td> <td> U+02242 </td> <td> <span class="glyph" title="">≂</span> </td> <tr id="entity-equest"><td> <code title="">equest;</code> </td> <td> U+0225F </td> <td> <span class="glyph" title="">≟</span> </td> <tr id="entity-Equilibrium"><td> <code title="">Equilibrium;</code> </td> <td> U+021CC </td> <td> <span class="glyph" title="">⇌</span> </td> <tr id="entity-equiv"><td> <code title="">equiv;</code> </td> <td> U+02261 </td> <td> <span class="glyph" title="">≡</span> </td> <tr id="entity-equivDD"><td> <code title="">equivDD;</code> </td> <td> U+02A78 </td> <td> <span class="glyph" title="">⩸</span> </td> <tr id="entity-eqvparsl"><td> <code title="">eqvparsl;</code> </td> <td> U+029E5 </td> <td> <span class="glyph" title="">⧥</span> </td> <tr id="etity-erarr"><td> <code title="">erarr;</code> </td> <td> U+02971 </td> <td> <span class="glyph" title="">⥱</span> </td> <tr id="entity-erDot"><td> <code title="">erDot;</code> </td> <td> U+02253 </td> <td> <span class="glyph" title="">≓</span> </td> <tr id="entity-Escr"><td> <code title="">Escr;</code> </td> <td> U+02130 </td> <td> <span class="glyph" title="">ℰ</span> </td> <tr id="entity-escr"><td> <code title="">escr;</code> </td> <td> U+0212F </td> <td> <span class="glyph" title="">ℯ</span> </td> <tr id="entity-esdot"><td> <code title="">esdot;</code> </td> <td> U+02250 </td> <td> <span class="glyph" title="">≐</span> </td> <tr id="entity-Esim"><td> <code title="">Esim;</code> </td> <td> U+02A73 </td> <td> <span class="glyph" title="">⩳</span> </td> <tr id="entity-esim"><td> <code title="">esim;</code> </td> <td> U+02242 </td> <td> <span class="glyph" title="">≂</span> </td> <tr id="entity-Eta"><td> <code title="">Eta;</code> </td> <td> U+00397 </td> <td> <spa class="glyph" title="">Η</span> </td> <tr id="entity-eta"><td> <code title="">eta;</code> </td> <td> U+003B7 </td> <td> <span class="glyph" title="">η</span> </td> <tr id="entity-ETH"><td> <code title="">ETH;</code> </td> <td> U+000D0 </td> <td> <span class="glyph" title="">Ð</span> </td> <tr id="entity-eth"><td> <code title="">eth;</code> </td> <td> U+000F0 </td> <td> <span class="glyph" title="">ð</span> </td> <tr id="entity-Euml"><td> <code title="">Euml;</code> </td> <td> U+000CB </td> <td> <span class="glyph" title="">Ë</span> </td> <tr id="entity-euml"><td> <code title="">euml;</code> </td> <td> U+000EB </td> <td> <span class="glyph" title="">ë</span> </td> <tr id="entity-euro"><td> <code title="">euro;</code> </td> <td> U+020AC </td> <td> <span class="glyph" title="">€</span> </td> <tr id="entity-excl"><td> <code title="">excl;</code> </td> <td> U+00021 </td> <td> <span class="glyph" title="">!</span> </td> <tr id="entity-exist"><td> <code title="">exist;</code> </td> td> U+02203 </td> <td> <span class="glyph" title="">∃</span> </td> <tr id="entity-Exists"><td> <code title="">Exists;</code> </td> <td> U+02203 </td> <td> <span class="glyph" title="">∃</span> </td> <tr id="entity-expectation"><td> <code title="">expectation;</code> </td> <td> U+02130 </td> <td> <span class="glyph" title="">ℰ</span> </td> <tr id="entity-ExponentialE"><td> <code title="">ExponentialE;</code> </td> <td> U+02147 </td> <td> <span class="glyph" title="">ⅇ</span> </td> <tr id="entity-exponentiale"><td> <code title="">exponentiale;</code> </td> <td> U+02147 </td> <td> <span class="glyph" title="">ⅇ</span> </td> <tr id="entity-fallingdotseq"><td> <code title="">fallingdotseq;</code> </td> <td> U+02252 </td> <td> <span class="glyph" title="">≒</span> </td> <tr id="entity-Fcy"><td> <code title="">Fcy;</code> </td> <td> U+00424 </td> <td> <span class="glyph" title="">Ф</span> </td> <tr id="entity-fcy"><td> <code title="">fcy;</code> </td> <td> U+00444 </td> <t> <span class="glyph" title="">ф</span> </td> <tr id="entity-female"><td> <code title="">female;</code> </td> <td> U+02640 </td> <td> <span class="glyph" title="">♀</span> </td> <tr id="entity-ffilig"><td> <code title="">ffilig;</code> </td> <td> U+0FB03 </td> <td> <span class="glyph" title="">ffi</span> </td> <tr id="entity-fflig"><td> <code title="">fflig;</code> </td> <td> U+0FB00 </td> <td> <span class="glyph" title="">ff</span> </td> <tr id="entity-ffllig"><td> <code title="">ffllig;</code> </td> <td> U+0FB04 </td> <td> <span class="glyph" title="">ffl</span> </td> <tr id="entity-Ffr"><td> <code title="">Ffr;</code> </td> <td> U+1D509 </td> <td> <span class="glyph" title="">𝔉</span> </td> <tr id="entity-ffr"><td> <code title="">ffr;</code> </td> <td> U+1D523 </td> <td> <span class="glyph" title="">𝔣</span> </td> <tr id="entity-filig"><td> <code title="">filig;</code> </td> <td> U+0FB01 </td> <td> <span class="glyph" title="">fi</span> </td> <tr id="entiy-FilledSmallSquare"><td> <code title="">FilledSmallSquare;</code> </td> <td> U+025FC </td> <td> <span class="glyph" title="">◼</span> </td> <tr id="entity-FilledVerySmallSquare"><td> <code title="">FilledVerySmallSquare;</code> </td> <td> U+025AA </td> <td> <span class="glyph" title="">▪</span> </td> <tr id="entity-fjlig"><td> <code title="">fjlig;</code> </td> <td> U+00066 U+0006A </td> <td> <span class="glyph compound" title="">fj</span> </td> <tr id="entity-flat"><td> <code title="">flat;</code> </td> <td> U+0266D </td> <td> <span class="glyph" title="">♭</span> </td> <tr id="entity-fllig"><td> <code title="">fllig;</code> </td> <td> U+0FB02 </td> <td> <span class="glyph" title="">fl</span> </td> <tr id="entity-fltns"><td> <code title="">fltns;</code> </td> <td> U+025B1 </td> <td> <span class="glyph" title="">▱</span> </td> <tr id="entity-fnof"><td> <code title="">fnof;</code> </td> <td> U+00192 </td> <td> <span class="glyph" title="">ƒ</span> </td> <tr id="entity-Fopf><td> <code title="">Fopf;</code> </td> <td> U+1D53D </td> <td> <span class="glyph" title="">𝔽</span> </td> <tr id="entity-fopf"><td> <code title="">fopf;</code> </td> <td> U+1D557 </td> <td> <span class="glyph" title="">𝕗</span> </td> <tr id="entity-ForAll"><td> <code title="">ForAll;</code> </td> <td> U+02200 </td> <td> <span class="glyph" title="">∀</span> </td> <tr id="entity-forall"><td> <code title="">forall;</code> </td> <td> U+02200 </td> <td> <span class="glyph" title="">∀</span> </td> <tr id="entity-fork"><td> <code title="">fork;</code> </td> <td> U+022D4 </td> <td> <span class="glyph" title="">⋔</span> </td> <tr id="entity-forkv"><td> <code title="">forkv;</code> </td> <td> U+02AD9 </td> <td> <span class="glyph" title="">⫙</span> </td> <tr id="entity-Fouriertrf"><td> <code title="">Fouriertrf;</code> </td> <td> U+02131 </td> <td> <span class="glyph" title="">ℱ</span> </td> <tr id="entity-fpartint"><td> <code title="">fpartint;</code> </td> <td> U+2A0D </td> <td> <span class="glyph" title="">⨍</span> </td> <tr id="entity-frac12"><td> <code title="">frac12;</code> </td> <td> U+000BD </td> <td> <span class="glyph" title="">½</span> </td> <tr id="entity-frac13"><td> <code title="">frac13;</code> </td> <td> U+02153 </td> <td> <span class="glyph" title="">⅓</span> </td> <tr id="entity-frac14"><td> <code title="">frac14;</code> </td> <td> U+000BC </td> <td> <span class="glyph" title="">¼</span> </td> <tr id="entity-frac15"><td> <code title="">frac15;</code> </td> <td> U+02155 </td> <td> <span class="glyph" title="">⅕</span> </td> <tr id="entity-frac16"><td> <code title="">frac16;</code> </td> <td> U+02159 </td> <td> <span class="glyph" title="">⅙</span> </td> <tr id="entity-frac18"><td> <code title="">frac18;</code> </td> <td> U+0215B </td> <td> <span class="glyph" title="">⅛</span> </td> <tr id="entity-frac23"><td> <code title="">frac23;</code> </td> <td> U+02154 </td> <td> <span class="glyph" title="">⅔<span> </td> <tr id="entity-frac25"><td> <code title="">frac25;</code> </td> <td> U+02156 </td> <td> <span class="glyph" title="">⅖</span> </td> <tr id="entity-frac34"><td> <code title="">frac34;</code> </td> <td> U+000BE </td> <td> <span class="glyph" title="">¾</span> </td> <tr id="entity-frac35"><td> <code title="">frac35;</code> </td> <td> U+02157 </td> <td> <span class="glyph" title="">⅗</span> </td> <tr id="entity-frac38"><td> <code title="">frac38;</code> </td> <td> U+0215C </td> <td> <span class="glyph" title="">⅜</span> </td> <tr id="entity-frac45"><td> <code title="">frac45;</code> </td> <td> U+02158 </td> <td> <span class="glyph" title="">⅘</span> </td> <tr id="entity-frac56"><td> <code title="">frac56;</code> </td> <td> U+0215A </td> <td> <span class="glyph" title="">⅚</span> </td> <tr id="entity-frac58"><td> <code title="">frac58;</code> </td> <td> U+0215D </td> <td> <span class="glyph" title="">⅝</span> </td> <tr id="entity-frac78"><td> <code title="">rac78;</code> </td> <td> U+0215E </td> <td> <span class="glyph" title="">⅞</span> </td> <tr id="entity-frasl"><td> <code title="">frasl;</code> </td> <td> U+02044 </td> <td> <span class="glyph" title="">⁄</span> </td> <tr id="entity-frown"><td> <code title="">frown;</code> </td> <td> U+02322 </td> <td> <span class="glyph" title="">⌢</span> </td> <tr id="entity-Fscr"><td> <code title="">Fscr;</code> </td> <td> U+02131 </td> <td> <span class="glyph" title="">ℱ</span> </td> <tr id="entity-fscr"><td> <code title="">fscr;</code> </td> <td> U+1D4BB </td> <td> <span class="glyph" title="">𝒻</span> </td> <tr id="entity-gacute"><td> <code title="">gacute;</code> </td> <td> U+001F5 </td> <td> <span class="glyph" title="">ǵ</span> </td> <tr id="entity-Gamma"><td> <code title="">Gamma;</code> </td> <td> U+00393 </td> <td> <span class="glyph" title="">Γ</span> </td> <tr id="entity-gamma"><td> <code title="">gamma;</code> </td> <td> U+003B3 </td> <td> <span class="glyph" title=">γ</span> </td> <tr id="entity-Gammad"><td> <code title="">Gammad;</code> </td> <td> U+003DC </td> <td> <span class="glyph" title="">Ϝ</span> </td> <tr id="entity-gammad"><td> <code title="">gammad;</code> </td> <td> U+003DD </td> <td> <span class="glyph" title="">ϝ</span> </td> <tr id="entity-gap"><td> <code title="">gap;</code> </td> <td> U+02A86 </td> <td> <span class="glyph" title="">⪆</span> </td> <tr id="entity-Gbreve"><td> <code title="">Gbreve;</code> </td> <td> U+0011E </td> <td> <span class="glyph" title="">Ğ</span> </td> <tr id="entity-gbreve"><td> <code title="">gbreve;</code> </td> <td> U+0011F </td> <td> <span class="glyph" title="">ğ</span> </td> <tr id="entity-Gcedil"><td> <code title="">Gcedil;</code> </td> <td> U+00122 </td> <td> <span class="glyph" title="">Ģ</span> </td> <tr id="entity-Gcirc"><td> <code title="">Gcirc;</code> </td> <td> U+0011C </td> <td> <span class="glyph" title="">Ĝ</span> </td> <tr id="entity-gcirc"><td> <code title="">gcirc</code> </td> <td> U+0011D </td> <td> <span class="glyph" title="">ĝ</span> </td> <tr id="entity-Gcy"><td> <code title="">Gcy;</code> </td> <td> U+00413 </td> <td> <span class="glyph" title="">Г</span> </td> <tr id="entity-gcy"><td> <code title="">gcy;</code> </td> <td> U+00433 </td> <td> <span class="glyph" title="">г</span> </td> <tr id="entity-Gdot"><td> <code title="">Gdot;</code> </td> <td> U+00120 </td> <td> <span class="glyph" title="">Ġ</span> </td> <tr id="entity-gdot"><td> <code title="">gdot;</code> </td> <td> U+00121 </td> <td> <span class="glyph" title="">ġ</span> </td> <tr id="entity-gE"><td> <code title="">gE;</code> </td> <td> U+02267 </td> <td> <span class="glyph" title="">≧</span> </td> <tr id="entity-ge"><td> <code title="">ge;</code> </td> <td> U+02265 </td> <td> <span class="glyph" title="">≥</span> </td> <tr id="entity-gEl"><td> <code title="">gEl;</code> </td> <td> U+02A8C </td> <td> <span class="glyph" title="">⪌</span> </td> <tr id="entity-el"><td> <code title="">gel;</code> </td> <td> U+022DB </td> <td> <span class="glyph" title="">⋛</span> </td> <tr id="entity-geq"><td> <code title="">geq;</code> </td> <td> U+02265 </td> <td> <span class="glyph" title="">≥</span> </td> <tr id="entity-geqq"><td> <code title="">geqq;</code> </td> <td> U+02267 </td> <td> <span class="glyph" title="">≧</span> </td> <tr id="entity-geqslant"><td> <code title="">geqslant;</code> </td> <td> U+02A7E </td> <td> <span class="glyph" title="">⩾</span> </td> <tr id="entity-ges"><td> <code title="">ges;</code> </td> <td> U+02A7E </td> <td> <span class="glyph" title="">⩾</span> </td> <tr id="entity-gescc"><td> <code title="">gescc;</code> </td> <td> U+02AA9 </td> <td> <span class="glyph" title="">⪩</span> </td> <tr id="entity-gesdot"><td> <code title="">gesdot;</code> </td> <td> U+02A80 </td> <td> <span class="glyph" title="">⪀</span> </td> <tr id="entity-gesdoto"><td> <code title="">gesdoto;</code> </td> <td> U+02A82 </td> <td> <pan class="glyph" title="">⪂</span> </td> <tr id="entity-gesdotol"><td> <code title="">gesdotol;</code> </td> <td> U+02A84 </td> <td> <span class="glyph" title="">⪄</span> </td> <tr id="entity-gesl"><td> <code title="">gesl;</code> </td> <td> U+022DB U+0FE00 </td> <td> <span class="glyph compound" title="">⋛︀</span> </td> <tr id="entity-gesles"><td> <code title="">gesles;</code> </td> <td> U+02A94 </td> <td> <span class="glyph" title="">⪔</span> </td> <tr id="entity-Gfr"><td> <code title="">Gfr;</code> </td> <td> U+1D50A </td> <td> <span class="glyph" title="">𝔊</span> </td> <tr id="entity-gfr"><td> <code title="">gfr;</code> </td> <td> U+1D524 </td> <td> <span class="glyph" title="">𝔤</span> </td> <tr id="entity-Gg"><td> <code title="">Gg;</code> </td> <td> U+022D9 </td> <td> <span class="glyph" title="">⋙</span> </td> <tr id="entity-gg"><td> <code title="">gg;</code> </td> <td> U+0226B </td> <td> <span class="glyph" title="">≫</span> </td> <tr d="entity-ggg"><td> <code title="">ggg;</code> </td> <td> U+022D9 </td> <td> <span class="glyph" title="">⋙</span> </td> <tr id="entity-gimel"><td> <code title="">gimel;</code> </td> <td> U+02137 </td> <td> <span class="glyph" title="">ℷ</span> </td> <tr id="entity-GJcy"><td> <code title="">GJcy;</code> </td> <td> U+00403 </td> <td> <span class="glyph" title="">Ѓ</span> </td> <tr id="entity-gjcy"><td> <code title="">gjcy;</code> </td> <td> U+00453 </td> <td> <span class="glyph" title="">ѓ</span> </td> <tr id="entity-gl"><td> <code title="">gl;</code> </td> <td> U+02277 </td> <td> <span class="glyph" title="">≷</span> </td> <tr id="entity-gla"><td> <code title="">gla;</code> </td> <td> U+02AA5 </td> <td> <span class="glyph" title="">⪥</span> </td> <tr id="entity-glE"><td> <code title="">glE;</code> </td> <td> U+02A92 </td> <td> <span class="glyph" title="">⪒</span> </td> <tr id="entity-glj"><td> <code title="">glj;</code> </td> <td> U+02AA4 </td> <td> <span class="lyph" title="">⪤</span> </td> <tr id="entity-gnap"><td> <code title="">gnap;</code> </td> <td> U+02A8A </td> <td> <span class="glyph" title="">⪊</span> </td> <tr id="entity-gnapprox"><td> <code title="">gnapprox;</code> </td> <td> U+02A8A </td> <td> <span class="glyph" title="">⪊</span> </td> <tr id="entity-gnE"><td> <code title="">gnE;</code> </td> <td> U+02269 </td> <td> <span class="glyph" title="">≩</span> </td> <tr id="entity-gne"><td> <code title="">gne;</code> </td> <td> U+02A88 </td> <td> <span class="glyph" title="">⪈</span> </td> <tr id="entity-gneq"><td> <code title="">gneq;</code> </td> <td> U+02A88 </td> <td> <span class="glyph" title="">⪈</span> </td> <tr id="entity-gneqq"><td> <code title="">gneqq;</code> </td> <td> U+02269 </td> <td> <span class="glyph" title="">≩</span> </td> <tr id="entity-gnsim"><td> <code title="">gnsim;</code> </td> <td> U+022E7 </td> <td> <span class="glyph" title="">⋧</span> </td> <tr id="entity-Gopf"><td> <code tite="">Gopf;</code> </td> <td> U+1D53E </td> <td> <span class="glyph" title="">𝔾</span> </td> <tr id="entity-gopf"><td> <code title="">gopf;</code> </td> <td> U+1D558 </td> <td> <span class="glyph" title="">𝕘</span> </td> <tr id="entity-grave"><td> <code title="">grave;</code> </td> <td> U+00060 </td> <td> <span class="glyph" title="">`</span> </td> <tr id="entity-GreaterEqual"><td> <code title="">GreaterEqual;</code> </td> <td> U+02265 </td> <td> <span class="glyph" title="">≥</span> </td> <tr id="entity-GreaterEqualLess"><td> <code title="">GreaterEqualLess;</code> </td> <td> U+022DB </td> <td> <span class="glyph" title="">⋛</span> </td> <tr id="entity-GreaterFullEqual"><td> <code title="">GreaterFullEqual;</code> </td> <td> U+02267 </td> <td> <span class="glyph" title="">≧</span> </td> <tr id="entity-GreaterGreater"><td> <code title="">GreaterGreater;</code> </td> <td> U+02AA2 </td> <td> <span class="glyph" title="">⪢</span> </td> <tr id="entity-GreaterLess"><td> <codetitle="">GreaterLess;</code> </td> <td> U+02277 </td> <td> <span class="glyph" title="">≷</span> </td> <tr id="entity-GreaterSlantEqual"><td> <code title="">GreaterSlantEqual;</code> </td> <td> U+02A7E </td> <td> <span class="glyph" title="">⩾</span> </td> <tr id="entity-GreaterTilde"><td> <code title="">GreaterTilde;</code> </td> <td> U+02273 </td> <td> <span class="glyph" title="">≳</span> </td> <tr id="entity-Gscr"><td> <code title="">Gscr;</code> </td> <td> U+1D4A2 </td> <td> <span class="glyph" title="">𝒢</span> </td> <tr id="entity-gscr"><td> <code title="">gscr;</code> </td> <td> U+0210A </td> <td> <span class="glyph" title="">ℊ</span> </td> <tr id="entity-gsim"><td> <code title="">gsim;</code> </td> <td> U+02273 </td> <td> <span class="glyph" title="">≳</span> </td> <tr id="entity-gsime"><td> <code title="">gsime;</code> </td> <td> U+02A8E </td> <td> <span class="glyph" title="">⪎</span> </td> <tr id="entity-gsiml"><td> <code title="">gsiml;</code> </td><td> U+02A90 </td> <td> <span class="glyph" title="">⪐</span> </td> <tr id="entity-GT"><td> <code title="">GT;</code> </td> <td> U+0003E </td> <td> <span class="glyph" title="">></span> </td> <tr id="entity-Gt"><td> <code title="">Gt;</code> </td> <td> U+0226B </td> <td> <span class="glyph" title="">≫</span> </td> <tr id="entity-gt"><td> <code title="">gt;</code> </td> <td> U+0003E </td> <td> <span class="glyph" title="">></span> </td> <tr id="entity-gtcc"><td> <code title="">gtcc;</code> </td> <td> U+02AA7 </td> <td> <span class="glyph" title="">⪧</span> </td> <tr id="entity-gtcir"><td> <code title="">gtcir;</code> </td> <td> U+02A7A </td> <td> <span class="glyph" title="">⩺</span> </td> <tr id="entity-gtdot"><td> <code title="">gtdot;</code> </td> <td> U+022D7 </td> <td> <span class="glyph" title="">⋗</span> </td> <tr id="entity-gtlPar"><td> <code title="">gtlPar;</code> </td> <td> U+02995 </td> <td> <span class="glyph" title="">⦕</span> </td> <tr id="entity-gquest"><td> <code title="">gtquest;</code> </td> <td> U+02A7C </td> <td> <span class="glyph" title="">⩼</span> </td> <tr id="entity-gtrapprox"><td> <code title="">gtrapprox;</code> </td> <td> U+02A86 </td> <td> <span class="glyph" title="">⪆</span> </td> <tr id="entity-gtrarr"><td> <code title="">gtrarr;</code> </td> <td> U+02978 </td> <td> <span class="glyph" title="">⥸</span> </td> <tr id="entity-gtrdot"><td> <code title="">gtrdot;</code> </td> <td> U+022D7 </td> <td> <span class="glyph" title="">⋗</span> </td> <tr id="entity-gtreqless"><td> <code title="">gtreqless;</code> </td> <td> U+022DB </td> <td> <span class="glyph" title="">⋛</span> </td> <tr id="entity-gtreqqless"><td> <code title="">gtreqqless;</code> </td> <td> U+02A8C </td> <td> <span class="glyph" title="">⪌</span> </td> <tr id="entity-gtrless"><td> <code title="">gtrless;</code> </td> <td> U+02277 </td> <td> <span class="glyph" title="">≷</span> </td> <tr id="entity-gtrsim"><td> <code title="">gtsim;</code> </td> <td> U+02273 </td> <td> <span class="glyph" title="">≳</span> </td> <tr id="entity-gvertneqq"><td> <code title="">gvertneqq;</code> </td> <td> U+02269 U+0FE00 </td> <td> <span class="glyph compound" title="">≩︀</span> </td> <tr id="entity-gvnE"><td> <code title="">gvnE;</code> </td> <td> U+02269 U+0FE00 </td> <td> <span class="glyph compound" title="">≩︀</span> </td> <tr id="entity-Hacek"><td> <code title="">Hacek;</code> </td> <td> U+002C7 </td> <td> <span class="glyph" title="">ˇ</span> </td> <tr id="entity-hairsp"><td> <code title="">hairsp;</code> </td> <td> U+0200A </td> <td> <span class="glyph" title=""> </span> </td> <tr id="entity-half"><td> <code title="">half;</code> </td> <td> U+000BD </td> <td> <span class="glyph" title="">½</span> </td> <tr id="entity-hamilt"><td> <code title="">hamilt;</code> </td> <td> U+0210B </td> <td> <span class="glyph" title="">ℋ</span> </td> <tr id="entity-HARDcy"><td> <code title="">HARDcy;</code </td> <td> U+0042A </td> <td> <span class="glyph" title="">Ъ</span> </td> <tr id="entity-hardcy"><td> <code title="">hardcy;</code> </td> <td> U+0044A </td> <td> <span class="glyph" title="">ъ</span> </td> <tr id="entity-hArr"><td> <code title="">hArr;</code> </td> <td> U+021D4 </td> <td> <span class="glyph" title="">⇔</span> </td> <tr id="entity-harr"><td> <code title="">harr;</code> </td> <td> U+02194 </td> <td> <span class="glyph" title="">↔</span> </td> <tr id="entity-harrcir"><td> <code title="">harrcir;</code> </td> <td> U+02948 </td> <td> <span class="glyph" title="">⥈</span> </td> <tr id="entity-harrw"><td> <code title="">harrw;</code> </td> <td> U+021AD </td> <td> <span class="glyph" title="">↭</span> </td> <tr id="entity-Hat"><td> <code title="">Hat;</code> </td> <td> U+0005E </td> <td> <span class="glyph" title="">^</span> </td> <tr id="entity-hbar"><td> <code title="">hbar;</code> </td> <td> U+0210F </td> <td> <span class="glyph" title="">ℏ</span> </td> tr id="entity-Hcirc"><td> <code title="">Hcirc;</code> </td> <td> U+00124 </td> <td> <span class="glyph" title="">Ĥ</span> </td> <tr id="entity-hcirc"><td> <code title="">hcirc;</code> </td> <td> U+00125 </td> <td> <span class="glyph" title="">ĥ</span> </td> <tr id="entity-hearts"><td> <code title="">hearts;</code> </td> <td> U+02665 </td> <td> <span class="glyph" title="">♥</span> </td> <tr id="entity-heartsuit"><td> <code title="">heartsuit;</code> </td> <td> U+02665 </td> <td> <span class="glyph" title="">♥</span> </td> <tr id="entity-hellip"><td> <code title="">hellip;</code> </td> <td> U+02026 </td> <td> <span class="glyph" title="">…</span> </td> <tr id="entity-hercon"><td> <code title="">hercon;</code> </td> <td> U+022B9 </td> <td> <span class="glyph" title="">⊹</span> </td> <tr id="entity-Hfr"><td> <code title="">Hfr;</code> </td> <td> U+0210C </td> <td> <span class="glyph" title="">ℌ</span> </td> <tr id="entity-hfr"><td> <code title="">hfr;</code> </td> <t> U+1D525 </td> <td> <span class="glyph" title="">𝔥</span> </td> <tr id="entity-HilbertSpace"><td> <code title="">HilbertSpace;</code> </td> <td> U+0210B </td> <td> <span class="glyph" title="">ℋ</span> </td> <tr id="entity-hksearow"><td> <code title="">hksearow;</code> </td> <td> U+02925 </td> <td> <span class="glyph" title="">⤥</span> </td> <tr id="entity-hkswarow"><td> <code title="">hkswarow;</code> </td> <td> U+02926 </td> <td> <span class="glyph" title="">⤦</span> </td> <tr id="entity-hoarr"><td> <code title="">hoarr;</code> </td> <td> U+021FF </td> <td> <span class="glyph" title="">⇿</span> </td> <tr id="entity-homtht"><td> <code title="">homtht;</code> </td> <td> U+0223B </td> <td> <span class="glyph" title="">∻</span> </td> <tr id="entity-hookleftarrow"><td> <code title="">hookleftarrow;</code> </td> <td> U+021A9 </td> <td> <span class="glyph" title="">↩</span> </td> <tr id="entity-hookrightarrow"><td> <code title="">hookrightarrow;</code> </td> <td> U+21AA </td> <td> <span class="glyph" title="">↪</span> </td> <tr id="entity-Hopf"><td> <code title="">Hopf;</code> </td> <td> U+0210D </td> <td> <span class="glyph" title="">ℍ</span> </td> <tr id="entity-hopf"><td> <code title="">hopf;</code> </td> <td> U+1D559 </td> <td> <span class="glyph" title="">𝕙</span> </td> <tr id="entity-horbar"><td> <code title="">horbar;</code> </td> <td> U+02015 </td> <td> <span class="glyph" title="">―</span> </td> <tr id="entity-HorizontalLine"><td> <code title="">HorizontalLine;</code> </td> <td> U+02500 </td> <td> <span class="glyph" title="">─</span> </td> <tr id="entity-Hscr"><td> <code title="">Hscr;</code> </td> <td> U+0210B </td> <td> <span class="glyph" title="">ℋ</span> </td> <tr id="entity-hscr"><td> <code title="">hscr;</code> </td> <td> U+1D4BD </td> <td> <span class="glyph" title="">𝒽</span> </td> <tr id="entity-hslash"><td> <code title="">hslash;</code> </td> <td> U+0210F </td> <td> <span class="glyph" title="">ℏ/span> </td> <tr id="entity-Hstrok"><td> <code title="">Hstrok;</code> </td> <td> U+00126 </td> <td> <span class="glyph" title="">Ħ</span> </td> <tr id="entity-hstrok"><td> <code title="">hstrok;</code> </td> <td> U+00127 </td> <td> <span class="glyph" title="">ħ</span> </td> <tr id="entity-HumpDownHump"><td> <code title="">HumpDownHump;</code> </td> <td> U+0224E </td> <td> <span class="glyph" title="">≎</span> </td> <tr id="entity-HumpEqual"><td> <code title="">HumpEqual;</code> </td> <td> U+0224F </td> <td> <span class="glyph" title="">≏</span> </td> <tr id="entity-hybull"><td> <code title="">hybull;</code> </td> <td> U+02043 </td> <td> <span class="glyph" title="">⁃</span> </td> <tr id="entity-hyphen"><td> <code title="">hyphen;</code> </td> <td> U+02010 </td> <td> <span class="glyph" title="">‐</span> </td> <tr id="entity-Iacute"><td> <code title="">Iacute;</code> </td> <td> U+000CD </td> <td> <span class="glyph" title="">Í</span> </td> <tr id="entity-iacute"><td <code title="">iacute;</code> </td> <td> U+000ED </td> <td> <span class="glyph" title="">í</span> </td> <tr id="entity-ic"><td> <code title="">ic;</code> </td> <td> U+02063 </td> <td> <span class="glyph" title="">⁣</span> </td> <tr id="entity-Icirc"><td> <code title="">Icirc;</code> </td> <td> U+000CE </td> <td> <span class="glyph" title="">Î</span> </td> <tr id="entity-icirc"><td> <code title="">icirc;</code> </td> <td> U+000EE </td> <td> <span class="glyph" title="">î</span> </td> <tr id="entity-Icy"><td> <code title="">Icy;</code> </td> <td> U+00418 </td> <td> <span class="glyph" title="">И</span> </td> <tr id="entity-icy"><td> <code title="">icy;</code> </td> <td> U+00438 </td> <td> <span class="glyph" title="">и</span> </td> <tr id="entity-Idot"><td> <code title="">Idot;</code> </td> <td> U+00130 </td> <td> <span class="glyph" title="">İ</span> </td> <tr id="entity-IEcy"><td> <code title="">IEcy;</code> </td> <td> U+00415 </td> <td> <span class="glyph" title=">Е</span> </td> <tr id="entity-iecy"><td> <code title="">iecy;</code> </td> <td> U+00435 </td> <td> <span class="glyph" title="">е</span> </td> <tr id="entity-iexcl"><td> <code title="">iexcl;</code> </td> <td> U+000A1 </td> <td> <span class="glyph" title="">¡</span> </td> <tr id="entity-iff"><td> <code title="">iff;</code> </td> <td> U+021D4 </td> <td> <span class="glyph" title="">⇔</span> </td> <tr id="entity-Ifr"><td> <code title="">Ifr;</code> </td> <td> U+02111 </td> <td> <span class="glyph" title="">ℑ</span> </td> <tr id="entity-ifr"><td> <code title="">ifr;</code> </td> <td> U+1D526 </td> <td> <span class="glyph" title="">𝔦</span> </td> <tr id="entity-Igrave"><td> <code title="">Igrave;</code> </td> <td> U+000CC </td> <td> <span class="glyph" title="">Ì</span> </td> <tr id="entity-igrave"><td> <code title="">igrave;</code> </td> <td> U+000EC </td> <td> <span class="glyph" title="">ì</span> </td> <tr id="entity-ii"><td> <code title="">ii;</code> </td><td> U+02148 </td> <td> <span class="glyph" title="">ⅈ</span> </td> <tr id="entity-iiiint"><td> <code title="">iiiint;</code> </td> <td> U+02A0C </td> <td> <span class="glyph" title="">⨌</span> </td> <tr id="entity-iiint"><td> <code title="">iiint;</code> </td> <td> U+0222D </td> <td> <span class="glyph" title="">∭</span> </td> <tr id="entity-iinfin"><td> <code title="">iinfin;</code> </td> <td> U+029DC </td> <td> <span class="glyph" title="">⧜</span> </td> <tr id="entity-iiota"><td> <code title="">iiota;</code> </td> <td> U+02129 </td> <td> <span class="glyph" title="">℩</span> </td> <tr id="entity-IJlig"><td> <code title="">IJlig;</code> </td> <td> U+00132 </td> <td> <span class="glyph" title="">IJ</span> </td> <tr id="entity-ijlig"><td> <code title="">ijlig;</code> </td> <td> U+00133 </td> <td> <span class="glyph" title="">ij</span> </td> <tr id="entity-Im"><td> <code title="">Im;</code> </td> <td> U+02111 </td> <td> <span class="glyph" title="">ℑ</span> </td <tr id="entity-Imacr"><td> <code title="">Imacr;</code> </td> <td> U+0012A </td> <td> <span class="glyph" title="">Ī</span> </td> <tr id="entity-imacr"><td> <code title="">imacr;</code> </td> <td> U+0012B </td> <td> <span class="glyph" title="">ī</span> </td> <tr id="entity-image"><td> <code title="">image;</code> </td> <td> U+02111 </td> <td> <span class="glyph" title="">ℑ</span> </td> <tr id="entity-ImaginaryI"><td> <code title="">ImaginaryI;</code> </td> <td> U+02148 </td> <td> <span class="glyph" title="">ⅈ</span> </td> <tr id="entity-imagline"><td> <code title="">imagline;</code> </td> <td> U+02110 </td> <td> <span class="glyph" title="">ℐ</span> </td> <tr id="entity-imagpart"><td> <code title="">imagpart;</code> </td> <td> U+02111 </td> <td> <span class="glyph" title="">ℑ</span> </td> <tr id="entity-imath"><td> <code title="">imath;</code> </td> <td> U+00131 </td> <td> <span class="glyph" title="">ı</span> </td> <tr id="entity-imof"><td> <code title="">imof;</coe> </td> <td> U+022B7 </td> <td> <span class="glyph" title="">⊷</span> </td> <tr id="entity-imped"><td> <code title="">imped;</code> </td> <td> U+001B5 </td> <td> <span class="glyph" title="">Ƶ</span> </td> <tr id="entity-Implies"><td> <code title="">Implies;</code> </td> <td> U+021D2 </td> <td> <span class="glyph" title="">⇒</span> </td> <tr id="entity-in"><td> <code title="">in;</code> </td> <td> U+02208 </td> <td> <span class="glyph" title="">∈</span> </td> <tr id="entity-incare"><td> <code title="">incare;</code> </td> <td> U+02105 </td> <td> <span class="glyph" title="">℅</span> </td> <tr id="entity-infin"><td> <code title="">infin;</code> </td> <td> U+0221E </td> <td> <span class="glyph" title="">∞</span> </td> <tr id="entity-infintie"><td> <code title="">infintie;</code> </td> <td> U+029DD </td> <td> <span class="glyph" title="">⧝</span> </td> <tr id="entity-inodot"><td> <code title="">inodot;</code> </td> <td> U+00131 </td> <td> <span class="glyph" title=""></span> </td> <tr id="entity-Int"><td> <code title="">Int;</code> </td> <td> U+0222C </td> <td> <span class="glyph" title="">∬</span> </td> <tr id="entity-int"><td> <code title="">int;</code> </td> <td> U+0222B </td> <td> <span class="glyph" title="">∫</span> </td> <tr id="entity-intcal"><td> <code title="">intcal;</code> </td> <td> U+022BA </td> <td> <span class="glyph" title="">⊺</span> </td> <tr id="entity-integers"><td> <code title="">integers;</code> </td> <td> U+02124 </td> <td> <span class="glyph" title="">ℤ</span> </td> <tr id="entity-Integral"><td> <code title="">Integral;</code> </td> <td> U+0222B </td> <td> <span class="glyph" title="">∫</span> </td> <tr id="entity-intercal"><td> <code title="">intercal;</code> </td> <td> U+022BA </td> <td> <span class="glyph" title="">⊺</span> </td> <tr id="entity-Intersection"><td> <code title="">Intersection;</code> </td> <td> U+022C2 </td> <td> <span class="glyph" title="">⋂</span> </td> <tr id="entity-intlarhk"><td> <ode title="">intlarhk;</code> </td> <td> U+02A17 </td> <td> <span class="glyph" title="">⨗</span> </td> <tr id="entity-intprod"><td> <code title="">intprod;</code> </td> <td> U+02A3C </td> <td> <span class="glyph" title="">⨼</span> </td> <tr id="entity-InvisibleComma"><td> <code title="">InvisibleComma;</code> </td> <td> U+02063 </td> <td> <span class="glyph" title="">⁣</span> </td> <tr id="entity-InvisibleTimes"><td> <code title="">InvisibleTimes;</code> </td> <td> U+02062 </td> <td> <span class="glyph" title="">⁢</span> </td> <tr id="entity-IOcy"><td> <code title="">IOcy;</code> </td> <td> U+00401 </td> <td> <span class="glyph" title="">Ё</span> </td> <tr id="entity-iocy"><td> <code title="">iocy;</code> </td> <td> U+00451 </td> <td> <span class="glyph" title="">ё</span> </td> <tr id="entity-Iogon"><td> <code title="">Iogon;</code> </td> <td> U+0012E </td> <td> <span class="glyph" title="">Į</span> </td> <tr id="entity-iogon"><td> <code title="">iogon;</code> </t> <td> U+0012F </td> <td> <span class="glyph" title="">į</span> </td> <tr id="entity-Iopf"><td> <code title="">Iopf;</code> </td> <td> U+1D540 </td> <td> <span class="glyph" title="">𝕀</span> </td> <tr id="entity-iopf"><td> <code title="">iopf;</code> </td> <td> U+1D55A </td> <td> <span class="glyph" title="">𝕚</span> </td> <tr id="entity-Iota"><td> <code title="">Iota;</code> </td> <td> U+00399 </td> <td> <span class="glyph" title="">Ι</span> </td> <tr id="entity-iota"><td> <code title="">iota;</code> </td> <td> U+003B9 </td> <td> <span class="glyph" title="">ι</span> </td> <tr id="entity-iprod"><td> <code title="">iprod;</code> </td> <td> U+02A3C </td> <td> <span class="glyph" title="">⨼</span> </td> <tr id="entity-iquest"><td> <code title="">iquest;</code> </td> <td> U+000BF </td> <td> <span class="glyph" title="">¿</span> </td> <tr id="entity-Iscr"><td> <code title="">Iscr;</code> </td> <td> U+02110 </td> <td> <span class="glyph" title="">ℐ</span> </td><tr id="entity-iscr"><td> <code title="">iscr;</code> </td> <td> U+1D4BE </td> <td> <span class="glyph" title="">𝒾</span> </td> <tr id="entity-isin"><td> <code title="">isin;</code> </td> <td> U+02208 </td> <td> <span class="glyph" title="">∈</span> </td> <tr id="entity-isindot"><td> <code title="">isindot;</code> </td> <td> U+022F5 </td> <td> <span class="glyph" title="">⋵</span> </td> <tr id="entity-isinE"><td> <code title="">isinE;</code> </td> <td> U+022F9 </td> <td> <span class="glyph" title="">⋹</span> </td> <tr id="entity-isins"><td> <code title="">isins;</code> </td> <td> U+022F4 </td> <td> <span class="glyph" title="">⋴</span> </td> <tr id="entity-isinsv"><td> <code title="">isinsv;</code> </td> <td> U+022F3 </td> <td> <span class="glyph" title="">⋳</span> </td> <tr id="entity-isinv"><td> <code title="">isinv;</code> </td> <td> U+02208 </td> <td> <span class="glyph" title="">∈</span> </td> <tr id="entity-it"><td> <code title="">it;</code> </td> <td> U+02062</td> <td> <span class="glyph" title="">⁢</span> </td> <tr id="entity-Itilde"><td> <code title="">Itilde;</code> </td> <td> U+00128 </td> <td> <span class="glyph" title="">Ĩ</span> </td> <tr id="entity-itilde"><td> <code title="">itilde;</code> </td> <td> U+00129 </td> <td> <span class="glyph" title="">ĩ</span> </td> <tr id="entity-Iukcy"><td> <code title="">Iukcy;</code> </td> <td> U+00406 </td> <td> <span class="glyph" title="">І</span> </td> <tr id="entity-iukcy"><td> <code title="">iukcy;</code> </td> <td> U+00456 </td> <td> <span class="glyph" title="">і</span> </td> <tr id="entity-Iuml"><td> <code title="">Iuml;</code> </td> <td> U+000CF </td> <td> <span class="glyph" title="">Ï</span> </td> <tr id="entity-iuml"><td> <code title="">iuml;</code> </td> <td> U+000EF </td> <td> <span class="glyph" title="">ï</span> </td> <tr id="entity-Jcirc"><td> <code title="">Jcirc;</code> </td> <td> U+00134 </td> <td> <span class="glyph" title="">Ĵ</span> </td> <tr id="entityjcirc"><td> <code title="">jcirc;</code> </td> <td> U+00135 </td> <td> <span class="glyph" title="">ĵ</span> </td> <tr id="entity-Jcy"><td> <code title="">Jcy;</code> </td> <td> U+00419 </td> <td> <span class="glyph" title="">Й</span> </td> <tr id="entity-jcy"><td> <code title="">jcy;</code> </td> <td> U+00439 </td> <td> <span class="glyph" title="">й</span> </td> <tr id="entity-Jfr"><td> <code title="">Jfr;</code> </td> <td> U+1D50D </td> <td> <span class="glyph" title="">𝔍</span> </td> <tr id="entity-jfr"><td> <code title="">jfr;</code> </td> <td> U+1D527 </td> <td> <span class="glyph" title="">𝔧</span> </td> <tr id="entity-jmath"><td> <code title="">jmath;</code> </td> <td> U+00237 </td> <td> <span class="glyph" title="">ȷ</span> </td> <tr id="entity-Jopf"><td> <code title="">Jopf;</code> </td> <td> U+1D541 </td> <td> <span class="glyph" title="">𝕁</span> </td> <tr id="entity-jopf"><td> <code title="">jopf;</code> </td> <td> U+1D55B </td> <td> <span class="glph" title="">𝕛</span> </td> <tr id="entity-Jscr"><td> <code title="">Jscr;</code> </td> <td> U+1D4A5 </td> <td> <span class="glyph" title="">𝒥</span> </td> <tr id="entity-jscr"><td> <code title="">jscr;</code> </td> <td> U+1D4BF </td> <td> <span class="glyph" title="">𝒿</span> </td> <tr id="entity-Jsercy"><td> <code title="">Jsercy;</code> </td> <td> U+00408 </td> <td> <span class="glyph" title="">Ј</span> </td> <tr id="entity-jsercy"><td> <code title="">jsercy;</code> </td> <td> U+00458 </td> <td> <span class="glyph" title="">ј</span> </td> <tr id="entity-Jukcy"><td> <code title="">Jukcy;</code> </td> <td> U+00404 </td> <td> <span class="glyph" title="">Є</span> </td> <tr id="entity-jukcy"><td> <code title="">jukcy;</code> </td> <td> U+00454 </td> <td> <span class="glyph" title="">є</span> </td> <tr id="entity-Kappa"><td> <code title="">Kappa;</code> </td> <td> U+0039A </td> <td> <span class="glyph" title="">Κ</span> </td> <tr id="entity-kappa"><td> <coe title="">kappa;</code> </td> <td> U+003BA </td> <td> <span class="glyph" title="">κ</span> </td> <tr id="entity-kappav"><td> <code title="">kappav;</code> </td> <td> U+003F0 </td> <td> <span class="glyph" title="">ϰ</span> </td> <tr id="entity-Kcedil"><td> <code title="">Kcedil;</code> </td> <td> U+00136 </td> <td> <span class="glyph" title="">Ķ</span> </td> <tr id="entity-kcedil"><td> <code title="">kcedil;</code> </td> <td> U+00137 </td> <td> <span class="glyph" title="">ķ</span> </td> <tr id="entity-Kcy"><td> <code title="">Kcy;</code> </td> <td> U+0041A </td> <td> <span class="glyph" title="">К</span> </td> <tr id="entity-kcy"><td> <code title="">kcy;</code> </td> <td> U+0043A </td> <td> <span class="glyph" title="">к</span> </td> <tr id="entity-Kfr"><td> <code title="">Kfr;</code> </td> <td> U+1D50E </td> <td> <span class="glyph" title="">𝔎</span> </td> <tr id="entity-kfr"><td> <code title="">kfr;</code> </td> <td> U+1D528 </td> <td> <span class="glyph" title"">𝔨</span> </td> <tr id="entity-kgreen"><td> <code title="">kgreen;</code> </td> <td> U+00138 </td> <td> <span class="glyph" title="">ĸ</span> </td> <tr id="entity-KHcy"><td> <code title="">KHcy;</code> </td> <td> U+00425 </td> <td> <span class="glyph" title="">Х</span> </td> <tr id="entity-khcy"><td> <code title="">khcy;</code> </td> <td> U+00445 </td> <td> <span class="glyph" title="">х</span> </td> <tr id="entity-KJcy"><td> <code title="">KJcy;</code> </td> <td> U+0040C </td> <td> <span class="glyph" title="">Ќ</span> </td> <tr id="entity-kjcy"><td> <code title="">kjcy;</code> </td> <td> U+0045C </td> <td> <span class="glyph" title="">ќ</span> </td> <tr id="entity-Kopf"><td> <code title="">Kopf;</code> </td> <td> U+1D542 </td> <td> <span class="glyph" title="">𝕂</span> </td> <tr id="entity-kopf"><td> <code title="">kopf;</code> </td> <td> U+1D55C </td> <td> <span class="glyph" title="">𝕜</span> </td> <tr id="entity-Kscr"><td> <code title="">Kscr;</cod> </td> <td> U+1D4A6 </td> <td> <span class="glyph" title="">𝒦</span> </td> <tr id="entity-kscr"><td> <code title="">kscr;</code> </td> <td> U+1D4C0 </td> <td> <span class="glyph" title="">𝓀</span> </td> <tr id="entity-lAarr"><td> <code title="">lAarr;</code> </td> <td> U+021DA </td> <td> <span class="glyph" title="">⇚</span> </td> <tr id="entity-Lacute"><td> <code title="">Lacute;</code> </td> <td> U+00139 </td> <td> <span class="glyph" title="">Ĺ</span> </td> <tr id="entity-lacute"><td> <code title="">lacute;</code> </td> <td> U+0013A </td> <td> <span class="glyph" title="">ĺ</span> </td> <tr id="entity-laemptyv"><td> <code title="">laemptyv;</code> </td> <td> U+029B4 </td> <td> <span class="glyph" title="">⦴</span> </td> <tr id="entity-lagran"><td> <code title="">lagran;</code> </td> <td> U+02112 </td> <td> <span class="glyph" title="">ℒ</span> </td> <tr id="entity-Lambda"><td> <code title="">Lambda;</code> </td> <td> U+0039B </td> <td> <span class="glyph" tite="">Λ</span> </td> <tr id="entity-lambda"><td> <code title="">lambda;</code> </td> <td> U+003BB </td> <td> <span class="glyph" title="">λ</span> </td> <tr id="entity-Lang"><td> <code title="">Lang;</code> </td> <td> U+027EA </td> <td> <span class="glyph" title="">⟪</span> </td> <tr id="entity-lang"><td> <code title="">lang;</code> </td> <td> U+027E8 </td> <td> <span class="glyph" title="">⟨</span> </td> <tr id="entity-langd"><td> <code title="">langd;</code> </td> <td> U+02991 </td> <td> <span class="glyph" title="">⦑</span> </td> <tr id="entity-langle"><td> <code title="">langle;</code> </td> <td> U+027E8 </td> <td> <span class="glyph" title="">⟨</span> </td> <tr id="entity-lap"><td> <code title="">lap;</code> </td> <td> U+02A85 </td> <td> <span class="glyph" title="">⪅</span> </td> <tr id="entity-Laplacetrf"><td> <code title="">Laplacetrf;</code> </td> <td> U+02112 </td> <td> <span class="glyph" title="">ℒ</span> </td> <tr id="entity-laquo"><td> <code tile="">laquo;</code> </td> <td> U+000AB </td> <td> <span class="glyph" title="">«</span> </td> <tr id="entity-Larr"><td> <code title="">Larr;</code> </td> <td> U+0219E </td> <td> <span class="glyph" title="">↞</span> </td> <tr id="entity-lArr"><td> <code title="">lArr;</code> </td> <td> U+021D0 </td> <td> <span class="glyph" title="">⇐</span> </td> <tr id="entity-larr"><td> <code title="">larr;</code> </td> <td> U+02190 </td> <td> <span class="glyph" title="">←</span> </td> <tr id="entity-larrb"><td> <code title="">larrb;</code> </td> <td> U+021E4 </td> <td> <span class="glyph" title="">⇤</span> </td> <tr id="entity-larrbfs"><td> <code title="">larrbfs;</code> </td> <td> U+0291F </td> <td> <span class="glyph" title="">⤟</span> </td> <tr id="entity-larrfs"><td> <code title="">larrfs;</code> </td> <td> U+0291D </td> <td> <span class="glyph" title="">⤝</span> </td> <tr id="entity-larrhk"><td> <code title="">larrhk;</code> </td> <td> U+021A9 </td> <td> <span class="glyph title="">↩</span> </td> <tr id="entity-larrlp"><td> <code title="">larrlp;</code> </td> <td> U+021AB </td> <td> <span class="glyph" title="">↫</span> </td> <tr id="entity-larrpl"><td> <code title="">larrpl;</code> </td> <td> U+02939 </td> <td> <span class="glyph" title="">⤹</span> </td> <tr id="entity-larrsim"><td> <code title="">larrsim;</code> </td> <td> U+02973 </td> <td> <span class="glyph" title="">⥳</span> </td> <tr id="entity-larrtl"><td> <code title="">larrtl;</code> </td> <td> U+021A2 </td> <td> <span class="glyph" title="">↢</span> </td> <tr id="entity-lat"><td> <code title="">lat;</code> </td> <td> U+02AAB </td> <td> <span class="glyph" title="">⪫</span> </td> <tr id="entity-lAtail"><td> <code title="">lAtail;</code> </td> <td> U+0291B </td> <td> <span class="glyph" title="">⤛</span> </td> <tr id="entity-latail"><td> <code title="">latail;</code> </td> <td> U+02919 </td> <td> <span class="glyph" title="">⤙</span> </td> <tr id="entity-late"><td <code title="">late;</code> </td> <td> U+02AAD </td> <td> <span class="glyph" title="">⪭</span> </td> <tr id="entity-lates"><td> <code title="">lates;</code> </td> <td> U+02AAD U+0FE00 </td> <td> <span class="glyph compound" title="">⪭︀</span> </td> <tr id="entity-lBarr"><td> <code title="">lBarr;</code> </td> <td> U+0290E </td> <td> <span class="glyph" title="">⤎</span> </td> <tr id="entity-lbarr"><td> <code title="">lbarr;</code> </td> <td> U+0290C </td> <td> <span class="glyph" title="">⤌</span> </td> <tr id="entity-lbbrk"><td> <code title="">lbbrk;</code> </td> <td> U+02772 </td> <td> <span class="glyph" title="">❲</span> </td> <tr id="entity-lbrace"><td> <code title="">lbrace;</code> </td> <td> U+0007B </td> <td> <span class="glyph" title="">{</span> </td> <tr id="entity-lbrack"><td> <code title="">lbrack;</code> </td> <td> U+0005B </td> <td> <span class="glyph" title="">[</span> </td> <tr id="entity-lbrke"><td> <code title="">lbrke;</code> </td> <td> U+0298B /td> <td> <span class="glyph" title="">⦋</span> </td> <tr id="entity-lbrksld"><td> <code title="">lbrksld;</code> </td> <td> U+0298F </td> <td> <span class="glyph" title="">⦏</span> </td> <tr id="entity-lbrkslu"><td> <code title="">lbrkslu;</code> </td> <td> U+0298D </td> <td> <span class="glyph" title="">⦍</span> </td> <tr id="entity-Lcaron"><td> <code title="">Lcaron;</code> </td> <td> U+0013D </td> <td> <span class="glyph" title="">Ľ</span> </td> <tr id="entity-lcaron"><td> <code title="">lcaron;</code> </td> <td> U+0013E </td> <td> <span class="glyph" title="">ľ</span> </td> <tr id="entity-Lcedil"><td> <code title="">Lcedil;</code> </td> <td> U+0013B </td> <td> <span class="glyph" title="">Ļ</span> </td> <tr id="entity-lcedil"><td> <code title="">lcedil;</code> </td> <td> U+0013C </td> <td> <span class="glyph" title="">ļ</span> </td> <tr id="entity-lceil"><td> <code title="">lceil;</code> </td> <td> U+02308 </td> <td> <span class="glyph" title="">⌈</span> <td> <tr id="entity-lcub"><td> <code title="">lcub;</code> </td> <td> U+0007B </td> <td> <span class="glyph" title="">{</span> </td> <tr id="entity-Lcy"><td> <code title="">Lcy;</code> </td> <td> U+0041B </td> <td> <span class="glyph" title="">Л</span> </td> <tr id="entity-lcy"><td> <code title="">lcy;</code> </td> <td> U+0043B </td> <td> <span class="glyph" title="">л</span> </td> <tr id="entity-ldca"><td> <code title="">ldca;</code> </td> <td> U+02936 </td> <td> <span class="glyph" title="">⤶</span> </td> <tr id="entity-ldquo"><td> <code title="">ldquo;</code> </td> <td> U+0201C </td> <td> <span class="glyph" title="">“</span> </td> <tr id="entity-ldquor"><td> <code title="">ldquor;</code> </td> <td> U+0201E </td> <td> <span class="glyph" title="">„</span> </td> <tr id="entity-ldrdhar"><td> <code title="">ldrdhar;</code> </td> <td> U+02967 </td> <td> <span class="glyph" title="">⥧</span> </td> <tr id="entity-ldrushar"><td> <code title="">ldrushar;</code> </td> <td> U+094B </td> <td> <span class="glyph" title="">⥋</span> </td> <tr id="entity-ldsh"><td> <code title="">ldsh;</code> </td> <td> U+021B2 </td> <td> <span class="glyph" title="">↲</span> </td> <tr id="entity-lE"><td> <code title="">lE;</code> </td> <td> U+02266 </td> <td> <span class="glyph" title="">≦</span> </td> <tr id="entity-le"><td> <code title="">le;</code> </td> <td> U+02264 </td> <td> <span class="glyph" title="">≤</span> </td> <tr id="entity-LeftAngleBracket"><td> <code title="">LeftAngleBracket;</code> </td> <td> U+027E8 </td> <td> <span class="glyph" title="">⟨</span> </td> <tr id="entity-LeftArrow"><td> <code title="">LeftArrow;</code> </td> <td> U+02190 </td> <td> <span class="glyph" title="">←</span> </td> <tr id="entity-Leftarrow"><td> <code title="">Leftarrow;</code> </td> <td> U+021D0 </td> <td> <span class="glyph" title="">⇐</span> </td> <tr id="entity-leftarrow"><td> <code title="">leftarrow;</code> </td> <td> U+02190 </td> <td> <span class="glyph" title=""←</span> </td> <tr id="entity-LeftArrowBar"><td> <code title="">LeftArrowBar;</code> </td> <td> U+021E4 </td> <td> <span class="glyph" title="">⇤</span> </td> <tr id="entity-LeftArrowRightArrow"><td> <code title="">LeftArrowRightArrow;</code> </td> <td> U+021C6 </td> <td> <span class="glyph" title="">⇆</span> </td> <tr id="entity-leftarrowtail"><td> <code title="">leftarrowtail;</code> </td> <td> U+021A2 </td> <td> <span class="glyph" title="">↢</span> </td> <tr id="entity-LeftCeiling"><td> <code title="">LeftCeiling;</code> </td> <td> U+02308 </td> <td> <span class="glyph" title="">⌈</span> </td> <tr id="entity-LeftDoubleBracket"><td> <code title="">LeftDoubleBracket;</code> </td> <td> U+027E6 </td> <td> <span class="glyph" title="">⟦</span> </td> <tr id="entity-LeftDownTeeVector"><td> <code title="">LeftDownTeeVector;</code> </td> <td> U+02961 </td> <td> <span class="glyph" title="">⥡</span> </td> <tr id="entity-LeftDownVector"><td> <code title="">LeftDownVector;/code> </td> <td> U+021C3 </td> <td> <span class="glyph" title="">⇃</span> </td> <tr id="entity-LeftDownVectorBar"><td> <code title="">LeftDownVectorBar;</code> </td> <td> U+02959 </td> <td> <span class="glyph" title="">⥙</span> </td> <tr id="entity-LeftFloor"><td> <code title="">LeftFloor;</code> </td> <td> U+0230A </td> <td> <span class="glyph" title="">⌊</span> </td> <tr id="entity-leftharpoondown"><td> <code title="">leftharpoondown;</code> </td> <td> U+021BD </td> <td> <span class="glyph" title="">↽</span> </td> <tr id="entity-leftharpoonup"><td> <code title="">leftharpoonup;</code> </td> <td> U+021BC </td> <td> <span class="glyph" title="">↼</span> </td> <tr id="entity-leftleftarrows"><td> <code title="">leftleftarrows;</code> </td> <td> U+021C7 </td> <td> <span class="glyph" title="">⇇</span> </td> <tr id="entity-LeftRightArrow"><td> <code title="">LeftRightArrow;</code> </td> <td> U+02194 </td> <td> <span class="glyph" title="">↔</span> </td> <tr id="entityLeftrightarrow"><td> <code title="">Leftrightarrow;</code> </td> <td> U+021D4 </td> <td> <span class="glyph" title="">⇔</span> </td> <tr id="entity-leftrightarrow"><td> <code title="">leftrightarrow;</code> </td> <td> U+02194 </td> <td> <span class="glyph" title="">↔</span> </td> <tr id="entity-leftrightarrows"><td> <code title="">leftrightarrows;</code> </td> <td> U+021C6 </td> <td> <span class="glyph" title="">⇆</span> </td> <tr id="entity-leftrightharpoons"><td> <code title="">leftrightharpoons;</code> </td> <td> U+021CB </td> <td> <span class="glyph" title="">⇋</span> </td> <tr id="entity-leftrightsquigarrow"><td> <code title="">leftrightsquigarrow;</code> </td> <td> U+021AD </td> <td> <span class="glyph" title="">↭</span> </td> <tr id="entity-LeftRightVector"><td> <code title="">LeftRightVector;</code> </td> <td> U+0294E </td> <td> <span class="glyph" title="">⥎</span> </td> <tr id="entity-LeftTee"><td> <code title="">LeftTee;</code> </td> <td> U+022A3 </td> <td> <spa class="glyph" title="">⊣</span> </td> <tr id="entity-LeftTeeArrow"><td> <code title="">LeftTeeArrow;</code> </td> <td> U+021A4 </td> <td> <span class="glyph" title="">↤</span> </td> <tr id="entity-LeftTeeVector"><td> <code title="">LeftTeeVector;</code> </td> <td> U+0295A </td> <td> <span class="glyph" title="">⥚</span> </td> <tr id="entity-leftthreetimes"><td> <code title="">leftthreetimes;</code> </td> <td> U+022CB </td> <td> <span class="glyph" title="">⋋</span> </td> <tr id="entity-LeftTriangle"><td> <code title="">LeftTriangle;</code> </td> <td> U+022B2 </td> <td> <span class="glyph" title="">⊲</span> </td> <tr id="entity-LeftTriangleBar"><td> <code title="">LeftTriangleBar;</code> </td> <td> U+029CF </td> <td> <span class="glyph" title="">⧏</span> </td> <tr id="entity-LeftTriangleEqual"><td> <code title="">LeftTriangleEqual;</code> </td> <td> U+022B4 </td> <td> <span class="glyph" title="">⊴</span> </td> <tr id="entity-LeftUpDownVector"><td> <code title="">eftUpDownVector;</code> </td> <td> U+02951 </td> <td> <span class="glyph" title="">⥑</span> </td> <tr id="entity-LeftUpTeeVector"><td> <code title="">LeftUpTeeVector;</code> </td> <td> U+02960 </td> <td> <span class="glyph" title="">⥠</span> </td> <tr id="entity-LeftUpVector"><td> <code title="">LeftUpVector;</code> </td> <td> U+021BF </td> <td> <span class="glyph" title="">↿</span> </td> <tr id="entity-LeftUpVectorBar"><td> <code title="">LeftUpVectorBar;</code> </td> <td> U+02958 </td> <td> <span class="glyph" title="">⥘</span> </td> <tr id="entity-LeftVector"><td> <code title="">LeftVector;</code> </td> <td> U+021BC </td> <td> <span class="glyph" title="">↼</span> </td> <tr id="entity-LeftVectorBar"><td> <code title="">LeftVectorBar;</code> </td> <td> U+02952 </td> <td> <span class="glyph" title="">⥒</span> </td> <tr id="entity-lEg"><td> <code title="">lEg;</code> </td> <td> U+02A8B </td> <td> <span class="glyph" title="">⪋</span> </td> <tr id="entity-leg"><d> <code title="">leg;</code> </td> <td> U+022DA </td> <td> <span class="glyph" title="">⋚</span> </td> <tr id="entity-leq"><td> <code title="">leq;</code> </td> <td> U+02264 </td> <td> <span class="glyph" title="">≤</span> </td> <tr id="entity-leqq"><td> <code title="">leqq;</code> </td> <td> U+02266 </td> <td> <span class="glyph" title="">≦</span> </td> <tr id="entity-leqslant"><td> <code title="">leqslant;</code> </td> <td> U+02A7D </td> <td> <span class="glyph" title="">⩽</span> </td> <tr id="entity-les"><td> <code title="">les;</code> </td> <td> U+02A7D </td> <td> <span class="glyph" title="">⩽</span> </td> <tr id="entity-lescc"><td> <code title="">lescc;</code> </td> <td> U+02AA8 </td> <td> <span class="glyph" title="">⪨</span> </td> <tr id="entity-lesdot"><td> <code title="">lesdot;</code> </td> <td> U+02A7F </td> <td> <span class="glyph" title="">⩿</span> </td> <tr id="entity-lesdoto"><td> <code title="">lesdoto;</code> </td> <td> U+02A81 </td> <td> <span cass="glyph" title="">⪁</span> </td> <tr id="entity-lesdotor"><td> <code title="">lesdotor;</code> </td> <td> U+02A83 </td> <td> <span class="glyph" title="">⪃</span> </td> <tr id="entity-lesg"><td> <code title="">lesg;</code> </td> <td> U+022DA U+0FE00 </td> <td> <span class="glyph compound" title="">⋚︀</span> </td> <tr id="entity-lesges"><td> <code title="">lesges;</code> </td> <td> U+02A93 </td> <td> <span class="glyph" title="">⪓</span> </td> <tr id="entity-lessapprox"><td> <code title="">lessapprox;</code> </td> <td> U+02A85 </td> <td> <span class="glyph" title="">⪅</span> </td> <tr id="entity-lessdot"><td> <code title="">lessdot;</code> </td> <td> U+022D6 </td> <td> <span class="glyph" title="">⋖</span> </td> <tr id="entity-lesseqgtr"><td> <code title="">lesseqgtr;</code> </td> <td> U+022DA </td> <td> <span class="glyph" title="">⋚</span> </td> <tr id="entity-lesseqqgtr"><td> <code title="">lesseqqgtr;</code> </td> <td> U+02A8B </td> <td> <span class"glyph" title="">⪋</span> </td> <tr id="entity-LessEqualGreater"><td> <code title="">LessEqualGreater;</code> </td> <td> U+022DA </td> <td> <span class="glyph" title="">⋚</span> </td> <tr id="entity-LessFullEqual"><td> <code title="">LessFullEqual;</code> </td> <td> U+02266 </td> <td> <span class="glyph" title="">≦</span> </td> <tr id="entity-LessGreater"><td> <code title="">LessGreater;</code> </td> <td> U+02276 </td> <td> <span class="glyph" title="">≶</span> </td> <tr id="entity-lessgtr"><td> <code title="">lessgtr;</code> </td> <td> U+02276 </td> <td> <span class="glyph" title="">≶</span> </td> <tr id="entity-LessLess"><td> <code title="">LessLess;</code> </td> <td> U+02AA1 </td> <td> <span class="glyph" title="">⪡</span> </td> <tr id="entity-lesssim"><td> <code title="">lesssim;</code> </td> <td> U+02272 </td> <td> <span class="glyph" title="">≲</span> </td> <tr id="entity-LessSlantEqual"><td> <code title="">LessSlantEqual;</code> </td> <td> U+02A7D </td> <td <span class="glyph" title="">⩽</span> </td> <tr id="entity-LessTilde"><td> <code title="">LessTilde;</code> </td> <td> U+02272 </td> <td> <span class="glyph" title="">≲</span> </td> <tr id="entity-lfisht"><td> <code title="">lfisht;</code> </td> <td> U+0297C </td> <td> <span class="glyph" title="">⥼</span> </td> <tr id="entity-lfloor"><td> <code title="">lfloor;</code> </td> <td> U+0230A </td> <td> <span class="glyph" title="">⌊</span> </td> <tr id="entity-Lfr"><td> <code title="">Lfr;</code> </td> <td> U+1D50F </td> <td> <span class="glyph" title="">𝔏</span> </td> <tr id="entity-lfr"><td> <code title="">lfr;</code> </td> <td> U+1D529 </td> <td> <span class="glyph" title="">𝔩</span> </td> <tr id="entity-lg"><td> <code title="">lg;</code> </td> <td> U+02276 </td> <td> <span class="glyph" title="">≶</span> </td> <tr id="entity-lgE"><td> <code title="">lgE;</code> </td> <td> U+02A91 </td> <td> <span class="glyph" title="">⪑</span> </td> <tr id="entity-lHr"><td> <code title="">lHar;</code> </td> <td> U+02962 </td> <td> <span class="glyph" title="">⥢</span> </td> <tr id="entity-lhard"><td> <code title="">lhard;</code> </td> <td> U+021BD </td> <td> <span class="glyph" title="">↽</span> </td> <tr id="entity-lharu"><td> <code title="">lharu;</code> </td> <td> U+021BC </td> <td> <span class="glyph" title="">↼</span> </td> <tr id="entity-lharul"><td> <code title="">lharul;</code> </td> <td> U+0296A </td> <td> <span class="glyph" title="">⥪</span> </td> <tr id="entity-lhblk"><td> <code title="">lhblk;</code> </td> <td> U+02584 </td> <td> <span class="glyph" title="">▄</span> </td> <tr id="entity-LJcy"><td> <code title="">LJcy;</code> </td> <td> U+00409 </td> <td> <span class="glyph" title="">Љ</span> </td> <tr id="entity-ljcy"><td> <code title="">ljcy;</code> </td> <td> U+00459 </td> <td> <span class="glyph" title="">љ</span> </td> <tr id="entity-Ll"><td> <code title="">Ll;</code> </td> <td> U+022D8 </td> <td> <span clas="glyph" title="">⋘</span> </td> <tr id="entity-ll"><td> <code title="">ll;</code> </td> <td> U+0226A </td> <td> <span class="glyph" title="">≪</span> </td> <tr id="entity-llarr"><td> <code title="">llarr;</code> </td> <td> U+021C7 </td> <td> <span class="glyph" title="">⇇</span> </td> <tr id="entity-llcorner"><td> <code title="">llcorner;</code> </td> <td> U+0231E </td> <td> <span class="glyph" title="">⌞</span> </td> <tr id="entity-Lleftarrow"><td> <code title="">Lleftarrow;</code> </td> <td> U+021DA </td> <td> <span class="glyph" title="">⇚</span> </td> <tr id="entity-llhard"><td> <code title="">llhard;</code> </td> <td> U+0296B </td> <td> <span class="glyph" title="">⥫</span> </td> <tr id="entity-lltri"><td> <code title="">lltri;</code> </td> <td> U+025FA </td> <td> <span class="glyph" title="">◺</span> </td> <tr id="entity-Lmidot"><td> <code title="">Lmidot;</code> </td> <td> U+0013F </td> <td> <span class="glyph" title="">Ŀ</span> </td> <tr id="entity-lmdot"><td> <code title="">lmidot;</code> </td> <td> U+00140 </td> <td> <span class="glyph" title="">ŀ</span> </td> <tr id="entity-lmoust"><td> <code title="">lmoust;</code> </td> <td> U+023B0 </td> <td> <span class="glyph" title="">⎰</span> </td> <tr id="entity-lmoustache"><td> <code title="">lmoustache;</code> </td> <td> U+023B0 </td> <td> <span class="glyph" title="">⎰</span> </td> <tr id="entity-lnap"><td> <code title="">lnap;</code> </td> <td> U+02A89 </td> <td> <span class="glyph" title="">⪉</span> </td> <tr id="entity-lnapprox"><td> <code title="">lnapprox;</code> </td> <td> U+02A89 </td> <td> <span class="glyph" title="">⪉</span> </td> <tr id="entity-lnE"><td> <code title="">lnE;</code> </td> <td> U+02268 </td> <td> <span class="glyph" title="">≨</span> </td> <tr id="entity-lne"><td> <code title="">lne;</code> </td> <td> U+02A87 </td> <td> <span class="glyph" title="">⪇</span> </td> <tr id="entity-lneq"><td> <code title="">lneq;</code> </td> <td> U+02A87 </t> <td> <span class="glyph" title="">⪇</span> </td> <tr id="entity-lneqq"><td> <code title="">lneqq;</code> </td> <td> U+02268 </td> <td> <span class="glyph" title="">≨</span> </td> <tr id="entity-lnsim"><td> <code title="">lnsim;</code> </td> <td> U+022E6 </td> <td> <span class="glyph" title="">⋦</span> </td> <tr id="entity-loang"><td> <code title="">loang;</code> </td> <td> U+027EC </td> <td> <span class="glyph" title="">⟬</span> </td> <tr id="entity-loarr"><td> <code title="">loarr;</code> </td> <td> U+021FD </td> <td> <span class="glyph" title="">⇽</span> </td> <tr id="entity-lobrk"><td> <code title="">lobrk;</code> </td> <td> U+027E6 </td> <td> <span class="glyph" title="">⟦</span> </td> <tr id="entity-LongLeftArrow"><td> <code title="">LongLeftArrow;</code> </td> <td> U+027F5 </td> <td> <span class="glyph" title="">⟵</span> </td> <tr id="entity-Longleftarrow"><td> <code title="">Longleftarrow;</code> </td> <td> U+027F8 </td> <td> <span class="glyph" title=">⟸</span> </td> <tr id="entity-longleftarrow"><td> <code title="">longleftarrow;</code> </td> <td> U+027F5 </td> <td> <span class="glyph" title="">⟵</span> </td> <tr id="entity-LongLeftRightArrow"><td> <code title="">LongLeftRightArrow;</code> </td> <td> U+027F7 </td> <td> <span class="glyph" title="">⟷</span> </td> <tr id="entity-Longleftrightarrow"><td> <code title="">Longleftrightarrow;</code> </td> <td> U+027FA </td> <td> <span class="glyph" title="">⟺</span> </td> <tr id="entity-longleftrightarrow"><td> <code title="">longleftrightarrow;</code> </td> <td> U+027F7 </td> <td> <span class="glyph" title="">⟷</span> </td> <tr id="entity-longmapsto"><td> <code title="">longmapsto;</code> </td> <td> U+027FC </td> <td> <span class="glyph" title="">⟼</span> </td> <tr id="entity-LongRightArrow"><td> <code title="">LongRightArrow;</code> </td> <td> U+027F6 </td> <td> <span class="glyph" title="">⟶</span> </td> <tr id="entity-Longrightarrow"><td> <code title="">Longightarrow;</code> </td> <td> U+027F9 </td> <td> <span class="glyph" title="">⟹</span> </td> <tr id="entity-longrightarrow"><td> <code title="">longrightarrow;</code> </td> <td> U+027F6 </td> <td> <span class="glyph" title="">⟶</span> </td> <tr id="entity-looparrowleft"><td> <code title="">looparrowleft;</code> </td> <td> U+021AB </td> <td> <span class="glyph" title="">↫</span> </td> <tr id="entity-looparrowright"><td> <code title="">looparrowright;</code> </td> <td> U+021AC </td> <td> <span class="glyph" title="">↬</span> </td> <tr id="entity-lopar"><td> <code title="">lopar;</code> </td> <td> U+02985 </td> <td> <span class="glyph" title="">⦅</span> </td> <tr id="entity-Lopf"><td> <code title="">Lopf;</code> </td> <td> U+1D543 </td> <td> <span class="glyph" title="">𝕃</span> </td> <tr id="entity-lopf"><td> <code title="">lopf;</code> </td> <td> U+1D55D </td> <td> <span class="glyph" title="">𝕝</span> </td> <tr id="entity-loplus"><td> <code title="">loplus;</cde> </td> <td> U+02A2D </td> <td> <span class="glyph" title="">⨭</span> </td> <tr id="entity-lotimes"><td> <code title="">lotimes;</code> </td> <td> U+02A34 </td> <td> <span class="glyph" title="">⨴</span> </td> <tr id="entity-lowast"><td> <code title="">lowast;</code> </td> <td> U+02217 </td> <td> <span class="glyph" title="">∗</span> </td> <tr id="entity-lowbar"><td> <code title="">lowbar;</code> </td> <td> U+0005F </td> <td> <span class="glyph" title="">_</span> </td> <tr id="entity-LowerLeftArrow"><td> <code title="">LowerLeftArrow;</code> </td> <td> U+02199 </td> <td> <span class="glyph" title="">↙</span> </td> <tr id="entity-LowerRightArrow"><td> <code title="">LowerRightArrow;</code> </td> <td> U+02198 </td> <td> <span class="glyph" title="">↘</span> </td> <tr id="entity-loz"><td> <code title="">loz;</code> </td> <td> U+025CA </td> <td> <span class="glyph" title="">◊</span> </td> <tr id="entity-lozenge"><td> <code title="">lozenge;</code> </td> <td> U+025CA </td> td> <span class="glyph" title="">◊</span> </td> <tr id="entity-lozf"><td> <code title="">lozf;</code> </td> <td> U+029EB </td> <td> <span class="glyph" title="">⧫</span> </td> <tr id="entity-lpar"><td> <code title="">lpar;</code> </td> <td> U+00028 </td> <td> <span class="glyph" title="">(</span> </td> <tr id="entity-lparlt"><td> <code title="">lparlt;</code> </td> <td> U+02993 </td> <td> <span class="glyph" title="">⦓</span> </td> <tr id="entity-lrarr"><td> <code title="">lrarr;</code> </td> <td> U+021C6 </td> <td> <span class="glyph" title="">⇆</span> </td> <tr id="entity-lrcorner"><td> <code title="">lrcorner;</code> </td> <td> U+0231F </td> <td> <span class="glyph" title="">⌟</span> </td> <tr id="entity-lrhar"><td> <code title="">lrhar;</code> </td> <td> U+021CB </td> <td> <span class="glyph" title="">⇋</span> </td> <tr id="entity-lrhard"><td> <code title="">lrhard;</code> </td> <td> U+0296D </td> <td> <span class="glyph" title="">⥭</span> </td> <tr id="entity-rm"><td> <code title="">lrm;</code> </td> <td> U+0200E </td> <td> <span class="glyph" title="">‎</span> </td> <tr id="entity-lrtri"><td> <code title="">lrtri;</code> </td> <td> U+022BF </td> <td> <span class="glyph" title="">⊿</span> </td> <tr id="entity-lsaquo"><td> <code title="">lsaquo;</code> </td> <td> U+02039 </td> <td> <span class="glyph" title="">‹</span> </td> <tr id="entity-Lscr"><td> <code title="">Lscr;</code> </td> <td> U+02112 </td> <td> <span class="glyph" title="">ℒ</span> </td> <tr id="entity-lscr"><td> <code title="">lscr;</code> </td> <td> U+1D4C1 </td> <td> <span class="glyph" title="">𝓁</span> </td> <tr id="entity-Lsh"><td> <code title="">Lsh;</code> </td> <td> U+021B0 </td> <td> <span class="glyph" title="">↰</span> </td> <tr id="entity-lsh"><td> <code title="">lsh;</code> </td> <td> U+021B0 </td> <td> <span class="glyph" title="">↰</span> </td> <tr id="entity-lsim"><td> <code title="">lsim;</code> </td> <td> U+02272 </td> <td> <span class="glph" title="">≲</span> </td> <tr id="entity-lsime"><td> <code title="">lsime;</code> </td> <td> U+02A8D </td> <td> <span class="glyph" title="">⪍</span> </td> <tr id="entity-lsimg"><td> <code title="">lsimg;</code> </td> <td> U+02A8F </td> <td> <span class="glyph" title="">⪏</span> </td> <tr id="entity-lsqb"><td> <code title="">lsqb;</code> </td> <td> U+0005B </td> <td> <span class="glyph" title="">[</span> </td> <tr id="entity-lsquo"><td> <code title="">lsquo;</code> </td> <td> U+02018 </td> <td> <span class="glyph" title="">‘</span> </td> <tr id="entity-lsquor"><td> <code title="">lsquor;</code> </td> <td> U+0201A </td> <td> <span class="glyph" title="">‚</span> </td> <tr id="entity-Lstrok"><td> <code title="">Lstrok;</code> </td> <td> U+00141 </td> <td> <span class="glyph" title="">Ł</span> </td> <tr id="entity-lstrok"><td> <code title="">lstrok;</code> </td> <td> U+00142 </td> <td> <span class="glyph" title="">ł</span> </td> <tr id="entity-LT"><td> <code title=""LT;</code> </td> <td> U+0003C </td> <td> <span class="glyph" title=""><</span> </td> <tr id="entity-Lt"><td> <code title="">Lt;</code> </td> <td> U+0226A </td> <td> <span class="glyph" title="">≪</span> </td> <tr id="entity-lt"><td> <code title="">lt;</code> </td> <td> U+0003C </td> <td> <span class="glyph" title=""><</span> </td> <tr id="entity-ltcc"><td> <code title="">ltcc;</code> </td> <td> U+02AA6 </td> <td> <span class="glyph" title="">⪦</span> </td> <tr id="entity-ltcir"><td> <code title="">ltcir;</code> </td> <td> U+02A79 </td> <td> <span class="glyph" title="">⩹</span> </td> <tr id="entity-ltdot"><td> <code title="">ltdot;</code> </td> <td> U+022D6 </td> <td> <span class="glyph" title="">⋖</span> </td> <tr id="entity-lthree"><td> <code title="">lthree;</code> </td> <td> U+022CB </td> <td> <span class="glyph" title="">⋋</span> </td> <tr id="entity-ltimes"><td> <code title="">ltimes;</code> </td> <td> U+022C9 </td> <td> <span class="glyph" title="">⋉</span></td> <tr id="entity-ltlarr"><td> <code title="">ltlarr;</code> </td> <td> U+02976 </td> <td> <span class="glyph" title="">⥶</span> </td> <tr id="entity-ltquest"><td> <code title="">ltquest;</code> </td> <td> U+02A7B </td> <td> <span class="glyph" title="">⩻</span> </td> <tr id="entity-ltri"><td> <code title="">ltri;</code> </td> <td> U+025C3 </td> <td> <span class="glyph" title="">◃</span> </td> <tr id="entity-ltrie"><td> <code title="">ltrie;</code> </td> <td> U+022B4 </td> <td> <span class="glyph" title="">⊴</span> </td> <tr id="entity-ltrif"><td> <code title="">ltrif;</code> </td> <td> U+025C2 </td> <td> <span class="glyph" title="">◂</span> </td> <tr id="entity-ltrPar"><td> <code title="">ltrPar;</code> </td> <td> U+02996 </td> <td> <span class="glyph" title="">⦖</span> </td> <tr id="entity-lurdshar"><td> <code title="">lurdshar;</code> </td> <td> U+0294A </td> <td> <span class="glyph" title="">⥊</span> </td> <tr id="entity-luruhar"><td> <code title="">luruar;</code> </td> <td> U+02966 </td> <td> <span class="glyph" title="">⥦</span> </td> <tr id="entity-lvertneqq"><td> <code title="">lvertneqq;</code> </td> <td> U+02268 U+0FE00 </td> <td> <span class="glyph compound" title="">≨︀</span> </td> <tr id="entity-lvnE"><td> <code title="">lvnE;</code> </td> <td> U+02268 U+0FE00 </td> <td> <span class="glyph compound" title="">≨︀</span> </td> <tr id="entity-macr"><td> <code title="">macr;</code> </td> <td> U+000AF </td> <td> <span class="glyph" title="">¯</span> </td> <tr id="entity-male"><td> <code title="">male;</code> </td> <td> U+02642 </td> <td> <span class="glyph" title="">♂</span> </td> <tr id="entity-malt"><td> <code title="">malt;</code> </td> <td> U+02720 </td> <td> <span class="glyph" title="">✠</span> </td> <tr id="entity-maltese"><td> <code title="">maltese;</code> </td> <td> U+02720 </td> <td> <span class="glyph" title="">✠</span> </td> <tr id="entity-Map"><td> <code title="">Map;</code> </td> <d> U+02905 </td> <td> <span class="glyph" title="">⤅</span> </td> <tr id="entity-map"><td> <code title="">map;</code> </td> <td> U+021A6 </td> <td> <span class="glyph" title="">↦</span> </td> <tr id="entity-mapsto"><td> <code title="">mapsto;</code> </td> <td> U+021A6 </td> <td> <span class="glyph" title="">↦</span> </td> <tr id="entity-mapstodown"><td> <code title="">mapstodown;</code> </td> <td> U+021A7 </td> <td> <span class="glyph" title="">↧</span> </td> <tr id="entity-mapstoleft"><td> <code title="">mapstoleft;</code> </td> <td> U+021A4 </td> <td> <span class="glyph" title="">↤</span> </td> <tr id="entity-mapstoup"><td> <code title="">mapstoup;</code> </td> <td> U+021A5 </td> <td> <span class="glyph" title="">↥</span> </td> <tr id="entity-marker"><td> <code title="">marker;</code> </td> <td> U+025AE </td> <td> <span class="glyph" title="">▮</span> </td> <tr id="entity-mcomma"><td> <code title="">mcomma;</code> </td> <td> U+02A29 </td> <td> <span class="glyph"title="">⨩</span> </td> <tr id="entity-Mcy"><td> <code title="">Mcy;</code> </td> <td> U+0041C </td> <td> <span class="glyph" title="">М</span> </td> <tr id="entity-mcy"><td> <code title="">mcy;</code> </td> <td> U+0043C </td> <td> <span class="glyph" title="">м</span> </td> <tr id="entity-mdash"><td> <code title="">mdash;</code> </td> <td> U+02014 </td> <td> <span class="glyph" title="">—</span> </td> <tr id="entity-mDDot"><td> <code title="">mDDot;</code> </td> <td> U+0223A </td> <td> <span class="glyph" title="">∺</span> </td> <tr id="entity-measuredangle"><td> <code title="">measuredangle;</code> </td> <td> U+02221 </td> <td> <span class="glyph" title="">∡</span> </td> <tr id="entity-MediumSpace"><td> <code title="">MediumSpace;</code> </td> <td> U+0205F </td> <td> <span class="glyph" title=""> </span> </td> <tr id="entity-Mellintrf"><td> <code title="">Mellintrf;</code> </td> <td> U+02133 </td> <td> <span class="glyph" title="">ℳ</span> </td> <tr id="entty-Mfr"><td> <code title="">Mfr;</code> </td> <td> U+1D510 </td> <td> <span class="glyph" title="">𝔐</span> </td> <tr id="entity-mfr"><td> <code title="">mfr;</code> </td> <td> U+1D52A </td> <td> <span class="glyph" title="">𝔪</span> </td> <tr id="entity-mho"><td> <code title="">mho;</code> </td> <td> U+02127 </td> <td> <span class="glyph" title="">℧</span> </td> <tr id="entity-micro"><td> <code title="">micro;</code> </td> <td> U+000B5 </td> <td> <span class="glyph" title="">µ</span> </td> <tr id="entity-mid"><td> <code title="">mid;</code> </td> <td> U+02223 </td> <td> <span class="glyph" title="">∣</span> </td> <tr id="entity-midast"><td> <code title="">midast;</code> </td> <td> U+0002A </td> <td> <span class="glyph" title="">*</span> </td> <tr id="entity-midcir"><td> <code title="">midcir;</code> </td> <td> U+02AF0 </td> <td> <span class="glyph" title="">⫰</span> </td> <tr id="entity-middot"><td> <code title="">middot;</code> </td> <td> U+000B7 </td> <td> <span cass="glyph" title="">·</span> </td> <tr id="entity-minus"><td> <code title="">minus;</code> </td> <td> U+02212 </td> <td> <span class="glyph" title="">−</span> </td> <tr id="entity-minusb"><td> <code title="">minusb;</code> </td> <td> U+0229F </td> <td> <span class="glyph" title="">⊟</span> </td> <tr id="entity-minusd"><td> <code title="">minusd;</code> </td> <td> U+02238 </td> <td> <span class="glyph" title="">∸</span> </td> <tr id="entity-minusdu"><td> <code title="">minusdu;</code> </td> <td> U+02A2A </td> <td> <span class="glyph" title="">⨪</span> </td> <tr id="entity-MinusPlus"><td> <code title="">MinusPlus;</code> </td> <td> U+02213 </td> <td> <span class="glyph" title="">∓</span> </td> <tr id="entity-mlcp"><td> <code title="">mlcp;</code> </td> <td> U+02ADB </td> <td> <span class="glyph" title="">⫛</span> </td> <tr id="entity-mldr"><td> <code title="">mldr;</code> </td> <td> U+02026 </td> <td> <span class="glyph" title="">…</span> </td> <tr id="entiy-mnplus"><td> <code title="">mnplus;</code> </td> <td> U+02213 </td> <td> <span class="glyph" title="">∓</span> </td> <tr id="entity-models"><td> <code title="">models;</code> </td> <td> U+022A7 </td> <td> <span class="glyph" title="">⊧</span> </td> <tr id="entity-Mopf"><td> <code title="">Mopf;</code> </td> <td> U+1D544 </td> <td> <span class="glyph" title="">𝕄</span> </td> <tr id="entity-mopf"><td> <code title="">mopf;</code> </td> <td> U+1D55E </td> <td> <span class="glyph" title="">𝕞</span> </td> <tr id="entity-mp"><td> <code title="">mp;</code> </td> <td> U+02213 </td> <td> <span class="glyph" title="">∓</span> </td> <tr id="entity-Mscr"><td> <code title="">Mscr;</code> </td> <td> U+02133 </td> <td> <span class="glyph" title="">ℳ</span> </td> <tr id="entity-mscr"><td> <code title="">mscr;</code> </td> <td> U+1D4C2 </td> <td> <span class="glyph" title="">𝓂</span> </td> <tr id="entity-mstpos"><td> <code title="">mstpos;</code> </td> <td> U+0223E </td> <td><span class="glyph" title="">∾</span> </td> <tr id="entity-Mu"><td> <code title="">Mu;</code> </td> <td> U+0039C </td> <td> <span class="glyph" title="">Μ</span> </td> <tr id="entity-mu"><td> <code title="">mu;</code> </td> <td> U+003BC </td> <td> <span class="glyph" title="">μ</span> </td> <tr id="entity-multimap"><td> <code title="">multimap;</code> </td> <td> U+022B8 </td> <td> <span class="glyph" title="">⊸</span> </td> <tr id="entity-mumap"><td> <code title="">mumap;</code> </td> <td> U+022B8 </td> <td> <span class="glyph" title="">⊸</span> </td> <tr id="entity-nabla"><td> <code title="">nabla;</code> </td> <td> U+02207 </td> <td> <span class="glyph" title="">∇</span> </td> <tr id="entity-Nacute"><td> <code title="">Nacute;</code> </td> <td> U+00143 </td> <td> <span class="glyph" title="">Ń</span> </td> <tr id="entity-nacute"><td> <code title="">nacute;</code> </td> <td> U+00144 </td> <td> <span class="glyph" title="">ń</span> </td> <tr id="entity-nang"><td> <cod title="">nang;</code> </td> <td> U+02220 U+020D2 </td> <td> <span class="glyph compound" title="">∠⃒</span> </td> <tr id="entity-nap"><td> <code title="">nap;</code> </td> <td> U+02249 </td> <td> <span class="glyph" title="">≉</span> </td> <tr id="entity-napE"><td> <code title="">napE;</code> </td> <td> U+02A70 U+00338 </td> <td> <span class="glyph compound" title="">⩰̸</span> </td> <tr id="entity-napid"><td> <code title="">napid;</code> </td> <td> U+0224B U+00338 </td> <td> <span class="glyph compound" title="">≋̸</span> </td> <tr id="entity-napos"><td> <code title="">napos;</code> </td> <td> U+00149 </td> <td> <span class="glyph" title="">ʼn</span> </td> <tr id="entity-napprox"><td> <code title="">napprox;</code> </td> <td> U+02249 </td> <td> <span class="glyph" title="">≉</span> </td> <tr id="entity-natur"><td> <code title="">natur;</code> </td> <td> U+0266E </td> <td> <span class="glyph" title="">♮</span> </td> <tr id="entity-natural"><td> <code tile="">natural;</code> </td> <td> U+0266E </td> <td> <span class="glyph" title="">♮</span> </td> <tr id="entity-naturals"><td> <code title="">naturals;</code> </td> <td> U+02115 </td> <td> <span class="glyph" title="">ℕ</span> </td> <tr id="entity-nbsp"><td> <code title="">nbsp;</code> </td> <td> U+000A0 </td> <td> <span class="glyph" title=""> </span> </td> <tr id="entity-nbump"><td> <code title="">nbump;</code> </td> <td> U+0224E U+00338 </td> <td> <span class="glyph compound" title="">≎̸</span> </td> <tr id="entity-nbumpe"><td> <code title="">nbumpe;</code> </td> <td> U+0224F U+00338 </td> <td> <span class="glyph compound" title="">≏̸</span> </td> <tr id="entity-ncap"><td> <code title="">ncap;</code> </td> <td> U+02A43 </td> <td> <span class="glyph" title="">⩃</span> </td> <tr id="entity-Ncaron"><td> <code title="">Ncaron;</code> </td> <td> U+00147 </td> <td> <span class="glyph" title="">Ň</span> </td> <tr id="entity-ncaron"><td> <code title="">ncaron;</cde> </td> <td> U+00148 </td> <td> <span class="glyph" title="">ň</span> </td> <tr id="entity-Ncedil"><td> <code title="">Ncedil;</code> </td> <td> U+00145 </td> <td> <span class="glyph" title="">Ņ</span> </td> <tr id="entity-ncedil"><td> <code title="">ncedil;</code> </td> <td> U+00146 </td> <td> <span class="glyph" title="">ņ</span> </td> <tr id="entity-ncong"><td> <code title="">ncong;</code> </td> <td> U+02247 </td> <td> <span class="glyph" title="">≇</span> </td> <tr id="entity-ncongdot"><td> <code title="">ncongdot;</code> </td> <td> U+02A6D U+00338 </td> <td> <span class="glyph compound" title="">⩭̸</span> </td> <tr id="entity-ncup"><td> <code title="">ncup;</code> </td> <td> U+02A42 </td> <td> <span class="glyph" title="">⩂</span> </td> <tr id="entity-Ncy"><td> <code title="">Ncy;</code> </td> <td> U+0041D </td> <td> <span class="glyph" title="">Н</span> </td> <tr id="entity-ncy"><td> <code title="">ncy;</code> </td> <td> U+0043D </td> <td> <span class="gyph" title="">н</span> </td> <tr id="entity-ndash"><td> <code title="">ndash;</code> </td> <td> U+02013 </td> <td> <span class="glyph" title="">–</span> </td> <tr id="entity-ne"><td> <code title="">ne;</code> </td> <td> U+02260 </td> <td> <span class="glyph" title="">≠</span> </td> <tr id="entity-nearhk"><td> <code title="">nearhk;</code> </td> <td> U+02924 </td> <td> <span class="glyph" title="">⤤</span> </td> <tr id="entity-neArr"><td> <code title="">neArr;</code> </td> <td> U+021D7 </td> <td> <span class="glyph" title="">⇗</span> </td> <tr id="entity-nearr"><td> <code title="">nearr;</code> </td> <td> U+02197 </td> <td> <span class="glyph" title="">↗</span> </td> <tr id="entity-nearrow"><td> <code title="">nearrow;</code> </td> <td> U+02197 </td> <td> <span class="glyph" title="">↗</span> </td> <tr id="entity-nedot"><td> <code title="">nedot;</code> </td> <td> U+02250 U+00338 </td> <td> <span class="glyph compound" title="">≐̸</span> </td> <tr id="entityNegativeMediumSpace"><td> <code title="">NegativeMediumSpace;</code> </td> <td> U+0200B </td> <td> <span class="glyph" title="">​</span> </td> <tr id="entity-NegativeThickSpace"><td> <code title="">NegativeThickSpace;</code> </td> <td> U+0200B </td> <td> <span class="glyph" title="">​</span> </td> <tr id="entity-NegativeThinSpace"><td> <code title="">NegativeThinSpace;</code> </td> <td> U+0200B </td> <td> <span class="glyph" title="">​</span> </td> <tr id="entity-NegativeVeryThinSpace"><td> <code title="">NegativeVeryThinSpace;</code> </td> <td> U+0200B </td> <td> <span class="glyph" title="">​</span> </td> <tr id="entity-nequiv"><td> <code title="">nequiv;</code> </td> <td> U+02262 </td> <td> <span class="glyph" title="">≢</span> </td> <tr id="entity-nesear"><td> <code title="">nesear;</code> </td> <td> U+02928 </td> <td> <span class="glyph" title="">⤨</span> </td> <tr id="entity-nesim"><td> <code title="">nesim;</code> </td> <td> U+02242 U+00338 </td> <td> <span class=glyph compound" title="">≂̸</span> </td> <tr id="entity-NestedGreaterGreater"><td> <code title="">NestedGreaterGreater;</code> </td> <td> U+0226B </td> <td> <span class="glyph" title="">≫</span> </td> <tr id="entity-NestedLessLess"><td> <code title="">NestedLessLess;</code> </td> <td> U+0226A </td> <td> <span class="glyph" title="">≪</span> </td> <tr id="entity-NewLine"><td> <code title="">NewLine;</code> </td> <td> U+0000A </td> <td> <span class="glyph control" title="">␊</span> </td> <tr id="entity-nexist"><td> <code title="">nexist;</code> </td> <td> U+02204 </td> <td> <span class="glyph" title="">∄</span> </td> <tr id="entity-nexists"><td> <code title="">nexists;</code> </td> <td> U+02204 </td> <td> <span class="glyph" title="">∄</span> </td> <tr id="entity-Nfr"><td> <code title="">Nfr;</code> </td> <td> U+1D511 </td> <td> <span class="glyph" title="">𝔑</span> </td> <tr id="entity-nfr"><td> <code title="">nfr;</code> </td> <td> U+1D52B </td> <td> <span clss="glyph" title="">𝔫</span> </td> <tr id="entity-ngE"><td> <code title="">ngE;</code> </td> <td> U+02267 U+00338 </td> <td> <span class="glyph compound" title="">≧̸</span> </td> <tr id="entity-nge"><td> <code title="">nge;</code> </td> <td> U+02271 </td> <td> <span class="glyph" title="">≱</span> </td> <tr id="entity-ngeq"><td> <code title="">ngeq;</code> </td> <td> U+02271 </td> <td> <span class="glyph" title="">≱</span> </td> <tr id="entity-ngeqq"><td> <code title="">ngeqq;</code> </td> <td> U+02267 U+00338 </td> <td> <span class="glyph compound" title="">≧̸</span> </td> <tr id="entity-ngeqslant"><td> <code title="">ngeqslant;</code> </td> <td> U+02A7E U+00338 </td> <td> <span class="glyph compound" title="">⩾̸</span> </td> <tr id="entity-nges"><td> <code title="">nges;</code> </td> <td> U+02A7E U+00338 </td> <td> <span class="glyph compound" title="">⩾̸</span> </td> <tr id="entity-nGg"><td> <code title="">nGg;</code> </td> <td> U+022D9 U+0338 </td> <td> <span class="glyph compound" title="">⋙̸</span> </td> <tr id="entity-ngsim"><td> <code title="">ngsim;</code> </td> <td> U+02275 </td> <td> <span class="glyph" title="">≵</span> </td> <tr id="entity-nGt"><td> <code title="">nGt;</code> </td> <td> U+0226B U+020D2 </td> <td> <span class="glyph compound" title="">≫⃒</span> </td> <tr id="entity-ngt"><td> <code title="">ngt;</code> </td> <td> U+0226F </td> <td> <span class="glyph" title="">≯</span> </td> <tr id="entity-ngtr"><td> <code title="">ngtr;</code> </td> <td> U+0226F </td> <td> <span class="glyph" title="">≯</span> </td> <tr id="entity-nGtv"><td> <code title="">nGtv;</code> </td> <td> U+0226B U+00338 </td> <td> <span class="glyph compound" title="">≫̸</span> </td> <tr id="entity-nhArr"><td> <code title="">nhArr;</code> </td> <td> U+021CE </td> <td> <span class="glyph" title="">⇎</span> </td> <tr id="entity-nharr"><td> <code title="">nharr;</code> </td> <td> U+021AE </td> <td> <spa class="glyph" title="">↮</span> </td> <tr id="entity-nhpar"><td> <code title="">nhpar;</code> </td> <td> U+02AF2 </td> <td> <span class="glyph" title="">⫲</span> </td> <tr id="entity-ni"><td> <code title="">ni;</code> </td> <td> U+0220B </td> <td> <span class="glyph" title="">∋</span> </td> <tr id="entity-nis"><td> <code title="">nis;</code> </td> <td> U+022FC </td> <td> <span class="glyph" title="">⋼</span> </td> <tr id="entity-nisd"><td> <code title="">nisd;</code> </td> <td> U+022FA </td> <td> <span class="glyph" title="">⋺</span> </td> <tr id="entity-niv"><td> <code title="">niv;</code> </td> <td> U+0220B </td> <td> <span class="glyph" title="">∋</span> </td> <tr id="entity-NJcy"><td> <code title="">NJcy;</code> </td> <td> U+0040A </td> <td> <span class="glyph" title="">Њ</span> </td> <tr id="entity-njcy"><td> <code title="">njcy;</code> </td> <td> U+0045A </td> <td> <span class="glyph" title="">њ</span> </td> <tr id="entity-nlArr"><td> <code title="">nlArr;</ode> </td> <td> U+021CD </td> <td> <span class="glyph" title="">⇍</span> </td> <tr id="entity-nlarr"><td> <code title="">nlarr;</code> </td> <td> U+0219A </td> <td> <span class="glyph" title="">↚</span> </td> <tr id="entity-nldr"><td> <code title="">nldr;</code> </td> <td> U+02025 </td> <td> <span class="glyph" title="">‥</span> </td> <tr id="entity-nlE"><td> <code title="">nlE;</code> </td> <td> U+02266 U+00338 </td> <td> <span class="glyph compound" title="">≦̸</span> </td> <tr id="entity-nle"><td> <code title="">nle;</code> </td> <td> U+02270 </td> <td> <span class="glyph" title="">≰</span> </td> <tr id="entity-nLeftarrow"><td> <code title="">nLeftarrow;</code> </td> <td> U+021CD </td> <td> <span class="glyph" title="">⇍</span> </td> <tr id="entity-nleftarrow"><td> <code title="">nleftarrow;</code> </td> <td> U+0219A </td> <td> <span class="glyph" title="">↚</span> </td> <tr id="entity-nLeftrightarrow"><td> <code title="">nLeftrightarrow;</code> </td> <td> U021CE </td> <td> <span class="glyph" title="">⇎</span> </td> <tr id="entity-nleftrightarrow"><td> <code title="">nleftrightarrow;</code> </td> <td> U+021AE </td> <td> <span class="glyph" title="">↮</span> </td> <tr id="entity-nleq"><td> <code title="">nleq;</code> </td> <td> U+02270 </td> <td> <span class="glyph" title="">≰</span> </td> <tr id="entity-nleqq"><td> <code title="">nleqq;</code> </td> <td> U+02266 U+00338 </td> <td> <span class="glyph compound" title="">≦̸</span> </td> <tr id="entity-nleqslant"><td> <code title="">nleqslant;</code> </td> <td> U+02A7D U+00338 </td> <td> <span class="glyph compound" title="">⩽̸</span> </td> <tr id="entity-nles"><td> <code title="">nles;</code> </td> <td> U+02A7D U+00338 </td> <td> <span class="glyph compound" title="">⩽̸</span> </td> <tr id="entity-nless"><td> <code title="">nless;</code> </td> <td> U+0226E </td> <td> <span class="glyph" title="">≮</span> </td> <tr id="entity-nLl"><td> <code title="">nLl;/code> </td> <td> U+022D8 U+00338 </td> <td> <span class="glyph compound" title="">⋘̸</span> </td> <tr id="entity-nlsim"><td> <code title="">nlsim;</code> </td> <td> U+02274 </td> <td> <span class="glyph" title="">≴</span> </td> <tr id="entity-nLt"><td> <code title="">nLt;</code> </td> <td> U+0226A U+020D2 </td> <td> <span class="glyph compound" title="">≪⃒</span> </td> <tr id="entity-nlt"><td> <code title="">nlt;</code> </td> <td> U+0226E </td> <td> <span class="glyph" title="">≮</span> </td> <tr id="entity-nltri"><td> <code title="">nltri;</code> </td> <td> U+022EA </td> <td> <span class="glyph" title="">⋪</span> </td> <tr id="entity-nltrie"><td> <code title="">nltrie;</code> </td> <td> U+022EC </td> <td> <span class="glyph" title="">⋬</span> </td> <tr id="entity-nLtv"><td> <code title="">nLtv;</code> </td> <td> U+0226A U+00338 </td> <td> <span class="glyph compound" title="">≪̸</span> </td> <tr id="entity-nmid"><td> <code title="">nmid;</code> </t> <td> U+02224 </td> <td> <span class="glyph" title="">∤</span> </td> <tr id="entity-NoBreak"><td> <code title="">NoBreak;</code> </td> <td> U+02060 </td> <td> <span class="glyph" title="">⁠</span> </td> <tr id="entity-NonBreakingSpace"><td> <code title="">NonBreakingSpace;</code> </td> <td> U+000A0 </td> <td> <span class="glyph" title=""> </span> </td> <tr id="entity-Nopf"><td> <code title="">Nopf;</code> </td> <td> U+02115 </td> <td> <span class="glyph" title="">ℕ</span> </td> <tr id="entity-nopf"><td> <code title="">nopf;</code> </td> <td> U+1D55F </td> <td> <span class="glyph" title="">𝕟</span> </td> <tr id="entity-Not"><td> <code title="">Not;</code> </td> <td> U+02AEC </td> <td> <span class="glyph" title="">⫬</span> </td> <tr id="entity-not"><td> <code title="">not;</code> </td> <td> U+000AC </td> <td> <span class="glyph" title="">¬</span> </td> <tr id="entity-NotCongruent"><td> <code title="">NotCongruent;</code> </td> <td> U+02262 </td> <td> <span class="glyh" title="">≢</span> </td> <tr id="entity-NotCupCap"><td> <code title="">NotCupCap;</code> </td> <td> U+0226D </td> <td> <span class="glyph" title="">≭</span> </td> <tr id="entity-NotDoubleVerticalBar"><td> <code title="">NotDoubleVerticalBar;</code> </td> <td> U+02226 </td> <td> <span class="glyph" title="">∦</span> </td> <tr id="entity-NotElement"><td> <code title="">NotElement;</code> </td> <td> U+02209 </td> <td> <span class="glyph" title="">∉</span> </td> <tr id="entity-NotEqual"><td> <code title="">NotEqual;</code> </td> <td> U+02260 </td> <td> <span class="glyph" title="">≠</span> </td> <tr id="entity-NotEqualTilde"><td> <code title="">NotEqualTilde;</code> </td> <td> U+02242 U+00338 </td> <td> <span class="glyph compound" title="">≂̸</span> </td> <tr id="entity-NotExists"><td> <code title="">NotExists;</code> </td> <td> U+02204 </td> <td> <span class="glyph" title="">∄</span> </td> <tr id="entity-NotGreater"><td> <code title="">NotGreater;</code> </td> <td U+0226F </td> <td> <span class="glyph" title="">≯</span> </td> <tr id="entity-NotGreaterEqual"><td> <code title="">NotGreaterEqual;</code> </td> <td> U+02271 </td> <td> <span class="glyph" title="">≱</span> </td> <tr id="entity-NotGreaterFullEqual"><td> <code title="">NotGreaterFullEqual;</code> </td> <td> U+02267 U+00338 </td> <td> <span class="glyph compound" title="">≧̸</span> </td> <tr id="entity-NotGreaterGreater"><td> <code title="">NotGreaterGreater;</code> </td> <td> U+0226B U+00338 </td> <td> <span class="glyph compound" title="">≫̸</span> </td> <tr id="entity-NotGreaterLess"><td> <code title="">NotGreaterLess;</code> </td> <td> U+02279 </td> <td> <span class="glyph" title="">≹</span> </td> <tr id="entity-NotGreaterSlantEqual"><td> <code title="">NotGreaterSlantEqual;</code> </td> <td> U+02A7E U+00338 </td> <td> <span class="glyph compound" title="">⩾̸</span> </td> <tr id="entity-NotGreaterTilde"><td> <code title="">NotGreaterTilde;</code> </td> td> U+02275 </td> <td> <span class="glyph" title="">≵</span> </td> <tr id="entity-NotHumpDownHump"><td> <code title="">NotHumpDownHump;</code> </td> <td> U+0224E U+00338 </td> <td> <span class="glyph compound" title="">≎̸</span> </td> <tr id="entity-NotHumpEqual"><td> <code title="">NotHumpEqual;</code> </td> <td> U+0224F U+00338 </td> <td> <span class="glyph compound" title="">≏̸</span> </td> <tr id="entity-notin"><td> <code title="">notin;</code> </td> <td> U+02209 </td> <td> <span class="glyph" title="">∉</span> </td> <tr id="entity-notindot"><td> <code title="">notindot;</code> </td> <td> U+022F5 U+00338 </td> <td> <span class="glyph compound" title="">⋵̸</span> </td> <tr id="entity-notinE"><td> <code title="">notinE;</code> </td> <td> U+022F9 U+00338 </td> <td> <span class="glyph compound" title="">⋹̸</span> </td> <tr id="entity-notinva"><td> <code title="">notinva;</code> </td> <td> U+02209 </td> <td> <span class="glyph" title="">∉</span> <td> <tr id="entity-notinvb"><td> <code title="">notinvb;</code> </td> <td> U+022F7 </td> <td> <span class="glyph" title="">⋷</span> </td> <tr id="entity-notinvc"><td> <code title="">notinvc;</code> </td> <td> U+022F6 </td> <td> <span class="glyph" title="">⋶</span> </td> <tr id="entity-NotLeftTriangle"><td> <code title="">NotLeftTriangle;</code> </td> <td> U+022EA </td> <td> <span class="glyph" title="">⋪</span> </td> <tr id="entity-NotLeftTriangleBar"><td> <code title="">NotLeftTriangleBar;</code> </td> <td> U+029CF U+00338 </td> <td> <span class="glyph compound" title="">⧏̸</span> </td> <tr id="entity-NotLeftTriangleEqual"><td> <code title="">NotLeftTriangleEqual;</code> </td> <td> U+022EC </td> <td> <span class="glyph" title="">⋬</span> </td> <tr id="entity-NotLess"><td> <code title="">NotLess;</code> </td> <td> U+0226E </td> <td> <span class="glyph" title="">≮</span> </td> <tr id="entity-NotLessEqual"><td> <code title="">NotLessEqual;</code> </td> <td> U+02270 <td> <td> <span class="glyph" title="">≰</span> </td> <tr id="entity-NotLessGreater"><td> <code title="">NotLessGreater;</code> </td> <td> U+02278 </td> <td> <span class="glyph" title="">≸</span> </td> <tr id="entity-NotLessLess"><td> <code title="">NotLessLess;</code> </td> <td> U+0226A U+00338 </td> <td> <span class="glyph compound" title="">≪̸</span> </td> <tr id="entity-NotLessSlantEqual"><td> <code title="">NotLessSlantEqual;</code> </td> <td> U+02A7D U+00338 </td> <td> <span class="glyph compound" title="">⩽̸</span> </td> <tr id="entity-NotLessTilde"><td> <code title="">NotLessTilde;</code> </td> <td> U+02274 </td> <td> <span class="glyph" title="">≴</span> </td> <tr id="entity-NotNestedGreaterGreater"><td> <code title="">NotNestedGreaterGreater;</code> </td> <td> U+02AA2 U+00338 </td> <td> <span class="glyph compound" title="">⪢̸</span> </td> <tr id="entity-NotNestedLessLess"><td> <code title="">NotNestedLessLess;</code> </td> <td> U+02AA1 U+00338 <td> <td> <span class="glyph compound" title="">⪡̸</span> </td> <tr id="entity-notni"><td> <code title="">notni;</code> </td> <td> U+0220C </td> <td> <span class="glyph" title="">∌</span> </td> <tr id="entity-notniva"><td> <code title="">notniva;</code> </td> <td> U+0220C </td> <td> <span class="glyph" title="">∌</span> </td> <tr id="entity-notnivb"><td> <code title="">notnivb;</code> </td> <td> U+022FE </td> <td> <span class="glyph" title="">⋾</span> </td> <tr id="entity-notnivc"><td> <code title="">notnivc;</code> </td> <td> U+022FD </td> <td> <span class="glyph" title="">⋽</span> </td> <tr id="entity-NotPrecedes"><td> <code title="">NotPrecedes;</code> </td> <td> U+02280 </td> <td> <span class="glyph" title="">⊀</span> </td> <tr id="entity-NotPrecedesEqual"><td> <code title="">NotPrecedesEqual;</code> </td> <td> U+02AAF U+00338 </td> <td> <span class="glyph compound" title="">⪯̸</span> </td> <tr id="entity-NotPrecedesSlantEqual"><td> <code title="">NotrecedesSlantEqual;</code> </td> <td> U+022E0 </td> <td> <span class="glyph" title="">⋠</span> </td> <tr id="entity-NotReverseElement"><td> <code title="">NotReverseElement;</code> </td> <td> U+0220C </td> <td> <span class="glyph" title="">∌</span> </td> <tr id="entity-NotRightTriangle"><td> <code title="">NotRightTriangle;</code> </td> <td> U+022EB </td> <td> <span class="glyph" title="">⋫</span> </td> <tr id="entity-NotRightTriangleBar"><td> <code title="">NotRightTriangleBar;</code> </td> <td> U+029D0 U+00338 </td> <td> <span class="glyph compound" title="">⧐̸</span> </td> <tr id="entity-NotRightTriangleEqual"><td> <code title="">NotRightTriangleEqual;</code> </td> <td> U+022ED </td> <td> <span class="glyph" title="">⋭</span> </td> <tr id="entity-NotSquareSubset"><td> <code title="">NotSquareSubset;</code> </td> <td> U+0228F U+00338 </td> <td> <span class="glyph compound" title="">⊏̸</span> </td> <tr id="entity-NotSquareSubsetEqual"><td> <code title="">NotSqureSubsetEqual;</code> </td> <td> U+022E2 </td> <td> <span class="glyph" title="">⋢</span> </td> <tr id="entity-NotSquareSuperset"><td> <code title="">NotSquareSuperset;</code> </td> <td> U+02290 U+00338 </td> <td> <span class="glyph compound" title="">⊐̸</span> </td> <tr id="entity-NotSquareSupersetEqual"><td> <code title="">NotSquareSupersetEqual;</code> </td> <td> U+022E3 </td> <td> <span class="glyph" title="">⋣</span> </td> <tr id="entity-NotSubset"><td> <code title="">NotSubset;</code> </td> <td> U+02282 U+020D2 </td> <td> <span class="glyph compound" title="">⊂⃒</span> </td> <tr id="entity-NotSubsetEqual"><td> <code title="">NotSubsetEqual;</code> </td> <td> U+02288 </td> <td> <span class="glyph" title="">⊈</span> </td> <tr id="entity-NotSucceeds"><td> <code title="">NotSucceeds;</code> </td> <td> U+02281 </td> <td> <span class="glyph" title="">⊁</span> </td> <tr id="entity-NotSucceedsEqual"><td> <code title="">NotSucceedsEqual;</code> </td> <td> U+02AB0 U+0338 </td> <td> <span class="glyph compound" title="">⪰̸</span> </td> <tr id="entity-NotSucceedsSlantEqual"><td> <code title="">NotSucceedsSlantEqual;</code> </td> <td> U+022E1 </td> <td> <span class="glyph" title="">⋡</span> </td> <tr id="entity-NotSucceedsTilde"><td> <code title="">NotSucceedsTilde;</code> </td> <td> U+0227F U+00338 </td> <td> <span class="glyph compound" title="">≿̸</span> </td> <tr id="entity-NotSuperset"><td> <code title="">NotSuperset;</code> </td> <td> U+02283 U+020D2 </td> <td> <span class="glyph compound" title="">⊃⃒</span> </td> <tr id="entity-NotSupersetEqual"><td> <code title="">NotSupersetEqual;</code> </td> <td> U+02289 </td> <td> <span class="glyph" title="">⊉</span> </td> <tr id="entity-NotTilde"><td> <code title="">NotTilde;</code> </td> <td> U+02241 </td> <td> <span class="glyph" title="">≁</span> </td> <tr id="entity-NotTildeEqual"><td> <code title="">NotTildeEqual;</code> </td> <td> U+02244 </td> <td> <span class="glyph"title="">≄</span> </td> <tr id="entity-NotTildeFullEqual"><td> <code title="">NotTildeFullEqual;</code> </td> <td> U+02247 </td> <td> <span class="glyph" title="">≇</span> </td> <tr id="entity-NotTildeTilde"><td> <code title="">NotTildeTilde;</code> </td> <td> U+02249 </td> <td> <span class="glyph" title="">≉</span> </td> <tr id="entity-NotVerticalBar"><td> <code title="">NotVerticalBar;</code> </td> <td> U+02224 </td> <td> <span class="glyph" title="">∤</span> </td> <tr id="entity-npar"><td> <code title="">npar;</code> </td> <td> U+02226 </td> <td> <span class="glyph" title="">∦</span> </td> <tr id="entity-nparallel"><td> <code title="">nparallel;</code> </td> <td> U+02226 </td> <td> <span class="glyph" title="">∦</span> </td> <tr id="entity-nparsl"><td> <code title="">nparsl;</code> </td> <td> U+02AFD U+020E5 </td> <td> <span class="glyph compound" title="">⫽⃥</span> </td> <tr id="entity-npart"><td> <code title="">npart;</code> </td> <td> U+02202 U+00338 </d> <td> <span class="glyph compound" title="">∂̸</span> </td> <tr id="entity-npolint"><td> <code title="">npolint;</code> </td> <td> U+02A14 </td> <td> <span class="glyph" title="">⨔</span> </td> <tr id="entity-npr"><td> <code title="">npr;</code> </td> <td> U+02280 </td> <td> <span class="glyph" title="">⊀</span> </td> <tr id="entity-nprcue"><td> <code title="">nprcue;</code> </td> <td> U+022E0 </td> <td> <span class="glyph" title="">⋠</span> </td> <tr id="entity-npre"><td> <code title="">npre;</code> </td> <td> U+02AAF U+00338 </td> <td> <span class="glyph compound" title="">⪯̸</span> </td> <tr id="entity-nprec"><td> <code title="">nprec;</code> </td> <td> U+02280 </td> <td> <span class="glyph" title="">⊀</span> </td> <tr id="entity-npreceq"><td> <code title="">npreceq;</code> </td> <td> U+02AAF U+00338 </td> <td> <span class="glyph compound" title="">⪯̸</span> </td> <tr id="entity-nrArr"><td> <code title="">nrArr;</code> </td> <td> U+021CF </td> td> <span class="glyph" title="">⇏</span> </td> <tr id="entity-nrarr"><td> <code title="">nrarr;</code> </td> <td> U+0219B </td> <td> <span class="glyph" title="">↛</span> </td> <tr id="entity-nrarrc"><td> <code title="">nrarrc;</code> </td> <td> U+02933 U+00338 </td> <td> <span class="glyph compound" title="">⤳̸</span> </td> <tr id="entity-nrarrw"><td> <code title="">nrarrw;</code> </td> <td> U+0219D U+00338 </td> <td> <span class="glyph compound" title="">↝̸</span> </td> <tr id="entity-nRightarrow"><td> <code title="">nRightarrow;</code> </td> <td> U+021CF </td> <td> <span class="glyph" title="">⇏</span> </td> <tr id="entity-nrightarrow"><td> <code title="">nrightarrow;</code> </td> <td> U+0219B </td> <td> <span class="glyph" title="">↛</span> </td> <tr id="entity-nrtri"><td> <code title="">nrtri;</code> </td> <td> U+022EB </td> <td> <span class="glyph" title="">⋫</span> </td> <tr id="entity-nrtrie"><td> <code title="">nrtrie;</code> </td> <td> U+022ED /td> <td> <span class="glyph" title="">⋭</span> </td> <tr id="entity-nsc"><td> <code title="">nsc;</code> </td> <td> U+02281 </td> <td> <span class="glyph" title="">⊁</span> </td> <tr id="entity-nsccue"><td> <code title="">nsccue;</code> </td> <td> U+022E1 </td> <td> <span class="glyph" title="">⋡</span> </td> <tr id="entity-nsce"><td> <code title="">nsce;</code> </td> <td> U+02AB0 U+00338 </td> <td> <span class="glyph compound" title="">⪰̸</span> </td> <tr id="entity-Nscr"><td> <code title="">Nscr;</code> </td> <td> U+1D4A9 </td> <td> <span class="glyph" title="">𝒩</span> </td> <tr id="entity-nscr"><td> <code title="">nscr;</code> </td> <td> U+1D4C3 </td> <td> <span class="glyph" title="">𝓃</span> </td> <tr id="entity-nshortmid"><td> <code title="">nshortmid;</code> </td> <td> U+02224 </td> <td> <span class="glyph" title="">∤</span> </td> <tr id="entity-nshortparallel"><td> <code title="">nshortparallel;</code> </td> <td> U+02226 </td> <td> <span class="gyph" title="">∦</span> </td> <tr id="entity-nsim"><td> <code title="">nsim;</code> </td> <td> U+02241 </td> <td> <span class="glyph" title="">≁</span> </td> <tr id="entity-nsime"><td> <code title="">nsime;</code> </td> <td> U+02244 </td> <td> <span class="glyph" title="">≄</span> </td> <tr id="entity-nsimeq"><td> <code title="">nsimeq;</code> </td> <td> U+02244 </td> <td> <span class="glyph" title="">≄</span> </td> <tr id="entity-nsmid"><td> <code title="">nsmid;</code> </td> <td> U+02224 </td> <td> <span class="glyph" title="">∤</span> </td> <tr id="entity-nspar"><td> <code title="">nspar;</code> </td> <td> U+02226 </td> <td> <span class="glyph" title="">∦</span> </td> <tr id="entity-nsqsube"><td> <code title="">nsqsube;</code> </td> <td> U+022E2 </td> <td> <span class="glyph" title="">⋢</span> </td> <tr id="entity-nsqsupe"><td> <code title="">nsqsupe;</code> </td> <td> U+022E3 </td> <td> <span class="glyph" title="">⋣</span> </td> <tr id="entity-nsub"><td> <ode title="">nsub;</code> </td> <td> U+02284 </td> <td> <span class="glyph" title="">⊄</span> </td> <tr id="entity-nsubE"><td> <code title="">nsubE;</code> </td> <td> U+02AC5 U+00338 </td> <td> <span class="glyph compound" title="">⫅̸</span> </td> <tr id="entity-nsube"><td> <code title="">nsube;</code> </td> <td> U+02288 </td> <td> <span class="glyph" title="">⊈</span> </td> <tr id="entity-nsubset"><td> <code title="">nsubset;</code> </td> <td> U+02282 U+020D2 </td> <td> <span class="glyph compound" title="">⊂⃒</span> </td> <tr id="entity-nsubseteq"><td> <code title="">nsubseteq;</code> </td> <td> U+02288 </td> <td> <span class="glyph" title="">⊈</span> </td> <tr id="entity-nsubseteqq"><td> <code title="">nsubseteqq;</code> </td> <td> U+02AC5 U+00338 </td> <td> <span class="glyph compound" title="">⫅̸</span> </td> <tr id="entity-nsucc"><td> <code title="">nsucc;</code> </td> <td> U+02281 </td> <td> <span class="glyph" title="">⊁</span> </td> <tr id="etity-nsucceq"><td> <code title="">nsucceq;</code> </td> <td> U+02AB0 U+00338 </td> <td> <span class="glyph compound" title="">⪰̸</span> </td> <tr id="entity-nsup"><td> <code title="">nsup;</code> </td> <td> U+02285 </td> <td> <span class="glyph" title="">⊅</span> </td> <tr id="entity-nsupE"><td> <code title="">nsupE;</code> </td> <td> U+02AC6 U+00338 </td> <td> <span class="glyph compound" title="">⫆̸</span> </td> <tr id="entity-nsupe"><td> <code title="">nsupe;</code> </td> <td> U+02289 </td> <td> <span class="glyph" title="">⊉</span> </td> <tr id="entity-nsupset"><td> <code title="">nsupset;</code> </td> <td> U+02283 U+020D2 </td> <td> <span class="glyph compound" title="">⊃⃒</span> </td> <tr id="entity-nsupseteq"><td> <code title="">nsupseteq;</code> </td> <td> U+02289 </td> <td> <span class="glyph" title="">⊉</span> </td> <tr id="entity-nsupseteqq"><td> <code title="">nsupseteqq;</code> </td> <td> U+02AC6 U+00338 </td> <td> <span class="glyph compound"title="">⫆̸</span> </td> <tr id="entity-ntgl"><td> <code title="">ntgl;</code> </td> <td> U+02279 </td> <td> <span class="glyph" title="">≹</span> </td> <tr id="entity-Ntilde"><td> <code title="">Ntilde;</code> </td> <td> U+000D1 </td> <td> <span class="glyph" title="">Ñ</span> </td> <tr id="entity-ntilde"><td> <code title="">ntilde;</code> </td> <td> U+000F1 </td> <td> <span class="glyph" title="">ñ</span> </td> <tr id="entity-ntlg"><td> <code title="">ntlg;</code> </td> <td> U+02278 </td> <td> <span class="glyph" title="">≸</span> </td> <tr id="entity-ntriangleleft"><td> <code title="">ntriangleleft;</code> </td> <td> U+022EA </td> <td> <span class="glyph" title="">⋪</span> </td> <tr id="entity-ntrianglelefteq"><td> <code title="">ntrianglelefteq;</code> </td> <td> U+022EC </td> <td> <span class="glyph" title="">⋬</span> </td> <tr id="entity-ntriangleright"><td> <code title="">ntriangleright;</code> </td> <td> U+022EB </td> <td> <span class="glyph" title=">⋫</span> </td> <tr id="entity-ntrianglerighteq"><td> <code title="">ntrianglerighteq;</code> </td> <td> U+022ED </td> <td> <span class="glyph" title="">⋭</span> </td> <tr id="entity-Nu"><td> <code title="">Nu;</code> </td> <td> U+0039D </td> <td> <span class="glyph" title="">Ν</span> </td> <tr id="entity-nu"><td> <code title="">nu;</code> </td> <td> U+003BD </td> <td> <span class="glyph" title="">ν</span> </td> <tr id="entity-num"><td> <code title="">num;</code> </td> <td> U+00023 </td> <td> <span class="glyph" title="">#</span> </td> <tr id="entity-numero"><td> <code title="">numero;</code> </td> <td> U+02116 </td> <td> <span class="glyph" title="">№</span> </td> <tr id="entity-numsp"><td> <code title="">numsp;</code> </td> <td> U+02007 </td> <td> <span class="glyph" title=""> </span> </td> <tr id="entity-nvap"><td> <code title="">nvap;</code> </td> <td> U+0224D U+020D2 </td> <td> <span class="glyph compound" title="">≍⃒</span> </td> <tr id="entity-nVDash"><td> <cde title="">nVDash;</code> </td> <td> U+022AF </td> <td> <span class="glyph" title="">⊯</span> </td> <tr id="entity-nVdash"><td> <code title="">nVdash;</code> </td> <td> U+022AE </td> <td> <span class="glyph" title="">⊮</span> </td> <tr id="entity-nvDash"><td> <code title="">nvDash;</code> </td> <td> U+022AD </td> <td> <span class="glyph" title="">⊭</span> </td> <tr id="entity-nvdash"><td> <code title="">nvdash;</code> </td> <td> U+022AC </td> <td> <span class="glyph" title="">⊬</span> </td> <tr id="entity-nvge"><td> <code title="">nvge;</code> </td> <td> U+02265 U+020D2 </td> <td> <span class="glyph compound" title="">≥⃒</span> </td> <tr id="entity-nvgt"><td> <code title="">nvgt;</code> </td> <td> U+0003E U+020D2 </td> <td> <span class="glyph compound" title="">>⃒</span> </td> <tr id="entity-nvHarr"><td> <code title="">nvHarr;</code> </td> <td> U+02904 </td> <td> <span class="glyph" title="">⤄</span> </td> <tr id="entity-nvinfin"><td> <code title="">nvinfin;/code> </td> <td> U+029DE </td> <td> <span class="glyph" title="">⧞</span> </td> <tr id="entity-nvlArr"><td> <code title="">nvlArr;</code> </td> <td> U+02902 </td> <td> <span class="glyph" title="">⤂</span> </td> <tr id="entity-nvle"><td> <code title="">nvle;</code> </td> <td> U+02264 U+020D2 </td> <td> <span class="glyph compound" title="">≤⃒</span> </td> <tr id="entity-nvlt"><td> <code title="">nvlt;</code> </td> <td> U+0003C U+020D2 </td> <td> <span class="glyph compound" title=""><⃒</span> </td> <tr id="entity-nvltrie"><td> <code title="">nvltrie;</code> </td> <td> U+022B4 U+020D2 </td> <td> <span class="glyph compound" title="">⊴⃒</span> </td> <tr id="entity-nvrArr"><td> <code title="">nvrArr;</code> </td> <td> U+02903 </td> <td> <span class="glyph" title="">⤃</span> </td> <tr id="entity-nvrtrie"><td> <code title="">nvrtrie;</code> </td> <td> U+022B5 U+020D2 </td> <td> <span class="glyph compound" title="">⊵⃒</span> </td> <tr id="entity-nvsm"><td> <code title="">nvsim;</code> </td> <td> U+0223C U+020D2 </td> <td> <span class="glyph compound" title="">∼⃒</span> </td> <tr id="entity-nwarhk"><td> <code title="">nwarhk;</code> </td> <td> U+02923 </td> <td> <span class="glyph" title="">⤣</span> </td> <tr id="entity-nwArr"><td> <code title="">nwArr;</code> </td> <td> U+021D6 </td> <td> <span class="glyph" title="">⇖</span> </td> <tr id="entity-nwarr"><td> <code title="">nwarr;</code> </td> <td> U+02196 </td> <td> <span class="glyph" title="">↖</span> </td> <tr id="entity-nwarrow"><td> <code title="">nwarrow;</code> </td> <td> U+02196 </td> <td> <span class="glyph" title="">↖</span> </td> <tr id="entity-nwnear"><td> <code title="">nwnear;</code> </td> <td> U+02927 </td> <td> <span class="glyph" title="">⤧</span> </td> <tr id="entity-Oacute"><td> <code title="">Oacute;</code> </td> <td> U+000D3 </td> <td> <span class="glyph" title="">Ó</span> </td> <tr id="entity-oacute"><td> <code title="">oacute;</coe> </td> <td> U+000F3 </td> <td> <span class="glyph" title="">ó</span> </td> <tr id="entity-oast"><td> <code title="">oast;</code> </td> <td> U+0229B </td> <td> <span class="glyph" title="">⊛</span> </td> <tr id="entity-ocir"><td> <code title="">ocir;</code> </td> <td> U+0229A </td> <td> <span class="glyph" title="">⊚</span> </td> <tr id="entity-Ocirc"><td> <code title="">Ocirc;</code> </td> <td> U+000D4 </td> <td> <span class="glyph" title="">Ô</span> </td> <tr id="entity-ocirc"><td> <code title="">ocirc;</code> </td> <td> U+000F4 </td> <td> <span class="glyph" title="">ô</span> </td> <tr id="entity-Ocy"><td> <code title="">Ocy;</code> </td> <td> U+0041E </td> <td> <span class="glyph" title="">О</span> </td> <tr id="entity-ocy"><td> <code title="">ocy;</code> </td> <td> U+0043E </td> <td> <span class="glyph" title="">о</span> </td> <tr id="entity-odash"><td> <code title="">odash;</code> </td> <td> U+0229D </td> <td> <span class="glyph" title="">⊝</span> </td <tr id="entity-Odblac"><td> <code title="">Odblac;</code> </td> <td> U+00150 </td> <td> <span class="glyph" title="">Ő</span> </td> <tr id="entity-odblac"><td> <code title="">odblac;</code> </td> <td> U+00151 </td> <td> <span class="glyph" title="">ő</span> </td> <tr id="entity-odiv"><td> <code title="">odiv;</code> </td> <td> U+02A38 </td> <td> <span class="glyph" title="">⨸</span> </td> <tr id="entity-odot"><td> <code title="">odot;</code> </td> <td> U+02299 </td> <td> <span class="glyph" title="">⊙</span> </td> <tr id="entity-odsold"><td> <code title="">odsold;</code> </td> <td> U+029BC </td> <td> <span class="glyph" title="">⦼</span> </td> <tr id="entity-OElig"><td> <code title="">OElig;</code> </td> <td> U+00152 </td> <td> <span class="glyph" title="">Œ</span> </td> <tr id="entity-oelig"><td> <code title="">oelig;</code> </td> <td> U+00153 </td> <td> <span class="glyph" title="">œ</span> </td> <tr id="entity-ofcir"><td> <code title="">ofcir;</code> </td> <td> +029BF </td> <td> <span class="glyph" title="">⦿</span> </td> <tr id="entity-Ofr"><td> <code title="">Ofr;</code> </td> <td> U+1D512 </td> <td> <span class="glyph" title="">𝔒</span> </td> <tr id="entity-ofr"><td> <code title="">ofr;</code> </td> <td> U+1D52C </td> <td> <span class="glyph" title="">𝔬</span> </td> <tr id="entity-ogon"><td> <code title="">ogon;</code> </td> <td> U+002DB </td> <td> <span class="glyph" title="">˛</span> </td> <tr id="entity-Ograve"><td> <code title="">Ograve;</code> </td> <td> U+000D2 </td> <td> <span class="glyph" title="">Ò</span> </td> <tr id="entity-ograve"><td> <code title="">ograve;</code> </td> <td> U+000F2 </td> <td> <span class="glyph" title="">ò</span> </td> <tr id="entity-ogt"><td> <code title="">ogt;</code> </td> <td> U+029C1 </td> <td> <span class="glyph" title="">⧁</span> </td> <tr id="entity-ohbar"><td> <code title="">ohbar;</code> </td> <td> U+029B5 </td> <td> <span class="glyph" title="">⦵</span> </td> <tr d="entity-ohm"><td> <code title="">ohm;</code> </td> <td> U+003A9 </td> <td> <span class="glyph" title="">Ω</span> </td> <tr id="entity-oint"><td> <code title="">oint;</code> </td> <td> U+0222E </td> <td> <span class="glyph" title="">∮</span> </td> <tr id="entity-olarr"><td> <code title="">olarr;</code> </td> <td> U+021BA </td> <td> <span class="glyph" title="">↺</span> </td> <tr id="entity-olcir"><td> <code title="">olcir;</code> </td> <td> U+029BE </td> <td> <span class="glyph" title="">⦾</span> </td> <tr id="entity-olcross"><td> <code title="">olcross;</code> </td> <td> U+029BB </td> <td> <span class="glyph" title="">⦻</span> </td> <tr id="entity-oline"><td> <code title="">oline;</code> </td> <td> U+0203E </td> <td> <span class="glyph" title="">‾</span> </td> <tr id="entity-olt"><td> <code title="">olt;</code> </td> <td> U+029C0 </td> <td> <span class="glyph" title="">⧀</span> </td> <tr id="entity-Omacr"><td> <code title="">Omacr;</code> </td> <td> U+0014C </t> <td> <span class="glyph" title="">Ō</span> </td> <tr id="entity-omacr"><td> <code title="">omacr;</code> </td> <td> U+0014D </td> <td> <span class="glyph" title="">ō</span> </td> <tr id="entity-Omega"><td> <code title="">Omega;</code> </td> <td> U+003A9 </td> <td> <span class="glyph" title="">Ω</span> </td> <tr id="entity-omega"><td> <code title="">omega;</code> </td> <td> U+003C9 </td> <td> <span class="glyph" title="">ω</span> </td> <tr id="entity-Omicron"><td> <code title="">Omicron;</code> </td> <td> U+0039F </td> <td> <span class="glyph" title="">Ο</span> </td> <tr id="entity-omicron"><td> <code title="">omicron;</code> </td> <td> U+003BF </td> <td> <span class="glyph" title="">ο</span> </td> <tr id="entity-omid"><td> <code title="">omid;</code> </td> <td> U+029B6 </td> <td> <span class="glyph" title="">⦶</span> </td> <tr id="entity-ominus"><td> <code title="">ominus;</code> </td> <td> U+02296 </td> <td> <span class="glyph" title="">⊖</span> </td> <t id="entity-Oopf"><td> <code title="">Oopf;</code> </td> <td> U+1D546 </td> <td> <span class="glyph" title="">𝕆</span> </td> <tr id="entity-oopf"><td> <code title="">oopf;</code> </td> <td> U+1D560 </td> <td> <span class="glyph" title="">𝕠</span> </td> <tr id="entity-opar"><td> <code title="">opar;</code> </td> <td> U+029B7 </td> <td> <span class="glyph" title="">⦷</span> </td> <tr id="entity-OpenCurlyDoubleQuote"><td> <code title="">OpenCurlyDoubleQuote;</code> </td> <td> U+0201C </td> <td> <span class="glyph" title="">“</span> </td> <tr id="entity-OpenCurlyQuote"><td> <code title="">OpenCurlyQuote;</code> </td> <td> U+02018 </td> <td> <span class="glyph" title="">‘</span> </td> <tr id="entity-operp"><td> <code title="">operp;</code> </td> <td> U+029B9 </td> <td> <span class="glyph" title="">⦹</span> </td> <tr id="entity-oplus"><td> <code title="">oplus;</code> </td> <td> U+02295 </td> <td> <span class="glyph" title="">⊕</span> </td> <tr id="entity-Or"><td> <ode title="">Or;</code> </td> <td> U+02A54 </td> <td> <span class="glyph" title="">⩔</span> </td> <tr id="entity-or"><td> <code title="">or;</code> </td> <td> U+02228 </td> <td> <span class="glyph" title="">∨</span> </td> <tr id="entity-orarr"><td> <code title="">orarr;</code> </td> <td> U+021BB </td> <td> <span class="glyph" title="">↻</span> </td> <tr id="entity-ord"><td> <code title="">ord;</code> </td> <td> U+02A5D </td> <td> <span class="glyph" title="">⩝</span> </td> <tr id="entity-order"><td> <code title="">order;</code> </td> <td> U+02134 </td> <td> <span class="glyph" title="">ℴ</span> </td> <tr id="entity-orderof"><td> <code title="">orderof;</code> </td> <td> U+02134 </td> <td> <span class="glyph" title="">ℴ</span> </td> <tr id="entity-ordf"><td> <code title="">ordf;</code> </td> <td> U+000AA </td> <td> <span class="glyph" title="">ª</span> </td> <tr id="entity-ordm"><td> <code title="">ordm;</code> </td> <td> U+000BA </td> <td> <span class="glyph" title=""º</span> </td> <tr id="entity-origof"><td> <code title="">origof;</code> </td> <td> U+022B6 </td> <td> <span class="glyph" title="">⊶</span> </td> <tr id="entity-oror"><td> <code title="">oror;</code> </td> <td> U+02A56 </td> <td> <span class="glyph" title="">⩖</span> </td> <tr id="entity-orslope"><td> <code title="">orslope;</code> </td> <td> U+02A57 </td> <td> <span class="glyph" title="">⩗</span> </td> <tr id="entity-orv"><td> <code title="">orv;</code> </td> <td> U+02A5B </td> <td> <span class="glyph" title="">⩛</span> </td> <tr id="entity-oS"><td> <code title="">oS;</code> </td> <td> U+024C8 </td> <td> <span class="glyph" title="">Ⓢ</span> </td> <tr id="entity-Oscr"><td> <code title="">Oscr;</code> </td> <td> U+1D4AA </td> <td> <span class="glyph" title="">𝒪</span> </td> <tr id="entity-oscr"><td> <code title="">oscr;</code> </td> <td> U+02134 </td> <td> <span class="glyph" title="">ℴ</span> </td> <tr id="entity-Oslash"><td> <code title="">Oslash;</cod> </td> <td> U+000D8 </td> <td> <span class="glyph" title="">Ø</span> </td> <tr id="entity-oslash"><td> <code title="">oslash;</code> </td> <td> U+000F8 </td> <td> <span class="glyph" title="">ø</span> </td> <tr id="entity-osol"><td> <code title="">osol;</code> </td> <td> U+02298 </td> <td> <span class="glyph" title="">⊘</span> </td> <tr id="entity-Otilde"><td> <code title="">Otilde;</code> </td> <td> U+000D5 </td> <td> <span class="glyph" title="">Õ</span> </td> <tr id="entity-otilde"><td> <code title="">otilde;</code> </td> <td> U+000F5 </td> <td> <span class="glyph" title="">õ</span> </td> <tr id="entity-Otimes"><td> <code title="">Otimes;</code> </td> <td> U+02A37 </td> <td> <span class="glyph" title="">⨷</span> </td> <tr id="entity-otimes"><td> <code title="">otimes;</code> </td> <td> U+02297 </td> <td> <span class="glyph" title="">⊗</span> </td> <tr id="entity-otimesas"><td> <code title="">otimesas;</code> </td> <td> U+02A36 </td> <td> <span class="glyph title="">⨶</span> </td> <tr id="entity-Ouml"><td> <code title="">Ouml;</code> </td> <td> U+000D6 </td> <td> <span class="glyph" title="">Ö</span> </td> <tr id="entity-ouml"><td> <code title="">ouml;</code> </td> <td> U+000F6 </td> <td> <span class="glyph" title="">ö</span> </td> <tr id="entity-ovbar"><td> <code title="">ovbar;</code> </td> <td> U+0233D </td> <td> <span class="glyph" title="">⌽</span> </td> <tr id="entity-OverBar"><td> <code title="">OverBar;</code> </td> <td> U+0203E </td> <td> <span class="glyph" title="">‾</span> </td> <tr id="entity-OverBrace"><td> <code title="">OverBrace;</code> </td> <td> U+023DE </td> <td> <span class="glyph" title="">⏞</span> </td> <tr id="entity-OverBracket"><td> <code title="">OverBracket;</code> </td> <td> U+023B4 </td> <td> <span class="glyph" title="">⎴</span> </td> <tr id="entity-OverParenthesis"><td> <code title="">OverParenthesis;</code> </td> <td> U+023DC </td> <td> <span class="glyph" title="">⏜</span> </td> tr id="entity-par"><td> <code title="">par;</code> </td> <td> U+02225 </td> <td> <span class="glyph" title="">∥</span> </td> <tr id="entity-para"><td> <code title="">para;</code> </td> <td> U+000B6 </td> <td> <span class="glyph" title="">¶</span> </td> <tr id="entity-parallel"><td> <code title="">parallel;</code> </td> <td> U+02225 </td> <td> <span class="glyph" title="">∥</span> </td> <tr id="entity-parsim"><td> <code title="">parsim;</code> </td> <td> U+02AF3 </td> <td> <span class="glyph" title="">⫳</span> </td> <tr id="entity-parsl"><td> <code title="">parsl;</code> </td> <td> U+02AFD </td> <td> <span class="glyph" title="">⫽</span> </td> <tr id="entity-part"><td> <code title="">part;</code> </td> <td> U+02202 </td> <td> <span class="glyph" title="">∂</span> </td> <tr id="entity-PartialD"><td> <code title="">PartialD;</code> </td> <td> U+02202 </td> <td> <span class="glyph" title="">∂</span> </td> <tr id="entity-Pcy"><td> <code title="">Pcy;</code> </td> <td> U+041F </td> <td> <span class="glyph" title="">П</span> </td> <tr id="entity-pcy"><td> <code title="">pcy;</code> </td> <td> U+0043F </td> <td> <span class="glyph" title="">п</span> </td> <tr id="entity-percnt"><td> <code title="">percnt;</code> </td> <td> U+00025 </td> <td> <span class="glyph" title="">%</span> </td> <tr id="entity-period"><td> <code title="">period;</code> </td> <td> U+0002E </td> <td> <span class="glyph" title="">.</span> </td> <tr id="entity-permil"><td> <code title="">permil;</code> </td> <td> U+02030 </td> <td> <span class="glyph" title="">‰</span> </td> <tr id="entity-perp"><td> <code title="">perp;</code> </td> <td> U+022A5 </td> <td> <span class="glyph" title="">⊥</span> </td> <tr id="entity-pertenk"><td> <code title="">pertenk;</code> </td> <td> U+02031 </td> <td> <span class="glyph" title="">‱</span> </td> <tr id="entity-Pfr"><td> <code title="">Pfr;</code> </td> <td> U+1D513 </td> <td> <span class="glyph" title="">𝔓</span> </td> <tr id="entity-fr"><td> <code title="">pfr;</code> </td> <td> U+1D52D </td> <td> <span class="glyph" title="">𝔭</span> </td> <tr id="entity-Phi"><td> <code title="">Phi;</code> </td> <td> U+003A6 </td> <td> <span class="glyph" title="">Φ</span> </td> <tr id="entity-phi"><td> <code title="">phi;</code> </td> <td> U+003C6 </td> <td> <span class="glyph" title="">φ</span> </td> <tr id="entity-phiv"><td> <code title="">phiv;</code> </td> <td> U+003D5 </td> <td> <span class="glyph" title="">ϕ</span> </td> <tr id="entity-phmmat"><td> <code title="">phmmat;</code> </td> <td> U+02133 </td> <td> <span class="glyph" title="">ℳ</span> </td> <tr id="entity-phone"><td> <code title="">phone;</code> </td> <td> U+0260E </td> <td> <span class="glyph" title="">☎</span> </td> <tr id="entity-Pi"><td> <code title="">Pi;</code> </td> <td> U+003A0 </td> <td> <span class="glyph" title="">Π</span> </td> <tr id="entity-pi"><td> <code title="">pi;</code> </td> <td> U+003C0 </td> <td> <span class="glyph" title="">&i;</span> </td> <tr id="entity-pitchfork"><td> <code title="">pitchfork;</code> </td> <td> U+022D4 </td> <td> <span class="glyph" title="">⋔</span> </td> <tr id="entity-piv"><td> <code title="">piv;</code> </td> <td> U+003D6 </td> <td> <span class="glyph" title="">ϖ</span> </td> <tr id="entity-planck"><td> <code title="">planck;</code> </td> <td> U+0210F </td> <td> <span class="glyph" title="">ℏ</span> </td> <tr id="entity-planckh"><td> <code title="">planckh;</code> </td> <td> U+0210E </td> <td> <span class="glyph" title="">ℎ</span> </td> <tr id="entity-plankv"><td> <code title="">plankv;</code> </td> <td> U+0210F </td> <td> <span class="glyph" title="">ℏ</span> </td> <tr id="entity-plus"><td> <code title="">plus;</code> </td> <td> U+0002B </td> <td> <span class="glyph" title="">+</span> </td> <tr id="entity-plusacir"><td> <code title="">plusacir;</code> </td> <td> U+02A23 </td> <td> <span class="glyph" title="">⨣</span> </td> <tr id="entity-plusb"><td> <code title="">plub;</code> </td> <td> U+0229E </td> <td> <span class="glyph" title="">⊞</span> </td> <tr id="entity-pluscir"><td> <code title="">pluscir;</code> </td> <td> U+02A22 </td> <td> <span class="glyph" title="">⨢</span> </td> <tr id="entity-plusdo"><td> <code title="">plusdo;</code> </td> <td> U+02214 </td> <td> <span class="glyph" title="">∔</span> </td> <tr id="entity-plusdu"><td> <code title="">plusdu;</code> </td> <td> U+02A25 </td> <td> <span class="glyph" title="">⨥</span> </td> <tr id="entity-pluse"><td> <code title="">pluse;</code> </td> <td> U+02A72 </td> <td> <span class="glyph" title="">⩲</span> </td> <tr id="entity-PlusMinus"><td> <code title="">PlusMinus;</code> </td> <td> U+000B1 </td> <td> <span class="glyph" title="">±</span> </td> <tr id="entity-plusmn"><td> <code title="">plusmn;</code> </td> <td> U+000B1 </td> <td> <span class="glyph" title="">±</span> </td> <tr id="entity-plussim"><td> <code title="">plussim;</code> </td> <td> U+02A26 </td> <td> <spn class="glyph" title="">⨦</span> </td> <tr id="entity-plustwo"><td> <code title="">plustwo;</code> </td> <td> U+02A27 </td> <td> <span class="glyph" title="">⨧</span> </td> <tr id="entity-pm"><td> <code title="">pm;</code> </td> <td> U+000B1 </td> <td> <span class="glyph" title="">±</span> </td> <tr id="entity-Poincareplane"><td> <code title="">Poincareplane;</code> </td> <td> U+0210C </td> <td> <span class="glyph" title="">ℌ</span> </td> <tr id="entity-pointint"><td> <code title="">pointint;</code> </td> <td> U+02A15 </td> <td> <span class="glyph" title="">⨕</span> </td> <tr id="entity-Popf"><td> <code title="">Popf;</code> </td> <td> U+02119 </td> <td> <span class="glyph" title="">ℙ</span> </td> <tr id="entity-popf"><td> <code title="">popf;</code> </td> <td> U+1D561 </td> <td> <span class="glyph" title="">𝕡</span> </td> <tr id="entity-pound"><td> <code title="">pound;</code> </td> <td> U+000A3 </td> <td> <span class="glyph" title="">£</span> </td> <t id="entity-Pr"><td> <code title="">Pr;</code> </td> <td> U+02ABB </td> <td> <span class="glyph" title="">⪻</span> </td> <tr id="entity-pr"><td> <code title="">pr;</code> </td> <td> U+0227A </td> <td> <span class="glyph" title="">≺</span> </td> <tr id="entity-prap"><td> <code title="">prap;</code> </td> <td> U+02AB7 </td> <td> <span class="glyph" title="">⪷</span> </td> <tr id="entity-prcue"><td> <code title="">prcue;</code> </td> <td> U+0227C </td> <td> <span class="glyph" title="">≼</span> </td> <tr id="entity-prE"><td> <code title="">prE;</code> </td> <td> U+02AB3 </td> <td> <span class="glyph" title="">⪳</span> </td> <tr id="entity-pre"><td> <code title="">pre;</code> </td> <td> U+02AAF </td> <td> <span class="glyph" title="">⪯</span> </td> <tr id="entity-prec"><td> <code title="">prec;</code> </td> <td> U+0227A </td> <td> <span class="glyph" title="">≺</span> </td> <tr id="entity-precapprox"><td> <code title="">precapprox;</code> </td> <td> U+02AB7 </td> <t> <span class="glyph" title="">⪷</span> </td> <tr id="entity-preccurlyeq"><td> <code title="">preccurlyeq;</code> </td> <td> U+0227C </td> <td> <span class="glyph" title="">≼</span> </td> <tr id="entity-Precedes"><td> <code title="">Precedes;</code> </td> <td> U+0227A </td> <td> <span class="glyph" title="">≺</span> </td> <tr id="entity-PrecedesEqual"><td> <code title="">PrecedesEqual;</code> </td> <td> U+02AAF </td> <td> <span class="glyph" title="">⪯</span> </td> <tr id="entity-PrecedesSlantEqual"><td> <code title="">PrecedesSlantEqual;</code> </td> <td> U+0227C </td> <td> <span class="glyph" title="">≼</span> </td> <tr id="entity-PrecedesTilde"><td> <code title="">PrecedesTilde;</code> </td> <td> U+0227E </td> <td> <span class="glyph" title="">≾</span> </td> <tr id="entity-preceq"><td> <code title="">preceq;</code> </td> <td> U+02AAF </td> <td> <span class="glyph" title="">⪯</span> </td> <tr id="entity-precnapprox"><td> <code title="">precnapprox;</code> </td><td> U+02AB9 </td> <td> <span class="glyph" title="">⪹</span> </td> <tr id="entity-precneqq"><td> <code title="">precneqq;</code> </td> <td> U+02AB5 </td> <td> <span class="glyph" title="">⪵</span> </td> <tr id="entity-precnsim"><td> <code title="">precnsim;</code> </td> <td> U+022E8 </td> <td> <span class="glyph" title="">⋨</span> </td> <tr id="entity-precsim"><td> <code title="">precsim;</code> </td> <td> U+0227E </td> <td> <span class="glyph" title="">≾</span> </td> <tr id="entity-Prime"><td> <code title="">Prime;</code> </td> <td> U+02033 </td> <td> <span class="glyph" title="">″</span> </td> <tr id="entity-prime"><td> <code title="">prime;</code> </td> <td> U+02032 </td> <td> <span class="glyph" title="">′</span> </td> <tr id="entity-primes"><td> <code title="">primes;</code> </td> <td> U+02119 </td> <td> <span class="glyph" title="">ℙ</span> </td> <tr id="entity-prnap"><td> <code title="">prnap;</code> </td> <td> U+02AB9 </td> <td> <span class="glyph" title=">⪹</span> </td> <tr id="entity-prnE"><td> <code title="">prnE;</code> </td> <td> U+02AB5 </td> <td> <span class="glyph" title="">⪵</span> </td> <tr id="entity-prnsim"><td> <code title="">prnsim;</code> </td> <td> U+022E8 </td> <td> <span class="glyph" title="">⋨</span> </td> <tr id="entity-prod"><td> <code title="">prod;</code> </td> <td> U+0220F </td> <td> <span class="glyph" title="">∏</span> </td> <tr id="entity-Product"><td> <code title="">Product;</code> </td> <td> U+0220F </td> <td> <span class="glyph" title="">∏</span> </td> <tr id="entity-profalar"><td> <code title="">profalar;</code> </td> <td> U+0232E </td> <td> <span class="glyph" title="">⌮</span> </td> <tr id="entity-profline"><td> <code title="">profline;</code> </td> <td> U+02312 </td> <td> <span class="glyph" title="">⌒</span> </td> <tr id="entity-profsurf"><td> <code title="">profsurf;</code> </td> <td> U+02313 </td> <td> <span class="glyph" title="">⌓</span> </td> <tr id="entity-prop"><td> <ode title="">prop;</code> </td> <td> U+0221D </td> <td> <span class="glyph" title="">∝</span> </td> <tr id="entity-Proportion"><td> <code title="">Proportion;</code> </td> <td> U+02237 </td> <td> <span class="glyph" title="">∷</span> </td> <tr id="entity-Proportional"><td> <code title="">Proportional;</code> </td> <td> U+0221D </td> <td> <span class="glyph" title="">∝</span> </td> <tr id="entity-propto"><td> <code title="">propto;</code> </td> <td> U+0221D </td> <td> <span class="glyph" title="">∝</span> </td> <tr id="entity-prsim"><td> <code title="">prsim;</code> </td> <td> U+0227E </td> <td> <span class="glyph" title="">≾</span> </td> <tr id="entity-prurel"><td> <code title="">prurel;</code> </td> <td> U+022B0 </td> <td> <span class="glyph" title="">⊰</span> </td> <tr id="entity-Pscr"><td> <code title="">Pscr;</code> </td> <td> U+1D4AB </td> <td> <span class="glyph" title="">𝒫</span> </td> <tr id="entity-pscr"><td> <code title="">pscr;</code> </td> <td> U+1D4C5 </d> <td> <span class="glyph" title="">𝓅</span> </td> <tr id="entity-Psi"><td> <code title="">Psi;</code> </td> <td> U+003A8 </td> <td> <span class="glyph" title="">Ψ</span> </td> <tr id="entity-psi"><td> <code title="">psi;</code> </td> <td> U+003C8 </td> <td> <span class="glyph" title="">ψ</span> </td> <tr id="entity-puncsp"><td> <code title="">puncsp;</code> </td> <td> U+02008 </td> <td> <span class="glyph" title=""> </span> </td> <tr id="entity-Qfr"><td> <code title="">Qfr;</code> </td> <td> U+1D514 </td> <td> <span class="glyph" title="">𝔔</span> </td> <tr id="entity-qfr"><td> <code title="">qfr;</code> </td> <td> U+1D52E </td> <td> <span class="glyph" title="">𝔮</span> </td> <tr id="entity-qint"><td> <code title="">qint;</code> </td> <td> U+02A0C </td> <td> <span class="glyph" title="">⨌</span> </td> <tr id="entity-Qopf"><td> <code title="">Qopf;</code> </td> <td> U+0211A </td> <td> <span class="glyph" title="">ℚ</span> </td> <tr id="entity-qopf"><td> <ode title="">qopf;</code> </td> <td> U+1D562 </td> <td> <span class="glyph" title="">𝕢</span> </td> <tr id="entity-qprime"><td> <code title="">qprime;</code> </td> <td> U+02057 </td> <td> <span class="glyph" title="">⁗</span> </td> <tr id="entity-Qscr"><td> <code title="">Qscr;</code> </td> <td> U+1D4AC </td> <td> <span class="glyph" title="">𝒬</span> </td> <tr id="entity-qscr"><td> <code title="">qscr;</code> </td> <td> U+1D4C6 </td> <td> <span class="glyph" title="">𝓆</span> </td> <tr id="entity-quaternions"><td> <code title="">quaternions;</code> </td> <td> U+0210D </td> <td> <span class="glyph" title="">ℍ</span> </td> <tr id="entity-quatint"><td> <code title="">quatint;</code> </td> <td> U+02A16 </td> <td> <span class="glyph" title="">⨖</span> </td> <tr id="entity-quest"><td> <code title="">quest;</code> </td> <td> U+0003F </td> <td> <span class="glyph" title="">?</span> </td> <tr id="entity-questeq"><td> <code title="">questeq;</code> </td> <td> U+0225F </td> td> <span class="glyph" title="">≟</span> </td> <tr id="entity-QUOT"><td> <code title="">QUOT;</code> </td> <td> U+00022 </td> <td> <span class="glyph" title="">"</span> </td> <tr id="entity-quot"><td> <code title="">quot;</code> </td> <td> U+00022 </td> <td> <span class="glyph" title="">"</span> </td> <tr id="entity-rAarr"><td> <code title="">rAarr;</code> </td> <td> U+021DB </td> <td> <span class="glyph" title="">⇛</span> </td> <tr id="entity-race"><td> <code title="">race;</code> </td> <td> U+0223D U+00331 </td> <td> <span class="glyph compound" title="">∽̱</span> </td> <tr id="entity-Racute"><td> <code title="">Racute;</code> </td> <td> U+00154 </td> <td> <span class="glyph" title="">Ŕ</span> </td> <tr id="entity-racute"><td> <code title="">racute;</code> </td> <td> U+00155 </td> <td> <span class="glyph" title="">ŕ</span> </td> <tr id="entity-radic"><td> <code title="">radic;</code> </td> <td> U+0221A </td> <td> <span class="glyph" title="">√</span> </td> <tr id="etity-raemptyv"><td> <code title="">raemptyv;</code> </td> <td> U+029B3 </td> <td> <span class="glyph" title="">⦳</span> </td> <tr id="entity-Rang"><td> <code title="">Rang;</code> </td> <td> U+027EB </td> <td> <span class="glyph" title="">⟫</span> </td> <tr id="entity-rang"><td> <code title="">rang;</code> </td> <td> U+027E9 </td> <td> <span class="glyph" title="">⟩</span> </td> <tr id="entity-rangd"><td> <code title="">rangd;</code> </td> <td> U+02992 </td> <td> <span class="glyph" title="">⦒</span> </td> <tr id="entity-range"><td> <code title="">range;</code> </td> <td> U+029A5 </td> <td> <span class="glyph" title="">⦥</span> </td> <tr id="entity-rangle"><td> <code title="">rangle;</code> </td> <td> U+027E9 </td> <td> <span class="glyph" title="">⟩</span> </td> <tr id="entity-raquo"><td> <code title="">raquo;</code> </td> <td> U+000BB </td> <td> <span class="glyph" title="">»</span> </td> <tr id="entity-Rarr"><td> <code title="">Rarr;</code> </td> <td> U+021A0 <td> <td> <span class="glyph" title="">↠</span> </td> <tr id="entity-rArr"><td> <code title="">rArr;</code> </td> <td> U+021D2 </td> <td> <span class="glyph" title="">⇒</span> </td> <tr id="entity-rarr"><td> <code title="">rarr;</code> </td> <td> U+02192 </td> <td> <span class="glyph" title="">→</span> </td> <tr id="entity-rarrap"><td> <code title="">rarrap;</code> </td> <td> U+02975 </td> <td> <span class="glyph" title="">⥵</span> </td> <tr id="entity-rarrb"><td> <code title="">rarrb;</code> </td> <td> U+021E5 </td> <td> <span class="glyph" title="">⇥</span> </td> <tr id="entity-rarrbfs"><td> <code title="">rarrbfs;</code> </td> <td> U+02920 </td> <td> <span class="glyph" title="">⤠</span> </td> <tr id="entity-rarrc"><td> <code title="">rarrc;</code> </td> <td> U+02933 </td> <td> <span class="glyph" title="">⤳</span> </td> <tr id="entity-rarrfs"><td> <code title="">rarrfs;</code> </td> <td> U+0291E </td> <td> <span class="glyph" title="">⤞</span> </td> <tr i="entity-rarrhk"><td> <code title="">rarrhk;</code> </td> <td> U+021AA </td> <td> <span class="glyph" title="">↪</span> </td> <tr id="entity-rarrlp"><td> <code title="">rarrlp;</code> </td> <td> U+021AC </td> <td> <span class="glyph" title="">↬</span> </td> <tr id="entity-rarrpl"><td> <code title="">rarrpl;</code> </td> <td> U+02945 </td> <td> <span class="glyph" title="">⥅</span> </td> <tr id="entity-rarrsim"><td> <code title="">rarrsim;</code> </td> <td> U+02974 </td> <td> <span class="glyph" title="">⥴</span> </td> <tr id="entity-Rarrtl"><td> <code title="">Rarrtl;</code> </td> <td> U+02916 </td> <td> <span class="glyph" title="">⤖</span> </td> <tr id="entity-rarrtl"><td> <code title="">rarrtl;</code> </td> <td> U+021A3 </td> <td> <span class="glyph" title="">↣</span> </td> <tr id="entity-rarrw"><td> <code title="">rarrw;</code> </td> <td> U+0219D </td> <td> <span class="glyph" title="">↝</span> </td> <tr id="entity-rAtail"><td> <code title="">rAtail;</code> <td> <td> U+0291C </td> <td> <span class="glyph" title="">⤜</span> </td> <tr id="entity-ratail"><td> <code title="">ratail;</code> </td> <td> U+0291A </td> <td> <span class="glyph" title="">⤚</span> </td> <tr id="entity-ratio"><td> <code title="">ratio;</code> </td> <td> U+02236 </td> <td> <span class="glyph" title="">∶</span> </td> <tr id="entity-rationals"><td> <code title="">rationals;</code> </td> <td> U+0211A </td> <td> <span class="glyph" title="">ℚ</span> </td> <tr id="entity-RBarr"><td> <code title="">RBarr;</code> </td> <td> U+02910 </td> <td> <span class="glyph" title="">⤐</span> </td> <tr id="entity-rBarr"><td> <code title="">rBarr;</code> </td> <td> U+0290F </td> <td> <span class="glyph" title="">⤏</span> </td> <tr id="entity-rbarr"><td> <code title="">rbarr;</code> </td> <td> U+0290D </td> <td> <span class="glyph" title="">⤍</span> </td> <tr id="entity-rbbrk"><td> <code title="">rbbrk;</code> </td> <td> U+02773 </td> <td> <span class="glyph" title=">❳</span> </td> <tr id="entity-rbrace"><td> <code title="">rbrace;</code> </td> <td> U+0007D </td> <td> <span class="glyph" title="">}</span> </td> <tr id="entity-rbrack"><td> <code title="">rbrack;</code> </td> <td> U+0005D </td> <td> <span class="glyph" title="">]</span> </td> <tr id="entity-rbrke"><td> <code title="">rbrke;</code> </td> <td> U+0298C </td> <td> <span class="glyph" title="">⦌</span> </td> <tr id="entity-rbrksld"><td> <code title="">rbrksld;</code> </td> <td> U+0298E </td> <td> <span class="glyph" title="">⦎</span> </td> <tr id="entity-rbrkslu"><td> <code title="">rbrkslu;</code> </td> <td> U+02990 </td> <td> <span class="glyph" title="">⦐</span> </td> <tr id="entity-Rcaron"><td> <code title="">Rcaron;</code> </td> <td> U+00158 </td> <td> <span class="glyph" title="">Ř</span> </td> <tr id="entity-rcaron"><td> <code title="">rcaron;</code> </td> <td> U+00159 </td> <td> <span class="glyph" title="">ř</span> </td> <tr id="entity-Rcedil"><td> <code title=""Rcedil;</code> </td> <td> U+00156 </td> <td> <span class="glyph" title="">Ŗ</span> </td> <tr id="entity-rcedil"><td> <code title="">rcedil;</code> </td> <td> U+00157 </td> <td> <span class="glyph" title="">ŗ</span> </td> <tr id="entity-rceil"><td> <code title="">rceil;</code> </td> <td> U+02309 </td> <td> <span class="glyph" title="">⌉</span> </td> <tr id="entity-rcub"><td> <code title="">rcub;</code> </td> <td> U+0007D </td> <td> <span class="glyph" title="">}</span> </td> <tr id="entity-Rcy"><td> <code title="">Rcy;</code> </td> <td> U+00420 </td> <td> <span class="glyph" title="">Р</span> </td> <tr id="entity-rcy"><td> <code title="">rcy;</code> </td> <td> U+00440 </td> <td> <span class="glyph" title="">р</span> </td> <tr id="entity-rdca"><td> <code title="">rdca;</code> </td> <td> U+02937 </td> <td> <span class="glyph" title="">⤷</span> </td> <tr id="entity-rdldhar"><td> <code title="">rdldhar;</code> </td> <td> U+02969 </td> <td> <span class="glyph" title="">⥩<span> </td> <tr id="entity-rdquo"><td> <code title="">rdquo;</code> </td> <td> U+0201D </td> <td> <span class="glyph" title="">”</span> </td> <tr id="entity-rdquor"><td> <code title="">rdquor;</code> </td> <td> U+0201D </td> <td> <span class="glyph" title="">”</span> </td> <tr id="entity-rdsh"><td> <code title="">rdsh;</code> </td> <td> U+021B3 </td> <td> <span class="glyph" title="">↳</span> </td> <tr id="entity-Re"><td> <code title="">Re;</code> </td> <td> U+0211C </td> <td> <span class="glyph" title="">ℜ</span> </td> <tr id="entity-real"><td> <code title="">real;</code> </td> <td> U+0211C </td> <td> <span class="glyph" title="">ℜ</span> </td> <tr id="entity-realine"><td> <code title="">realine;</code> </td> <td> U+0211B </td> <td> <span class="glyph" title="">ℛ</span> </td> <tr id="entity-realpart"><td> <code title="">realpart;</code> </td> <td> U+0211C </td> <td> <span class="glyph" title="">ℜ</span> </td> <tr id="entity-reals"><td> <code title="">reals;</code> </t> <td> U+0211D </td> <td> <span class="glyph" title="">ℝ</span> </td> <tr id="entity-rect"><td> <code title="">rect;</code> </td> <td> U+025AD </td> <td> <span class="glyph" title="">▭</span> </td> <tr id="entity-REG"><td> <code title="">REG;</code> </td> <td> U+000AE </td> <td> <span class="glyph" title="">®</span> </td> <tr id="entity-reg"><td> <code title="">reg;</code> </td> <td> U+000AE </td> <td> <span class="glyph" title="">®</span> </td> <tr id="entity-ReverseElement"><td> <code title="">ReverseElement;</code> </td> <td> U+0220B </td> <td> <span class="glyph" title="">∋</span> </td> <tr id="entity-ReverseEquilibrium"><td> <code title="">ReverseEquilibrium;</code> </td> <td> U+021CB </td> <td> <span class="glyph" title="">⇋</span> </td> <tr id="entity-ReverseUpEquilibrium"><td> <code title="">ReverseUpEquilibrium;</code> </td> <td> U+0296F </td> <td> <span class="glyph" title="">⥯</span> </td> <tr id="entity-rfisht"><td> <code title="">rfisht;</code> </td> <td> U+097D </td> <td> <span class="glyph" title="">⥽</span> </td> <tr id="entity-rfloor"><td> <code title="">rfloor;</code> </td> <td> U+0230B </td> <td> <span class="glyph" title="">⌋</span> </td> <tr id="entity-Rfr"><td> <code title="">Rfr;</code> </td> <td> U+0211C </td> <td> <span class="glyph" title="">ℜ</span> </td> <tr id="entity-rfr"><td> <code title="">rfr;</code> </td> <td> U+1D52F </td> <td> <span class="glyph" title="">𝔯</span> </td> <tr id="entity-rHar"><td> <code title="">rHar;</code> </td> <td> U+02964 </td> <td> <span class="glyph" title="">⥤</span> </td> <tr id="entity-rhard"><td> <code title="">rhard;</code> </td> <td> U+021C1 </td> <td> <span class="glyph" title="">⇁</span> </td> <tr id="entity-rharu"><td> <code title="">rharu;</code> </td> <td> U+021C0 </td> <td> <span class="glyph" title="">⇀</span> </td> <tr id="entity-rharul"><td> <code title="">rharul;</code> </td> <td> U+0296C </td> <td> <span class="glyph" title="">⥬</span> </td> <tr id"entity-Rho"><td> <code title="">Rho;</code> </td> <td> U+003A1 </td> <td> <span class="glyph" title="">Ρ</span> </td> <tr id="entity-rho"><td> <code title="">rho;</code> </td> <td> U+003C1 </td> <td> <span class="glyph" title="">ρ</span> </td> <tr id="entity-rhov"><td> <code title="">rhov;</code> </td> <td> U+003F1 </td> <td> <span class="glyph" title="">ϱ</span> </td> <tr id="entity-RightAngleBracket"><td> <code title="">RightAngleBracket;</code> </td> <td> U+027E9 </td> <td> <span class="glyph" title="">⟩</span> </td> <tr id="entity-RightArrow"><td> <code title="">RightArrow;</code> </td> <td> U+02192 </td> <td> <span class="glyph" title="">→</span> </td> <tr id="entity-Rightarrow"><td> <code title="">Rightarrow;</code> </td> <td> U+021D2 </td> <td> <span class="glyph" title="">⇒</span> </td> <tr id="entity-rightarrow"><td> <code title="">rightarrow;</code> </td> <td> U+02192 </td> <td> <span class="glyph" title="">→</span> </td> <tr id="entity-RightArrowBar"><td> <code itle="">RightArrowBar;</code> </td> <td> U+021E5 </td> <td> <span class="glyph" title="">⇥</span> </td> <tr id="entity-RightArrowLeftArrow"><td> <code title="">RightArrowLeftArrow;</code> </td> <td> U+021C4 </td> <td> <span class="glyph" title="">⇄</span> </td> <tr id="entity-rightarrowtail"><td> <code title="">rightarrowtail;</code> </td> <td> U+021A3 </td> <td> <span class="glyph" title="">↣</span> </td> <tr id="entity-RightCeiling"><td> <code title="">RightCeiling;</code> </td> <td> U+02309 </td> <td> <span class="glyph" title="">⌉</span> </td> <tr id="entity-RightDoubleBracket"><td> <code title="">RightDoubleBracket;</code> </td> <td> U+027E7 </td> <td> <span class="glyph" title="">⟧</span> </td> <tr id="entity-RightDownTeeVector"><td> <code title="">RightDownTeeVector;</code> </td> <td> U+0295D </td> <td> <span class="glyph" title="">⥝</span> </td> <tr id="entity-RightDownVector"><td> <code title="">RightDownVector;</code> </td> <td> U+021C2 </td> <td> <span class=glyph" title="">⇂</span> </td> <tr id="entity-RightDownVectorBar"><td> <code title="">RightDownVectorBar;</code> </td> <td> U+02955 </td> <td> <span class="glyph" title="">⥕</span> </td> <tr id="entity-RightFloor"><td> <code title="">RightFloor;</code> </td> <td> U+0230B </td> <td> <span class="glyph" title="">⌋</span> </td> <tr id="entity-rightharpoondown"><td> <code title="">rightharpoondown;</code> </td> <td> U+021C1 </td> <td> <span class="glyph" title="">⇁</span> </td> <tr id="entity-rightharpoonup"><td> <code title="">rightharpoonup;</code> </td> <td> U+021C0 </td> <td> <span class="glyph" title="">⇀</span> </td> <tr id="entity-rightleftarrows"><td> <code title="">rightleftarrows;</code> </td> <td> U+021C4 </td> <td> <span class="glyph" title="">⇄</span> </td> <tr id="entity-rightleftharpoons"><td> <code title="">rightleftharpoons;</code> </td> <td> U+021CC </td> <td> <span class="glyph" title="">⇌</span> </td> <tr id="entity-rightrightarrows"><td> <code tite="">rightrightarrows;</code> </td> <td> U+021C9 </td> <td> <span class="glyph" title="">⇉</span> </td> <tr id="entity-rightsquigarrow"><td> <code title="">rightsquigarrow;</code> </td> <td> U+0219D </td> <td> <span class="glyph" title="">↝</span> </td> <tr id="entity-RightTee"><td> <code title="">RightTee;</code> </td> <td> U+022A2 </td> <td> <span class="glyph" title="">⊢</span> </td> <tr id="entity-RightTeeArrow"><td> <code title="">RightTeeArrow;</code> </td> <td> U+021A6 </td> <td> <span class="glyph" title="">↦</span> </td> <tr id="entity-RightTeeVector"><td> <code title="">RightTeeVector;</code> </td> <td> U+0295B </td> <td> <span class="glyph" title="">⥛</span> </td> <tr id="entity-rightthreetimes"><td> <code title="">rightthreetimes;</code> </td> <td> U+022CC </td> <td> <span class="glyph" title="">⋌</span> </td> <tr id="entity-RightTriangle"><td> <code title="">RightTriangle;</code> </td> <td> U+022B3 </td> <td> <span class="glyph" title="">⊳</span> </td><tr id="entity-RightTriangleBar"><td> <code title="">RightTriangleBar;</code> </td> <td> U+029D0 </td> <td> <span class="glyph" title="">⧐</span> </td> <tr id="entity-RightTriangleEqual"><td> <code title="">RightTriangleEqual;</code> </td> <td> U+022B5 </td> <td> <span class="glyph" title="">⊵</span> </td> <tr id="entity-RightUpDownVector"><td> <code title="">RightUpDownVector;</code> </td> <td> U+0294F </td> <td> <span class="glyph" title="">⥏</span> </td> <tr id="entity-RightUpTeeVector"><td> <code title="">RightUpTeeVector;</code> </td> <td> U+0295C </td> <td> <span class="glyph" title="">⥜</span> </td> <tr id="entity-RightUpVector"><td> <code title="">RightUpVector;</code> </td> <td> U+021BE </td> <td> <span class="glyph" title="">↾</span> </td> <tr id="entity-RightUpVectorBar"><td> <code title="">RightUpVectorBar;</code> </td> <td> U+02954 </td> <td> <span class="glyph" title="">⥔</span> </td> <tr id="entity-RightVector"><td> <code title="">RightVector;</code> </d> <td> U+021C0 </td> <td> <span class="glyph" title="">⇀</span> </td> <tr id="entity-RightVectorBar"><td> <code title="">RightVectorBar;</code> </td> <td> U+02953 </td> <td> <span class="glyph" title="">⥓</span> </td> <tr id="entity-ring"><td> <code title="">ring;</code> </td> <td> U+002DA </td> <td> <span class="glyph" title="">˚</span> </td> <tr id="entity-risingdotseq"><td> <code title="">risingdotseq;</code> </td> <td> U+02253 </td> <td> <span class="glyph" title="">≓</span> </td> <tr id="entity-rlarr"><td> <code title="">rlarr;</code> </td> <td> U+021C4 </td> <td> <span class="glyph" title="">⇄</span> </td> <tr id="entity-rlhar"><td> <code title="">rlhar;</code> </td> <td> U+021CC </td> <td> <span class="glyph" title="">⇌</span> </td> <tr id="entity-rlm"><td> <code title="">rlm;</code> </td> <td> U+0200F </td> <td> <span class="glyph" title="">‏</span> </td> <tr id="entity-rmoust"><td> <code title="">rmoust;</code> </td> <td> U+023B1 </td> <td> <span class="glyp" title="">⎱</span> </td> <tr id="entity-rmoustache"><td> <code title="">rmoustache;</code> </td> <td> U+023B1 </td> <td> <span class="glyph" title="">⎱</span> </td> <tr id="entity-rnmid"><td> <code title="">rnmid;</code> </td> <td> U+02AEE </td> <td> <span class="glyph" title="">⫮</span> </td> <tr id="entity-roang"><td> <code title="">roang;</code> </td> <td> U+027ED </td> <td> <span class="glyph" title="">⟭</span> </td> <tr id="entity-roarr"><td> <code title="">roarr;</code> </td> <td> U+021FE </td> <td> <span class="glyph" title="">⇾</span> </td> <tr id="entity-robrk"><td> <code title="">robrk;</code> </td> <td> U+027E7 </td> <td> <span class="glyph" title="">⟧</span> </td> <tr id="entity-ropar"><td> <code title="">ropar;</code> </td> <td> U+02986 </td> <td> <span class="glyph" title="">⦆</span> </td> <tr id="entity-Ropf"><td> <code title="">Ropf;</code> </td> <td> U+0211D </td> <td> <span class="glyph" title="">ℝ</span> </td> <tr id="entity-ropf"><td> code title="">ropf;</code> </td> <td> U+1D563 </td> <td> <span class="glyph" title="">𝕣</span> </td> <tr id="entity-roplus"><td> <code title="">roplus;</code> </td> <td> U+02A2E </td> <td> <span class="glyph" title="">⨮</span> </td> <tr id="entity-rotimes"><td> <code title="">rotimes;</code> </td> <td> U+02A35 </td> <td> <span class="glyph" title="">⨵</span> </td> <tr id="entity-RoundImplies"><td> <code title="">RoundImplies;</code> </td> <td> U+02970 </td> <td> <span class="glyph" title="">⥰</span> </td> <tr id="entity-rpar"><td> <code title="">rpar;</code> </td> <td> U+00029 </td> <td> <span class="glyph" title="">)</span> </td> <tr id="entity-rpargt"><td> <code title="">rpargt;</code> </td> <td> U+02994 </td> <td> <span class="glyph" title="">⦔</span> </td> <tr id="entity-rppolint"><td> <code title="">rppolint;</code> </td> <td> U+02A12 </td> <td> <span class="glyph" title="">⨒</span> </td> <tr id="entity-rrarr"><td> <code title="">rrarr;</code> </td> <td> U+0219 </td> <td> <span class="glyph" title="">⇉</span> </td> <tr id="entity-Rrightarrow"><td> <code title="">Rrightarrow;</code> </td> <td> U+021DB </td> <td> <span class="glyph" title="">⇛</span> </td> <tr id="entity-rsaquo"><td> <code title="">rsaquo;</code> </td> <td> U+0203A </td> <td> <span class="glyph" title="">›</span> </td> <tr id="entity-Rscr"><td> <code title="">Rscr;</code> </td> <td> U+0211B </td> <td> <span class="glyph" title="">ℛ</span> </td> <tr id="entity-rscr"><td> <code title="">rscr;</code> </td> <td> U+1D4C7 </td> <td> <span class="glyph" title="">𝓇</span> </td> <tr id="entity-Rsh"><td> <code title="">Rsh;</code> </td> <td> U+021B1 </td> <td> <span class="glyph" title="">↱</span> </td> <tr id="entity-rsh"><td> <code title="">rsh;</code> </td> <td> U+021B1 </td> <td> <span class="glyph" title="">↱</span> </td> <tr id="entity-rsqb"><td> <code title="">rsqb;</code> </td> <td> U+0005D </td> <td> <span class="glyph" title="">]</span> </td> <tr id="enity-rsquo"><td> <code title="">rsquo;</code> </td> <td> U+02019 </td> <td> <span class="glyph" title="">’</span> </td> <tr id="entity-rsquor"><td> <code title="">rsquor;</code> </td> <td> U+02019 </td> <td> <span class="glyph" title="">’</span> </td> <tr id="entity-rthree"><td> <code title="">rthree;</code> </td> <td> U+022CC </td> <td> <span class="glyph" title="">⋌</span> </td> <tr id="entity-rtimes"><td> <code title="">rtimes;</code> </td> <td> U+022CA </td> <td> <span class="glyph" title="">⋊</span> </td> <tr id="entity-rtri"><td> <code title="">rtri;</code> </td> <td> U+025B9 </td> <td> <span class="glyph" title="">▹</span> </td> <tr id="entity-rtrie"><td> <code title="">rtrie;</code> </td> <td> U+022B5 </td> <td> <span class="glyph" title="">⊵</span> </td> <tr id="entity-rtrif"><td> <code title="">rtrif;</code> </td> <td> U+025B8 </td> <td> <span class="glyph" title="">▸</span> </td> <tr id="entity-rtriltri"><td> <code title="">rtriltri;</code> </td> <td> U+02CE </td> <td> <span class="glyph" title="">⧎</span> </td> <tr id="entity-RuleDelayed"><td> <code title="">RuleDelayed;</code> </td> <td> U+029F4 </td> <td> <span class="glyph" title="">⧴</span> </td> <tr id="entity-ruluhar"><td> <code title="">ruluhar;</code> </td> <td> U+02968 </td> <td> <span class="glyph" title="">⥨</span> </td> <tr id="entity-rx"><td> <code title="">rx;</code> </td> <td> U+0211E </td> <td> <span class="glyph" title="">℞</span> </td> <tr id="entity-Sacute"><td> <code title="">Sacute;</code> </td> <td> U+0015A </td> <td> <span class="glyph" title="">Ś</span> </td> <tr id="entity-sacute"><td> <code title="">sacute;</code> </td> <td> U+0015B </td> <td> <span class="glyph" title="">ś</span> </td> <tr id="entity-sbquo"><td> <code title="">sbquo;</code> </td> <td> U+0201A </td> <td> <span class="glyph" title="">‚</span> </td> <tr id="entity-Sc"><td> <code title="">Sc;</code> </td> <td> U+02ABC </td> <td> <span class="glyph" title="">⪼</span> </d> <tr id="entity-sc"><td> <code title="">sc;</code> </td> <td> U+0227B </td> <td> <span class="glyph" title="">≻</span> </td> <tr id="entity-scap"><td> <code title="">scap;</code> </td> <td> U+02AB8 </td> <td> <span class="glyph" title="">⪸</span> </td> <tr id="entity-Scaron"><td> <code title="">Scaron;</code> </td> <td> U+00160 </td> <td> <span class="glyph" title="">Š</span> </td> <tr id="entity-scaron"><td> <code title="">scaron;</code> </td> <td> U+00161 </td> <td> <span class="glyph" title="">š</span> </td> <tr id="entity-sccue"><td> <code title="">sccue;</code> </td> <td> U+0227D </td> <td> <span class="glyph" title="">≽</span> </td> <tr id="entity-scE"><td> <code title="">scE;</code> </td> <td> U+02AB4 </td> <td> <span class="glyph" title="">⪴</span> </td> <tr id="entity-sce"><td> <code title="">sce;</code> </td> <td> U+02AB0 </td> <td> <span class="glyph" title="">⪰</span> </td> <tr id="entity-Scedil"><td> <code title="">Scedil;</code> </td> <td> U+001E </td> <td> <span class="glyph" title="">Ş</span> </td> <tr id="entity-scedil"><td> <code title="">scedil;</code> </td> <td> U+0015F </td> <td> <span class="glyph" title="">ş</span> </td> <tr id="entity-Scirc"><td> <code title="">Scirc;</code> </td> <td> U+0015C </td> <td> <span class="glyph" title="">Ŝ</span> </td> <tr id="entity-scirc"><td> <code title="">scirc;</code> </td> <td> U+0015D </td> <td> <span class="glyph" title="">ŝ</span> </td> <tr id="entity-scnap"><td> <code title="">scnap;</code> </td> <td> U+02ABA </td> <td> <span class="glyph" title="">⪺</span> </td> <tr id="entity-scnE"><td> <code title="">scnE;</code> </td> <td> U+02AB6 </td> <td> <span class="glyph" title="">⪶</span> </td> <tr id="entity-scnsim"><td> <code title="">scnsim;</code> </td> <td> U+022E9 </td> <td> <span class="glyph" title="">⋩</span> </td> <tr id="entity-scpolint"><td> <code title="">scpolint;</code> </td> <td> U+02A13 </td> <td> <span class="glyph" title="">⨓</span> </td> tr id="entity-scsim"><td> <code title="">scsim;</code> </td> <td> U+0227F </td> <td> <span class="glyph" title="">≿</span> </td> <tr id="entity-Scy"><td> <code title="">Scy;</code> </td> <td> U+00421 </td> <td> <span class="glyph" title="">С</span> </td> <tr id="entity-scy"><td> <code title="">scy;</code> </td> <td> U+00441 </td> <td> <span class="glyph" title="">с</span> </td> <tr id="entity-sdot"><td> <code title="">sdot;</code> </td> <td> U+022C5 </td> <td> <span class="glyph" title="">⋅</span> </td> <tr id="entity-sdotb"><td> <code title="">sdotb;</code> </td> <td> U+022A1 </td> <td> <span class="glyph" title="">⊡</span> </td> <tr id="entity-sdote"><td> <code title="">sdote;</code> </td> <td> U+02A66 </td> <td> <span class="glyph" title="">⩦</span> </td> <tr id="entity-searhk"><td> <code title="">searhk;</code> </td> <td> U+02925 </td> <td> <span class="glyph" title="">⤥</span> </td> <tr id="entity-seArr"><td> <code title="">seArr;</code> </td> <td> U+021D8 </t> <td> <span class="glyph" title="">⇘</span> </td> <tr id="entity-searr"><td> <code title="">searr;</code> </td> <td> U+02198 </td> <td> <span class="glyph" title="">↘</span> </td> <tr id="entity-searrow"><td> <code title="">searrow;</code> </td> <td> U+02198 </td> <td> <span class="glyph" title="">↘</span> </td> <tr id="entity-sect"><td> <code title="">sect;</code> </td> <td> U+000A7 </td> <td> <span class="glyph" title="">§</span> </td> <tr id="entity-semi"><td> <code title="">semi;</code> </td> <td> U+0003B </td> <td> <span class="glyph" title="">;</span> </td> <tr id="entity-seswar"><td> <code title="">seswar;</code> </td> <td> U+02929 </td> <td> <span class="glyph" title="">⤩</span> </td> <tr id="entity-setminus"><td> <code title="">setminus;</code> </td> <td> U+02216 </td> <td> <span class="glyph" title="">∖</span> </td> <tr id="entity-setmn"><td> <code title="">setmn;</code> </td> <td> U+02216 </td> <td> <span class="glyph" title="">∖</span> </td> <tr id="entty-sext"><td> <code title="">sext;</code> </td> <td> U+02736 </td> <td> <span class="glyph" title="">✶</span> </td> <tr id="entity-Sfr"><td> <code title="">Sfr;</code> </td> <td> U+1D516 </td> <td> <span class="glyph" title="">𝔖</span> </td> <tr id="entity-sfr"><td> <code title="">sfr;</code> </td> <td> U+1D530 </td> <td> <span class="glyph" title="">𝔰</span> </td> <tr id="entity-sfrown"><td> <code title="">sfrown;</code> </td> <td> U+02322 </td> <td> <span class="glyph" title="">⌢</span> </td> <tr id="entity-sharp"><td> <code title="">sharp;</code> </td> <td> U+0266F </td> <td> <span class="glyph" title="">♯</span> </td> <tr id="entity-SHCHcy"><td> <code title="">SHCHcy;</code> </td> <td> U+00429 </td> <td> <span class="glyph" title="">Щ</span> </td> <tr id="entity-shchcy"><td> <code title="">shchcy;</code> </td> <td> U+00449 </td> <td> <span class="glyph" title="">щ</span> </td> <tr id="entity-SHcy"><td> <code title="">SHcy;</code> </td> <td> U+00428 </td> <t> <span class="glyph" title="">Ш</span> </td> <tr id="entity-shcy"><td> <code title="">shcy;</code> </td> <td> U+00448 </td> <td> <span class="glyph" title="">ш</span> </td> <tr id="entity-ShortDownArrow"><td> <code title="">ShortDownArrow;</code> </td> <td> U+02193 </td> <td> <span class="glyph" title="">↓</span> </td> <tr id="entity-ShortLeftArrow"><td> <code title="">ShortLeftArrow;</code> </td> <td> U+02190 </td> <td> <span class="glyph" title="">←</span> </td> <tr id="entity-shortmid"><td> <code title="">shortmid;</code> </td> <td> U+02223 </td> <td> <span class="glyph" title="">∣</span> </td> <tr id="entity-shortparallel"><td> <code title="">shortparallel;</code> </td> <td> U+02225 </td> <td> <span class="glyph" title="">∥</span> </td> <tr id="entity-ShortRightArrow"><td> <code title="">ShortRightArrow;</code> </td> <td> U+02192 </td> <td> <span class="glyph" title="">→</span> </td> <tr id="entity-ShortUpArrow"><td> <code title="">ShortUpArrow;</code> </td> <td> +02191 </td> <td> <span class="glyph" title="">↑</span> </td> <tr id="entity-shy"><td> <code title="">shy;</code> </td> <td> U+000AD </td> <td> <span class="glyph" title="">­</span> </td> <tr id="entity-Sigma"><td> <code title="">Sigma;</code> </td> <td> U+003A3 </td> <td> <span class="glyph" title="">Σ</span> </td> <tr id="entity-sigma"><td> <code title="">sigma;</code> </td> <td> U+003C3 </td> <td> <span class="glyph" title="">σ</span> </td> <tr id="entity-sigmaf"><td> <code title="">sigmaf;</code> </td> <td> U+003C2 </td> <td> <span class="glyph" title="">ς</span> </td> <tr id="entity-sigmav"><td> <code title="">sigmav;</code> </td> <td> U+003C2 </td> <td> <span class="glyph" title="">ς</span> </td> <tr id="entity-sim"><td> <code title="">sim;</code> </td> <td> U+0223C </td> <td> <span class="glyph" title="">∼</span> </td> <tr id="entity-simdot"><td> <code title="">simdot;</code> </td> <td> U+02A6A </td> <td> <span class="glyph" title="">⩪</span> </td> <tr id"entity-sime"><td> <code title="">sime;</code> </td> <td> U+02243 </td> <td> <span class="glyph" title="">≃</span> </td> <tr id="entity-simeq"><td> <code title="">simeq;</code> </td> <td> U+02243 </td> <td> <span class="glyph" title="">≃</span> </td> <tr id="entity-simg"><td> <code title="">simg;</code> </td> <td> U+02A9E </td> <td> <span class="glyph" title="">⪞</span> </td> <tr id="entity-simgE"><td> <code title="">simgE;</code> </td> <td> U+02AA0 </td> <td> <span class="glyph" title="">⪠</span> </td> <tr id="entity-siml"><td> <code title="">siml;</code> </td> <td> U+02A9D </td> <td> <span class="glyph" title="">⪝</span> </td> <tr id="entity-simlE"><td> <code title="">simlE;</code> </td> <td> U+02A9F </td> <td> <span class="glyph" title="">⪟</span> </td> <tr id="entity-simne"><td> <code title="">simne;</code> </td> <td> U+02246 </td> <td> <span class="glyph" title="">≆</span> </td> <tr id="entity-simplus"><td> <code title="">simplus;</code> </td> <td> U+02A24 /td> <td> <span class="glyph" title="">⨤</span> </td> <tr id="entity-simrarr"><td> <code title="">simrarr;</code> </td> <td> U+02972 </td> <td> <span class="glyph" title="">⥲</span> </td> <tr id="entity-slarr"><td> <code title="">slarr;</code> </td> <td> U+02190 </td> <td> <span class="glyph" title="">←</span> </td> <tr id="entity-SmallCircle"><td> <code title="">SmallCircle;</code> </td> <td> U+02218 </td> <td> <span class="glyph" title="">∘</span> </td> <tr id="entity-smallsetminus"><td> <code title="">smallsetminus;</code> </td> <td> U+02216 </td> <td> <span class="glyph" title="">∖</span> </td> <tr id="entity-smashp"><td> <code title="">smashp;</code> </td> <td> U+02A33 </td> <td> <span class="glyph" title="">⨳</span> </td> <tr id="entity-smeparsl"><td> <code title="">smeparsl;</code> </td> <td> U+029E4 </td> <td> <span class="glyph" title="">⧤</span> </td> <tr id="entity-smid"><td> <code title="">smid;</code> </td> <td> U+02223 </td> <td> <span class="glyph"title="">∣</span> </td> <tr id="entity-smile"><td> <code title="">smile;</code> </td> <td> U+02323 </td> <td> <span class="glyph" title="">⌣</span> </td> <tr id="entity-smt"><td> <code title="">smt;</code> </td> <td> U+02AAA </td> <td> <span class="glyph" title="">⪪</span> </td> <tr id="entity-smte"><td> <code title="">smte;</code> </td> <td> U+02AAC </td> <td> <span class="glyph" title="">⪬</span> </td> <tr id="entity-smtes"><td> <code title="">smtes;</code> </td> <td> U+02AAC U+0FE00 </td> <td> <span class="glyph compound" title="">⪬︀</span> </td> <tr id="entity-SOFTcy"><td> <code title="">SOFTcy;</code> </td> <td> U+0042C </td> <td> <span class="glyph" title="">Ь</span> </td> <tr id="entity-softcy"><td> <code title="">softcy;</code> </td> <td> U+0044C </td> <td> <span class="glyph" title="">ь</span> </td> <tr id="entity-sol"><td> <code title="">sol;</code> </td> <td> U+0002F </td> <td> <span class="glyph" title="">/</span> </td> <tr id="entity-solb"><td <code title="">solb;</code> </td> <td> U+029C4 </td> <td> <span class="glyph" title="">⧄</span> </td> <tr id="entity-solbar"><td> <code title="">solbar;</code> </td> <td> U+0233F </td> <td> <span class="glyph" title="">⌿</span> </td> <tr id="entity-Sopf"><td> <code title="">Sopf;</code> </td> <td> U+1D54A </td> <td> <span class="glyph" title="">𝕊</span> </td> <tr id="entity-sopf"><td> <code title="">sopf;</code> </td> <td> U+1D564 </td> <td> <span class="glyph" title="">𝕤</span> </td> <tr id="entity-spades"><td> <code title="">spades;</code> </td> <td> U+02660 </td> <td> <span class="glyph" title="">♠</span> </td> <tr id="entity-spadesuit"><td> <code title="">spadesuit;</code> </td> <td> U+02660 </td> <td> <span class="glyph" title="">♠</span> </td> <tr id="entity-spar"><td> <code title="">spar;</code> </td> <td> U+02225 </td> <td> <span class="glyph" title="">∥</span> </td> <tr id="entity-sqcap"><td> <code title="">sqcap;</code> </td> <td> U+02293 </td> <td <span class="glyph" title="">⊓</span> </td> <tr id="entity-sqcaps"><td> <code title="">sqcaps;</code> </td> <td> U+02293 U+0FE00 </td> <td> <span class="glyph compound" title="">⊓︀</span> </td> <tr id="entity-sqcup"><td> <code title="">sqcup;</code> </td> <td> U+02294 </td> <td> <span class="glyph" title="">⊔</span> </td> <tr id="entity-sqcups"><td> <code title="">sqcups;</code> </td> <td> U+02294 U+0FE00 </td> <td> <span class="glyph compound" title="">⊔︀</span> </td> <tr id="entity-Sqrt"><td> <code title="">Sqrt;</code> </td> <td> U+0221A </td> <td> <span class="glyph" title="">√</span> </td> <tr id="entity-sqsub"><td> <code title="">sqsub;</code> </td> <td> U+0228F </td> <td> <span class="glyph" title="">⊏</span> </td> <tr id="entity-sqsube"><td> <code title="">sqsube;</code> </td> <td> U+02291 </td> <td> <span class="glyph" title="">⊑</span> </td> <tr id="entity-sqsubset"><td> <code title="">sqsubset;</code> </td> <td> U+0228F </td> <td> <span clas="glyph" title="">⊏</span> </td> <tr id="entity-sqsubseteq"><td> <code title="">sqsubseteq;</code> </td> <td> U+02291 </td> <td> <span class="glyph" title="">⊑</span> </td> <tr id="entity-sqsup"><td> <code title="">sqsup;</code> </td> <td> U+02290 </td> <td> <span class="glyph" title="">⊐</span> </td> <tr id="entity-sqsupe"><td> <code title="">sqsupe;</code> </td> <td> U+02292 </td> <td> <span class="glyph" title="">⊒</span> </td> <tr id="entity-sqsupset"><td> <code title="">sqsupset;</code> </td> <td> U+02290 </td> <td> <span class="glyph" title="">⊐</span> </td> <tr id="entity-sqsupseteq"><td> <code title="">sqsupseteq;</code> </td> <td> U+02292 </td> <td> <span class="glyph" title="">⊒</span> </td> <tr id="entity-squ"><td> <code title="">squ;</code> </td> <td> U+025A1 </td> <td> <span class="glyph" title="">□</span> </td> <tr id="entity-Square"><td> <code title="">Square;</code> </td> <td> U+025A1 </td> <td> <span class="glyph" title="">□</span> </td> <tr d="entity-square"><td> <code title="">square;</code> </td> <td> U+025A1 </td> <td> <span class="glyph" title="">□</span> </td> <tr id="entity-SquareIntersection"><td> <code title="">SquareIntersection;</code> </td> <td> U+02293 </td> <td> <span class="glyph" title="">⊓</span> </td> <tr id="entity-SquareSubset"><td> <code title="">SquareSubset;</code> </td> <td> U+0228F </td> <td> <span class="glyph" title="">⊏</span> </td> <tr id="entity-SquareSubsetEqual"><td> <code title="">SquareSubsetEqual;</code> </td> <td> U+02291 </td> <td> <span class="glyph" title="">⊑</span> </td> <tr id="entity-SquareSuperset"><td> <code title="">SquareSuperset;</code> </td> <td> U+02290 </td> <td> <span class="glyph" title="">⊐</span> </td> <tr id="entity-SquareSupersetEqual"><td> <code title="">SquareSupersetEqual;</code> </td> <td> U+02292 </td> <td> <span class="glyph" title="">⊒</span> </td> <tr id="entity-SquareUnion"><td> <code title="">SquareUnion;</code> </td> <td> U+02294 </td> <td> <pan class="glyph" title="">⊔</span> </td> <tr id="entity-squarf"><td> <code title="">squarf;</code> </td> <td> U+025AA </td> <td> <span class="glyph" title="">▪</span> </td> <tr id="entity-squf"><td> <code title="">squf;</code> </td> <td> U+025AA </td> <td> <span class="glyph" title="">▪</span> </td> <tr id="entity-srarr"><td> <code title="">srarr;</code> </td> <td> U+02192 </td> <td> <span class="glyph" title="">→</span> </td> <tr id="entity-Sscr"><td> <code title="">Sscr;</code> </td> <td> U+1D4AE </td> <td> <span class="glyph" title="">𝒮</span> </td> <tr id="entity-sscr"><td> <code title="">sscr;</code> </td> <td> U+1D4C8 </td> <td> <span class="glyph" title="">𝓈</span> </td> <tr id="entity-ssetmn"><td> <code title="">ssetmn;</code> </td> <td> U+02216 </td> <td> <span class="glyph" title="">∖</span> </td> <tr id="entity-ssmile"><td> <code title="">ssmile;</code> </td> <td> U+02323 </td> <td> <span class="glyph" title="">⌣</span> </td> <tr id="entity-sstaf"><td> <code title="">sstarf;</code> </td> <td> U+022C6 </td> <td> <span class="glyph" title="">⋆</span> </td> <tr id="entity-Star"><td> <code title="">Star;</code> </td> <td> U+022C6 </td> <td> <span class="glyph" title="">⋆</span> </td> <tr id="entity-star"><td> <code title="">star;</code> </td> <td> U+02606 </td> <td> <span class="glyph" title="">☆</span> </td> <tr id="entity-starf"><td> <code title="">starf;</code> </td> <td> U+02605 </td> <td> <span class="glyph" title="">★</span> </td> <tr id="entity-straightepsilon"><td> <code title="">straightepsilon;</code> </td> <td> U+003F5 </td> <td> <span class="glyph" title="">ϵ</span> </td> <tr id="entity-straightphi"><td> <code title="">straightphi;</code> </td> <td> U+003D5 </td> <td> <span class="glyph" title="">ϕ</span> </td> <tr id="entity-strns"><td> <code title="">strns;</code> </td> <td> U+000AF </td> <td> <span class="glyph" title="">¯</span> </td> <tr id="entity-Sub"><td> <code title="">Sub;</code> </td> <td>U+022D0 </td> <td> <span class="glyph" title="">⋐</span> </td> <tr id="entity-sub"><td> <code title="">sub;</code> </td> <td> U+02282 </td> <td> <span class="glyph" title="">⊂</span> </td> <tr id="entity-subdot"><td> <code title="">subdot;</code> </td> <td> U+02ABD </td> <td> <span class="glyph" title="">⪽</span> </td> <tr id="entity-subE"><td> <code title="">subE;</code> </td> <td> U+02AC5 </td> <td> <span class="glyph" title="">⫅</span> </td> <tr id="entity-sube"><td> <code title="">sube;</code> </td> <td> U+02286 </td> <td> <span class="glyph" title="">⊆</span> </td> <tr id="entity-subedot"><td> <code title="">subedot;</code> </td> <td> U+02AC3 </td> <td> <span class="glyph" title="">⫃</span> </td> <tr id="entity-submult"><td> <code title="">submult;</code> </td> <td> U+02AC1 </td> <td> <span class="glyph" title="">⫁</span> </td> <tr id="entity-subnE"><td> <code title="">subnE;</code> </td> <td> U+02ACB </td> <td> <span class="glyph" title="">⫋</span> </t> <tr id="entity-subne"><td> <code title="">subne;</code> </td> <td> U+0228A </td> <td> <span class="glyph" title="">⊊</span> </td> <tr id="entity-subplus"><td> <code title="">subplus;</code> </td> <td> U+02ABF </td> <td> <span class="glyph" title="">⪿</span> </td> <tr id="entity-subrarr"><td> <code title="">subrarr;</code> </td> <td> U+02979 </td> <td> <span class="glyph" title="">⥹</span> </td> <tr id="entity-Subset"><td> <code title="">Subset;</code> </td> <td> U+022D0 </td> <td> <span class="glyph" title="">⋐</span> </td> <tr id="entity-subset"><td> <code title="">subset;</code> </td> <td> U+02282 </td> <td> <span class="glyph" title="">⊂</span> </td> <tr id="entity-subseteq"><td> <code title="">subseteq;</code> </td> <td> U+02286 </td> <td> <span class="glyph" title="">⊆</span> </td> <tr id="entity-subseteqq"><td> <code title="">subseteqq;</code> </td> <td> U+02AC5 </td> <td> <span class="glyph" title="">⫅</span> </td> <tr id="entity-SubsetEqual"><td> <code tite="">SubsetEqual;</code> </td> <td> U+02286 </td> <td> <span class="glyph" title="">⊆</span> </td> <tr id="entity-subsetneq"><td> <code title="">subsetneq;</code> </td> <td> U+0228A </td> <td> <span class="glyph" title="">⊊</span> </td> <tr id="entity-subsetneqq"><td> <code title="">subsetneqq;</code> </td> <td> U+02ACB </td> <td> <span class="glyph" title="">⫋</span> </td> <tr id="entity-subsim"><td> <code title="">subsim;</code> </td> <td> U+02AC7 </td> <td> <span class="glyph" title="">⫇</span> </td> <tr id="entity-subsub"><td> <code title="">subsub;</code> </td> <td> U+02AD5 </td> <td> <span class="glyph" title="">⫕</span> </td> <tr id="entity-subsup"><td> <code title="">subsup;</code> </td> <td> U+02AD3 </td> <td> <span class="glyph" title="">⫓</span> </td> <tr id="entity-succ"><td> <code title="">succ;</code> </td> <td> U+0227B </td> <td> <span class="glyph" title="">≻</span> </td> <tr id="entity-succapprox"><td> <code title="">succapprox;</code> </td> <td>U+02AB8 </td> <td> <span class="glyph" title="">⪸</span> </td> <tr id="entity-succcurlyeq"><td> <code title="">succcurlyeq;</code> </td> <td> U+0227D </td> <td> <span class="glyph" title="">≽</span> </td> <tr id="entity-Succeeds"><td> <code title="">Succeeds;</code> </td> <td> U+0227B </td> <td> <span class="glyph" title="">≻</span> </td> <tr id="entity-SucceedsEqual"><td> <code title="">SucceedsEqual;</code> </td> <td> U+02AB0 </td> <td> <span class="glyph" title="">⪰</span> </td> <tr id="entity-SucceedsSlantEqual"><td> <code title="">SucceedsSlantEqual;</code> </td> <td> U+0227D </td> <td> <span class="glyph" title="">≽</span> </td> <tr id="entity-SucceedsTilde"><td> <code title="">SucceedsTilde;</code> </td> <td> U+0227F </td> <td> <span class="glyph" title="">≿</span> </td> <tr id="entity-succeq"><td> <code title="">succeq;</code> </td> <td> U+02AB0 </td> <td> <span class="glyph" title="">⪰</span> </td> <tr id="entity-succnapprox"><td> <code title="">succnappox;</code> </td> <td> U+02ABA </td> <td> <span class="glyph" title="">⪺</span> </td> <tr id="entity-succneqq"><td> <code title="">succneqq;</code> </td> <td> U+02AB6 </td> <td> <span class="glyph" title="">⪶</span> </td> <tr id="entity-succnsim"><td> <code title="">succnsim;</code> </td> <td> U+022E9 </td> <td> <span class="glyph" title="">⋩</span> </td> <tr id="entity-succsim"><td> <code title="">succsim;</code> </td> <td> U+0227F </td> <td> <span class="glyph" title="">≿</span> </td> <tr id="entity-SuchThat"><td> <code title="">SuchThat;</code> </td> <td> U+0220B </td> <td> <span class="glyph" title="">∋</span> </td> <tr id="entity-Sum"><td> <code title="">Sum;</code> </td> <td> U+02211 </td> <td> <span class="glyph" title="">∑</span> </td> <tr id="entity-sum"><td> <code title="">sum;</code> </td> <td> U+02211 </td> <td> <span class="glyph" title="">∑</span> </td> <tr id="entity-sung"><td> <code title="">sung;</code> </td> <td> U+0266A </td> <td> <span class="glyph" tile="">♪</span> </td> <tr id="entity-Sup"><td> <code title="">Sup;</code> </td> <td> U+022D1 </td> <td> <span class="glyph" title="">⋑</span> </td> <tr id="entity-sup"><td> <code title="">sup;</code> </td> <td> U+02283 </td> <td> <span class="glyph" title="">⊃</span> </td> <tr id="entity-sup1"><td> <code title="">sup1;</code> </td> <td> U+000B9 </td> <td> <span class="glyph" title="">¹</span> </td> <tr id="entity-sup2"><td> <code title="">sup2;</code> </td> <td> U+000B2 </td> <td> <span class="glyph" title="">²</span> </td> <tr id="entity-sup3"><td> <code title="">sup3;</code> </td> <td> U+000B3 </td> <td> <span class="glyph" title="">³</span> </td> <tr id="entity-supdot"><td> <code title="">supdot;</code> </td> <td> U+02ABE </td> <td> <span class="glyph" title="">⪾</span> </td> <tr id="entity-supdsub"><td> <code title="">supdsub;</code> </td> <td> U+02AD8 </td> <td> <span class="glyph" title="">⫘</span> </td> <tr id="entity-supE"><td> <code title="">supE;</code> /td> <td> U+02AC6 </td> <td> <span class="glyph" title="">⫆</span> </td> <tr id="entity-supe"><td> <code title="">supe;</code> </td> <td> U+02287 </td> <td> <span class="glyph" title="">⊇</span> </td> <tr id="entity-supedot"><td> <code title="">supedot;</code> </td> <td> U+02AC4 </td> <td> <span class="glyph" title="">⫄</span> </td> <tr id="entity-Superset"><td> <code title="">Superset;</code> </td> <td> U+02283 </td> <td> <span class="glyph" title="">⊃</span> </td> <tr id="entity-SupersetEqual"><td> <code title="">SupersetEqual;</code> </td> <td> U+02287 </td> <td> <span class="glyph" title="">⊇</span> </td> <tr id="entity-suphsol"><td> <code title="">suphsol;</code> </td> <td> U+027C9 </td> <td> <span class="glyph" title="">⟉</span> </td> <tr id="entity-suphsub"><td> <code title="">suphsub;</code> </td> <td> U+02AD7 </td> <td> <span class="glyph" title="">⫗</span> </td> <tr id="entity-suplarr"><td> <code title="">suplarr;</code> </td> <td> U+0297B </td> <td> <spanclass="glyph" title="">⥻</span> </td> <tr id="entity-supmult"><td> <code title="">supmult;</code> </td> <td> U+02AC2 </td> <td> <span class="glyph" title="">⫂</span> </td> <tr id="entity-supnE"><td> <code title="">supnE;</code> </td> <td> U+02ACC </td> <td> <span class="glyph" title="">⫌</span> </td> <tr id="entity-supne"><td> <code title="">supne;</code> </td> <td> U+0228B </td> <td> <span class="glyph" title="">⊋</span> </td> <tr id="entity-supplus"><td> <code title="">supplus;</code> </td> <td> U+02AC0 </td> <td> <span class="glyph" title="">⫀</span> </td> <tr id="entity-Supset"><td> <code title="">Supset;</code> </td> <td> U+022D1 </td> <td> <span class="glyph" title="">⋑</span> </td> <tr id="entity-supset"><td> <code title="">supset;</code> </td> <td> U+02283 </td> <td> <span class="glyph" title="">⊃</span> </td> <tr id="entity-supseteq"><td> <code title="">supseteq;</code> </td> <td> U+02287 </td> <td> <span class="glyph" title="">⊇</span> </td> <tr id=entity-supseteqq"><td> <code title="">supseteqq;</code> </td> <td> U+02AC6 </td> <td> <span class="glyph" title="">⫆</span> </td> <tr id="entity-supsetneq"><td> <code title="">supsetneq;</code> </td> <td> U+0228B </td> <td> <span class="glyph" title="">⊋</span> </td> <tr id="entity-supsetneqq"><td> <code title="">supsetneqq;</code> </td> <td> U+02ACC </td> <td> <span class="glyph" title="">⫌</span> </td> <tr id="entity-supsim"><td> <code title="">supsim;</code> </td> <td> U+02AC8 </td> <td> <span class="glyph" title="">⫈</span> </td> <tr id="entity-supsub"><td> <code title="">supsub;</code> </td> <td> U+02AD4 </td> <td> <span class="glyph" title="">⫔</span> </td> <tr id="entity-supsup"><td> <code title="">supsup;</code> </td> <td> U+02AD6 </td> <td> <span class="glyph" title="">⫖</span> </td> <tr id="entity-swarhk"><td> <code title="">swarhk;</code> </td> <td> U+02926 </td> <td> <span class="glyph" title="">⤦</span> </td> <tr id="entity-swArr"><td> <code title"">swArr;</code> </td> <td> U+021D9 </td> <td> <span class="glyph" title="">⇙</span> </td> <tr id="entity-swarr"><td> <code title="">swarr;</code> </td> <td> U+02199 </td> <td> <span class="glyph" title="">↙</span> </td> <tr id="entity-swarrow"><td> <code title="">swarrow;</code> </td> <td> U+02199 </td> <td> <span class="glyph" title="">↙</span> </td> <tr id="entity-swnwar"><td> <code title="">swnwar;</code> </td> <td> U+0292A </td> <td> <span class="glyph" title="">⤪</span> </td> <tr id="entity-szlig"><td> <code title="">szlig;</code> </td> <td> U+000DF </td> <td> <span class="glyph" title="">ß</span> </td> <tr id="entity-Tab"><td> <code title="">Tab;</code> </td> <td> U+00009 </td> <td> <span class="glyph control" title="">␉</span> </td> <tr id="entity-target"><td> <code title="">target;</code> </td> <td> U+02316 </td> <td> <span class="glyph" title="">⌖</span> </td> <tr id="entity-Tau"><td> <code title="">Tau;</code> </td> <td> U+003A4 </td> <td> <span class="gyph" title="">Τ</span> </td> <tr id="entity-tau"><td> <code title="">tau;</code> </td> <td> U+003C4 </td> <td> <span class="glyph" title="">τ</span> </td> <tr id="entity-tbrk"><td> <code title="">tbrk;</code> </td> <td> U+023B4 </td> <td> <span class="glyph" title="">⎴</span> </td> <tr id="entity-Tcaron"><td> <code title="">Tcaron;</code> </td> <td> U+00164 </td> <td> <span class="glyph" title="">Ť</span> </td> <tr id="entity-tcaron"><td> <code title="">tcaron;</code> </td> <td> U+00165 </td> <td> <span class="glyph" title="">ť</span> </td> <tr id="entity-Tcedil"><td> <code title="">Tcedil;</code> </td> <td> U+00162 </td> <td> <span class="glyph" title="">Ţ</span> </td> <tr id="entity-tcedil"><td> <code title="">tcedil;</code> </td> <td> U+00163 </td> <td> <span class="glyph" title="">ţ</span> </td> <tr id="entity-Tcy"><td> <code title="">Tcy;</code> </td> <td> U+00422 </td> <td> <span class="glyph" title="">Т</span> </td> <tr id="entity-tcy"><td> <code title="">tcy;<code> </td> <td> U+00442 </td> <td> <span class="glyph" title="">т</span> </td> <tr id="entity-tdot"><td> <code title="">tdot;</code> </td> <td> U+020DB </td> <td> <span class="glyph composition" title="">◌⃛</span> </td> <tr id="entity-telrec"><td> <code title="">telrec;</code> </td> <td> U+02315 </td> <td> <span class="glyph" title="">⌕</span> </td> <tr id="entity-Tfr"><td> <code title="">Tfr;</code> </td> <td> U+1D517 </td> <td> <span class="glyph" title="">𝔗</span> </td> <tr id="entity-tfr"><td> <code title="">tfr;</code> </td> <td> U+1D531 </td> <td> <span class="glyph" title="">𝔱</span> </td> <tr id="entity-there4"><td> <code title="">there4;</code> </td> <td> U+02234 </td> <td> <span class="glyph" title="">∴</span> </td> <tr id="entity-Therefore"><td> <code title="">Therefore;</code> </td> <td> U+02234 </td> <td> <span class="glyph" title="">∴</span> </td> <tr id="entity-therefore"><td> <code title="">therefore;</code> </td> <td> U+02234 </td> <td><span class="glyph" title="">∴</span> </td> <tr id="entity-Theta"><td> <code title="">Theta;</code> </td> <td> U+00398 </td> <td> <span class="glyph" title="">Θ</span> </td> <tr id="entity-theta"><td> <code title="">theta;</code> </td> <td> U+003B8 </td> <td> <span class="glyph" title="">θ</span> </td> <tr id="entity-thetasym"><td> <code title="">thetasym;</code> </td> <td> U+003D1 </td> <td> <span class="glyph" title="">ϑ</span> </td> <tr id="entity-thetav"><td> <code title="">thetav;</code> </td> <td> U+003D1 </td> <td> <span class="glyph" title="">ϑ</span> </td> <tr id="entity-thickapprox"><td> <code title="">thickapprox;</code> </td> <td> U+02248 </td> <td> <span class="glyph" title="">≈</span> </td> <tr id="entity-thicksim"><td> <code title="">thicksim;</code> </td> <td> U+0223C </td> <td> <span class="glyph" title="">∼</span> </td> <tr id="entity-ThickSpace"><td> <code title="">ThickSpace;</code> </td> <td> U+0205F U+0200A </td> <td> <span class="glyph copound" title="">  </span> </td> <tr id="entity-thinsp"><td> <code title="">thinsp;</code> </td> <td> U+02009 </td> <td> <span class="glyph" title=""> </span> </td> <tr id="entity-ThinSpace"><td> <code title="">ThinSpace;</code> </td> <td> U+02009 </td> <td> <span class="glyph" title=""> </span> </td> <tr id="entity-thkap"><td> <code title="">thkap;</code> </td> <td> U+02248 </td> <td> <span class="glyph" title="">≈</span> </td> <tr id="entity-thksim"><td> <code title="">thksim;</code> </td> <td> U+0223C </td> <td> <span class="glyph" title="">∼</span> </td> <tr id="entity-THORN"><td> <code title="">THORN;</code> </td> <td> U+000DE </td> <td> <span class="glyph" title="">Þ</span> </td> <tr id="entity-thorn"><td> <code title="">thorn;</code> </td> <td> U+000FE </td> <td> <span class="glyph" title="">þ</span> </td> <tr id="entity-Tilde"><td> <code title="">Tilde;</code> </td> <td> U+0223C </td> <td> <span class="glyph" title="">∼</span> </td> <tr id="entity-tlde"><td> <code title="">tilde;</code> </td> <td> U+002DC </td> <td> <span class="glyph" title="">˜</span> </td> <tr id="entity-TildeEqual"><td> <code title="">TildeEqual;</code> </td> <td> U+02243 </td> <td> <span class="glyph" title="">≃</span> </td> <tr id="entity-TildeFullEqual"><td> <code title="">TildeFullEqual;</code> </td> <td> U+02245 </td> <td> <span class="glyph" title="">≅</span> </td> <tr id="entity-TildeTilde"><td> <code title="">TildeTilde;</code> </td> <td> U+02248 </td> <td> <span class="glyph" title="">≈</span> </td> <tr id="entity-times"><td> <code title="">times;</code> </td> <td> U+000D7 </td> <td> <span class="glyph" title="">×</span> </td> <tr id="entity-timesb"><td> <code title="">timesb;</code> </td> <td> U+022A0 </td> <td> <span class="glyph" title="">⊠</span> </td> <tr id="entity-timesbar"><td> <code title="">timesbar;</code> </td> <td> U+02A31 </td> <td> <span class="glyph" title="">⨱</span> </td> <tr id="entity-timesd"><td> <code title=">timesd;</code> </td> <td> U+02A30 </td> <td> <span class="glyph" title="">⨰</span> </td> <tr id="entity-tint"><td> <code title="">tint;</code> </td> <td> U+0222D </td> <td> <span class="glyph" title="">∭</span> </td> <tr id="entity-toea"><td> <code title="">toea;</code> </td> <td> U+02928 </td> <td> <span class="glyph" title="">⤨</span> </td> <tr id="entity-top"><td> <code title="">top;</code> </td> <td> U+022A4 </td> <td> <span class="glyph" title="">⊤</span> </td> <tr id="entity-topbot"><td> <code title="">topbot;</code> </td> <td> U+02336 </td> <td> <span class="glyph" title="">⌶</span> </td> <tr id="entity-topcir"><td> <code title="">topcir;</code> </td> <td> U+02AF1 </td> <td> <span class="glyph" title="">⫱</span> </td> <tr id="entity-Topf"><td> <code title="">Topf;</code> </td> <td> U+1D54B </td> <td> <span class="glyph" title="">𝕋</span> </td> <tr id="entity-topf"><td> <code title="">topf;</code> </td> <td> U+1D565 </td> <td> <span class="glyph" title=">𝕥</span> </td> <tr id="entity-topfork"><td> <code title="">topfork;</code> </td> <td> U+02ADA </td> <td> <span class="glyph" title="">⫚</span> </td> <tr id="entity-tosa"><td> <code title="">tosa;</code> </td> <td> U+02929 </td> <td> <span class="glyph" title="">⤩</span> </td> <tr id="entity-tprime"><td> <code title="">tprime;</code> </td> <td> U+02034 </td> <td> <span class="glyph" title="">‴</span> </td> <tr id="entity-TRADE"><td> <code title="">TRADE;</code> </td> <td> U+02122 </td> <td> <span class="glyph" title="">™</span> </td> <tr id="entity-trade"><td> <code title="">trade;</code> </td> <td> U+02122 </td> <td> <span class="glyph" title="">™</span> </td> <tr id="entity-triangle"><td> <code title="">triangle;</code> </td> <td> U+025B5 </td> <td> <span class="glyph" title="">▵</span> </td> <tr id="entity-triangledown"><td> <code title="">triangledown;</code> </td> <td> U+025BF </td> <td> <span class="glyph" title="">▿</span> </td> <tr id="entity-trianleleft"><td> <code title="">triangleleft;</code> </td> <td> U+025C3 </td> <td> <span class="glyph" title="">◃</span> </td> <tr id="entity-trianglelefteq"><td> <code title="">trianglelefteq;</code> </td> <td> U+022B4 </td> <td> <span class="glyph" title="">⊴</span> </td> <tr id="entity-triangleq"><td> <code title="">triangleq;</code> </td> <td> U+0225C </td> <td> <span class="glyph" title="">≜</span> </td> <tr id="entity-triangleright"><td> <code title="">triangleright;</code> </td> <td> U+025B9 </td> <td> <span class="glyph" title="">▹</span> </td> <tr id="entity-trianglerighteq"><td> <code title="">trianglerighteq;</code> </td> <td> U+022B5 </td> <td> <span class="glyph" title="">⊵</span> </td> <tr id="entity-tridot"><td> <code title="">tridot;</code> </td> <td> U+025EC </td> <td> <span class="glyph" title="">◬</span> </td> <tr id="entity-trie"><td> <code title="">trie;</code> </td> <td> U+0225C </td> <td> <span class="glyph" title="">≜</span> </td> <tr id="entity-riminus"><td> <code title="">triminus;</code> </td> <td> U+02A3A </td> <td> <span class="glyph" title="">⨺</span> </td> <tr id="entity-TripleDot"><td> <code title="">TripleDot;</code> </td> <td> U+020DB </td> <td> <span class="glyph composition" title="">◌⃛</span> </td> <tr id="entity-triplus"><td> <code title="">triplus;</code> </td> <td> U+02A39 </td> <td> <span class="glyph" title="">⨹</span> </td> <tr id="entity-trisb"><td> <code title="">trisb;</code> </td> <td> U+029CD </td> <td> <span class="glyph" title="">⧍</span> </td> <tr id="entity-tritime"><td> <code title="">tritime;</code> </td> <td> U+02A3B </td> <td> <span class="glyph" title="">⨻</span> </td> <tr id="entity-trpezium"><td> <code title="">trpezium;</code> </td> <td> U+023E2 </td> <td> <span class="glyph" title="">⏢</span> </td> <tr id="entity-Tscr"><td> <code title="">Tscr;</code> </td> <td> U+1D4AF </td> <td> <span class="glyph" title="">𝒯</span> </td> <tr id="entity-tscr"><td> <code tite="">tscr;</code> </td> <td> U+1D4C9 </td> <td> <span class="glyph" title="">𝓉</span> </td> <tr id="entity-TScy"><td> <code title="">TScy;</code> </td> <td> U+00426 </td> <td> <span class="glyph" title="">Ц</span> </td> <tr id="entity-tscy"><td> <code title="">tscy;</code> </td> <td> U+00446 </td> <td> <span class="glyph" title="">ц</span> </td> <tr id="entity-TSHcy"><td> <code title="">TSHcy;</code> </td> <td> U+0040B </td> <td> <span class="glyph" title="">Ћ</span> </td> <tr id="entity-tshcy"><td> <code title="">tshcy;</code> </td> <td> U+0045B </td> <td> <span class="glyph" title="">ћ</span> </td> <tr id="entity-Tstrok"><td> <code title="">Tstrok;</code> </td> <td> U+00166 </td> <td> <span class="glyph" title="">Ŧ</span> </td> <tr id="entity-tstrok"><td> <code title="">tstrok;</code> </td> <td> U+00167 </td> <td> <span class="glyph" title="">ŧ</span> </td> <tr id="entity-twixt"><td> <code title="">twixt;</code> </td> <td> U+0226C </td> <td> <span class="glyph" tile="">≬</span> </td> <tr id="entity-twoheadleftarrow"><td> <code title="">twoheadleftarrow;</code> </td> <td> U+0219E </td> <td> <span class="glyph" title="">↞</span> </td> <tr id="entity-twoheadrightarrow"><td> <code title="">twoheadrightarrow;</code> </td> <td> U+021A0 </td> <td> <span class="glyph" title="">↠</span> </td> <tr id="entity-Uacute"><td> <code title="">Uacute;</code> </td> <td> U+000DA </td> <td> <span class="glyph" title="">Ú</span> </td> <tr id="entity-uacute"><td> <code title="">uacute;</code> </td> <td> U+000FA </td> <td> <span class="glyph" title="">ú</span> </td> <tr id="entity-Uarr"><td> <code title="">Uarr;</code> </td> <td> U+0219F </td> <td> <span class="glyph" title="">↟</span> </td> <tr id="entity-uArr"><td> <code title="">uArr;</code> </td> <td> U+021D1 </td> <td> <span class="glyph" title="">⇑</span> </td> <tr id="entity-uarr"><td> <code title="">uarr;</code> </td> <td> U+02191 </td> <td> <span class="glyph" title="">↑</span> </td><tr id="entity-Uarrocir"><td> <code title="">Uarrocir;</code> </td> <td> U+02949 </td> <td> <span class="glyph" title="">⥉</span> </td> <tr id="entity-Ubrcy"><td> <code title="">Ubrcy;</code> </td> <td> U+0040E </td> <td> <span class="glyph" title="">Ў</span> </td> <tr id="entity-ubrcy"><td> <code title="">ubrcy;</code> </td> <td> U+0045E </td> <td> <span class="glyph" title="">ў</span> </td> <tr id="entity-Ubreve"><td> <code title="">Ubreve;</code> </td> <td> U+0016C </td> <td> <span class="glyph" title="">Ŭ</span> </td> <tr id="entity-ubreve"><td> <code title="">ubreve;</code> </td> <td> U+0016D </td> <td> <span class="glyph" title="">ŭ</span> </td> <tr id="entity-Ucirc"><td> <code title="">Ucirc;</code> </td> <td> U+000DB </td> <td> <span class="glyph" title="">Û</span> </td> <tr id="entity-ucirc"><td> <code title="">ucirc;</code> </td> <td> U+000FB </td> <td> <span class="glyph" title="">û</span> </td> <tr id="entity-Ucy"><td> <code title="">Ucy;</code> </td> <td U+00423 </td> <td> <span class="glyph" title="">У</span> </td> <tr id="entity-ucy"><td> <code title="">ucy;</code> </td> <td> U+00443 </td> <td> <span class="glyph" title="">у</span> </td> <tr id="entity-udarr"><td> <code title="">udarr;</code> </td> <td> U+021C5 </td> <td> <span class="glyph" title="">⇅</span> </td> <tr id="entity-Udblac"><td> <code title="">Udblac;</code> </td> <td> U+00170 </td> <td> <span class="glyph" title="">Ű</span> </td> <tr id="entity-udblac"><td> <code title="">udblac;</code> </td> <td> U+00171 </td> <td> <span class="glyph" title="">ű</span> </td> <tr id="entity-udhar"><td> <code title="">udhar;</code> </td> <td> U+0296E </td> <td> <span class="glyph" title="">⥮</span> </td> <tr id="entity-ufisht"><td> <code title="">ufisht;</code> </td> <td> U+0297E </td> <td> <span class="glyph" title="">⥾</span> </td> <tr id="entity-Ufr"><td> <code title="">Ufr;</code> </td> <td> U+1D518 </td> <td> <span class="glyph" title="">𝔘</span> </td> tr id="entity-ufr"><td> <code title="">ufr;</code> </td> <td> U+1D532 </td> <td> <span class="glyph" title="">𝔲</span> </td> <tr id="entity-Ugrave"><td> <code title="">Ugrave;</code> </td> <td> U+000D9 </td> <td> <span class="glyph" title="">Ù</span> </td> <tr id="entity-ugrave"><td> <code title="">ugrave;</code> </td> <td> U+000F9 </td> <td> <span class="glyph" title="">ù</span> </td> <tr id="entity-uHar"><td> <code title="">uHar;</code> </td> <td> U+02963 </td> <td> <span class="glyph" title="">⥣</span> </td> <tr id="entity-uharl"><td> <code title="">uharl;</code> </td> <td> U+021BF </td> <td> <span class="glyph" title="">↿</span> </td> <tr id="entity-uharr"><td> <code title="">uharr;</code> </td> <td> U+021BE </td> <td> <span class="glyph" title="">↾</span> </td> <tr id="entity-uhblk"><td> <code title="">uhblk;</code> </td> <td> U+02580 </td> <td> <span class="glyph" title="">▀</span> </td> <tr id="entity-ulcorn"><td> <code title="">ulcorn;</code> </td> <td>U+0231C </td> <td> <span class="glyph" title="">⌜</span> </td> <tr id="entity-ulcorner"><td> <code title="">ulcorner;</code> </td> <td> U+0231C </td> <td> <span class="glyph" title="">⌜</span> </td> <tr id="entity-ulcrop"><td> <code title="">ulcrop;</code> </td> <td> U+0230F </td> <td> <span class="glyph" title="">⌏</span> </td> <tr id="entity-ultri"><td> <code title="">ultri;</code> </td> <td> U+025F8 </td> <td> <span class="glyph" title="">◸</span> </td> <tr id="entity-Umacr"><td> <code title="">Umacr;</code> </td> <td> U+0016A </td> <td> <span class="glyph" title="">Ū</span> </td> <tr id="entity-umacr"><td> <code title="">umacr;</code> </td> <td> U+0016B </td> <td> <span class="glyph" title="">ū</span> </td> <tr id="entity-uml"><td> <code title="">uml;</code> </td> <td> U+000A8 </td> <td> <span class="glyph" title="">¨</span> </td> <tr id="entity-UnderBar"><td> <code title="">UnderBar;</code> </td> <td> U+0005F </td> <td> <span class="glyph" title="">_</span> </td> <r id="entity-UnderBrace"><td> <code title="">UnderBrace;</code> </td> <td> U+023DF </td> <td> <span class="glyph" title="">⏟</span> </td> <tr id="entity-UnderBracket"><td> <code title="">UnderBracket;</code> </td> <td> U+023B5 </td> <td> <span class="glyph" title="">⎵</span> </td> <tr id="entity-UnderParenthesis"><td> <code title="">UnderParenthesis;</code> </td> <td> U+023DD </td> <td> <span class="glyph" title="">⏝</span> </td> <tr id="entity-Union"><td> <code title="">Union;</code> </td> <td> U+022C3 </td> <td> <span class="glyph" title="">⋃</span> </td> <tr id="entity-UnionPlus"><td> <code title="">UnionPlus;</code> </td> <td> U+0228E </td> <td> <span class="glyph" title="">⊎</span> </td> <tr id="entity-Uogon"><td> <code title="">Uogon;</code> </td> <td> U+00172 </td> <td> <span class="glyph" title="">Ų</span> </td> <tr id="entity-uogon"><td> <code title="">uogon;</code> </td> <td> U+00173 </td> <td> <span class="glyph" title="">ų</span> </td> <tr id="entity-Uopf"<td> <code title="">Uopf;</code> </td> <td> U+1D54C </td> <td> <span class="glyph" title="">𝕌</span> </td> <tr id="entity-uopf"><td> <code title="">uopf;</code> </td> <td> U+1D566 </td> <td> <span class="glyph" title="">𝕦</span> </td> <tr id="entity-UpArrow"><td> <code title="">UpArrow;</code> </td> <td> U+02191 </td> <td> <span class="glyph" title="">↑</span> </td> <tr id="entity-Uparrow"><td> <code title="">Uparrow;</code> </td> <td> U+021D1 </td> <td> <span class="glyph" title="">⇑</span> </td> <tr id="entity-uparrow"><td> <code title="">uparrow;</code> </td> <td> U+02191 </td> <td> <span class="glyph" title="">↑</span> </td> <tr id="entity-UpArrowBar"><td> <code title="">UpArrowBar;</code> </td> <td> U+02912 </td> <td> <span class="glyph" title="">⤒</span> </td> <tr id="entity-UpArrowDownArrow"><td> <code title="">UpArrowDownArrow;</code> </td> <td> U+021C5 </td> <td> <span class="glyph" title="">⇅</span> </td> <tr id="entity-UpDownArrow"><td> <code title="">UDownArrow;</code> </td> <td> U+02195 </td> <td> <span class="glyph" title="">↕</span> </td> <tr id="entity-Updownarrow"><td> <code title="">Updownarrow;</code> </td> <td> U+021D5 </td> <td> <span class="glyph" title="">⇕</span> </td> <tr id="entity-updownarrow"><td> <code title="">updownarrow;</code> </td> <td> U+02195 </td> <td> <span class="glyph" title="">↕</span> </td> <tr id="entity-UpEquilibrium"><td> <code title="">UpEquilibrium;</code> </td> <td> U+0296E </td> <td> <span class="glyph" title="">⥮</span> </td> <tr id="entity-upharpoonleft"><td> <code title="">upharpoonleft;</code> </td> <td> U+021BF </td> <td> <span class="glyph" title="">↿</span> </td> <tr id="entity-upharpoonright"><td> <code title="">upharpoonright;</code> </td> <td> U+021BE </td> <td> <span class="glyph" title="">↾</span> </td> <tr id="entity-uplus"><td> <code title="">uplus;</code> </td> <td> U+0228E </td> <td> <span class="glyph" title="">⊎</span> </td> <tr id="entity-UpperLeftArrow"><t> <code title="">UpperLeftArrow;</code> </td> <td> U+02196 </td> <td> <span class="glyph" title="">↖</span> </td> <tr id="entity-UpperRightArrow"><td> <code title="">UpperRightArrow;</code> </td> <td> U+02197 </td> <td> <span class="glyph" title="">↗</span> </td> <tr id="entity-Upsi"><td> <code title="">Upsi;</code> </td> <td> U+003D2 </td> <td> <span class="glyph" title="">ϒ</span> </td> <tr id="entity-upsi"><td> <code title="">upsi;</code> </td> <td> U+003C5 </td> <td> <span class="glyph" title="">υ</span> </td> <tr id="entity-upsih"><td> <code title="">upsih;</code> </td> <td> U+003D2 </td> <td> <span class="glyph" title="">ϒ</span> </td> <tr id="entity-Upsilon"><td> <code title="">Upsilon;</code> </td> <td> U+003A5 </td> <td> <span class="glyph" title="">Υ</span> </td> <tr id="entity-upsilon"><td> <code title="">upsilon;</code> </td> <td> U+003C5 </td> <td> <span class="glyph" title="">υ</span> </td> <tr id="entity-UpTee"><td> <code title="">UpTee;</code> /td> <td> U+022A5 </td> <td> <span class="glyph" title="">⊥</span> </td> <tr id="entity-UpTeeArrow"><td> <code title="">UpTeeArrow;</code> </td> <td> U+021A5 </td> <td> <span class="glyph" title="">↥</span> </td> <tr id="entity-upuparrows"><td> <code title="">upuparrows;</code> </td> <td> U+021C8 </td> <td> <span class="glyph" title="">⇈</span> </td> <tr id="entity-urcorn"><td> <code title="">urcorn;</code> </td> <td> U+0231D </td> <td> <span class="glyph" title="">⌝</span> </td> <tr id="entity-urcorner"><td> <code title="">urcorner;</code> </td> <td> U+0231D </td> <td> <span class="glyph" title="">⌝</span> </td> <tr id="entity-urcrop"><td> <code title="">urcrop;</code> </td> <td> U+0230E </td> <td> <span class="glyph" title="">⌎</span> </td> <tr id="entity-Uring"><td> <code title="">Uring;</code> </td> <td> U+0016E </td> <td> <span class="glyph" title="">Ů</span> </td> <tr id="entity-uring"><td> <code title="">uring;</code> </td> <td> U+0016F </td> <td> <span class="lyph" title="">ů</span> </td> <tr id="entity-urtri"><td> <code title="">urtri;</code> </td> <td> U+025F9 </td> <td> <span class="glyph" title="">◹</span> </td> <tr id="entity-Uscr"><td> <code title="">Uscr;</code> </td> <td> U+1D4B0 </td> <td> <span class="glyph" title="">𝒰</span> </td> <tr id="entity-uscr"><td> <code title="">uscr;</code> </td> <td> U+1D4CA </td> <td> <span class="glyph" title="">𝓊</span> </td> <tr id="entity-utdot"><td> <code title="">utdot;</code> </td> <td> U+022F0 </td> <td> <span class="glyph" title="">⋰</span> </td> <tr id="entity-Utilde"><td> <code title="">Utilde;</code> </td> <td> U+00168 </td> <td> <span class="glyph" title="">Ũ</span> </td> <tr id="entity-utilde"><td> <code title="">utilde;</code> </td> <td> U+00169 </td> <td> <span class="glyph" title="">ũ</span> </td> <tr id="entity-utri"><td> <code title="">utri;</code> </td> <td> U+025B5 </td> <td> <span class="glyph" title="">▵</span> </td> <tr id="entity-utrif"><td> <code tile="">utrif;</code> </td> <td> U+025B4 </td> <td> <span class="glyph" title="">▴</span> </td> <tr id="entity-uuarr"><td> <code title="">uuarr;</code> </td> <td> U+021C8 </td> <td> <span class="glyph" title="">⇈</span> </td> <tr id="entity-Uuml"><td> <code title="">Uuml;</code> </td> <td> U+000DC </td> <td> <span class="glyph" title="">Ü</span> </td> <tr id="entity-uuml"><td> <code title="">uuml;</code> </td> <td> U+000FC </td> <td> <span class="glyph" title="">ü</span> </td> <tr id="entity-uwangle"><td> <code title="">uwangle;</code> </td> <td> U+029A7 </td> <td> <span class="glyph" title="">⦧</span> </td> <tr id="entity-vangrt"><td> <code title="">vangrt;</code> </td> <td> U+0299C </td> <td> <span class="glyph" title="">⦜</span> </td> <tr id="entity-varepsilon"><td> <code title="">varepsilon;</code> </td> <td> U+003F5 </td> <td> <span class="glyph" title="">ϵ</span> </td> <tr id="entity-varkappa"><td> <code title="">varkappa;</code> </td> <td> U+003F0 </td> <td> <san class="glyph" title="">ϰ</span> </td> <tr id="entity-varnothing"><td> <code title="">varnothing;</code> </td> <td> U+02205 </td> <td> <span class="glyph" title="">∅</span> </td> <tr id="entity-varphi"><td> <code title="">varphi;</code> </td> <td> U+003D5 </td> <td> <span class="glyph" title="">ϕ</span> </td> <tr id="entity-varpi"><td> <code title="">varpi;</code> </td> <td> U+003D6 </td> <td> <span class="glyph" title="">ϖ</span> </td> <tr id="entity-varpropto"><td> <code title="">varpropto;</code> </td> <td> U+0221D </td> <td> <span class="glyph" title="">∝</span> </td> <tr id="entity-vArr"><td> <code title="">vArr;</code> </td> <td> U+021D5 </td> <td> <span class="glyph" title="">⇕</span> </td> <tr id="entity-varr"><td> <code title="">varr;</code> </td> <td> U+02195 </td> <td> <span class="glyph" title="">↕</span> </td> <tr id="entity-varrho"><td> <code title="">varrho;</code> </td> <td> U+003F1 </td> <td> <span class="glyph" title="">ϱ</span> </td> <tr id="etity-varsigma"><td> <code title="">varsigma;</code> </td> <td> U+003C2 </td> <td> <span class="glyph" title="">ς</span> </td> <tr id="entity-varsubsetneq"><td> <code title="">varsubsetneq;</code> </td> <td> U+0228A U+0FE00 </td> <td> <span class="glyph compound" title="">⊊︀</span> </td> <tr id="entity-varsubsetneqq"><td> <code title="">varsubsetneqq;</code> </td> <td> U+02ACB U+0FE00 </td> <td> <span class="glyph compound" title="">⫋︀</span> </td> <tr id="entity-varsupsetneq"><td> <code title="">varsupsetneq;</code> </td> <td> U+0228B U+0FE00 </td> <td> <span class="glyph compound" title="">⊋︀</span> </td> <tr id="entity-varsupsetneqq"><td> <code title="">varsupsetneqq;</code> </td> <td> U+02ACC U+0FE00 </td> <td> <span class="glyph compound" title="">⫌︀</span> </td> <tr id="entity-vartheta"><td> <code title="">vartheta;</code> </td> <td> U+003D1 </td> <td> <span class="glyph" title="">ϑ</span> </td> <tr id="entity-vartriangleleft"><td> <ode title="">vartriangleleft;</code> </td> <td> U+022B2 </td> <td> <span class="glyph" title="">⊲</span> </td> <tr id="entity-vartriangleright"><td> <code title="">vartriangleright;</code> </td> <td> U+022B3 </td> <td> <span class="glyph" title="">⊳</span> </td> <tr id="entity-Vbar"><td> <code title="">Vbar;</code> </td> <td> U+02AEB </td> <td> <span class="glyph" title="">⫫</span> </td> <tr id="entity-vBar"><td> <code title="">vBar;</code> </td> <td> U+02AE8 </td> <td> <span class="glyph" title="">⫨</span> </td> <tr id="entity-vBarv"><td> <code title="">vBarv;</code> </td> <td> U+02AE9 </td> <td> <span class="glyph" title="">⫩</span> </td> <tr id="entity-Vcy"><td> <code title="">Vcy;</code> </td> <td> U+00412 </td> <td> <span class="glyph" title="">В</span> </td> <tr id="entity-vcy"><td> <code title="">vcy;</code> </td> <td> U+00432 </td> <td> <span class="glyph" title="">в</span> </td> <tr id="entity-VDash"><td> <code title="">VDash;</code> </td> <td> U+022AB <td> <td> <span class="glyph" title="">⊫</span> </td> <tr id="entity-Vdash"><td> <code title="">Vdash;</code> </td> <td> U+022A9 </td> <td> <span class="glyph" title="">⊩</span> </td> <tr id="entity-vDash"><td> <code title="">vDash;</code> </td> <td> U+022A8 </td> <td> <span class="glyph" title="">⊨</span> </td> <tr id="entity-vdash"><td> <code title="">vdash;</code> </td> <td> U+022A2 </td> <td> <span class="glyph" title="">⊢</span> </td> <tr id="entity-Vdashl"><td> <code title="">Vdashl;</code> </td> <td> U+02AE6 </td> <td> <span class="glyph" title="">⫦</span> </td> <tr id="entity-Vee"><td> <code title="">Vee;</code> </td> <td> U+022C1 </td> <td> <span class="glyph" title="">⋁</span> </td> <tr id="entity-vee"><td> <code title="">vee;</code> </td> <td> U+02228 </td> <td> <span class="glyph" title="">∨</span> </td> <tr id="entity-veebar"><td> <code title="">veebar;</code> </td> <td> U+022BB </td> <td> <span class="glyph" title="">⊻</span> </td> <tr id="entity-veeq"><td> <code title="">veeeq;</code> </td> <td> U+0225A </td> <td> <span class="glyph" title="">≚</span> </td> <tr id="entity-vellip"><td> <code title="">vellip;</code> </td> <td> U+022EE </td> <td> <span class="glyph" title="">⋮</span> </td> <tr id="entity-Verbar"><td> <code title="">Verbar;</code> </td> <td> U+02016 </td> <td> <span class="glyph" title="">‖</span> </td> <tr id="entity-verbar"><td> <code title="">verbar;</code> </td> <td> U+0007C </td> <td> <span class="glyph" title="">|</span> </td> <tr id="entity-Vert"><td> <code title="">Vert;</code> </td> <td> U+02016 </td> <td> <span class="glyph" title="">‖</span> </td> <tr id="entity-vert"><td> <code title="">vert;</code> </td> <td> U+0007C </td> <td> <span class="glyph" title="">|</span> </td> <tr id="entity-VerticalBar"><td> <code title="">VerticalBar;</code> </td> <td> U+02223 </td> <td> <span class="glyph" title="">∣</span> </td> <tr id="entity-VerticalLine"><td> <code title="">VerticalLine;</code> </td> <td> U+000C </td> <td> <span class="glyph" title="">|</span> </td> <tr id="entity-VerticalSeparator"><td> <code title="">VerticalSeparator;</code> </td> <td> U+02758 </td> <td> <span class="glyph" title="">❘</span> </td> <tr id="entity-VerticalTilde"><td> <code title="">VerticalTilde;</code> </td> <td> U+02240 </td> <td> <span class="glyph" title="">≀</span> </td> <tr id="entity-VeryThinSpace"><td> <code title="">VeryThinSpace;</code> </td> <td> U+0200A </td> <td> <span class="glyph" title=""> </span> </td> <tr id="entity-Vfr"><td> <code title="">Vfr;</code> </td> <td> U+1D519 </td> <td> <span class="glyph" title="">𝔙</span> </td> <tr id="entity-vfr"><td> <code title="">vfr;</code> </td> <td> U+1D533 </td> <td> <span class="glyph" title="">𝔳</span> </td> <tr id="entity-vltri"><td> <code title="">vltri;</code> </td> <td> U+022B2 </td> <td> <span class="glyph" title="">⊲</span> </td> <tr id="entity-vnsub"><td> <code title="">vnsub;</code> </td> <td> U+02282 U+020D2 </td> <td> <san class="glyph compound" title="">⊂⃒</span> </td> <tr id="entity-vnsup"><td> <code title="">vnsup;</code> </td> <td> U+02283 U+020D2 </td> <td> <span class="glyph compound" title="">⊃⃒</span> </td> <tr id="entity-Vopf"><td> <code title="">Vopf;</code> </td> <td> U+1D54D </td> <td> <span class="glyph" title="">𝕍</span> </td> <tr id="entity-vopf"><td> <code title="">vopf;</code> </td> <td> U+1D567 </td> <td> <span class="glyph" title="">𝕧</span> </td> <tr id="entity-vprop"><td> <code title="">vprop;</code> </td> <td> U+0221D </td> <td> <span class="glyph" title="">∝</span> </td> <tr id="entity-vrtri"><td> <code title="">vrtri;</code> </td> <td> U+022B3 </td> <td> <span class="glyph" title="">⊳</span> </td> <tr id="entity-Vscr"><td> <code title="">Vscr;</code> </td> <td> U+1D4B1 </td> <td> <span class="glyph" title="">𝒱</span> </td> <tr id="entity-vscr"><td> <code title="">vscr;</code> </td> <td> U+1D4CB </td> <td> <span class="glyph" title="">𝓋</pan> </td> <tr id="entity-vsubnE"><td> <code title="">vsubnE;</code> </td> <td> U+02ACB U+0FE00 </td> <td> <span class="glyph compound" title="">⫋︀</span> </td> <tr id="entity-vsubne"><td> <code title="">vsubne;</code> </td> <td> U+0228A U+0FE00 </td> <td> <span class="glyph compound" title="">⊊︀</span> </td> <tr id="entity-vsupnE"><td> <code title="">vsupnE;</code> </td> <td> U+02ACC U+0FE00 </td> <td> <span class="glyph compound" title="">⫌︀</span> </td> <tr id="entity-vsupne"><td> <code title="">vsupne;</code> </td> <td> U+0228B U+0FE00 </td> <td> <span class="glyph compound" title="">⊋︀</span> </td> <tr id="entity-Vvdash"><td> <code title="">Vvdash;</code> </td> <td> U+022AA </td> <td> <span class="glyph" title="">⊪</span> </td> <tr id="entity-vzigzag"><td> <code title="">vzigzag;</code> </td> <td> U+0299A </td> <td> <span class="glyph" title="">⦚</span> </td> <tr id="entity-Wcirc"><td> <code title="">Wcirc;</code> </td> <td> U+00174 </t> <td> <span class="glyph" title="">Ŵ</span> </td> <tr id="entity-wcirc"><td> <code title="">wcirc;</code> </td> <td> U+00175 </td> <td> <span class="glyph" title="">ŵ</span> </td> <tr id="entity-wedbar"><td> <code title="">wedbar;</code> </td> <td> U+02A5F </td> <td> <span class="glyph" title="">⩟</span> </td> <tr id="entity-Wedge"><td> <code title="">Wedge;</code> </td> <td> U+022C0 </td> <td> <span class="glyph" title="">⋀</span> </td> <tr id="entity-wedge"><td> <code title="">wedge;</code> </td> <td> U+02227 </td> <td> <span class="glyph" title="">∧</span> </td> <tr id="entity-wedgeq"><td> <code title="">wedgeq;</code> </td> <td> U+02259 </td> <td> <span class="glyph" title="">≙</span> </td> <tr id="entity-weierp"><td> <code title="">weierp;</code> </td> <td> U+02118 </td> <td> <span class="glyph" title="">℘</span> </td> <tr id="entity-Wfr"><td> <code title="">Wfr;</code> </td> <td> U+1D51A </td> <td> <span class="glyph" title="">𝔚</span> </td> <tr id="entty-wfr"><td> <code title="">wfr;</code> </td> <td> U+1D534 </td> <td> <span class="glyph" title="">𝔴</span> </td> <tr id="entity-Wopf"><td> <code title="">Wopf;</code> </td> <td> U+1D54E </td> <td> <span class="glyph" title="">𝕎</span> </td> <tr id="entity-wopf"><td> <code title="">wopf;</code> </td> <td> U+1D568 </td> <td> <span class="glyph" title="">𝕨</span> </td> <tr id="entity-wp"><td> <code title="">wp;</code> </td> <td> U+02118 </td> <td> <span class="glyph" title="">℘</span> </td> <tr id="entity-wr"><td> <code title="">wr;</code> </td> <td> U+02240 </td> <td> <span class="glyph" title="">≀</span> </td> <tr id="entity-wreath"><td> <code title="">wreath;</code> </td> <td> U+02240 </td> <td> <span class="glyph" title="">≀</span> </td> <tr id="entity-Wscr"><td> <code title="">Wscr;</code> </td> <td> U+1D4B2 </td> <td> <span class="glyph" title="">𝒲</span> </td> <tr id="entity-wscr"><td> <code title="">wscr;</code> </td> <td> U+1D4CC </td> <td> <span clas="glyph" title="">𝓌</span> </td> <tr id="entity-xcap"><td> <code title="">xcap;</code> </td> <td> U+022C2 </td> <td> <span class="glyph" title="">⋂</span> </td> <tr id="entity-xcirc"><td> <code title="">xcirc;</code> </td> <td> U+025EF </td> <td> <span class="glyph" title="">◯</span> </td> <tr id="entity-xcup"><td> <code title="">xcup;</code> </td> <td> U+022C3 </td> <td> <span class="glyph" title="">⋃</span> </td> <tr id="entity-xdtri"><td> <code title="">xdtri;</code> </td> <td> U+025BD </td> <td> <span class="glyph" title="">▽</span> </td> <tr id="entity-Xfr"><td> <code title="">Xfr;</code> </td> <td> U+1D51B </td> <td> <span class="glyph" title="">𝔛</span> </td> <tr id="entity-xfr"><td> <code title="">xfr;</code> </td> <td> U+1D535 </td> <td> <span class="glyph" title="">𝔵</span> </td> <tr id="entity-xhArr"><td> <code title="">xhArr;</code> </td> <td> U+027FA </td> <td> <span class="glyph" title="">⟺</span> </td> <tr id="entity-xharr"><td> <code tile="">xharr;</code> </td> <td> U+027F7 </td> <td> <span class="glyph" title="">⟷</span> </td> <tr id="entity-Xi"><td> <code title="">Xi;</code> </td> <td> U+0039E </td> <td> <span class="glyph" title="">Ξ</span> </td> <tr id="entity-xi"><td> <code title="">xi;</code> </td> <td> U+003BE </td> <td> <span class="glyph" title="">ξ</span> </td> <tr id="entity-xlArr"><td> <code title="">xlArr;</code> </td> <td> U+027F8 </td> <td> <span class="glyph" title="">⟸</span> </td> <tr id="entity-xlarr"><td> <code title="">xlarr;</code> </td> <td> U+027F5 </td> <td> <span class="glyph" title="">⟵</span> </td> <tr id="entity-xmap"><td> <code title="">xmap;</code> </td> <td> U+027FC </td> <td> <span class="glyph" title="">⟼</span> </td> <tr id="entity-xnis"><td> <code title="">xnis;</code> </td> <td> U+022FB </td> <td> <span class="glyph" title="">⋻</span> </td> <tr id="entity-xodot"><td> <code title="">xodot;</code> </td> <td> U+02A00 </td> <td> <span class="glyph" title="">⨀<span> </td> <tr id="entity-Xopf"><td> <code title="">Xopf;</code> </td> <td> U+1D54F </td> <td> <span class="glyph" title="">𝕏</span> </td> <tr id="entity-xopf"><td> <code title="">xopf;</code> </td> <td> U+1D569 </td> <td> <span class="glyph" title="">𝕩</span> </td> <tr id="entity-xoplus"><td> <code title="">xoplus;</code> </td> <td> U+02A01 </td> <td> <span class="glyph" title="">⨁</span> </td> <tr id="entity-xotime"><td> <code title="">xotime;</code> </td> <td> U+02A02 </td> <td> <span class="glyph" title="">⨂</span> </td> <tr id="entity-xrArr"><td> <code title="">xrArr;</code> </td> <td> U+027F9 </td> <td> <span class="glyph" title="">⟹</span> </td> <tr id="entity-xrarr"><td> <code title="">xrarr;</code> </td> <td> U+027F6 </td> <td> <span class="glyph" title="">⟶</span> </td> <tr id="entity-Xscr"><td> <code title="">Xscr;</code> </td> <td> U+1D4B3 </td> <td> <span class="glyph" title="">𝒳</span> </td> <tr id="entity-xscr"><td> <code title="">xscr;</coe> </td> <td> U+1D4CD </td> <td> <span class="glyph" title="">𝓍</span> </td> <tr id="entity-xsqcup"><td> <code title="">xsqcup;</code> </td> <td> U+02A06 </td> <td> <span class="glyph" title="">⨆</span> </td> <tr id="entity-xuplus"><td> <code title="">xuplus;</code> </td> <td> U+02A04 </td> <td> <span class="glyph" title="">⨄</span> </td> <tr id="entity-xutri"><td> <code title="">xutri;</code> </td> <td> U+025B3 </td> <td> <span class="glyph" title="">△</span> </td> <tr id="entity-xvee"><td> <code title="">xvee;</code> </td> <td> U+022C1 </td> <td> <span class="glyph" title="">⋁</span> </td> <tr id="entity-xwedge"><td> <code title="">xwedge;</code> </td> <td> U+022C0 </td> <td> <span class="glyph" title="">⋀</span> </td> <tr id="entity-Yacute"><td> <code title="">Yacute;</code> </td> <td> U+000DD </td> <td> <span class="glyph" title="">Ý</span> </td> <tr id="entity-yacute"><td> <code title="">yacute;</code> </td> <td> U+000FD </td> <td> <span class="glyph" titl="">ý</span> </td> <tr id="entity-YAcy"><td> <code title="">YAcy;</code> </td> <td> U+0042F </td> <td> <span class="glyph" title="">Я</span> </td> <tr id="entity-yacy"><td> <code title="">yacy;</code> </td> <td> U+0044F </td> <td> <span class="glyph" title="">я</span> </td> <tr id="entity-Ycirc"><td> <code title="">Ycirc;</code> </td> <td> U+00176 </td> <td> <span class="glyph" title="">Ŷ</span> </td> <tr id="entity-ycirc"><td> <code title="">ycirc;</code> </td> <td> U+00177 </td> <td> <span class="glyph" title="">ŷ</span> </td> <tr id="entity-Ycy"><td> <code title="">Ycy;</code> </td> <td> U+0042B </td> <td> <span class="glyph" title="">Ы</span> </td> <tr id="entity-ycy"><td> <code title="">ycy;</code> </td> <td> U+0044B </td> <td> <span class="glyph" title="">ы</span> </td> <tr id="entity-yen"><td> <code title="">yen;</code> </td> <td> U+000A5 </td> <td> <span class="glyph" title="">¥</span> </td> <tr id="entity-Yfr"><td> <code title="">Yfr;</code> </td> <td> U1D51C </td> <td> <span class="glyph" title="">𝔜</span> </td> <tr id="entity-yfr"><td> <code title="">yfr;</code> </td> <td> U+1D536 </td> <td> <span class="glyph" title="">𝔶</span> </td> <tr id="entity-YIcy"><td> <code title="">YIcy;</code> </td> <td> U+00407 </td> <td> <span class="glyph" title="">Ї</span> </td> <tr id="entity-yicy"><td> <code title="">yicy;</code> </td> <td> U+00457 </td> <td> <span class="glyph" title="">ї</span> </td> <tr id="entity-Yopf"><td> <code title="">Yopf;</code> </td> <td> U+1D550 </td> <td> <span class="glyph" title="">𝕐</span> </td> <tr id="entity-yopf"><td> <code title="">yopf;</code> </td> <td> U+1D56A </td> <td> <span class="glyph" title="">𝕪</span> </td> <tr id="entity-Yscr"><td> <code title="">Yscr;</code> </td> <td> U+1D4B4 </td> <td> <span class="glyph" title="">𝒴</span> </td> <tr id="entity-yscr"><td> <code title="">yscr;</code> </td> <td> U+1D4CE </td> <td> <span class="glyph" title="">𝓎</span> </td> <tr id=entity-YUcy"><td> <code title="">YUcy;</code> </td> <td> U+0042E </td> <td> <span class="glyph" title="">Ю</span> </td> <tr id="entity-yucy"><td> <code title="">yucy;</code> </td> <td> U+0044E </td> <td> <span class="glyph" title="">ю</span> </td> <tr id="entity-Yuml"><td> <code title="">Yuml;</code> </td> <td> U+00178 </td> <td> <span class="glyph" title="">Ÿ</span> </td> <tr id="entity-yuml"><td> <code title="">yuml;</code> </td> <td> U+000FF </td> <td> <span class="glyph" title="">ÿ</span> </td> <tr id="entity-Zacute"><td> <code title="">Zacute;</code> </td> <td> U+00179 </td> <td> <span class="glyph" title="">Ź</span> </td> <tr id="entity-zacute"><td> <code title="">zacute;</code> </td> <td> U+0017A </td> <td> <span class="glyph" title="">ź</span> </td> <tr id="entity-Zcaron"><td> <code title="">Zcaron;</code> </td> <td> U+0017D </td> <td> <span class="glyph" title="">Ž</span> </td> <tr id="entity-zcaron"><td> <code title="">zcaron;</code> </td> <td> U+0017E </td> <t> <span class="glyph" title="">ž</span> </td> <tr id="entity-Zcy"><td> <code title="">Zcy;</code> </td> <td> U+00417 </td> <td> <span class="glyph" title="">З</span> </td> <tr id="entity-zcy"><td> <code title="">zcy;</code> </td> <td> U+00437 </td> <td> <span class="glyph" title="">з</span> </td> <tr id="entity-Zdot"><td> <code title="">Zdot;</code> </td> <td> U+0017B </td> <td> <span class="glyph" title="">Ż</span> </td> <tr id="entity-zdot"><td> <code title="">zdot;</code> </td> <td> U+0017C </td> <td> <span class="glyph" title="">ż</span> </td> <tr id="entity-zeetrf"><td> <code title="">zeetrf;</code> </td> <td> U+02128 </td> <td> <span class="glyph" title="">ℨ</span> </td> <tr id="entity-ZeroWidthSpace"><td> <code title="">ZeroWidthSpace;</code> </td> <td> U+0200B </td> <td> <span class="glyph" title="">​</span> </td> <tr id="entity-Zeta"><td> <code title="">Zeta;</code> </td> <td> U+00396 </td> <td> <span class="glyph" title="">Ζ</span> </td> <tr id="entity-zta"><td> <code title="">zeta;</code> </td> <td> U+003B6 </td> <td> <span class="glyph" title="">ζ</span> </td> <tr id="entity-Zfr"><td> <code title="">Zfr;</code> </td> <td> U+02128 </td> <td> <span class="glyph" title="">ℨ</span> </td> <tr id="entity-zfr"><td> <code title="">zfr;</code> </td> <td> U+1D537 </td> <td> <span class="glyph" title="">𝔷</span> </td> <tr id="entity-ZHcy"><td> <code title="">ZHcy;</code> </td> <td> U+00416 </td> <td> <span class="glyph" title="">Ж</span> </td> <tr id="entity-zhcy"><td> <code title="">zhcy;</code> </td> <td> U+00436 </td> <td> <span class="glyph" title="">ж</span> </td> <tr id="entity-zigrarr"><td> <code title="">zigrarr;</code> </td> <td> U+021DD </td> <td> <span class="glyph" title="">⇝</span> </td> <tr id="entity-Zopf"><td> <code title="">Zopf;</code> </td> <td> U+02124 </td> <td> <span class="glyph" title="">ℤ</span> </td> <tr id="entity-zopf"><td> <code title="">zopf;</code> </td> <td> U+1D56B </td> <td> <span class="gyph" title="">𝕫</span> </td> <tr id="entity-Zscr"><td> <code title="">Zscr;</code> </td> <td> U+1D4B5 </td> <td> <span class="glyph" title="">𝒵</span> </td> <tr id="entity-zscr"><td> <code title="">zscr;</code> </td> <td> U+1D4CF </td> <td> <span class="glyph" title="">𝓏</span> </td> <tr id="entity-zwj"><td> <code title="">zwj;</code> </td> <td> U+0200D </td> <td> <span class="glyph" title="">‍</span> </td> <tr id="entity-zwnj"><td> <code title="">zwnj;</code> </td> <td> U+0200C </td> <td> <span class="glyph" title="">‌</span> </td> </table></div><p><i>The glyphs displayed above are non-normative. Refer to the + by the previous sections.</p> + + <div id="named-character-references-table"> + <table><thead><tr><th> Name </th> <th> Character(s) </th> <th> Glyph </th> <tbody><tr id="entity-Aacute"><td> <code title="">Aacute;</code> </td> <td> U+000C1 </td> <td> <span class="glyph" title="">Á</span> </td> <tr id="entity-aacute"><td> <code title="">aacute;</code> </td> <td> U+000E1 </td> <td> <span class="glyph" title="">á</span> </td> <tr id="entity-Abreve"><td> <code title="">Abreve;</code> </td> <td> U+00102 </td> <td> <span class="glyph" title="">Ă</span> </td> <tr id="entity-abreve"><td> <code title="">abreve;</code> </td> <td> U+00103 </td> <td> <span class="glyph" title="">ă</span> </td> <tr id="entity-ac"><td> <code title="">ac;</code> </td> <td> U+0223E </td> <td> <span class="glyph" title="">∾</span> </td> <tr id="entity-acd"><td> <code title="">acd;</code> </td> <td> U+0223F </td> <td> <span class="glyph" title="">∿</span> </td> <tr id="entity-acE"><td> <code title="">acE;</code> </td> <td> U+0223E U+00333 </td> <td> <span class="glyph compound" tite="">∾̳</span> </td> <tr id="entity-Acirc"><td> <code title="">Acirc;</code> </td> <td> U+000C2 </td> <td> <span class="glyph" title="">Â</span> </td> <tr id="entity-acirc"><td> <code title="">acirc;</code> </td> <td> U+000E2 </td> <td> <span class="glyph" title="">â</span> </td> <tr id="entity-acute"><td> <code title="">acute;</code> </td> <td> U+000B4 </td> <td> <span class="glyph" title="">´</span> </td> <tr id="entity-Acy"><td> <code title="">Acy;</code> </td> <td> U+00410 </td> <td> <span class="glyph" title="">А</span> </td> <tr id="entity-acy"><td> <code title="">acy;</code> </td> <td> U+00430 </td> <td> <span class="glyph" title="">а</span> </td> <tr id="entity-AElig"><td> <code title="">AElig;</code> </td> <td> U+000C6 </td> <td> <span class="glyph" title="">Æ</span> </td> <tr id="entity-aelig"><td> <code title="">aelig;</code> </td> <td> U+000E6 </td> <td> <span class="glyph" title="">æ</span> </td> <tr id="entity-af"><td> <code title="">af;</coe> </td> <td> U+02061 </td> <td> <span class="glyph" title="">⁡</span> </td> <tr id="entity-Afr"><td> <code title="">Afr;</code> </td> <td> U+1D504 </td> <td> <span class="glyph" title="">𝔄</span> </td> <tr id="entity-afr"><td> <code title="">afr;</code> </td> <td> U+1D51E </td> <td> <span class="glyph" title="">𝔞</span> </td> <tr id="entity-Agrave"><td> <code title="">Agrave;</code> </td> <td> U+000C0 </td> <td> <span class="glyph" title="">À</span> </td> <tr id="entity-agrave"><td> <code title="">agrave;</code> </td> <td> U+000E0 </td> <td> <span class="glyph" title="">à</span> </td> <tr id="entity-alefsym"><td> <code title="">alefsym;</code> </td> <td> U+02135 </td> <td> <span class="glyph" title="">ℵ</span> </td> <tr id="entity-aleph"><td> <code title="">aleph;</code> </td> <td> U+02135 </td> <td> <span class="glyph" title="">ℵ</span> </td> <tr id="entity-Alpha"><td> <code title="">Alpha;</code> </td> <td> U+00391 </td> <td> <span class="glyph" title=">Α</span> </td> <tr id="entity-alpha"><td> <code title="">alpha;</code> </td> <td> U+003B1 </td> <td> <span class="glyph" title="">α</span> </td> <tr id="entity-Amacr"><td> <code title="">Amacr;</code> </td> <td> U+00100 </td> <td> <span class="glyph" title="">Ā</span> </td> <tr id="entity-amacr"><td> <code title="">amacr;</code> </td> <td> U+00101 </td> <td> <span class="glyph" title="">ā</span> </td> <tr id="entity-amalg"><td> <code title="">amalg;</code> </td> <td> U+02A3F </td> <td> <span class="glyph" title="">⨿</span> </td> <tr id="entity-AMP"><td> <code title="">AMP;</code> </td> <td> U+00026 </td> <td> <span class="glyph" title="">&</span> </td> <tr id="entity-amp"><td> <code title="">amp;</code> </td> <td> U+00026 </td> <td> <span class="glyph" title="">&</span> </td> <tr id="entity-And"><td> <code title="">And;</code> </td> <td> U+02A53 </td> <td> <span class="glyph" title="">⩓</span> </td> <tr id="entity-and"><td> <code title="">and;</code> </td> <td> U02227 </td> <td> <span class="glyph" title="">∧</span> </td> <tr id="entity-andand"><td> <code title="">andand;</code> </td> <td> U+02A55 </td> <td> <span class="glyph" title="">⩕</span> </td> <tr id="entity-andd"><td> <code title="">andd;</code> </td> <td> U+02A5C </td> <td> <span class="glyph" title="">⩜</span> </td> <tr id="entity-andslope"><td> <code title="">andslope;</code> </td> <td> U+02A58 </td> <td> <span class="glyph" title="">⩘</span> </td> <tr id="entity-andv"><td> <code title="">andv;</code> </td> <td> U+02A5A </td> <td> <span class="glyph" title="">⩚</span> </td> <tr id="entity-ang"><td> <code title="">ang;</code> </td> <td> U+02220 </td> <td> <span class="glyph" title="">∠</span> </td> <tr id="entity-ange"><td> <code title="">ange;</code> </td> <td> U+029A4 </td> <td> <span class="glyph" title="">⦤</span> </td> <tr id="entity-angle"><td> <code title="">angle;</code> </td> <td> U+02220 </td> <td> <span class="glyph" title="">∠</span> </td> <tr id"entity-angmsd"><td> <code title="">angmsd;</code> </td> <td> U+02221 </td> <td> <span class="glyph" title="">∡</span> </td> <tr id="entity-angmsdaa"><td> <code title="">angmsdaa;</code> </td> <td> U+029A8 </td> <td> <span class="glyph" title="">⦨</span> </td> <tr id="entity-angmsdab"><td> <code title="">angmsdab;</code> </td> <td> U+029A9 </td> <td> <span class="glyph" title="">⦩</span> </td> <tr id="entity-angmsdac"><td> <code title="">angmsdac;</code> </td> <td> U+029AA </td> <td> <span class="glyph" title="">⦪</span> </td> <tr id="entity-angmsdad"><td> <code title="">angmsdad;</code> </td> <td> U+029AB </td> <td> <span class="glyph" title="">⦫</span> </td> <tr id="entity-angmsdae"><td> <code title="">angmsdae;</code> </td> <td> U+029AC </td> <td> <span class="glyph" title="">⦬</span> </td> <tr id="entity-angmsdaf"><td> <code title="">angmsdaf;</code> </td> <td> U+029AD </td> <td> <span class="glyph" title="">⦭</span> </td> <tr id="entity-angmsdag"><td> <coe title="">angmsdag;</code> </td> <td> U+029AE </td> <td> <span class="glyph" title="">⦮</span> </td> <tr id="entity-angmsdah"><td> <code title="">angmsdah;</code> </td> <td> U+029AF </td> <td> <span class="glyph" title="">⦯</span> </td> <tr id="entity-angrt"><td> <code title="">angrt;</code> </td> <td> U+0221F </td> <td> <span class="glyph" title="">∟</span> </td> <tr id="entity-angrtvb"><td> <code title="">angrtvb;</code> </td> <td> U+022BE </td> <td> <span class="glyph" title="">⊾</span> </td> <tr id="entity-angrtvbd"><td> <code title="">angrtvbd;</code> </td> <td> U+0299D </td> <td> <span class="glyph" title="">⦝</span> </td> <tr id="entity-angsph"><td> <code title="">angsph;</code> </td> <td> U+02222 </td> <td> <span class="glyph" title="">∢</span> </td> <tr id="entity-angst"><td> <code title="">angst;</code> </td> <td> U+000C5 </td> <td> <span class="glyph" title="">Å</span> </td> <tr id="entity-angzarr"><td> <code title="">angzarr;</code> </td> <td> U+0237 </td> <td> <span class="glyph" title="">⍼</span> </td> <tr id="entity-Aogon"><td> <code title="">Aogon;</code> </td> <td> U+00104 </td> <td> <span class="glyph" title="">Ą</span> </td> <tr id="entity-aogon"><td> <code title="">aogon;</code> </td> <td> U+00105 </td> <td> <span class="glyph" title="">ą</span> </td> <tr id="entity-Aopf"><td> <code title="">Aopf;</code> </td> <td> U+1D538 </td> <td> <span class="glyph" title="">𝔸</span> </td> <tr id="entity-aopf"><td> <code title="">aopf;</code> </td> <td> U+1D552 </td> <td> <span class="glyph" title="">𝕒</span> </td> <tr id="entity-ap"><td> <code title="">ap;</code> </td> <td> U+02248 </td> <td> <span class="glyph" title="">≈</span> </td> <tr id="entity-apacir"><td> <code title="">apacir;</code> </td> <td> U+02A6F </td> <td> <span class="glyph" title="">⩯</span> </td> <tr id="entity-apE"><td> <code title="">apE;</code> </td> <td> U+02A70 </td> <td> <span class="glyph" title="">⩰</span> </td> <tr id="entity-ae"><td> <code title="">ape;</code> </td> <td> U+0224A </td> <td> <span class="glyph" title="">≊</span> </td> <tr id="entity-apid"><td> <code title="">apid;</code> </td> <td> U+0224B </td> <td> <span class="glyph" title="">≋</span> </td> <tr id="entity-apos"><td> <code title="">apos;</code> </td> <td> U+00027 </td> <td> <span class="glyph" title="">'</span> </td> <tr id="entity-ApplyFunction"><td> <code title="">ApplyFunction;</code> </td> <td> U+02061 </td> <td> <span class="glyph" title="">⁡</span> </td> <tr id="entity-approx"><td> <code title="">approx;</code> </td> <td> U+02248 </td> <td> <span class="glyph" title="">≈</span> </td> <tr id="entity-approxeq"><td> <code title="">approxeq;</code> </td> <td> U+0224A </td> <td> <span class="glyph" title="">≊</span> </td> <tr id="entity-Aring"><td> <code title="">Aring;</code> </td> <td> U+000C5 </td> <td> <span class="glyph" title="">Å</span> </td> <tr id="entity-aring"><td> <code title="">aring;</code> </td> <td> U+000E5 </d> <td> <span class="glyph" title="">å</span> </td> <tr id="entity-Ascr"><td> <code title="">Ascr;</code> </td> <td> U+1D49C </td> <td> <span class="glyph" title="">𝒜</span> </td> <tr id="entity-ascr"><td> <code title="">ascr;</code> </td> <td> U+1D4B6 </td> <td> <span class="glyph" title="">𝒶</span> </td> <tr id="entity-Assign"><td> <code title="">Assign;</code> </td> <td> U+02254 </td> <td> <span class="glyph" title="">≔</span> </td> <tr id="entity-ast"><td> <code title="">ast;</code> </td> <td> U+0002A </td> <td> <span class="glyph" title="">*</span> </td> <tr id="entity-asymp"><td> <code title="">asymp;</code> </td> <td> U+02248 </td> <td> <span class="glyph" title="">≈</span> </td> <tr id="entity-asympeq"><td> <code title="">asympeq;</code> </td> <td> U+0224D </td> <td> <span class="glyph" title="">≍</span> </td> <tr id="entity-Atilde"><td> <code title="">Atilde;</code> </td> <td> U+000C3 </td> <td> <span class="glyph" title="">Ã</span> </td> <tr id="entit-atilde"><td> <code title="">atilde;</code> </td> <td> U+000E3 </td> <td> <span class="glyph" title="">ã</span> </td> <tr id="entity-Auml"><td> <code title="">Auml;</code> </td> <td> U+000C4 </td> <td> <span class="glyph" title="">Ä</span> </td> <tr id="entity-auml"><td> <code title="">auml;</code> </td> <td> U+000E4 </td> <td> <span class="glyph" title="">ä</span> </td> <tr id="entity-awconint"><td> <code title="">awconint;</code> </td> <td> U+02233 </td> <td> <span class="glyph" title="">∳</span> </td> <tr id="entity-awint"><td> <code title="">awint;</code> </td> <td> U+02A11 </td> <td> <span class="glyph" title="">⨑</span> </td> <tr id="entity-backcong"><td> <code title="">backcong;</code> </td> <td> U+0224C </td> <td> <span class="glyph" title="">≌</span> </td> <tr id="entity-backepsilon"><td> <code title="">backepsilon;</code> </td> <td> U+003F6 </td> <td> <span class="glyph" title="">϶</span> </td> <tr id="entity-backprime"><td> <code title="">backprime;</code </td> <td> U+02035 </td> <td> <span class="glyph" title="">‵</span> </td> <tr id="entity-backsim"><td> <code title="">backsim;</code> </td> <td> U+0223D </td> <td> <span class="glyph" title="">∽</span> </td> <tr id="entity-backsimeq"><td> <code title="">backsimeq;</code> </td> <td> U+022CD </td> <td> <span class="glyph" title="">⋍</span> </td> <tr id="entity-Backslash"><td> <code title="">Backslash;</code> </td> <td> U+02216 </td> <td> <span class="glyph" title="">∖</span> </td> <tr id="entity-Barv"><td> <code title="">Barv;</code> </td> <td> U+02AE7 </td> <td> <span class="glyph" title="">⫧</span> </td> <tr id="entity-barvee"><td> <code title="">barvee;</code> </td> <td> U+022BD </td> <td> <span class="glyph" title="">⊽</span> </td> <tr id="entity-Barwed"><td> <code title="">Barwed;</code> </td> <td> U+02306 </td> <td> <span class="glyph" title="">⌆</span> </td> <tr id="entity-barwed"><td> <code title="">barwed;</code> </td> <td> U+02305 </td> <td> <span class="gyph" title="">⌅</span> </td> <tr id="entity-barwedge"><td> <code title="">barwedge;</code> </td> <td> U+02305 </td> <td> <span class="glyph" title="">⌅</span> </td> <tr id="entity-bbrk"><td> <code title="">bbrk;</code> </td> <td> U+023B5 </td> <td> <span class="glyph" title="">⎵</span> </td> <tr id="entity-bbrktbrk"><td> <code title="">bbrktbrk;</code> </td> <td> U+023B6 </td> <td> <span class="glyph" title="">⎶</span> </td> <tr id="entity-bcong"><td> <code title="">bcong;</code> </td> <td> U+0224C </td> <td> <span class="glyph" title="">≌</span> </td> <tr id="entity-Bcy"><td> <code title="">Bcy;</code> </td> <td> U+00411 </td> <td> <span class="glyph" title="">Б</span> </td> <tr id="entity-bcy"><td> <code title="">bcy;</code> </td> <td> U+00431 </td> <td> <span class="glyph" title="">б</span> </td> <tr id="entity-bdquo"><td> <code title="">bdquo;</code> </td> <td> U+0201E </td> <td> <span class="glyph" title="">„</span> </td> <tr id="entity-becaus"><td> <codetitle="">becaus;</code> </td> <td> U+02235 </td> <td> <span class="glyph" title="">∵</span> </td> <tr id="entity-Because"><td> <code title="">Because;</code> </td> <td> U+02235 </td> <td> <span class="glyph" title="">∵</span> </td> <tr id="entity-because"><td> <code title="">because;</code> </td> <td> U+02235 </td> <td> <span class="glyph" title="">∵</span> </td> <tr id="entity-bemptyv"><td> <code title="">bemptyv;</code> </td> <td> U+029B0 </td> <td> <span class="glyph" title="">⦰</span> </td> <tr id="entity-bepsi"><td> <code title="">bepsi;</code> </td> <td> U+003F6 </td> <td> <span class="glyph" title="">϶</span> </td> <tr id="entity-bernou"><td> <code title="">bernou;</code> </td> <td> U+0212C </td> <td> <span class="glyph" title="">ℬ</span> </td> <tr id="entity-Bernoullis"><td> <code title="">Bernoullis;</code> </td> <td> U+0212C </td> <td> <span class="glyph" title="">ℬ</span> </td> <tr id="entity-Beta"><td> <code title="">Beta;</code> </td> <td> U+00392 </td <td> <span class="glyph" title="">Β</span> </td> <tr id="entity-beta"><td> <code title="">beta;</code> </td> <td> U+003B2 </td> <td> <span class="glyph" title="">β</span> </td> <tr id="entity-beth"><td> <code title="">beth;</code> </td> <td> U+02136 </td> <td> <span class="glyph" title="">ℶ</span> </td> <tr id="entity-between"><td> <code title="">between;</code> </td> <td> U+0226C </td> <td> <span class="glyph" title="">≬</span> </td> <tr id="entity-Bfr"><td> <code title="">Bfr;</code> </td> <td> U+1D505 </td> <td> <span class="glyph" title="">𝔅</span> </td> <tr id="entity-bfr"><td> <code title="">bfr;</code> </td> <td> U+1D51F </td> <td> <span class="glyph" title="">𝔟</span> </td> <tr id="entity-bigcap"><td> <code title="">bigcap;</code> </td> <td> U+022C2 </td> <td> <span class="glyph" title="">⋂</span> </td> <tr id="entity-bigcirc"><td> <code title="">bigcirc;</code> </td> <td> U+025EF </td> <td> <span class="glyph" title="">◯</span> </td> <tr id="entitybigcup"><td> <code title="">bigcup;</code> </td> <td> U+022C3 </td> <td> <span class="glyph" title="">⋃</span> </td> <tr id="entity-bigodot"><td> <code title="">bigodot;</code> </td> <td> U+02A00 </td> <td> <span class="glyph" title="">⨀</span> </td> <tr id="entity-bigoplus"><td> <code title="">bigoplus;</code> </td> <td> U+02A01 </td> <td> <span class="glyph" title="">⨁</span> </td> <tr id="entity-bigotimes"><td> <code title="">bigotimes;</code> </td> <td> U+02A02 </td> <td> <span class="glyph" title="">⨂</span> </td> <tr id="entity-bigsqcup"><td> <code title="">bigsqcup;</code> </td> <td> U+02A06 </td> <td> <span class="glyph" title="">⨆</span> </td> <tr id="entity-bigstar"><td> <code title="">bigstar;</code> </td> <td> U+02605 </td> <td> <span class="glyph" title="">★</span> </td> <tr id="entity-bigtriangledown"><td> <code title="">bigtriangledown;</code> </td> <td> U+025BD </td> <td> <span class="glyph" title="">▽</span> </td> <tr id="entity-bigtriangleup"><d> <code title="">bigtriangleup;</code> </td> <td> U+025B3 </td> <td> <span class="glyph" title="">△</span> </td> <tr id="entity-biguplus"><td> <code title="">biguplus;</code> </td> <td> U+02A04 </td> <td> <span class="glyph" title="">⨄</span> </td> <tr id="entity-bigvee"><td> <code title="">bigvee;</code> </td> <td> U+022C1 </td> <td> <span class="glyph" title="">⋁</span> </td> <tr id="entity-bigwedge"><td> <code title="">bigwedge;</code> </td> <td> U+022C0 </td> <td> <span class="glyph" title="">⋀</span> </td> <tr id="entity-bkarow"><td> <code title="">bkarow;</code> </td> <td> U+0290D </td> <td> <span class="glyph" title="">⤍</span> </td> <tr id="entity-blacklozenge"><td> <code title="">blacklozenge;</code> </td> <td> U+029EB </td> <td> <span class="glyph" title="">⧫</span> </td> <tr id="entity-blacksquare"><td> <code title="">blacksquare;</code> </td> <td> U+025AA </td> <td> <span class="glyph" title="">▪</span> </td> <tr id="entity-blacktriangle"><td> <code itle="">blacktriangle;</code> </td> <td> U+025B4 </td> <td> <span class="glyph" title="">▴</span> </td> <tr id="entity-blacktriangledown"><td> <code title="">blacktriangledown;</code> </td> <td> U+025BE </td> <td> <span class="glyph" title="">▾</span> </td> <tr id="entity-blacktriangleleft"><td> <code title="">blacktriangleleft;</code> </td> <td> U+025C2 </td> <td> <span class="glyph" title="">◂</span> </td> <tr id="entity-blacktriangleright"><td> <code title="">blacktriangleright;</code> </td> <td> U+025B8 </td> <td> <span class="glyph" title="">▸</span> </td> <tr id="entity-blank"><td> <code title="">blank;</code> </td> <td> U+02423 </td> <td> <span class="glyph" title="">␣</span> </td> <tr id="entity-blk12"><td> <code title="">blk12;</code> </td> <td> U+02592 </td> <td> <span class="glyph" title="">▒</span> </td> <tr id="entity-blk14"><td> <code title="">blk14;</code> </td> <td> U+02591 </td> <td> <span class="glyph" title="">░</span> </td> <tr id="entity-blk34">td> <code title="">blk34;</code> </td> <td> U+02593 </td> <td> <span class="glyph" title="">▓</span> </td> <tr id="entity-block"><td> <code title="">block;</code> </td> <td> U+02588 </td> <td> <span class="glyph" title="">█</span> </td> <tr id="entity-bne"><td> <code title="">bne;</code> </td> <td> U+0003D U+020E5 </td> <td> <span class="glyph compound" title="">=⃥</span> </td> <tr id="entity-bnequiv"><td> <code title="">bnequiv;</code> </td> <td> U+02261 U+020E5 </td> <td> <span class="glyph compound" title="">≡⃥</span> </td> <tr id="entity-bNot"><td> <code title="">bNot;</code> </td> <td> U+02AED </td> <td> <span class="glyph" title="">⫭</span> </td> <tr id="entity-bnot"><td> <code title="">bnot;</code> </td> <td> U+02310 </td> <td> <span class="glyph" title="">⌐</span> </td> <tr id="entity-Bopf"><td> <code title="">Bopf;</code> </td> <td> U+1D539 </td> <td> <span class="glyph" title="">𝔹</span> </td> <tr id="entity-bopf"><td> <code title="">bopf;</code> /td> <td> U+1D553 </td> <td> <span class="glyph" title="">𝕓</span> </td> <tr id="entity-bot"><td> <code title="">bot;</code> </td> <td> U+022A5 </td> <td> <span class="glyph" title="">⊥</span> </td> <tr id="entity-bottom"><td> <code title="">bottom;</code> </td> <td> U+022A5 </td> <td> <span class="glyph" title="">⊥</span> </td> <tr id="entity-bowtie"><td> <code title="">bowtie;</code> </td> <td> U+022C8 </td> <td> <span class="glyph" title="">⋈</span> </td> <tr id="entity-boxbox"><td> <code title="">boxbox;</code> </td> <td> U+029C9 </td> <td> <span class="glyph" title="">⧉</span> </td> <tr id="entity-boxDL"><td> <code title="">boxDL;</code> </td> <td> U+02557 </td> <td> <span class="glyph" title="">╗</span> </td> <tr id="entity-boxDl"><td> <code title="">boxDl;</code> </td> <td> U+02556 </td> <td> <span class="glyph" title="">╖</span> </td> <tr id="entity-boxdL"><td> <code title="">boxdL;</code> </td> <td> U+02555 </td> <td> <span class="glyph" title="">╕</pan> </td> <tr id="entity-boxdl"><td> <code title="">boxdl;</code> </td> <td> U+02510 </td> <td> <span class="glyph" title="">┐</span> </td> <tr id="entity-boxDR"><td> <code title="">boxDR;</code> </td> <td> U+02554 </td> <td> <span class="glyph" title="">╔</span> </td> <tr id="entity-boxDr"><td> <code title="">boxDr;</code> </td> <td> U+02553 </td> <td> <span class="glyph" title="">╓</span> </td> <tr id="entity-boxdR"><td> <code title="">boxdR;</code> </td> <td> U+02552 </td> <td> <span class="glyph" title="">╒</span> </td> <tr id="entity-boxdr"><td> <code title="">boxdr;</code> </td> <td> U+0250C </td> <td> <span class="glyph" title="">┌</span> </td> <tr id="entity-boxH"><td> <code title="">boxH;</code> </td> <td> U+02550 </td> <td> <span class="glyph" title="">═</span> </td> <tr id="entity-boxh"><td> <code title="">boxh;</code> </td> <td> U+02500 </td> <td> <span class="glyph" title="">─</span> </td> <tr id="entity-boxHD"><td> <code title="">boxHD;</code> </td> <d> U+02566 </td> <td> <span class="glyph" title="">╦</span> </td> <tr id="entity-boxHd"><td> <code title="">boxHd;</code> </td> <td> U+02564 </td> <td> <span class="glyph" title="">╤</span> </td> <tr id="entity-boxhD"><td> <code title="">boxhD;</code> </td> <td> U+02565 </td> <td> <span class="glyph" title="">╥</span> </td> <tr id="entity-boxhd"><td> <code title="">boxhd;</code> </td> <td> U+0252C </td> <td> <span class="glyph" title="">┬</span> </td> <tr id="entity-boxHU"><td> <code title="">boxHU;</code> </td> <td> U+02569 </td> <td> <span class="glyph" title="">╩</span> </td> <tr id="entity-boxHu"><td> <code title="">boxHu;</code> </td> <td> U+02567 </td> <td> <span class="glyph" title="">╧</span> </td> <tr id="entity-boxhU"><td> <code title="">boxhU;</code> </td> <td> U+02568 </td> <td> <span class="glyph" title="">╨</span> </td> <tr id="entity-boxhu"><td> <code title="">boxhu;</code> </td> <td> U+02534 </td> <td> <span class="glyph" title="">┴</span> </td <tr id="entity-boxminus"><td> <code title="">boxminus;</code> </td> <td> U+0229F </td> <td> <span class="glyph" title="">⊟</span> </td> <tr id="entity-boxplus"><td> <code title="">boxplus;</code> </td> <td> U+0229E </td> <td> <span class="glyph" title="">⊞</span> </td> <tr id="entity-boxtimes"><td> <code title="">boxtimes;</code> </td> <td> U+022A0 </td> <td> <span class="glyph" title="">⊠</span> </td> <tr id="entity-boxUL"><td> <code title="">boxUL;</code> </td> <td> U+0255D </td> <td> <span class="glyph" title="">╝</span> </td> <tr id="entity-boxUl"><td> <code title="">boxUl;</code> </td> <td> U+0255C </td> <td> <span class="glyph" title="">╜</span> </td> <tr id="entity-boxuL"><td> <code title="">boxuL;</code> </td> <td> U+0255B </td> <td> <span class="glyph" title="">╛</span> </td> <tr id="entity-boxul"><td> <code title="">boxul;</code> </td> <td> U+02518 </td> <td> <span class="glyph" title="">┘</span> </td> <tr id="entity-boxUR"><td> <code title="">boxUR;</cod> </td> <td> U+0255A </td> <td> <span class="glyph" title="">╚</span> </td> <tr id="entity-boxUr"><td> <code title="">boxUr;</code> </td> <td> U+02559 </td> <td> <span class="glyph" title="">╙</span> </td> <tr id="entity-boxuR"><td> <code title="">boxuR;</code> </td> <td> U+02558 </td> <td> <span class="glyph" title="">╘</span> </td> <tr id="entity-boxur"><td> <code title="">boxur;</code> </td> <td> U+02514 </td> <td> <span class="glyph" title="">└</span> </td> <tr id="entity-boxV"><td> <code title="">boxV;</code> </td> <td> U+02551 </td> <td> <span class="glyph" title="">║</span> </td> <tr id="entity-boxv"><td> <code title="">boxv;</code> </td> <td> U+02502 </td> <td> <span class="glyph" title="">│</span> </td> <tr id="entity-boxVH"><td> <code title="">boxVH;</code> </td> <td> U+0256C </td> <td> <span class="glyph" title="">╬</span> </td> <tr id="entity-boxVh"><td> <code title="">boxVh;</code> </td> <td> U+0256B </td> <td> <span class="glyph" title="">╫</span </td> <tr id="entity-boxvH"><td> <code title="">boxvH;</code> </td> <td> U+0256A </td> <td> <span class="glyph" title="">╪</span> </td> <tr id="entity-boxvh"><td> <code title="">boxvh;</code> </td> <td> U+0253C </td> <td> <span class="glyph" title="">┼</span> </td> <tr id="entity-boxVL"><td> <code title="">boxVL;</code> </td> <td> U+02563 </td> <td> <span class="glyph" title="">╣</span> </td> <tr id="entity-boxVl"><td> <code title="">boxVl;</code> </td> <td> U+02562 </td> <td> <span class="glyph" title="">╢</span> </td> <tr id="entity-boxvL"><td> <code title="">boxvL;</code> </td> <td> U+02561 </td> <td> <span class="glyph" title="">╡</span> </td> <tr id="entity-boxvl"><td> <code title="">boxvl;</code> </td> <td> U+02524 </td> <td> <span class="glyph" title="">┤</span> </td> <tr id="entity-boxVR"><td> <code title="">boxVR;</code> </td> <td> U+02560 </td> <td> <span class="glyph" title="">╠</span> </td> <tr id="entity-boxVr"><td> <code title="">boxVr;</code> </td> <d> U+0255F </td> <td> <span class="glyph" title="">╟</span> </td> <tr id="entity-boxvR"><td> <code title="">boxvR;</code> </td> <td> U+0255E </td> <td> <span class="glyph" title="">╞</span> </td> <tr id="entity-boxvr"><td> <code title="">boxvr;</code> </td> <td> U+0251C </td> <td> <span class="glyph" title="">├</span> </td> <tr id="entity-bprime"><td> <code title="">bprime;</code> </td> <td> U+02035 </td> <td> <span class="glyph" title="">‵</span> </td> <tr id="entity-Breve"><td> <code title="">Breve;</code> </td> <td> U+002D8 </td> <td> <span class="glyph" title="">˘</span> </td> <tr id="entity-breve"><td> <code title="">breve;</code> </td> <td> U+002D8 </td> <td> <span class="glyph" title="">˘</span> </td> <tr id="entity-brvbar"><td> <code title="">brvbar;</code> </td> <td> U+000A6 </td> <td> <span class="glyph" title="">¦</span> </td> <tr id="entity-Bscr"><td> <code title="">Bscr;</code> </td> <td> U+0212C </td> <td> <span class="glyph" title="">ℬ</span> </t> <tr id="entity-bscr"><td> <code title="">bscr;</code> </td> <td> U+1D4B7 </td> <td> <span class="glyph" title="">𝒷</span> </td> <tr id="entity-bsemi"><td> <code title="">bsemi;</code> </td> <td> U+0204F </td> <td> <span class="glyph" title="">⁏</span> </td> <tr id="entity-bsim"><td> <code title="">bsim;</code> </td> <td> U+0223D </td> <td> <span class="glyph" title="">∽</span> </td> <tr id="entity-bsime"><td> <code title="">bsime;</code> </td> <td> U+022CD </td> <td> <span class="glyph" title="">⋍</span> </td> <tr id="entity-bsol"><td> <code title="">bsol;</code> </td> <td> U+0005C </td> <td> <span class="glyph" title="">\</span> </td> <tr id="entity-bsolb"><td> <code title="">bsolb;</code> </td> <td> U+029C5 </td> <td> <span class="glyph" title="">⧅</span> </td> <tr id="entity-bsolhsub"><td> <code title="">bsolhsub;</code> </td> <td> U+027C8 </td> <td> <span class="glyph" title="">⟈</span> </td> <tr id="entity-bull"><td> <code title="">bull;</code> </td> <td> U+0202 </td> <td> <span class="glyph" title="">•</span> </td> <tr id="entity-bullet"><td> <code title="">bullet;</code> </td> <td> U+02022 </td> <td> <span class="glyph" title="">•</span> </td> <tr id="entity-bump"><td> <code title="">bump;</code> </td> <td> U+0224E </td> <td> <span class="glyph" title="">≎</span> </td> <tr id="entity-bumpE"><td> <code title="">bumpE;</code> </td> <td> U+02AAE </td> <td> <span class="glyph" title="">⪮</span> </td> <tr id="entity-bumpe"><td> <code title="">bumpe;</code> </td> <td> U+0224F </td> <td> <span class="glyph" title="">≏</span> </td> <tr id="entity-Bumpeq"><td> <code title="">Bumpeq;</code> </td> <td> U+0224E </td> <td> <span class="glyph" title="">≎</span> </td> <tr id="entity-bumpeq"><td> <code title="">bumpeq;</code> </td> <td> U+0224F </td> <td> <span class="glyph" title="">≏</span> </td> <tr id="entity-Cacute"><td> <code title="">Cacute;</code> </td> <td> U+00106 </td> <td> <span class="glyph" title="">Ć</span> </td> <trid="entity-cacute"><td> <code title="">cacute;</code> </td> <td> U+00107 </td> <td> <span class="glyph" title="">ć</span> </td> <tr id="entity-Cap"><td> <code title="">Cap;</code> </td> <td> U+022D2 </td> <td> <span class="glyph" title="">⋒</span> </td> <tr id="entity-cap"><td> <code title="">cap;</code> </td> <td> U+02229 </td> <td> <span class="glyph" title="">∩</span> </td> <tr id="entity-capand"><td> <code title="">capand;</code> </td> <td> U+02A44 </td> <td> <span class="glyph" title="">⩄</span> </td> <tr id="entity-capbrcup"><td> <code title="">capbrcup;</code> </td> <td> U+02A49 </td> <td> <span class="glyph" title="">⩉</span> </td> <tr id="entity-capcap"><td> <code title="">capcap;</code> </td> <td> U+02A4B </td> <td> <span class="glyph" title="">⩋</span> </td> <tr id="entity-capcup"><td> <code title="">capcup;</code> </td> <td> U+02A47 </td> <td> <span class="glyph" title="">⩇</span> </td> <tr id="entity-capdot"><td> <code title="">capdot;</code> </td> <td U+02A40 </td> <td> <span class="glyph" title="">⩀</span> </td> <tr id="entity-CapitalDifferentialD"><td> <code title="">CapitalDifferentialD;</code> </td> <td> U+02145 </td> <td> <span class="glyph" title="">ⅅ</span> </td> <tr id="entity-caps"><td> <code title="">caps;</code> </td> <td> U+02229 U+0FE00 </td> <td> <span class="glyph compound" title="">∩︀</span> </td> <tr id="entity-caret"><td> <code title="">caret;</code> </td> <td> U+02041 </td> <td> <span class="glyph" title="">⁁</span> </td> <tr id="entity-caron"><td> <code title="">caron;</code> </td> <td> U+002C7 </td> <td> <span class="glyph" title="">ˇ</span> </td> <tr id="entity-Cayleys"><td> <code title="">Cayleys;</code> </td> <td> U+0212D </td> <td> <span class="glyph" title="">ℭ</span> </td> <tr id="entity-ccaps"><td> <code title="">ccaps;</code> </td> <td> U+02A4D </td> <td> <span class="glyph" title="">⩍</span> </td> <tr id="entity-Ccaron"><td> <code title="">Ccaron;</code> </td> <td> U+0010C </t> <td> <span class="glyph" title="">Č</span> </td> <tr id="entity-ccaron"><td> <code title="">ccaron;</code> </td> <td> U+0010D </td> <td> <span class="glyph" title="">č</span> </td> <tr id="entity-Ccedil"><td> <code title="">Ccedil;</code> </td> <td> U+000C7 </td> <td> <span class="glyph" title="">Ç</span> </td> <tr id="entity-ccedil"><td> <code title="">ccedil;</code> </td> <td> U+000E7 </td> <td> <span class="glyph" title="">ç</span> </td> <tr id="entity-Ccirc"><td> <code title="">Ccirc;</code> </td> <td> U+00108 </td> <td> <span class="glyph" title="">Ĉ</span> </td> <tr id="entity-ccirc"><td> <code title="">ccirc;</code> </td> <td> U+00109 </td> <td> <span class="glyph" title="">ĉ</span> </td> <tr id="entity-Cconint"><td> <code title="">Cconint;</code> </td> <td> U+02230 </td> <td> <span class="glyph" title="">∰</span> </td> <tr id="entity-ccups"><td> <code title="">ccups;</code> </td> <td> U+02A4C </td> <td> <span class="glyph" title="">⩌</span> </td> <tr d="entity-ccupssm"><td> <code title="">ccupssm;</code> </td> <td> U+02A50 </td> <td> <span class="glyph" title="">⩐</span> </td> <tr id="entity-Cdot"><td> <code title="">Cdot;</code> </td> <td> U+0010A </td> <td> <span class="glyph" title="">Ċ</span> </td> <tr id="entity-cdot"><td> <code title="">cdot;</code> </td> <td> U+0010B </td> <td> <span class="glyph" title="">ċ</span> </td> <tr id="entity-cedil"><td> <code title="">cedil;</code> </td> <td> U+000B8 </td> <td> <span class="glyph" title="">¸</span> </td> <tr id="entity-Cedilla"><td> <code title="">Cedilla;</code> </td> <td> U+000B8 </td> <td> <span class="glyph" title="">¸</span> </td> <tr id="entity-cemptyv"><td> <code title="">cemptyv;</code> </td> <td> U+029B2 </td> <td> <span class="glyph" title="">⦲</span> </td> <tr id="entity-cent"><td> <code title="">cent;</code> </td> <td> U+000A2 </td> <td> <span class="glyph" title="">¢</span> </td> <tr id="entity-CenterDot"><td> <code title="">CenterDot;</code> </td> td> U+000B7 </td> <td> <span class="glyph" title="">·</span> </td> <tr id="entity-centerdot"><td> <code title="">centerdot;</code> </td> <td> U+000B7 </td> <td> <span class="glyph" title="">·</span> </td> <tr id="entity-Cfr"><td> <code title="">Cfr;</code> </td> <td> U+0212D </td> <td> <span class="glyph" title="">ℭ</span> </td> <tr id="entity-cfr"><td> <code title="">cfr;</code> </td> <td> U+1D520 </td> <td> <span class="glyph" title="">𝔠</span> </td> <tr id="entity-CHcy"><td> <code title="">CHcy;</code> </td> <td> U+00427 </td> <td> <span class="glyph" title="">Ч</span> </td> <tr id="entity-chcy"><td> <code title="">chcy;</code> </td> <td> U+00447 </td> <td> <span class="glyph" title="">ч</span> </td> <tr id="entity-check"><td> <code title="">check;</code> </td> <td> U+02713 </td> <td> <span class="glyph" title="">✓</span> </td> <tr id="entity-checkmark"><td> <code title="">checkmark;</code> </td> <td> U+02713 </td> <td> <span class="glyph" title="">✓<span> </td> <tr id="entity-Chi"><td> <code title="">Chi;</code> </td> <td> U+003A7 </td> <td> <span class="glyph" title="">Χ</span> </td> <tr id="entity-chi"><td> <code title="">chi;</code> </td> <td> U+003C7 </td> <td> <span class="glyph" title="">χ</span> </td> <tr id="entity-cir"><td> <code title="">cir;</code> </td> <td> U+025CB </td> <td> <span class="glyph" title="">○</span> </td> <tr id="entity-circ"><td> <code title="">circ;</code> </td> <td> U+002C6 </td> <td> <span class="glyph" title="">ˆ</span> </td> <tr id="entity-circeq"><td> <code title="">circeq;</code> </td> <td> U+02257 </td> <td> <span class="glyph" title="">≗</span> </td> <tr id="entity-circlearrowleft"><td> <code title="">circlearrowleft;</code> </td> <td> U+021BA </td> <td> <span class="glyph" title="">↺</span> </td> <tr id="entity-circlearrowright"><td> <code title="">circlearrowright;</code> </td> <td> U+021BB </td> <td> <span class="glyph" title="">↻</span> </td> <tr id="entity-circledast"><td> <ode title="">circledast;</code> </td> <td> U+0229B </td> <td> <span class="glyph" title="">⊛</span> </td> <tr id="entity-circledcirc"><td> <code title="">circledcirc;</code> </td> <td> U+0229A </td> <td> <span class="glyph" title="">⊚</span> </td> <tr id="entity-circleddash"><td> <code title="">circleddash;</code> </td> <td> U+0229D </td> <td> <span class="glyph" title="">⊝</span> </td> <tr id="entity-CircleDot"><td> <code title="">CircleDot;</code> </td> <td> U+02299 </td> <td> <span class="glyph" title="">⊙</span> </td> <tr id="entity-circledR"><td> <code title="">circledR;</code> </td> <td> U+000AE </td> <td> <span class="glyph" title="">®</span> </td> <tr id="entity-circledS"><td> <code title="">circledS;</code> </td> <td> U+024C8 </td> <td> <span class="glyph" title="">Ⓢ</span> </td> <tr id="entity-CircleMinus"><td> <code title="">CircleMinus;</code> </td> <td> U+02296 </td> <td> <span class="glyph" title="">⊖</span> </td> <tr id="entity-CirclePlus"><td> <code tile="">CirclePlus;</code> </td> <td> U+02295 </td> <td> <span class="glyph" title="">⊕</span> </td> <tr id="entity-CircleTimes"><td> <code title="">CircleTimes;</code> </td> <td> U+02297 </td> <td> <span class="glyph" title="">⊗</span> </td> <tr id="entity-cirE"><td> <code title="">cirE;</code> </td> <td> U+029C3 </td> <td> <span class="glyph" title="">⧃</span> </td> <tr id="entity-cire"><td> <code title="">cire;</code> </td> <td> U+02257 </td> <td> <span class="glyph" title="">≗</span> </td> <tr id="entity-cirfnint"><td> <code title="">cirfnint;</code> </td> <td> U+02A10 </td> <td> <span class="glyph" title="">⨐</span> </td> <tr id="entity-cirmid"><td> <code title="">cirmid;</code> </td> <td> U+02AEF </td> <td> <span class="glyph" title="">⫯</span> </td> <tr id="entity-cirscir"><td> <code title="">cirscir;</code> </td> <td> U+029C2 </td> <td> <span class="glyph" title="">⧂</span> </td> <tr id="entity-ClockwiseContourIntegral"><td> <code title="">ClockwiseContouIntegral;</code> </td> <td> U+02232 </td> <td> <span class="glyph" title="">∲</span> </td> <tr id="entity-CloseCurlyDoubleQuote"><td> <code title="">CloseCurlyDoubleQuote;</code> </td> <td> U+0201D </td> <td> <span class="glyph" title="">”</span> </td> <tr id="entity-CloseCurlyQuote"><td> <code title="">CloseCurlyQuote;</code> </td> <td> U+02019 </td> <td> <span class="glyph" title="">’</span> </td> <tr id="entity-clubs"><td> <code title="">clubs;</code> </td> <td> U+02663 </td> <td> <span class="glyph" title="">♣</span> </td> <tr id="entity-clubsuit"><td> <code title="">clubsuit;</code> </td> <td> U+02663 </td> <td> <span class="glyph" title="">♣</span> </td> <tr id="entity-Colon"><td> <code title="">Colon;</code> </td> <td> U+02237 </td> <td> <span class="glyph" title="">∷</span> </td> <tr id="entity-colon"><td> <code title="">colon;</code> </td> <td> U+0003A </td> <td> <span class="glyph" title="">:</span> </td> <tr id="entity-Colone"><td> <code title="">Colone;</code></td> <td> U+02A74 </td> <td> <span class="glyph" title="">⩴</span> </td> <tr id="entity-colone"><td> <code title="">colone;</code> </td> <td> U+02254 </td> <td> <span class="glyph" title="">≔</span> </td> <tr id="entity-coloneq"><td> <code title="">coloneq;</code> </td> <td> U+02254 </td> <td> <span class="glyph" title="">≔</span> </td> <tr id="entity-comma"><td> <code title="">comma;</code> </td> <td> U+0002C </td> <td> <span class="glyph" title="">,</span> </td> <tr id="entity-commat"><td> <code title="">commat;</code> </td> <td> U+00040 </td> <td> <span class="glyph" title="">@</span> </td> <tr id="entity-comp"><td> <code title="">comp;</code> </td> <td> U+02201 </td> <td> <span class="glyph" title="">∁</span> </td> <tr id="entity-compfn"><td> <code title="">compfn;</code> </td> <td> U+02218 </td> <td> <span class="glyph" title="">∘</span> </td> <tr id="entity-complement"><td> <code title="">complement;</code> </td> <td> U+02201 </td> <td> <span class="glyph" title="">ͫ</span> </td> <tr id="entity-complexes"><td> <code title="">complexes;</code> </td> <td> U+02102 </td> <td> <span class="glyph" title="">ℂ</span> </td> <tr id="entity-cong"><td> <code title="">cong;</code> </td> <td> U+02245 </td> <td> <span class="glyph" title="">≅</span> </td> <tr id="entity-congdot"><td> <code title="">congdot;</code> </td> <td> U+02A6D </td> <td> <span class="glyph" title="">⩭</span> </td> <tr id="entity-Congruent"><td> <code title="">Congruent;</code> </td> <td> U+02261 </td> <td> <span class="glyph" title="">≡</span> </td> <tr id="entity-Conint"><td> <code title="">Conint;</code> </td> <td> U+0222F </td> <td> <span class="glyph" title="">∯</span> </td> <tr id="entity-conint"><td> <code title="">conint;</code> </td> <td> U+0222E </td> <td> <span class="glyph" title="">∮</span> </td> <tr id="entity-ContourIntegral"><td> <code title="">ContourIntegral;</code> </td> <td> U+0222E </td> <td> <span class="glyph" title="">∮</span> </td> <tr id="entiy-Copf"><td> <code title="">Copf;</code> </td> <td> U+02102 </td> <td> <span class="glyph" title="">ℂ</span> </td> <tr id="entity-copf"><td> <code title="">copf;</code> </td> <td> U+1D554 </td> <td> <span class="glyph" title="">𝕔</span> </td> <tr id="entity-coprod"><td> <code title="">coprod;</code> </td> <td> U+02210 </td> <td> <span class="glyph" title="">∐</span> </td> <tr id="entity-Coproduct"><td> <code title="">Coproduct;</code> </td> <td> U+02210 </td> <td> <span class="glyph" title="">∐</span> </td> <tr id="entity-COPY"><td> <code title="">COPY;</code> </td> <td> U+000A9 </td> <td> <span class="glyph" title="">©</span> </td> <tr id="entity-copy"><td> <code title="">copy;</code> </td> <td> U+000A9 </td> <td> <span class="glyph" title="">©</span> </td> <tr id="entity-copysr"><td> <code title="">copysr;</code> </td> <td> U+02117 </td> <td> <span class="glyph" title="">℗</span> </td> <tr id="entity-CounterClockwiseContourIntegral"><td> <code title="">CounterClocwiseContourIntegral;</code> </td> <td> U+02233 </td> <td> <span class="glyph" title="">∳</span> </td> <tr id="entity-crarr"><td> <code title="">crarr;</code> </td> <td> U+021B5 </td> <td> <span class="glyph" title="">↵</span> </td> <tr id="entity-Cross"><td> <code title="">Cross;</code> </td> <td> U+02A2F </td> <td> <span class="glyph" title="">⨯</span> </td> <tr id="entity-cross"><td> <code title="">cross;</code> </td> <td> U+02717 </td> <td> <span class="glyph" title="">✗</span> </td> <tr id="entity-Cscr"><td> <code title="">Cscr;</code> </td> <td> U+1D49E </td> <td> <span class="glyph" title="">𝒞</span> </td> <tr id="entity-cscr"><td> <code title="">cscr;</code> </td> <td> U+1D4B8 </td> <td> <span class="glyph" title="">𝒸</span> </td> <tr id="entity-csub"><td> <code title="">csub;</code> </td> <td> U+02ACF </td> <td> <span class="glyph" title="">⫏</span> </td> <tr id="entity-csube"><td> <code title="">csube;</code> </td> <td> U+02AD1 </td> <td> <span class"glyph" title="">⫑</span> </td> <tr id="entity-csup"><td> <code title="">csup;</code> </td> <td> U+02AD0 </td> <td> <span class="glyph" title="">⫐</span> </td> <tr id="entity-csupe"><td> <code title="">csupe;</code> </td> <td> U+02AD2 </td> <td> <span class="glyph" title="">⫒</span> </td> <tr id="entity-ctdot"><td> <code title="">ctdot;</code> </td> <td> U+022EF </td> <td> <span class="glyph" title="">⋯</span> </td> <tr id="entity-cudarrl"><td> <code title="">cudarrl;</code> </td> <td> U+02938 </td> <td> <span class="glyph" title="">⤸</span> </td> <tr id="entity-cudarrr"><td> <code title="">cudarrr;</code> </td> <td> U+02935 </td> <td> <span class="glyph" title="">⤵</span> </td> <tr id="entity-cuepr"><td> <code title="">cuepr;</code> </td> <td> U+022DE </td> <td> <span class="glyph" title="">⋞</span> </td> <tr id="entity-cuesc"><td> <code title="">cuesc;</code> </td> <td> U+022DF </td> <td> <span class="glyph" title="">⋟</span> </td> <tr id="entity-cularr><td> <code title="">cularr;</code> </td> <td> U+021B6 </td> <td> <span class="glyph" title="">↶</span> </td> <tr id="entity-cularrp"><td> <code title="">cularrp;</code> </td> <td> U+0293D </td> <td> <span class="glyph" title="">⤽</span> </td> <tr id="entity-Cup"><td> <code title="">Cup;</code> </td> <td> U+022D3 </td> <td> <span class="glyph" title="">⋓</span> </td> <tr id="entity-cup"><td> <code title="">cup;</code> </td> <td> U+0222A </td> <td> <span class="glyph" title="">∪</span> </td> <tr id="entity-cupbrcap"><td> <code title="">cupbrcap;</code> </td> <td> U+02A48 </td> <td> <span class="glyph" title="">⩈</span> </td> <tr id="entity-CupCap"><td> <code title="">CupCap;</code> </td> <td> U+0224D </td> <td> <span class="glyph" title="">≍</span> </td> <tr id="entity-cupcap"><td> <code title="">cupcap;</code> </td> <td> U+02A46 </td> <td> <span class="glyph" title="">⩆</span> </td> <tr id="entity-cupcup"><td> <code title="">cupcup;</code> </td> <td> U+02A4A </td> td> <span class="glyph" title="">⩊</span> </td> <tr id="entity-cupdot"><td> <code title="">cupdot;</code> </td> <td> U+0228D </td> <td> <span class="glyph" title="">⊍</span> </td> <tr id="entity-cupor"><td> <code title="">cupor;</code> </td> <td> U+02A45 </td> <td> <span class="glyph" title="">⩅</span> </td> <tr id="entity-cups"><td> <code title="">cups;</code> </td> <td> U+0222A U+0FE00 </td> <td> <span class="glyph compound" title="">∪︀</span> </td> <tr id="entity-curarr"><td> <code title="">curarr;</code> </td> <td> U+021B7 </td> <td> <span class="glyph" title="">↷</span> </td> <tr id="entity-curarrm"><td> <code title="">curarrm;</code> </td> <td> U+0293C </td> <td> <span class="glyph" title="">⤼</span> </td> <tr id="entity-curlyeqprec"><td> <code title="">curlyeqprec;</code> </td> <td> U+022DE </td> <td> <span class="glyph" title="">⋞</span> </td> <tr id="entity-curlyeqsucc"><td> <code title="">curlyeqsucc;</code> </td> <td> U+022DF </td> <td> <span clas="glyph" title="">⋟</span> </td> <tr id="entity-curlyvee"><td> <code title="">curlyvee;</code> </td> <td> U+022CE </td> <td> <span class="glyph" title="">⋎</span> </td> <tr id="entity-curlywedge"><td> <code title="">curlywedge;</code> </td> <td> U+022CF </td> <td> <span class="glyph" title="">⋏</span> </td> <tr id="entity-curren"><td> <code title="">curren;</code> </td> <td> U+000A4 </td> <td> <span class="glyph" title="">¤</span> </td> <tr id="entity-curvearrowleft"><td> <code title="">curvearrowleft;</code> </td> <td> U+021B6 </td> <td> <span class="glyph" title="">↶</span> </td> <tr id="entity-curvearrowright"><td> <code title="">curvearrowright;</code> </td> <td> U+021B7 </td> <td> <span class="glyph" title="">↷</span> </td> <tr id="entity-cuvee"><td> <code title="">cuvee;</code> </td> <td> U+022CE </td> <td> <span class="glyph" title="">⋎</span> </td> <tr id="entity-cuwed"><td> <code title="">cuwed;</code> </td> <td> U+022CF </td> <td> <span class="glyph" titl="">⋏</span> </td> <tr id="entity-cwconint"><td> <code title="">cwconint;</code> </td> <td> U+02232 </td> <td> <span class="glyph" title="">∲</span> </td> <tr id="entity-cwint"><td> <code title="">cwint;</code> </td> <td> U+02231 </td> <td> <span class="glyph" title="">∱</span> </td> <tr id="entity-cylcty"><td> <code title="">cylcty;</code> </td> <td> U+0232D </td> <td> <span class="glyph" title="">⌭</span> </td> <tr id="entity-Dagger"><td> <code title="">Dagger;</code> </td> <td> U+02021 </td> <td> <span class="glyph" title="">‡</span> </td> <tr id="entity-dagger"><td> <code title="">dagger;</code> </td> <td> U+02020 </td> <td> <span class="glyph" title="">†</span> </td> <tr id="entity-daleth"><td> <code title="">daleth;</code> </td> <td> U+02138 </td> <td> <span class="glyph" title="">ℸ</span> </td> <tr id="entity-Darr"><td> <code title="">Darr;</code> </td> <td> U+021A1 </td> <td> <span class="glyph" title="">↡</span> </td> <tr id="entity-dArr"><td> <codetitle="">dArr;</code> </td> <td> U+021D3 </td> <td> <span class="glyph" title="">⇓</span> </td> <tr id="entity-darr"><td> <code title="">darr;</code> </td> <td> U+02193 </td> <td> <span class="glyph" title="">↓</span> </td> <tr id="entity-dash"><td> <code title="">dash;</code> </td> <td> U+02010 </td> <td> <span class="glyph" title="">‐</span> </td> <tr id="entity-Dashv"><td> <code title="">Dashv;</code> </td> <td> U+02AE4 </td> <td> <span class="glyph" title="">⫤</span> </td> <tr id="entity-dashv"><td> <code title="">dashv;</code> </td> <td> U+022A3 </td> <td> <span class="glyph" title="">⊣</span> </td> <tr id="entity-dbkarow"><td> <code title="">dbkarow;</code> </td> <td> U+0290F </td> <td> <span class="glyph" title="">⤏</span> </td> <tr id="entity-dblac"><td> <code title="">dblac;</code> </td> <td> U+002DD </td> <td> <span class="glyph" title="">˝</span> </td> <tr id="entity-Dcaron"><td> <code title="">Dcaron;</code> </td> <td> U+0010E </td> <td> <span class="glyp" title="">Ď</span> </td> <tr id="entity-dcaron"><td> <code title="">dcaron;</code> </td> <td> U+0010F </td> <td> <span class="glyph" title="">ď</span> </td> <tr id="entity-Dcy"><td> <code title="">Dcy;</code> </td> <td> U+00414 </td> <td> <span class="glyph" title="">Д</span> </td> <tr id="entity-dcy"><td> <code title="">dcy;</code> </td> <td> U+00434 </td> <td> <span class="glyph" title="">д</span> </td> <tr id="entity-DD"><td> <code title="">DD;</code> </td> <td> U+02145 </td> <td> <span class="glyph" title="">ⅅ</span> </td> <tr id="entity-dd"><td> <code title="">dd;</code> </td> <td> U+02146 </td> <td> <span class="glyph" title="">ⅆ</span> </td> <tr id="entity-ddagger"><td> <code title="">ddagger;</code> </td> <td> U+02021 </td> <td> <span class="glyph" title="">‡</span> </td> <tr id="entity-ddarr"><td> <code title="">ddarr;</code> </td> <td> U+021CA </td> <td> <span class="glyph" title="">⇊</span> </td> <tr id="entity-DDotrahd"><td> <code title="">DDotrahd</code> </td> <td> U+02911 </td> <td> <span class="glyph" title="">⤑</span> </td> <tr id="entity-ddotseq"><td> <code title="">ddotseq;</code> </td> <td> U+02A77 </td> <td> <span class="glyph" title="">⩷</span> </td> <tr id="entity-deg"><td> <code title="">deg;</code> </td> <td> U+000B0 </td> <td> <span class="glyph" title="">°</span> </td> <tr id="entity-Del"><td> <code title="">Del;</code> </td> <td> U+02207 </td> <td> <span class="glyph" title="">∇</span> </td> <tr id="entity-Delta"><td> <code title="">Delta;</code> </td> <td> U+00394 </td> <td> <span class="glyph" title="">Δ</span> </td> <tr id="entity-delta"><td> <code title="">delta;</code> </td> <td> U+003B4 </td> <td> <span class="glyph" title="">δ</span> </td> <tr id="entity-demptyv"><td> <code title="">demptyv;</code> </td> <td> U+029B1 </td> <td> <span class="glyph" title="">⦱</span> </td> <tr id="entity-dfisht"><td> <code title="">dfisht;</code> </td> <td> U+0297F </td> <td> <span class="glyph" title="">#10623;</span> </td> <tr id="entity-Dfr"><td> <code title="">Dfr;</code> </td> <td> U+1D507 </td> <td> <span class="glyph" title="">𝔇</span> </td> <tr id="entity-dfr"><td> <code title="">dfr;</code> </td> <td> U+1D521 </td> <td> <span class="glyph" title="">𝔡</span> </td> <tr id="entity-dHar"><td> <code title="">dHar;</code> </td> <td> U+02965 </td> <td> <span class="glyph" title="">⥥</span> </td> <tr id="entity-dharl"><td> <code title="">dharl;</code> </td> <td> U+021C3 </td> <td> <span class="glyph" title="">⇃</span> </td> <tr id="entity-dharr"><td> <code title="">dharr;</code> </td> <td> U+021C2 </td> <td> <span class="glyph" title="">⇂</span> </td> <tr id="entity-DiacriticalAcute"><td> <code title="">DiacriticalAcute;</code> </td> <td> U+000B4 </td> <td> <span class="glyph" title="">´</span> </td> <tr id="entity-DiacriticalDot"><td> <code title="">DiacriticalDot;</code> </td> <td> U+002D9 </td> <td> <span class="glyph" title="">˙</span> </td> <tr id="entity-iacriticalDoubleAcute"><td> <code title="">DiacriticalDoubleAcute;</code> </td> <td> U+002DD </td> <td> <span class="glyph" title="">˝</span> </td> <tr id="entity-DiacriticalGrave"><td> <code title="">DiacriticalGrave;</code> </td> <td> U+00060 </td> <td> <span class="glyph" title="">`</span> </td> <tr id="entity-DiacriticalTilde"><td> <code title="">DiacriticalTilde;</code> </td> <td> U+002DC </td> <td> <span class="glyph" title="">˜</span> </td> <tr id="entity-diam"><td> <code title="">diam;</code> </td> <td> U+022C4 </td> <td> <span class="glyph" title="">⋄</span> </td> <tr id="entity-Diamond"><td> <code title="">Diamond;</code> </td> <td> U+022C4 </td> <td> <span class="glyph" title="">⋄</span> </td> <tr id="entity-diamond"><td> <code title="">diamond;</code> </td> <td> U+022C4 </td> <td> <span class="glyph" title="">⋄</span> </td> <tr id="entity-diamondsuit"><td> <code title="">diamondsuit;</code> </td> <td> U+02666 </td> <td> <span class="glyph" title="">♦</span> </t> <tr id="entity-diams"><td> <code title="">diams;</code> </td> <td> U+02666 </td> <td> <span class="glyph" title="">♦</span> </td> <tr id="entity-die"><td> <code title="">die;</code> </td> <td> U+000A8 </td> <td> <span class="glyph" title="">¨</span> </td> <tr id="entity-DifferentialD"><td> <code title="">DifferentialD;</code> </td> <td> U+02146 </td> <td> <span class="glyph" title="">ⅆ</span> </td> <tr id="entity-digamma"><td> <code title="">digamma;</code> </td> <td> U+003DD </td> <td> <span class="glyph" title="">ϝ</span> </td> <tr id="entity-disin"><td> <code title="">disin;</code> </td> <td> U+022F2 </td> <td> <span class="glyph" title="">⋲</span> </td> <tr id="entity-div"><td> <code title="">div;</code> </td> <td> U+000F7 </td> <td> <span class="glyph" title="">÷</span> </td> <tr id="entity-divide"><td> <code title="">divide;</code> </td> <td> U+000F7 </td> <td> <span class="glyph" title="">÷</span> </td> <tr id="entity-divideontimes"><td> <code title="">dividontimes;</code> </td> <td> U+022C7 </td> <td> <span class="glyph" title="">⋇</span> </td> <tr id="entity-divonx"><td> <code title="">divonx;</code> </td> <td> U+022C7 </td> <td> <span class="glyph" title="">⋇</span> </td> <tr id="entity-DJcy"><td> <code title="">DJcy;</code> </td> <td> U+00402 </td> <td> <span class="glyph" title="">Ђ</span> </td> <tr id="entity-djcy"><td> <code title="">djcy;</code> </td> <td> U+00452 </td> <td> <span class="glyph" title="">ђ</span> </td> <tr id="entity-dlcorn"><td> <code title="">dlcorn;</code> </td> <td> U+0231E </td> <td> <span class="glyph" title="">⌞</span> </td> <tr id="entity-dlcrop"><td> <code title="">dlcrop;</code> </td> <td> U+0230D </td> <td> <span class="glyph" title="">⌍</span> </td> <tr id="entity-dollar"><td> <code title="">dollar;</code> </td> <td> U+00024 </td> <td> <span class="glyph" title="">$</span> </td> <tr id="entity-Dopf"><td> <code title="">Dopf;</code> </td> <td> U+1D53B </td> <td> <span class="glyph" title=""𝔻</span> </td> <tr id="entity-dopf"><td> <code title="">dopf;</code> </td> <td> U+1D555 </td> <td> <span class="glyph" title="">𝕕</span> </td> <tr id="entity-Dot"><td> <code title="">Dot;</code> </td> <td> U+000A8 </td> <td> <span class="glyph" title="">¨</span> </td> <tr id="entity-dot"><td> <code title="">dot;</code> </td> <td> U+002D9 </td> <td> <span class="glyph" title="">˙</span> </td> <tr id="entity-DotDot"><td> <code title="">DotDot;</code> </td> <td> U+020DC </td> <td> <span class="glyph composition" title="">◌⃜</span> </td> <tr id="entity-doteq"><td> <code title="">doteq;</code> </td> <td> U+02250 </td> <td> <span class="glyph" title="">≐</span> </td> <tr id="entity-doteqdot"><td> <code title="">doteqdot;</code> </td> <td> U+02251 </td> <td> <span class="glyph" title="">≑</span> </td> <tr id="entity-DotEqual"><td> <code title="">DotEqual;</code> </td> <td> U+02250 </td> <td> <span class="glyph" title="">≐</span> </td> <tr id="entity-dotminus">td> <code title="">dotminus;</code> </td> <td> U+02238 </td> <td> <span class="glyph" title="">∸</span> </td> <tr id="entity-dotplus"><td> <code title="">dotplus;</code> </td> <td> U+02214 </td> <td> <span class="glyph" title="">∔</span> </td> <tr id="entity-dotsquare"><td> <code title="">dotsquare;</code> </td> <td> U+022A1 </td> <td> <span class="glyph" title="">⊡</span> </td> <tr id="entity-doublebarwedge"><td> <code title="">doublebarwedge;</code> </td> <td> U+02306 </td> <td> <span class="glyph" title="">⌆</span> </td> <tr id="entity-DoubleContourIntegral"><td> <code title="">DoubleContourIntegral;</code> </td> <td> U+0222F </td> <td> <span class="glyph" title="">∯</span> </td> <tr id="entity-DoubleDot"><td> <code title="">DoubleDot;</code> </td> <td> U+000A8 </td> <td> <span class="glyph" title="">¨</span> </td> <tr id="entity-DoubleDownArrow"><td> <code title="">DoubleDownArrow;</code> </td> <td> U+021D3 </td> <td> <span class="glyph" title="">⇓</span> </td> <trid="entity-DoubleLeftArrow"><td> <code title="">DoubleLeftArrow;</code> </td> <td> U+021D0 </td> <td> <span class="glyph" title="">⇐</span> </td> <tr id="entity-DoubleLeftRightArrow"><td> <code title="">DoubleLeftRightArrow;</code> </td> <td> U+021D4 </td> <td> <span class="glyph" title="">⇔</span> </td> <tr id="entity-DoubleLeftTee"><td> <code title="">DoubleLeftTee;</code> </td> <td> U+02AE4 </td> <td> <span class="glyph" title="">⫤</span> </td> <tr id="entity-DoubleLongLeftArrow"><td> <code title="">DoubleLongLeftArrow;</code> </td> <td> U+027F8 </td> <td> <span class="glyph" title="">⟸</span> </td> <tr id="entity-DoubleLongLeftRightArrow"><td> <code title="">DoubleLongLeftRightArrow;</code> </td> <td> U+027FA </td> <td> <span class="glyph" title="">⟺</span> </td> <tr id="entity-DoubleLongRightArrow"><td> <code title="">DoubleLongRightArrow;</code> </td> <td> U+027F9 </td> <td> <span class="glyph" title="">⟹</span> </td> <tr id="entity-DoubleRightArrow"><td> <code tile="">DoubleRightArrow;</code> </td> <td> U+021D2 </td> <td> <span class="glyph" title="">⇒</span> </td> <tr id="entity-DoubleRightTee"><td> <code title="">DoubleRightTee;</code> </td> <td> U+022A8 </td> <td> <span class="glyph" title="">⊨</span> </td> <tr id="entity-DoubleUpArrow"><td> <code title="">DoubleUpArrow;</code> </td> <td> U+021D1 </td> <td> <span class="glyph" title="">⇑</span> </td> <tr id="entity-DoubleUpDownArrow"><td> <code title="">DoubleUpDownArrow;</code> </td> <td> U+021D5 </td> <td> <span class="glyph" title="">⇕</span> </td> <tr id="entity-DoubleVerticalBar"><td> <code title="">DoubleVerticalBar;</code> </td> <td> U+02225 </td> <td> <span class="glyph" title="">∥</span> </td> <tr id="entity-DownArrow"><td> <code title="">DownArrow;</code> </td> <td> U+02193 </td> <td> <span class="glyph" title="">↓</span> </td> <tr id="entity-Downarrow"><td> <code title="">Downarrow;</code> </td> <td> U+021D3 </td> <td> <span class="glyph" title="">⇓</span> </td> <r id="entity-downarrow"><td> <code title="">downarrow;</code> </td> <td> U+02193 </td> <td> <span class="glyph" title="">↓</span> </td> <tr id="entity-DownArrowBar"><td> <code title="">DownArrowBar;</code> </td> <td> U+02913 </td> <td> <span class="glyph" title="">⤓</span> </td> <tr id="entity-DownArrowUpArrow"><td> <code title="">DownArrowUpArrow;</code> </td> <td> U+021F5 </td> <td> <span class="glyph" title="">⇵</span> </td> <tr id="entity-DownBreve"><td> <code title="">DownBreve;</code> </td> <td> U+00311 </td> <td> <span class="glyph composition" title="">◌̑</span> </td> <tr id="entity-downdownarrows"><td> <code title="">downdownarrows;</code> </td> <td> U+021CA </td> <td> <span class="glyph" title="">⇊</span> </td> <tr id="entity-downharpoonleft"><td> <code title="">downharpoonleft;</code> </td> <td> U+021C3 </td> <td> <span class="glyph" title="">⇃</span> </td> <tr id="entity-downharpoonright"><td> <code title="">downharpoonright;</code> </td> <td> U+021C2 </t> <td> <span class="glyph" title="">⇂</span> </td> <tr id="entity-DownLeftRightVector"><td> <code title="">DownLeftRightVector;</code> </td> <td> U+02950 </td> <td> <span class="glyph" title="">⥐</span> </td> <tr id="entity-DownLeftTeeVector"><td> <code title="">DownLeftTeeVector;</code> </td> <td> U+0295E </td> <td> <span class="glyph" title="">⥞</span> </td> <tr id="entity-DownLeftVector"><td> <code title="">DownLeftVector;</code> </td> <td> U+021BD </td> <td> <span class="glyph" title="">↽</span> </td> <tr id="entity-DownLeftVectorBar"><td> <code title="">DownLeftVectorBar;</code> </td> <td> U+02956 </td> <td> <span class="glyph" title="">⥖</span> </td> <tr id="entity-DownRightTeeVector"><td> <code title="">DownRightTeeVector;</code> </td> <td> U+0295F </td> <td> <span class="glyph" title="">⥟</span> </td> <tr id="entity-DownRightVector"><td> <code title="">DownRightVector;</code> </td> <td> U+021C1 </td> <td> <span class="glyph" title="">⇁</span> </td> <tr i="entity-DownRightVectorBar"><td> <code title="">DownRightVectorBar;</code> </td> <td> U+02957 </td> <td> <span class="glyph" title="">⥗</span> </td> <tr id="entity-DownTee"><td> <code title="">DownTee;</code> </td> <td> U+022A4 </td> <td> <span class="glyph" title="">⊤</span> </td> <tr id="entity-DownTeeArrow"><td> <code title="">DownTeeArrow;</code> </td> <td> U+021A7 </td> <td> <span class="glyph" title="">↧</span> </td> <tr id="entity-drbkarow"><td> <code title="">drbkarow;</code> </td> <td> U+02910 </td> <td> <span class="glyph" title="">⤐</span> </td> <tr id="entity-drcorn"><td> <code title="">drcorn;</code> </td> <td> U+0231F </td> <td> <span class="glyph" title="">⌟</span> </td> <tr id="entity-drcrop"><td> <code title="">drcrop;</code> </td> <td> U+0230C </td> <td> <span class="glyph" title="">⌌</span> </td> <tr id="entity-Dscr"><td> <code title="">Dscr;</code> </td> <td> U+1D49F </td> <td> <span class="glyph" title="">𝒟</span> </td> <tr id="entity-dscr"<td> <code title="">dscr;</code> </td> <td> U+1D4B9 </td> <td> <span class="glyph" title="">𝒹</span> </td> <tr id="entity-DScy"><td> <code title="">DScy;</code> </td> <td> U+00405 </td> <td> <span class="glyph" title="">Ѕ</span> </td> <tr id="entity-dscy"><td> <code title="">dscy;</code> </td> <td> U+00455 </td> <td> <span class="glyph" title="">ѕ</span> </td> <tr id="entity-dsol"><td> <code title="">dsol;</code> </td> <td> U+029F6 </td> <td> <span class="glyph" title="">⧶</span> </td> <tr id="entity-Dstrok"><td> <code title="">Dstrok;</code> </td> <td> U+00110 </td> <td> <span class="glyph" title="">Đ</span> </td> <tr id="entity-dstrok"><td> <code title="">dstrok;</code> </td> <td> U+00111 </td> <td> <span class="glyph" title="">đ</span> </td> <tr id="entity-dtdot"><td> <code title="">dtdot;</code> </td> <td> U+022F1 </td> <td> <span class="glyph" title="">⋱</span> </td> <tr id="entity-dtri"><td> <code title="">dtri;</code> </td> <td> U+025BF </td> <td> <span clas="glyph" title="">▿</span> </td> <tr id="entity-dtrif"><td> <code title="">dtrif;</code> </td> <td> U+025BE </td> <td> <span class="glyph" title="">▾</span> </td> <tr id="entity-duarr"><td> <code title="">duarr;</code> </td> <td> U+021F5 </td> <td> <span class="glyph" title="">⇵</span> </td> <tr id="entity-duhar"><td> <code title="">duhar;</code> </td> <td> U+0296F </td> <td> <span class="glyph" title="">⥯</span> </td> <tr id="entity-dwangle"><td> <code title="">dwangle;</code> </td> <td> U+029A6 </td> <td> <span class="glyph" title="">⦦</span> </td> <tr id="entity-DZcy"><td> <code title="">DZcy;</code> </td> <td> U+0040F </td> <td> <span class="glyph" title="">Џ</span> </td> <tr id="entity-dzcy"><td> <code title="">dzcy;</code> </td> <td> U+0045F </td> <td> <span class="glyph" title="">џ</span> </td> <tr id="entity-dzigrarr"><td> <code title="">dzigrarr;</code> </td> <td> U+027FF </td> <td> <span class="glyph" title="">⟿</span> </td> <tr id="entity-Eacute"<td> <code title="">Eacute;</code> </td> <td> U+000C9 </td> <td> <span class="glyph" title="">É</span> </td> <tr id="entity-eacute"><td> <code title="">eacute;</code> </td> <td> U+000E9 </td> <td> <span class="glyph" title="">é</span> </td> <tr id="entity-easter"><td> <code title="">easter;</code> </td> <td> U+02A6E </td> <td> <span class="glyph" title="">⩮</span> </td> <tr id="entity-Ecaron"><td> <code title="">Ecaron;</code> </td> <td> U+0011A </td> <td> <span class="glyph" title="">Ě</span> </td> <tr id="entity-ecaron"><td> <code title="">ecaron;</code> </td> <td> U+0011B </td> <td> <span class="glyph" title="">ě</span> </td> <tr id="entity-ecir"><td> <code title="">ecir;</code> </td> <td> U+02256 </td> <td> <span class="glyph" title="">≖</span> </td> <tr id="entity-Ecirc"><td> <code title="">Ecirc;</code> </td> <td> U+000CA </td> <td> <span class="glyph" title="">Ê</span> </td> <tr id="entity-ecirc"><td> <code title="">ecirc;</code> </td> <td> U+000EA </td> <td <span class="glyph" title="">ê</span> </td> <tr id="entity-ecolon"><td> <code title="">ecolon;</code> </td> <td> U+02255 </td> <td> <span class="glyph" title="">≕</span> </td> <tr id="entity-Ecy"><td> <code title="">Ecy;</code> </td> <td> U+0042D </td> <td> <span class="glyph" title="">Э</span> </td> <tr id="entity-ecy"><td> <code title="">ecy;</code> </td> <td> U+0044D </td> <td> <span class="glyph" title="">э</span> </td> <tr id="entity-eDDot"><td> <code title="">eDDot;</code> </td> <td> U+02A77 </td> <td> <span class="glyph" title="">⩷</span> </td> <tr id="entity-Edot"><td> <code title="">Edot;</code> </td> <td> U+00116 </td> <td> <span class="glyph" title="">Ė</span> </td> <tr id="entity-eDot"><td> <code title="">eDot;</code> </td> <td> U+02251 </td> <td> <span class="glyph" title="">≑</span> </td> <tr id="entity-edot"><td> <code title="">edot;</code> </td> <td> U+00117 </td> <td> <span class="glyph" title="">ė</span> </td> <tr id="entity-ee"><td> <code tile="">ee;</code> </td> <td> U+02147 </td> <td> <span class="glyph" title="">ⅇ</span> </td> <tr id="entity-efDot"><td> <code title="">efDot;</code> </td> <td> U+02252 </td> <td> <span class="glyph" title="">≒</span> </td> <tr id="entity-Efr"><td> <code title="">Efr;</code> </td> <td> U+1D508 </td> <td> <span class="glyph" title="">𝔈</span> </td> <tr id="entity-efr"><td> <code title="">efr;</code> </td> <td> U+1D522 </td> <td> <span class="glyph" title="">𝔢</span> </td> <tr id="entity-eg"><td> <code title="">eg;</code> </td> <td> U+02A9A </td> <td> <span class="glyph" title="">⪚</span> </td> <tr id="entity-Egrave"><td> <code title="">Egrave;</code> </td> <td> U+000C8 </td> <td> <span class="glyph" title="">È</span> </td> <tr id="entity-egrave"><td> <code title="">egrave;</code> </td> <td> U+000E8 </td> <td> <span class="glyph" title="">è</span> </td> <tr id="entity-egs"><td> <code title="">egs;</code> </td> <td> U+02A96 </td> <td> <span class="glyph" title="">&10902;</span> </td> <tr id="entity-egsdot"><td> <code title="">egsdot;</code> </td> <td> U+02A98 </td> <td> <span class="glyph" title="">⪘</span> </td> <tr id="entity-el"><td> <code title="">el;</code> </td> <td> U+02A99 </td> <td> <span class="glyph" title="">⪙</span> </td> <tr id="entity-Element"><td> <code title="">Element;</code> </td> <td> U+02208 </td> <td> <span class="glyph" title="">∈</span> </td> <tr id="entity-elinters"><td> <code title="">elinters;</code> </td> <td> U+023E7 </td> <td> <span class="glyph" title="">⏧</span> </td> <tr id="entity-ell"><td> <code title="">ell;</code> </td> <td> U+02113 </td> <td> <span class="glyph" title="">ℓ</span> </td> <tr id="entity-els"><td> <code title="">els;</code> </td> <td> U+02A95 </td> <td> <span class="glyph" title="">⪕</span> </td> <tr id="entity-elsdot"><td> <code title="">elsdot;</code> </td> <td> U+02A97 </td> <td> <span class="glyph" title="">⪗</span> </td> <tr id="entity-Emacr"><td> <code title="">Emacr</code> </td> <td> U+00112 </td> <td> <span class="glyph" title="">Ē</span> </td> <tr id="entity-emacr"><td> <code title="">emacr;</code> </td> <td> U+00113 </td> <td> <span class="glyph" title="">ē</span> </td> <tr id="entity-empty"><td> <code title="">empty;</code> </td> <td> U+02205 </td> <td> <span class="glyph" title="">∅</span> </td> <tr id="entity-emptyset"><td> <code title="">emptyset;</code> </td> <td> U+02205 </td> <td> <span class="glyph" title="">∅</span> </td> <tr id="entity-EmptySmallSquare"><td> <code title="">EmptySmallSquare;</code> </td> <td> U+025FB </td> <td> <span class="glyph" title="">◻</span> </td> <tr id="entity-emptyv"><td> <code title="">emptyv;</code> </td> <td> U+02205 </td> <td> <span class="glyph" title="">∅</span> </td> <tr id="entity-EmptyVerySmallSquare"><td> <code title="">EmptyVerySmallSquare;</code> </td> <td> U+025AB </td> <td> <span class="glyph" title="">▫</span> </td> <tr id="entity-emsp"><td> <code title="">emsp;</code> </td> td> U+02003 </td> <td> <span class="glyph" title=""> </span> </td> <tr id="entity-emsp13"><td> <code title="">emsp13;</code> </td> <td> U+02004 </td> <td> <span class="glyph" title=""> </span> </td> <tr id="entity-emsp14"><td> <code title="">emsp14;</code> </td> <td> U+02005 </td> <td> <span class="glyph" title=""> </span> </td> <tr id="entity-ENG"><td> <code title="">ENG;</code> </td> <td> U+0014A </td> <td> <span class="glyph" title="">Ŋ</span> </td> <tr id="entity-eng"><td> <code title="">eng;</code> </td> <td> U+0014B </td> <td> <span class="glyph" title="">ŋ</span> </td> <tr id="entity-ensp"><td> <code title="">ensp;</code> </td> <td> U+02002 </td> <td> <span class="glyph" title=""> </span> </td> <tr id="entity-Eogon"><td> <code title="">Eogon;</code> </td> <td> U+00118 </td> <td> <span class="glyph" title="">Ę</span> </td> <tr id="entity-eogon"><td> <code title="">eogon;</code> </td> <td> U+00119 </td> <td> <span class="glyph" title="">ę</span> </td> <tr id="etity-Eopf"><td> <code title="">Eopf;</code> </td> <td> U+1D53C </td> <td> <span class="glyph" title="">𝔼</span> </td> <tr id="entity-eopf"><td> <code title="">eopf;</code> </td> <td> U+1D556 </td> <td> <span class="glyph" title="">𝕖</span> </td> <tr id="entity-epar"><td> <code title="">epar;</code> </td> <td> U+022D5 </td> <td> <span class="glyph" title="">⋕</span> </td> <tr id="entity-eparsl"><td> <code title="">eparsl;</code> </td> <td> U+029E3 </td> <td> <span class="glyph" title="">⧣</span> </td> <tr id="entity-eplus"><td> <code title="">eplus;</code> </td> <td> U+02A71 </td> <td> <span class="glyph" title="">⩱</span> </td> <tr id="entity-epsi"><td> <code title="">epsi;</code> </td> <td> U+003B5 </td> <td> <span class="glyph" title="">ε</span> </td> <tr id="entity-Epsilon"><td> <code title="">Epsilon;</code> </td> <td> U+00395 </td> <td> <span class="glyph" title="">Ε</span> </td> <tr id="entity-epsilon"><td> <code title="">epsilon;</code> </td> <td> U003B5 </td> <td> <span class="glyph" title="">ε</span> </td> <tr id="entity-epsiv"><td> <code title="">epsiv;</code> </td> <td> U+003F5 </td> <td> <span class="glyph" title="">ϵ</span> </td> <tr id="entity-eqcirc"><td> <code title="">eqcirc;</code> </td> <td> U+02256 </td> <td> <span class="glyph" title="">≖</span> </td> <tr id="entity-eqcolon"><td> <code title="">eqcolon;</code> </td> <td> U+02255 </td> <td> <span class="glyph" title="">≕</span> </td> <tr id="entity-eqsim"><td> <code title="">eqsim;</code> </td> <td> U+02242 </td> <td> <span class="glyph" title="">≂</span> </td> <tr id="entity-eqslantgtr"><td> <code title="">eqslantgtr;</code> </td> <td> U+02A96 </td> <td> <span class="glyph" title="">⪖</span> </td> <tr id="entity-eqslantless"><td> <code title="">eqslantless;</code> </td> <td> U+02A95 </td> <td> <span class="glyph" title="">⪕</span> </td> <tr id="entity-Equal"><td> <code title="">Equal;</code> </td> <td> U+02A75 </td> <td> <span class="glyph" ttle="">⩵</span> </td> <tr id="entity-equals"><td> <code title="">equals;</code> </td> <td> U+0003D </td> <td> <span class="glyph" title="">=</span> </td> <tr id="entity-EqualTilde"><td> <code title="">EqualTilde;</code> </td> <td> U+02242 </td> <td> <span class="glyph" title="">≂</span> </td> <tr id="entity-equest"><td> <code title="">equest;</code> </td> <td> U+0225F </td> <td> <span class="glyph" title="">≟</span> </td> <tr id="entity-Equilibrium"><td> <code title="">Equilibrium;</code> </td> <td> U+021CC </td> <td> <span class="glyph" title="">⇌</span> </td> <tr id="entity-equiv"><td> <code title="">equiv;</code> </td> <td> U+02261 </td> <td> <span class="glyph" title="">≡</span> </td> <tr id="entity-equivDD"><td> <code title="">equivDD;</code> </td> <td> U+02A78 </td> <td> <span class="glyph" title="">⩸</span> </td> <tr id="entity-eqvparsl"><td> <code title="">eqvparsl;</code> </td> <td> U+029E5 </td> <td> <span class="glyph" title="">⧥</span> </td> <tr id="etity-erarr"><td> <code title="">erarr;</code> </td> <td> U+02971 </td> <td> <span class="glyph" title="">⥱</span> </td> <tr id="entity-erDot"><td> <code title="">erDot;</code> </td> <td> U+02253 </td> <td> <span class="glyph" title="">≓</span> </td> <tr id="entity-Escr"><td> <code title="">Escr;</code> </td> <td> U+02130 </td> <td> <span class="glyph" title="">ℰ</span> </td> <tr id="entity-escr"><td> <code title="">escr;</code> </td> <td> U+0212F </td> <td> <span class="glyph" title="">ℯ</span> </td> <tr id="entity-esdot"><td> <code title="">esdot;</code> </td> <td> U+02250 </td> <td> <span class="glyph" title="">≐</span> </td> <tr id="entity-Esim"><td> <code title="">Esim;</code> </td> <td> U+02A73 </td> <td> <span class="glyph" title="">⩳</span> </td> <tr id="entity-esim"><td> <code title="">esim;</code> </td> <td> U+02242 </td> <td> <span class="glyph" title="">≂</span> </td> <tr id="entity-Eta"><td> <code title="">Eta;</code> </td> <td> U+00397 </td> <td> <spa class="glyph" title="">Η</span> </td> <tr id="entity-eta"><td> <code title="">eta;</code> </td> <td> U+003B7 </td> <td> <span class="glyph" title="">η</span> </td> <tr id="entity-ETH"><td> <code title="">ETH;</code> </td> <td> U+000D0 </td> <td> <span class="glyph" title="">Ð</span> </td> <tr id="entity-eth"><td> <code title="">eth;</code> </td> <td> U+000F0 </td> <td> <span class="glyph" title="">ð</span> </td> <tr id="entity-Euml"><td> <code title="">Euml;</code> </td> <td> U+000CB </td> <td> <span class="glyph" title="">Ë</span> </td> <tr id="entity-euml"><td> <code title="">euml;</code> </td> <td> U+000EB </td> <td> <span class="glyph" title="">ë</span> </td> <tr id="entity-euro"><td> <code title="">euro;</code> </td> <td> U+020AC </td> <td> <span class="glyph" title="">€</span> </td> <tr id="entity-excl"><td> <code title="">excl;</code> </td> <td> U+00021 </td> <td> <span class="glyph" title="">!</span> </td> <tr id="entity-exist"><td> <code title="">exist;</code> </td> td> U+02203 </td> <td> <span class="glyph" title="">∃</span> </td> <tr id="entity-Exists"><td> <code title="">Exists;</code> </td> <td> U+02203 </td> <td> <span class="glyph" title="">∃</span> </td> <tr id="entity-expectation"><td> <code title="">expectation;</code> </td> <td> U+02130 </td> <td> <span class="glyph" title="">ℰ</span> </td> <tr id="entity-ExponentialE"><td> <code title="">ExponentialE;</code> </td> <td> U+02147 </td> <td> <span class="glyph" title="">ⅇ</span> </td> <tr id="entity-exponentiale"><td> <code title="">exponentiale;</code> </td> <td> U+02147 </td> <td> <span class="glyph" title="">ⅇ</span> </td> <tr id="entity-fallingdotseq"><td> <code title="">fallingdotseq;</code> </td> <td> U+02252 </td> <td> <span class="glyph" title="">≒</span> </td> <tr id="entity-Fcy"><td> <code title="">Fcy;</code> </td> <td> U+00424 </td> <td> <span class="glyph" title="">Ф</span> </td> <tr id="entity-fcy"><td> <code title="">fcy;</code> </td> <td> U+00444 </td> <t> <span class="glyph" title="">ф</span> </td> <tr id="entity-female"><td> <code title="">female;</code> </td> <td> U+02640 </td> <td> <span class="glyph" title="">♀</span> </td> <tr id="entity-ffilig"><td> <code title="">ffilig;</code> </td> <td> U+0FB03 </td> <td> <span class="glyph" title="">ffi</span> </td> <tr id="entity-fflig"><td> <code title="">fflig;</code> </td> <td> U+0FB00 </td> <td> <span class="glyph" title="">ff</span> </td> <tr id="entity-ffllig"><td> <code title="">ffllig;</code> </td> <td> U+0FB04 </td> <td> <span class="glyph" title="">ffl</span> </td> <tr id="entity-Ffr"><td> <code title="">Ffr;</code> </td> <td> U+1D509 </td> <td> <span class="glyph" title="">𝔉</span> </td> <tr id="entity-ffr"><td> <code title="">ffr;</code> </td> <td> U+1D523 </td> <td> <span class="glyph" title="">𝔣</span> </td> <tr id="entity-filig"><td> <code title="">filig;</code> </td> <td> U+0FB01 </td> <td> <span class="glyph" title="">fi</span> </td> <tr id="entiy-FilledSmallSquare"><td> <code title="">FilledSmallSquare;</code> </td> <td> U+025FC </td> <td> <span class="glyph" title="">◼</span> </td> <tr id="entity-FilledVerySmallSquare"><td> <code title="">FilledVerySmallSquare;</code> </td> <td> U+025AA </td> <td> <span class="glyph" title="">▪</span> </td> <tr id="entity-fjlig"><td> <code title="">fjlig;</code> </td> <td> U+00066 U+0006A </td> <td> <span class="glyph compound" title="">fj</span> </td> <tr id="entity-flat"><td> <code title="">flat;</code> </td> <td> U+0266D </td> <td> <span class="glyph" title="">♭</span> </td> <tr id="entity-fllig"><td> <code title="">fllig;</code> </td> <td> U+0FB02 </td> <td> <span class="glyph" title="">fl</span> </td> <tr id="entity-fltns"><td> <code title="">fltns;</code> </td> <td> U+025B1 </td> <td> <span class="glyph" title="">▱</span> </td> <tr id="entity-fnof"><td> <code title="">fnof;</code> </td> <td> U+00192 </td> <td> <span class="glyph" title="">ƒ</span> </td> <tr id="entity-Fopf><td> <code title="">Fopf;</code> </td> <td> U+1D53D </td> <td> <span class="glyph" title="">𝔽</span> </td> <tr id="entity-fopf"><td> <code title="">fopf;</code> </td> <td> U+1D557 </td> <td> <span class="glyph" title="">𝕗</span> </td> <tr id="entity-ForAll"><td> <code title="">ForAll;</code> </td> <td> U+02200 </td> <td> <span class="glyph" title="">∀</span> </td> <tr id="entity-forall"><td> <code title="">forall;</code> </td> <td> U+02200 </td> <td> <span class="glyph" title="">∀</span> </td> <tr id="entity-fork"><td> <code title="">fork;</code> </td> <td> U+022D4 </td> <td> <span class="glyph" title="">⋔</span> </td> <tr id="entity-forkv"><td> <code title="">forkv;</code> </td> <td> U+02AD9 </td> <td> <span class="glyph" title="">⫙</span> </td> <tr id="entity-Fouriertrf"><td> <code title="">Fouriertrf;</code> </td> <td> U+02131 </td> <td> <span class="glyph" title="">ℱ</span> </td> <tr id="entity-fpartint"><td> <code title="">fpartint;</code> </td> <td> U+2A0D </td> <td> <span class="glyph" title="">⨍</span> </td> <tr id="entity-frac12"><td> <code title="">frac12;</code> </td> <td> U+000BD </td> <td> <span class="glyph" title="">½</span> </td> <tr id="entity-frac13"><td> <code title="">frac13;</code> </td> <td> U+02153 </td> <td> <span class="glyph" title="">⅓</span> </td> <tr id="entity-frac14"><td> <code title="">frac14;</code> </td> <td> U+000BC </td> <td> <span class="glyph" title="">¼</span> </td> <tr id="entity-frac15"><td> <code title="">frac15;</code> </td> <td> U+02155 </td> <td> <span class="glyph" title="">⅕</span> </td> <tr id="entity-frac16"><td> <code title="">frac16;</code> </td> <td> U+02159 </td> <td> <span class="glyph" title="">⅙</span> </td> <tr id="entity-frac18"><td> <code title="">frac18;</code> </td> <td> U+0215B </td> <td> <span class="glyph" title="">⅛</span> </td> <tr id="entity-frac23"><td> <code title="">frac23;</code> </td> <td> U+02154 </td> <td> <span class="glyph" title="">⅔<span> </td> <tr id="entity-frac25"><td> <code title="">frac25;</code> </td> <td> U+02156 </td> <td> <span class="glyph" title="">⅖</span> </td> <tr id="entity-frac34"><td> <code title="">frac34;</code> </td> <td> U+000BE </td> <td> <span class="glyph" title="">¾</span> </td> <tr id="entity-frac35"><td> <code title="">frac35;</code> </td> <td> U+02157 </td> <td> <span class="glyph" title="">⅗</span> </td> <tr id="entity-frac38"><td> <code title="">frac38;</code> </td> <td> U+0215C </td> <td> <span class="glyph" title="">⅜</span> </td> <tr id="entity-frac45"><td> <code title="">frac45;</code> </td> <td> U+02158 </td> <td> <span class="glyph" title="">⅘</span> </td> <tr id="entity-frac56"><td> <code title="">frac56;</code> </td> <td> U+0215A </td> <td> <span class="glyph" title="">⅚</span> </td> <tr id="entity-frac58"><td> <code title="">frac58;</code> </td> <td> U+0215D </td> <td> <span class="glyph" title="">⅝</span> </td> <tr id="entity-frac78"><td> <code title="">rac78;</code> </td> <td> U+0215E </td> <td> <span class="glyph" title="">⅞</span> </td> <tr id="entity-frasl"><td> <code title="">frasl;</code> </td> <td> U+02044 </td> <td> <span class="glyph" title="">⁄</span> </td> <tr id="entity-frown"><td> <code title="">frown;</code> </td> <td> U+02322 </td> <td> <span class="glyph" title="">⌢</span> </td> <tr id="entity-Fscr"><td> <code title="">Fscr;</code> </td> <td> U+02131 </td> <td> <span class="glyph" title="">ℱ</span> </td> <tr id="entity-fscr"><td> <code title="">fscr;</code> </td> <td> U+1D4BB </td> <td> <span class="glyph" title="">𝒻</span> </td> <tr id="entity-gacute"><td> <code title="">gacute;</code> </td> <td> U+001F5 </td> <td> <span class="glyph" title="">ǵ</span> </td> <tr id="entity-Gamma"><td> <code title="">Gamma;</code> </td> <td> U+00393 </td> <td> <span class="glyph" title="">Γ</span> </td> <tr id="entity-gamma"><td> <code title="">gamma;</code> </td> <td> U+003B3 </td> <td> <span class="glyph" title=">γ</span> </td> <tr id="entity-Gammad"><td> <code title="">Gammad;</code> </td> <td> U+003DC </td> <td> <span class="glyph" title="">Ϝ</span> </td> <tr id="entity-gammad"><td> <code title="">gammad;</code> </td> <td> U+003DD </td> <td> <span class="glyph" title="">ϝ</span> </td> <tr id="entity-gap"><td> <code title="">gap;</code> </td> <td> U+02A86 </td> <td> <span class="glyph" title="">⪆</span> </td> <tr id="entity-Gbreve"><td> <code title="">Gbreve;</code> </td> <td> U+0011E </td> <td> <span class="glyph" title="">Ğ</span> </td> <tr id="entity-gbreve"><td> <code title="">gbreve;</code> </td> <td> U+0011F </td> <td> <span class="glyph" title="">ğ</span> </td> <tr id="entity-Gcedil"><td> <code title="">Gcedil;</code> </td> <td> U+00122 </td> <td> <span class="glyph" title="">Ģ</span> </td> <tr id="entity-Gcirc"><td> <code title="">Gcirc;</code> </td> <td> U+0011C </td> <td> <span class="glyph" title="">Ĝ</span> </td> <tr id="entity-gcirc"><td> <code title="">gcirc</code> </td> <td> U+0011D </td> <td> <span class="glyph" title="">ĝ</span> </td> <tr id="entity-Gcy"><td> <code title="">Gcy;</code> </td> <td> U+00413 </td> <td> <span class="glyph" title="">Г</span> </td> <tr id="entity-gcy"><td> <code title="">gcy;</code> </td> <td> U+00433 </td> <td> <span class="glyph" title="">г</span> </td> <tr id="entity-Gdot"><td> <code title="">Gdot;</code> </td> <td> U+00120 </td> <td> <span class="glyph" title="">Ġ</span> </td> <tr id="entity-gdot"><td> <code title="">gdot;</code> </td> <td> U+00121 </td> <td> <span class="glyph" title="">ġ</span> </td> <tr id="entity-gE"><td> <code title="">gE;</code> </td> <td> U+02267 </td> <td> <span class="glyph" title="">≧</span> </td> <tr id="entity-ge"><td> <code title="">ge;</code> </td> <td> U+02265 </td> <td> <span class="glyph" title="">≥</span> </td> <tr id="entity-gEl"><td> <code title="">gEl;</code> </td> <td> U+02A8C </td> <td> <span class="glyph" title="">⪌</span> </td> <tr id="entity-el"><td> <code title="">gel;</code> </td> <td> U+022DB </td> <td> <span class="glyph" title="">⋛</span> </td> <tr id="entity-geq"><td> <code title="">geq;</code> </td> <td> U+02265 </td> <td> <span class="glyph" title="">≥</span> </td> <tr id="entity-geqq"><td> <code title="">geqq;</code> </td> <td> U+02267 </td> <td> <span class="glyph" title="">≧</span> </td> <tr id="entity-geqslant"><td> <code title="">geqslant;</code> </td> <td> U+02A7E </td> <td> <span class="glyph" title="">⩾</span> </td> <tr id="entity-ges"><td> <code title="">ges;</code> </td> <td> U+02A7E </td> <td> <span class="glyph" title="">⩾</span> </td> <tr id="entity-gescc"><td> <code title="">gescc;</code> </td> <td> U+02AA9 </td> <td> <span class="glyph" title="">⪩</span> </td> <tr id="entity-gesdot"><td> <code title="">gesdot;</code> </td> <td> U+02A80 </td> <td> <span class="glyph" title="">⪀</span> </td> <tr id="entity-gesdoto"><td> <code title="">gesdoto;</code> </td> <td> U+02A82 </td> <td> <pan class="glyph" title="">⪂</span> </td> <tr id="entity-gesdotol"><td> <code title="">gesdotol;</code> </td> <td> U+02A84 </td> <td> <span class="glyph" title="">⪄</span> </td> <tr id="entity-gesl"><td> <code title="">gesl;</code> </td> <td> U+022DB U+0FE00 </td> <td> <span class="glyph compound" title="">⋛︀</span> </td> <tr id="entity-gesles"><td> <code title="">gesles;</code> </td> <td> U+02A94 </td> <td> <span class="glyph" title="">⪔</span> </td> <tr id="entity-Gfr"><td> <code title="">Gfr;</code> </td> <td> U+1D50A </td> <td> <span class="glyph" title="">𝔊</span> </td> <tr id="entity-gfr"><td> <code title="">gfr;</code> </td> <td> U+1D524 </td> <td> <span class="glyph" title="">𝔤</span> </td> <tr id="entity-Gg"><td> <code title="">Gg;</code> </td> <td> U+022D9 </td> <td> <span class="glyph" title="">⋙</span> </td> <tr id="entity-gg"><td> <code title="">gg;</code> </td> <td> U+0226B </td> <td> <span class="glyph" title="">≫</span> </td> <tr d="entity-ggg"><td> <code title="">ggg;</code> </td> <td> U+022D9 </td> <td> <span class="glyph" title="">⋙</span> </td> <tr id="entity-gimel"><td> <code title="">gimel;</code> </td> <td> U+02137 </td> <td> <span class="glyph" title="">ℷ</span> </td> <tr id="entity-GJcy"><td> <code title="">GJcy;</code> </td> <td> U+00403 </td> <td> <span class="glyph" title="">Ѓ</span> </td> <tr id="entity-gjcy"><td> <code title="">gjcy;</code> </td> <td> U+00453 </td> <td> <span class="glyph" title="">ѓ</span> </td> <tr id="entity-gl"><td> <code title="">gl;</code> </td> <td> U+02277 </td> <td> <span class="glyph" title="">≷</span> </td> <tr id="entity-gla"><td> <code title="">gla;</code> </td> <td> U+02AA5 </td> <td> <span class="glyph" title="">⪥</span> </td> <tr id="entity-glE"><td> <code title="">glE;</code> </td> <td> U+02A92 </td> <td> <span class="glyph" title="">⪒</span> </td> <tr id="entity-glj"><td> <code title="">glj;</code> </td> <td> U+02AA4 </td> <td> <span class="lyph" title="">⪤</span> </td> <tr id="entity-gnap"><td> <code title="">gnap;</code> </td> <td> U+02A8A </td> <td> <span class="glyph" title="">⪊</span> </td> <tr id="entity-gnapprox"><td> <code title="">gnapprox;</code> </td> <td> U+02A8A </td> <td> <span class="glyph" title="">⪊</span> </td> <tr id="entity-gnE"><td> <code title="">gnE;</code> </td> <td> U+02269 </td> <td> <span class="glyph" title="">≩</span> </td> <tr id="entity-gne"><td> <code title="">gne;</code> </td> <td> U+02A88 </td> <td> <span class="glyph" title="">⪈</span> </td> <tr id="entity-gneq"><td> <code title="">gneq;</code> </td> <td> U+02A88 </td> <td> <span class="glyph" title="">⪈</span> </td> <tr id="entity-gneqq"><td> <code title="">gneqq;</code> </td> <td> U+02269 </td> <td> <span class="glyph" title="">≩</span> </td> <tr id="entity-gnsim"><td> <code title="">gnsim;</code> </td> <td> U+022E7 </td> <td> <span class="glyph" title="">⋧</span> </td> <tr id="entity-Gopf"><td> <code tite="">Gopf;</code> </td> <td> U+1D53E </td> <td> <span class="glyph" title="">𝔾</span> </td> <tr id="entity-gopf"><td> <code title="">gopf;</code> </td> <td> U+1D558 </td> <td> <span class="glyph" title="">𝕘</span> </td> <tr id="entity-grave"><td> <code title="">grave;</code> </td> <td> U+00060 </td> <td> <span class="glyph" title="">`</span> </td> <tr id="entity-GreaterEqual"><td> <code title="">GreaterEqual;</code> </td> <td> U+02265 </td> <td> <span class="glyph" title="">≥</span> </td> <tr id="entity-GreaterEqualLess"><td> <code title="">GreaterEqualLess;</code> </td> <td> U+022DB </td> <td> <span class="glyph" title="">⋛</span> </td> <tr id="entity-GreaterFullEqual"><td> <code title="">GreaterFullEqual;</code> </td> <td> U+02267 </td> <td> <span class="glyph" title="">≧</span> </td> <tr id="entity-GreaterGreater"><td> <code title="">GreaterGreater;</code> </td> <td> U+02AA2 </td> <td> <span class="glyph" title="">⪢</span> </td> <tr id="entity-GreaterLess"><td> <codetitle="">GreaterLess;</code> </td> <td> U+02277 </td> <td> <span class="glyph" title="">≷</span> </td> <tr id="entity-GreaterSlantEqual"><td> <code title="">GreaterSlantEqual;</code> </td> <td> U+02A7E </td> <td> <span class="glyph" title="">⩾</span> </td> <tr id="entity-GreaterTilde"><td> <code title="">GreaterTilde;</code> </td> <td> U+02273 </td> <td> <span class="glyph" title="">≳</span> </td> <tr id="entity-Gscr"><td> <code title="">Gscr;</code> </td> <td> U+1D4A2 </td> <td> <span class="glyph" title="">𝒢</span> </td> <tr id="entity-gscr"><td> <code title="">gscr;</code> </td> <td> U+0210A </td> <td> <span class="glyph" title="">ℊ</span> </td> <tr id="entity-gsim"><td> <code title="">gsim;</code> </td> <td> U+02273 </td> <td> <span class="glyph" title="">≳</span> </td> <tr id="entity-gsime"><td> <code title="">gsime;</code> </td> <td> U+02A8E </td> <td> <span class="glyph" title="">⪎</span> </td> <tr id="entity-gsiml"><td> <code title="">gsiml;</code> </td><td> U+02A90 </td> <td> <span class="glyph" title="">⪐</span> </td> <tr id="entity-GT"><td> <code title="">GT;</code> </td> <td> U+0003E </td> <td> <span class="glyph" title="">></span> </td> <tr id="entity-Gt"><td> <code title="">Gt;</code> </td> <td> U+0226B </td> <td> <span class="glyph" title="">≫</span> </td> <tr id="entity-gt"><td> <code title="">gt;</code> </td> <td> U+0003E </td> <td> <span class="glyph" title="">></span> </td> <tr id="entity-gtcc"><td> <code title="">gtcc;</code> </td> <td> U+02AA7 </td> <td> <span class="glyph" title="">⪧</span> </td> <tr id="entity-gtcir"><td> <code title="">gtcir;</code> </td> <td> U+02A7A </td> <td> <span class="glyph" title="">⩺</span> </td> <tr id="entity-gtdot"><td> <code title="">gtdot;</code> </td> <td> U+022D7 </td> <td> <span class="glyph" title="">⋗</span> </td> <tr id="entity-gtlPar"><td> <code title="">gtlPar;</code> </td> <td> U+02995 </td> <td> <span class="glyph" title="">⦕</span> </td> <tr id="entity-gquest"><td> <code title="">gtquest;</code> </td> <td> U+02A7C </td> <td> <span class="glyph" title="">⩼</span> </td> <tr id="entity-gtrapprox"><td> <code title="">gtrapprox;</code> </td> <td> U+02A86 </td> <td> <span class="glyph" title="">⪆</span> </td> <tr id="entity-gtrarr"><td> <code title="">gtrarr;</code> </td> <td> U+02978 </td> <td> <span class="glyph" title="">⥸</span> </td> <tr id="entity-gtrdot"><td> <code title="">gtrdot;</code> </td> <td> U+022D7 </td> <td> <span class="glyph" title="">⋗</span> </td> <tr id="entity-gtreqless"><td> <code title="">gtreqless;</code> </td> <td> U+022DB </td> <td> <span class="glyph" title="">⋛</span> </td> <tr id="entity-gtreqqless"><td> <code title="">gtreqqless;</code> </td> <td> U+02A8C </td> <td> <span class="glyph" title="">⪌</span> </td> <tr id="entity-gtrless"><td> <code title="">gtrless;</code> </td> <td> U+02277 </td> <td> <span class="glyph" title="">≷</span> </td> <tr id="entity-gtrsim"><td> <code title="">gtsim;</code> </td> <td> U+02273 </td> <td> <span class="glyph" title="">≳</span> </td> <tr id="entity-gvertneqq"><td> <code title="">gvertneqq;</code> </td> <td> U+02269 U+0FE00 </td> <td> <span class="glyph compound" title="">≩︀</span> </td> <tr id="entity-gvnE"><td> <code title="">gvnE;</code> </td> <td> U+02269 U+0FE00 </td> <td> <span class="glyph compound" title="">≩︀</span> </td> <tr id="entity-Hacek"><td> <code title="">Hacek;</code> </td> <td> U+002C7 </td> <td> <span class="glyph" title="">ˇ</span> </td> <tr id="entity-hairsp"><td> <code title="">hairsp;</code> </td> <td> U+0200A </td> <td> <span class="glyph" title=""> </span> </td> <tr id="entity-half"><td> <code title="">half;</code> </td> <td> U+000BD </td> <td> <span class="glyph" title="">½</span> </td> <tr id="entity-hamilt"><td> <code title="">hamilt;</code> </td> <td> U+0210B </td> <td> <span class="glyph" title="">ℋ</span> </td> <tr id="entity-HARDcy"><td> <code title="">HARDcy;</code </td> <td> U+0042A </td> <td> <span class="glyph" title="">Ъ</span> </td> <tr id="entity-hardcy"><td> <code title="">hardcy;</code> </td> <td> U+0044A </td> <td> <span class="glyph" title="">ъ</span> </td> <tr id="entity-hArr"><td> <code title="">hArr;</code> </td> <td> U+021D4 </td> <td> <span class="glyph" title="">⇔</span> </td> <tr id="entity-harr"><td> <code title="">harr;</code> </td> <td> U+02194 </td> <td> <span class="glyph" title="">↔</span> </td> <tr id="entity-harrcir"><td> <code title="">harrcir;</code> </td> <td> U+02948 </td> <td> <span class="glyph" title="">⥈</span> </td> <tr id="entity-harrw"><td> <code title="">harrw;</code> </td> <td> U+021AD </td> <td> <span class="glyph" title="">↭</span> </td> <tr id="entity-Hat"><td> <code title="">Hat;</code> </td> <td> U+0005E </td> <td> <span class="glyph" title="">^</span> </td> <tr id="entity-hbar"><td> <code title="">hbar;</code> </td> <td> U+0210F </td> <td> <span class="glyph" title="">ℏ</span> </td> tr id="entity-Hcirc"><td> <code title="">Hcirc;</code> </td> <td> U+00124 </td> <td> <span class="glyph" title="">Ĥ</span> </td> <tr id="entity-hcirc"><td> <code title="">hcirc;</code> </td> <td> U+00125 </td> <td> <span class="glyph" title="">ĥ</span> </td> <tr id="entity-hearts"><td> <code title="">hearts;</code> </td> <td> U+02665 </td> <td> <span class="glyph" title="">♥</span> </td> <tr id="entity-heartsuit"><td> <code title="">heartsuit;</code> </td> <td> U+02665 </td> <td> <span class="glyph" title="">♥</span> </td> <tr id="entity-hellip"><td> <code title="">hellip;</code> </td> <td> U+02026 </td> <td> <span class="glyph" title="">…</span> </td> <tr id="entity-hercon"><td> <code title="">hercon;</code> </td> <td> U+022B9 </td> <td> <span class="glyph" title="">⊹</span> </td> <tr id="entity-Hfr"><td> <code title="">Hfr;</code> </td> <td> U+0210C </td> <td> <span class="glyph" title="">ℌ</span> </td> <tr id="entity-hfr"><td> <code title="">hfr;</code> </td> <t> U+1D525 </td> <td> <span class="glyph" title="">𝔥</span> </td> <tr id="entity-HilbertSpace"><td> <code title="">HilbertSpace;</code> </td> <td> U+0210B </td> <td> <span class="glyph" title="">ℋ</span> </td> <tr id="entity-hksearow"><td> <code title="">hksearow;</code> </td> <td> U+02925 </td> <td> <span class="glyph" title="">⤥</span> </td> <tr id="entity-hkswarow"><td> <code title="">hkswarow;</code> </td> <td> U+02926 </td> <td> <span class="glyph" title="">⤦</span> </td> <tr id="entity-hoarr"><td> <code title="">hoarr;</code> </td> <td> U+021FF </td> <td> <span class="glyph" title="">⇿</span> </td> <tr id="entity-homtht"><td> <code title="">homtht;</code> </td> <td> U+0223B </td> <td> <span class="glyph" title="">∻</span> </td> <tr id="entity-hookleftarrow"><td> <code title="">hookleftarrow;</code> </td> <td> U+021A9 </td> <td> <span class="glyph" title="">↩</span> </td> <tr id="entity-hookrightarrow"><td> <code title="">hookrightarrow;</code> </td> <td> U+21AA </td> <td> <span class="glyph" title="">↪</span> </td> <tr id="entity-Hopf"><td> <code title="">Hopf;</code> </td> <td> U+0210D </td> <td> <span class="glyph" title="">ℍ</span> </td> <tr id="entity-hopf"><td> <code title="">hopf;</code> </td> <td> U+1D559 </td> <td> <span class="glyph" title="">𝕙</span> </td> <tr id="entity-horbar"><td> <code title="">horbar;</code> </td> <td> U+02015 </td> <td> <span class="glyph" title="">―</span> </td> <tr id="entity-HorizontalLine"><td> <code title="">HorizontalLine;</code> </td> <td> U+02500 </td> <td> <span class="glyph" title="">─</span> </td> <tr id="entity-Hscr"><td> <code title="">Hscr;</code> </td> <td> U+0210B </td> <td> <span class="glyph" title="">ℋ</span> </td> <tr id="entity-hscr"><td> <code title="">hscr;</code> </td> <td> U+1D4BD </td> <td> <span class="glyph" title="">𝒽</span> </td> <tr id="entity-hslash"><td> <code title="">hslash;</code> </td> <td> U+0210F </td> <td> <span class="glyph" title="">ℏ/span> </td> <tr id="entity-Hstrok"><td> <code title="">Hstrok;</code> </td> <td> U+00126 </td> <td> <span class="glyph" title="">Ħ</span> </td> <tr id="entity-hstrok"><td> <code title="">hstrok;</code> </td> <td> U+00127 </td> <td> <span class="glyph" title="">ħ</span> </td> <tr id="entity-HumpDownHump"><td> <code title="">HumpDownHump;</code> </td> <td> U+0224E </td> <td> <span class="glyph" title="">≎</span> </td> <tr id="entity-HumpEqual"><td> <code title="">HumpEqual;</code> </td> <td> U+0224F </td> <td> <span class="glyph" title="">≏</span> </td> <tr id="entity-hybull"><td> <code title="">hybull;</code> </td> <td> U+02043 </td> <td> <span class="glyph" title="">⁃</span> </td> <tr id="entity-hyphen"><td> <code title="">hyphen;</code> </td> <td> U+02010 </td> <td> <span class="glyph" title="">‐</span> </td> <tr id="entity-Iacute"><td> <code title="">Iacute;</code> </td> <td> U+000CD </td> <td> <span class="glyph" title="">Í</span> </td> <tr id="entity-iacute"><td <code title="">iacute;</code> </td> <td> U+000ED </td> <td> <span class="glyph" title="">í</span> </td> <tr id="entity-ic"><td> <code title="">ic;</code> </td> <td> U+02063 </td> <td> <span class="glyph" title="">⁣</span> </td> <tr id="entity-Icirc"><td> <code title="">Icirc;</code> </td> <td> U+000CE </td> <td> <span class="glyph" title="">Î</span> </td> <tr id="entity-icirc"><td> <code title="">icirc;</code> </td> <td> U+000EE </td> <td> <span class="glyph" title="">î</span> </td> <tr id="entity-Icy"><td> <code title="">Icy;</code> </td> <td> U+00418 </td> <td> <span class="glyph" title="">И</span> </td> <tr id="entity-icy"><td> <code title="">icy;</code> </td> <td> U+00438 </td> <td> <span class="glyph" title="">и</span> </td> <tr id="entity-Idot"><td> <code title="">Idot;</code> </td> <td> U+00130 </td> <td> <span class="glyph" title="">İ</span> </td> <tr id="entity-IEcy"><td> <code title="">IEcy;</code> </td> <td> U+00415 </td> <td> <span class="glyph" title=">Е</span> </td> <tr id="entity-iecy"><td> <code title="">iecy;</code> </td> <td> U+00435 </td> <td> <span class="glyph" title="">е</span> </td> <tr id="entity-iexcl"><td> <code title="">iexcl;</code> </td> <td> U+000A1 </td> <td> <span class="glyph" title="">¡</span> </td> <tr id="entity-iff"><td> <code title="">iff;</code> </td> <td> U+021D4 </td> <td> <span class="glyph" title="">⇔</span> </td> <tr id="entity-Ifr"><td> <code title="">Ifr;</code> </td> <td> U+02111 </td> <td> <span class="glyph" title="">ℑ</span> </td> <tr id="entity-ifr"><td> <code title="">ifr;</code> </td> <td> U+1D526 </td> <td> <span class="glyph" title="">𝔦</span> </td> <tr id="entity-Igrave"><td> <code title="">Igrave;</code> </td> <td> U+000CC </td> <td> <span class="glyph" title="">Ì</span> </td> <tr id="entity-igrave"><td> <code title="">igrave;</code> </td> <td> U+000EC </td> <td> <span class="glyph" title="">ì</span> </td> <tr id="entity-ii"><td> <code title="">ii;</code> </td><td> U+02148 </td> <td> <span class="glyph" title="">ⅈ</span> </td> <tr id="entity-iiiint"><td> <code title="">iiiint;</code> </td> <td> U+02A0C </td> <td> <span class="glyph" title="">⨌</span> </td> <tr id="entity-iiint"><td> <code title="">iiint;</code> </td> <td> U+0222D </td> <td> <span class="glyph" title="">∭</span> </td> <tr id="entity-iinfin"><td> <code title="">iinfin;</code> </td> <td> U+029DC </td> <td> <span class="glyph" title="">⧜</span> </td> <tr id="entity-iiota"><td> <code title="">iiota;</code> </td> <td> U+02129 </td> <td> <span class="glyph" title="">℩</span> </td> <tr id="entity-IJlig"><td> <code title="">IJlig;</code> </td> <td> U+00132 </td> <td> <span class="glyph" title="">IJ</span> </td> <tr id="entity-ijlig"><td> <code title="">ijlig;</code> </td> <td> U+00133 </td> <td> <span class="glyph" title="">ij</span> </td> <tr id="entity-Im"><td> <code title="">Im;</code> </td> <td> U+02111 </td> <td> <span class="glyph" title="">ℑ</span> </td <tr id="entity-Imacr"><td> <code title="">Imacr;</code> </td> <td> U+0012A </td> <td> <span class="glyph" title="">Ī</span> </td> <tr id="entity-imacr"><td> <code title="">imacr;</code> </td> <td> U+0012B </td> <td> <span class="glyph" title="">ī</span> </td> <tr id="entity-image"><td> <code title="">image;</code> </td> <td> U+02111 </td> <td> <span class="glyph" title="">ℑ</span> </td> <tr id="entity-ImaginaryI"><td> <code title="">ImaginaryI;</code> </td> <td> U+02148 </td> <td> <span class="glyph" title="">ⅈ</span> </td> <tr id="entity-imagline"><td> <code title="">imagline;</code> </td> <td> U+02110 </td> <td> <span class="glyph" title="">ℐ</span> </td> <tr id="entity-imagpart"><td> <code title="">imagpart;</code> </td> <td> U+02111 </td> <td> <span class="glyph" title="">ℑ</span> </td> <tr id="entity-imath"><td> <code title="">imath;</code> </td> <td> U+00131 </td> <td> <span class="glyph" title="">ı</span> </td> <tr id="entity-imof"><td> <code title="">imof;</coe> </td> <td> U+022B7 </td> <td> <span class="glyph" title="">⊷</span> </td> <tr id="entity-imped"><td> <code title="">imped;</code> </td> <td> U+001B5 </td> <td> <span class="glyph" title="">Ƶ</span> </td> <tr id="entity-Implies"><td> <code title="">Implies;</code> </td> <td> U+021D2 </td> <td> <span class="glyph" title="">⇒</span> </td> <tr id="entity-in"><td> <code title="">in;</code> </td> <td> U+02208 </td> <td> <span class="glyph" title="">∈</span> </td> <tr id="entity-incare"><td> <code title="">incare;</code> </td> <td> U+02105 </td> <td> <span class="glyph" title="">℅</span> </td> <tr id="entity-infin"><td> <code title="">infin;</code> </td> <td> U+0221E </td> <td> <span class="glyph" title="">∞</span> </td> <tr id="entity-infintie"><td> <code title="">infintie;</code> </td> <td> U+029DD </td> <td> <span class="glyph" title="">⧝</span> </td> <tr id="entity-inodot"><td> <code title="">inodot;</code> </td> <td> U+00131 </td> <td> <span class="glyph" title=""></span> </td> <tr id="entity-Int"><td> <code title="">Int;</code> </td> <td> U+0222C </td> <td> <span class="glyph" title="">∬</span> </td> <tr id="entity-int"><td> <code title="">int;</code> </td> <td> U+0222B </td> <td> <span class="glyph" title="">∫</span> </td> <tr id="entity-intcal"><td> <code title="">intcal;</code> </td> <td> U+022BA </td> <td> <span class="glyph" title="">⊺</span> </td> <tr id="entity-integers"><td> <code title="">integers;</code> </td> <td> U+02124 </td> <td> <span class="glyph" title="">ℤ</span> </td> <tr id="entity-Integral"><td> <code title="">Integral;</code> </td> <td> U+0222B </td> <td> <span class="glyph" title="">∫</span> </td> <tr id="entity-intercal"><td> <code title="">intercal;</code> </td> <td> U+022BA </td> <td> <span class="glyph" title="">⊺</span> </td> <tr id="entity-Intersection"><td> <code title="">Intersection;</code> </td> <td> U+022C2 </td> <td> <span class="glyph" title="">⋂</span> </td> <tr id="entity-intlarhk"><td> <ode title="">intlarhk;</code> </td> <td> U+02A17 </td> <td> <span class="glyph" title="">⨗</span> </td> <tr id="entity-intprod"><td> <code title="">intprod;</code> </td> <td> U+02A3C </td> <td> <span class="glyph" title="">⨼</span> </td> <tr id="entity-InvisibleComma"><td> <code title="">InvisibleComma;</code> </td> <td> U+02063 </td> <td> <span class="glyph" title="">⁣</span> </td> <tr id="entity-InvisibleTimes"><td> <code title="">InvisibleTimes;</code> </td> <td> U+02062 </td> <td> <span class="glyph" title="">⁢</span> </td> <tr id="entity-IOcy"><td> <code title="">IOcy;</code> </td> <td> U+00401 </td> <td> <span class="glyph" title="">Ё</span> </td> <tr id="entity-iocy"><td> <code title="">iocy;</code> </td> <td> U+00451 </td> <td> <span class="glyph" title="">ё</span> </td> <tr id="entity-Iogon"><td> <code title="">Iogon;</code> </td> <td> U+0012E </td> <td> <span class="glyph" title="">Į</span> </td> <tr id="entity-iogon"><td> <code title="">iogon;</code> </t> <td> U+0012F </td> <td> <span class="glyph" title="">į</span> </td> <tr id="entity-Iopf"><td> <code title="">Iopf;</code> </td> <td> U+1D540 </td> <td> <span class="glyph" title="">𝕀</span> </td> <tr id="entity-iopf"><td> <code title="">iopf;</code> </td> <td> U+1D55A </td> <td> <span class="glyph" title="">𝕚</span> </td> <tr id="entity-Iota"><td> <code title="">Iota;</code> </td> <td> U+00399 </td> <td> <span class="glyph" title="">Ι</span> </td> <tr id="entity-iota"><td> <code title="">iota;</code> </td> <td> U+003B9 </td> <td> <span class="glyph" title="">ι</span> </td> <tr id="entity-iprod"><td> <code title="">iprod;</code> </td> <td> U+02A3C </td> <td> <span class="glyph" title="">⨼</span> </td> <tr id="entity-iquest"><td> <code title="">iquest;</code> </td> <td> U+000BF </td> <td> <span class="glyph" title="">¿</span> </td> <tr id="entity-Iscr"><td> <code title="">Iscr;</code> </td> <td> U+02110 </td> <td> <span class="glyph" title="">ℐ</span> </td><tr id="entity-iscr"><td> <code title="">iscr;</code> </td> <td> U+1D4BE </td> <td> <span class="glyph" title="">𝒾</span> </td> <tr id="entity-isin"><td> <code title="">isin;</code> </td> <td> U+02208 </td> <td> <span class="glyph" title="">∈</span> </td> <tr id="entity-isindot"><td> <code title="">isindot;</code> </td> <td> U+022F5 </td> <td> <span class="glyph" title="">⋵</span> </td> <tr id="entity-isinE"><td> <code title="">isinE;</code> </td> <td> U+022F9 </td> <td> <span class="glyph" title="">⋹</span> </td> <tr id="entity-isins"><td> <code title="">isins;</code> </td> <td> U+022F4 </td> <td> <span class="glyph" title="">⋴</span> </td> <tr id="entity-isinsv"><td> <code title="">isinsv;</code> </td> <td> U+022F3 </td> <td> <span class="glyph" title="">⋳</span> </td> <tr id="entity-isinv"><td> <code title="">isinv;</code> </td> <td> U+02208 </td> <td> <span class="glyph" title="">∈</span> </td> <tr id="entity-it"><td> <code title="">it;</code> </td> <td> U+02062</td> <td> <span class="glyph" title="">⁢</span> </td> <tr id="entity-Itilde"><td> <code title="">Itilde;</code> </td> <td> U+00128 </td> <td> <span class="glyph" title="">Ĩ</span> </td> <tr id="entity-itilde"><td> <code title="">itilde;</code> </td> <td> U+00129 </td> <td> <span class="glyph" title="">ĩ</span> </td> <tr id="entity-Iukcy"><td> <code title="">Iukcy;</code> </td> <td> U+00406 </td> <td> <span class="glyph" title="">І</span> </td> <tr id="entity-iukcy"><td> <code title="">iukcy;</code> </td> <td> U+00456 </td> <td> <span class="glyph" title="">і</span> </td> <tr id="entity-Iuml"><td> <code title="">Iuml;</code> </td> <td> U+000CF </td> <td> <span class="glyph" title="">Ï</span> </td> <tr id="entity-iuml"><td> <code title="">iuml;</code> </td> <td> U+000EF </td> <td> <span class="glyph" title="">ï</span> </td> <tr id="entity-Jcirc"><td> <code title="">Jcirc;</code> </td> <td> U+00134 </td> <td> <span class="glyph" title="">Ĵ</span> </td> <tr id="entityjcirc"><td> <code title="">jcirc;</code> </td> <td> U+00135 </td> <td> <span class="glyph" title="">ĵ</span> </td> <tr id="entity-Jcy"><td> <code title="">Jcy;</code> </td> <td> U+00419 </td> <td> <span class="glyph" title="">Й</span> </td> <tr id="entity-jcy"><td> <code title="">jcy;</code> </td> <td> U+00439 </td> <td> <span class="glyph" title="">й</span> </td> <tr id="entity-Jfr"><td> <code title="">Jfr;</code> </td> <td> U+1D50D </td> <td> <span class="glyph" title="">𝔍</span> </td> <tr id="entity-jfr"><td> <code title="">jfr;</code> </td> <td> U+1D527 </td> <td> <span class="glyph" title="">𝔧</span> </td> <tr id="entity-jmath"><td> <code title="">jmath;</code> </td> <td> U+00237 </td> <td> <span class="glyph" title="">ȷ</span> </td> <tr id="entity-Jopf"><td> <code title="">Jopf;</code> </td> <td> U+1D541 </td> <td> <span class="glyph" title="">𝕁</span> </td> <tr id="entity-jopf"><td> <code title="">jopf;</code> </td> <td> U+1D55B </td> <td> <span class="glph" title="">𝕛</span> </td> <tr id="entity-Jscr"><td> <code title="">Jscr;</code> </td> <td> U+1D4A5 </td> <td> <span class="glyph" title="">𝒥</span> </td> <tr id="entity-jscr"><td> <code title="">jscr;</code> </td> <td> U+1D4BF </td> <td> <span class="glyph" title="">𝒿</span> </td> <tr id="entity-Jsercy"><td> <code title="">Jsercy;</code> </td> <td> U+00408 </td> <td> <span class="glyph" title="">Ј</span> </td> <tr id="entity-jsercy"><td> <code title="">jsercy;</code> </td> <td> U+00458 </td> <td> <span class="glyph" title="">ј</span> </td> <tr id="entity-Jukcy"><td> <code title="">Jukcy;</code> </td> <td> U+00404 </td> <td> <span class="glyph" title="">Є</span> </td> <tr id="entity-jukcy"><td> <code title="">jukcy;</code> </td> <td> U+00454 </td> <td> <span class="glyph" title="">є</span> </td> <tr id="entity-Kappa"><td> <code title="">Kappa;</code> </td> <td> U+0039A </td> <td> <span class="glyph" title="">Κ</span> </td> <tr id="entity-kappa"><td> <coe title="">kappa;</code> </td> <td> U+003BA </td> <td> <span class="glyph" title="">κ</span> </td> <tr id="entity-kappav"><td> <code title="">kappav;</code> </td> <td> U+003F0 </td> <td> <span class="glyph" title="">ϰ</span> </td> <tr id="entity-Kcedil"><td> <code title="">Kcedil;</code> </td> <td> U+00136 </td> <td> <span class="glyph" title="">Ķ</span> </td> <tr id="entity-kcedil"><td> <code title="">kcedil;</code> </td> <td> U+00137 </td> <td> <span class="glyph" title="">ķ</span> </td> <tr id="entity-Kcy"><td> <code title="">Kcy;</code> </td> <td> U+0041A </td> <td> <span class="glyph" title="">К</span> </td> <tr id="entity-kcy"><td> <code title="">kcy;</code> </td> <td> U+0043A </td> <td> <span class="glyph" title="">к</span> </td> <tr id="entity-Kfr"><td> <code title="">Kfr;</code> </td> <td> U+1D50E </td> <td> <span class="glyph" title="">𝔎</span> </td> <tr id="entity-kfr"><td> <code title="">kfr;</code> </td> <td> U+1D528 </td> <td> <span class="glyph" title"">𝔨</span> </td> <tr id="entity-kgreen"><td> <code title="">kgreen;</code> </td> <td> U+00138 </td> <td> <span class="glyph" title="">ĸ</span> </td> <tr id="entity-KHcy"><td> <code title="">KHcy;</code> </td> <td> U+00425 </td> <td> <span class="glyph" title="">Х</span> </td> <tr id="entity-khcy"><td> <code title="">khcy;</code> </td> <td> U+00445 </td> <td> <span class="glyph" title="">х</span> </td> <tr id="entity-KJcy"><td> <code title="">KJcy;</code> </td> <td> U+0040C </td> <td> <span class="glyph" title="">Ќ</span> </td> <tr id="entity-kjcy"><td> <code title="">kjcy;</code> </td> <td> U+0045C </td> <td> <span class="glyph" title="">ќ</span> </td> <tr id="entity-Kopf"><td> <code title="">Kopf;</code> </td> <td> U+1D542 </td> <td> <span class="glyph" title="">𝕂</span> </td> <tr id="entity-kopf"><td> <code title="">kopf;</code> </td> <td> U+1D55C </td> <td> <span class="glyph" title="">𝕜</span> </td> <tr id="entity-Kscr"><td> <code title="">Kscr;</cod> </td> <td> U+1D4A6 </td> <td> <span class="glyph" title="">𝒦</span> </td> <tr id="entity-kscr"><td> <code title="">kscr;</code> </td> <td> U+1D4C0 </td> <td> <span class="glyph" title="">𝓀</span> </td> <tr id="entity-lAarr"><td> <code title="">lAarr;</code> </td> <td> U+021DA </td> <td> <span class="glyph" title="">⇚</span> </td> <tr id="entity-Lacute"><td> <code title="">Lacute;</code> </td> <td> U+00139 </td> <td> <span class="glyph" title="">Ĺ</span> </td> <tr id="entity-lacute"><td> <code title="">lacute;</code> </td> <td> U+0013A </td> <td> <span class="glyph" title="">ĺ</span> </td> <tr id="entity-laemptyv"><td> <code title="">laemptyv;</code> </td> <td> U+029B4 </td> <td> <span class="glyph" title="">⦴</span> </td> <tr id="entity-lagran"><td> <code title="">lagran;</code> </td> <td> U+02112 </td> <td> <span class="glyph" title="">ℒ</span> </td> <tr id="entity-Lambda"><td> <code title="">Lambda;</code> </td> <td> U+0039B </td> <td> <span class="glyph" tite="">Λ</span> </td> <tr id="entity-lambda"><td> <code title="">lambda;</code> </td> <td> U+003BB </td> <td> <span class="glyph" title="">λ</span> </td> <tr id="entity-Lang"><td> <code title="">Lang;</code> </td> <td> U+027EA </td> <td> <span class="glyph" title="">⟪</span> </td> <tr id="entity-lang"><td> <code title="">lang;</code> </td> <td> U+027E8 </td> <td> <span class="glyph" title="">⟨</span> </td> <tr id="entity-langd"><td> <code title="">langd;</code> </td> <td> U+02991 </td> <td> <span class="glyph" title="">⦑</span> </td> <tr id="entity-langle"><td> <code title="">langle;</code> </td> <td> U+027E8 </td> <td> <span class="glyph" title="">⟨</span> </td> <tr id="entity-lap"><td> <code title="">lap;</code> </td> <td> U+02A85 </td> <td> <span class="glyph" title="">⪅</span> </td> <tr id="entity-Laplacetrf"><td> <code title="">Laplacetrf;</code> </td> <td> U+02112 </td> <td> <span class="glyph" title="">ℒ</span> </td> <tr id="entity-laquo"><td> <code tile="">laquo;</code> </td> <td> U+000AB </td> <td> <span class="glyph" title="">«</span> </td> <tr id="entity-Larr"><td> <code title="">Larr;</code> </td> <td> U+0219E </td> <td> <span class="glyph" title="">↞</span> </td> <tr id="entity-lArr"><td> <code title="">lArr;</code> </td> <td> U+021D0 </td> <td> <span class="glyph" title="">⇐</span> </td> <tr id="entity-larr"><td> <code title="">larr;</code> </td> <td> U+02190 </td> <td> <span class="glyph" title="">←</span> </td> <tr id="entity-larrb"><td> <code title="">larrb;</code> </td> <td> U+021E4 </td> <td> <span class="glyph" title="">⇤</span> </td> <tr id="entity-larrbfs"><td> <code title="">larrbfs;</code> </td> <td> U+0291F </td> <td> <span class="glyph" title="">⤟</span> </td> <tr id="entity-larrfs"><td> <code title="">larrfs;</code> </td> <td> U+0291D </td> <td> <span class="glyph" title="">⤝</span> </td> <tr id="entity-larrhk"><td> <code title="">larrhk;</code> </td> <td> U+021A9 </td> <td> <span class="glyph title="">↩</span> </td> <tr id="entity-larrlp"><td> <code title="">larrlp;</code> </td> <td> U+021AB </td> <td> <span class="glyph" title="">↫</span> </td> <tr id="entity-larrpl"><td> <code title="">larrpl;</code> </td> <td> U+02939 </td> <td> <span class="glyph" title="">⤹</span> </td> <tr id="entity-larrsim"><td> <code title="">larrsim;</code> </td> <td> U+02973 </td> <td> <span class="glyph" title="">⥳</span> </td> <tr id="entity-larrtl"><td> <code title="">larrtl;</code> </td> <td> U+021A2 </td> <td> <span class="glyph" title="">↢</span> </td> <tr id="entity-lat"><td> <code title="">lat;</code> </td> <td> U+02AAB </td> <td> <span class="glyph" title="">⪫</span> </td> <tr id="entity-lAtail"><td> <code title="">lAtail;</code> </td> <td> U+0291B </td> <td> <span class="glyph" title="">⤛</span> </td> <tr id="entity-latail"><td> <code title="">latail;</code> </td> <td> U+02919 </td> <td> <span class="glyph" title="">⤙</span> </td> <tr id="entity-late"><td <code title="">late;</code> </td> <td> U+02AAD </td> <td> <span class="glyph" title="">⪭</span> </td> <tr id="entity-lates"><td> <code title="">lates;</code> </td> <td> U+02AAD U+0FE00 </td> <td> <span class="glyph compound" title="">⪭︀</span> </td> <tr id="entity-lBarr"><td> <code title="">lBarr;</code> </td> <td> U+0290E </td> <td> <span class="glyph" title="">⤎</span> </td> <tr id="entity-lbarr"><td> <code title="">lbarr;</code> </td> <td> U+0290C </td> <td> <span class="glyph" title="">⤌</span> </td> <tr id="entity-lbbrk"><td> <code title="">lbbrk;</code> </td> <td> U+02772 </td> <td> <span class="glyph" title="">❲</span> </td> <tr id="entity-lbrace"><td> <code title="">lbrace;</code> </td> <td> U+0007B </td> <td> <span class="glyph" title="">{</span> </td> <tr id="entity-lbrack"><td> <code title="">lbrack;</code> </td> <td> U+0005B </td> <td> <span class="glyph" title="">[</span> </td> <tr id="entity-lbrke"><td> <code title="">lbrke;</code> </td> <td> U+0298B /td> <td> <span class="glyph" title="">⦋</span> </td> <tr id="entity-lbrksld"><td> <code title="">lbrksld;</code> </td> <td> U+0298F </td> <td> <span class="glyph" title="">⦏</span> </td> <tr id="entity-lbrkslu"><td> <code title="">lbrkslu;</code> </td> <td> U+0298D </td> <td> <span class="glyph" title="">⦍</span> </td> <tr id="entity-Lcaron"><td> <code title="">Lcaron;</code> </td> <td> U+0013D </td> <td> <span class="glyph" title="">Ľ</span> </td> <tr id="entity-lcaron"><td> <code title="">lcaron;</code> </td> <td> U+0013E </td> <td> <span class="glyph" title="">ľ</span> </td> <tr id="entity-Lcedil"><td> <code title="">Lcedil;</code> </td> <td> U+0013B </td> <td> <span class="glyph" title="">Ļ</span> </td> <tr id="entity-lcedil"><td> <code title="">lcedil;</code> </td> <td> U+0013C </td> <td> <span class="glyph" title="">ļ</span> </td> <tr id="entity-lceil"><td> <code title="">lceil;</code> </td> <td> U+02308 </td> <td> <span class="glyph" title="">⌈</span> <td> <tr id="entity-lcub"><td> <code title="">lcub;</code> </td> <td> U+0007B </td> <td> <span class="glyph" title="">{</span> </td> <tr id="entity-Lcy"><td> <code title="">Lcy;</code> </td> <td> U+0041B </td> <td> <span class="glyph" title="">Л</span> </td> <tr id="entity-lcy"><td> <code title="">lcy;</code> </td> <td> U+0043B </td> <td> <span class="glyph" title="">л</span> </td> <tr id="entity-ldca"><td> <code title="">ldca;</code> </td> <td> U+02936 </td> <td> <span class="glyph" title="">⤶</span> </td> <tr id="entity-ldquo"><td> <code title="">ldquo;</code> </td> <td> U+0201C </td> <td> <span class="glyph" title="">“</span> </td> <tr id="entity-ldquor"><td> <code title="">ldquor;</code> </td> <td> U+0201E </td> <td> <span class="glyph" title="">„</span> </td> <tr id="entity-ldrdhar"><td> <code title="">ldrdhar;</code> </td> <td> U+02967 </td> <td> <span class="glyph" title="">⥧</span> </td> <tr id="entity-ldrushar"><td> <code title="">ldrushar;</code> </td> <td> U+094B </td> <td> <span class="glyph" title="">⥋</span> </td> <tr id="entity-ldsh"><td> <code title="">ldsh;</code> </td> <td> U+021B2 </td> <td> <span class="glyph" title="">↲</span> </td> <tr id="entity-lE"><td> <code title="">lE;</code> </td> <td> U+02266 </td> <td> <span class="glyph" title="">≦</span> </td> <tr id="entity-le"><td> <code title="">le;</code> </td> <td> U+02264 </td> <td> <span class="glyph" title="">≤</span> </td> <tr id="entity-LeftAngleBracket"><td> <code title="">LeftAngleBracket;</code> </td> <td> U+027E8 </td> <td> <span class="glyph" title="">⟨</span> </td> <tr id="entity-LeftArrow"><td> <code title="">LeftArrow;</code> </td> <td> U+02190 </td> <td> <span class="glyph" title="">←</span> </td> <tr id="entity-Leftarrow"><td> <code title="">Leftarrow;</code> </td> <td> U+021D0 </td> <td> <span class="glyph" title="">⇐</span> </td> <tr id="entity-leftarrow"><td> <code title="">leftarrow;</code> </td> <td> U+02190 </td> <td> <span class="glyph" title=""←</span> </td> <tr id="entity-LeftArrowBar"><td> <code title="">LeftArrowBar;</code> </td> <td> U+021E4 </td> <td> <span class="glyph" title="">⇤</span> </td> <tr id="entity-LeftArrowRightArrow"><td> <code title="">LeftArrowRightArrow;</code> </td> <td> U+021C6 </td> <td> <span class="glyph" title="">⇆</span> </td> <tr id="entity-leftarrowtail"><td> <code title="">leftarrowtail;</code> </td> <td> U+021A2 </td> <td> <span class="glyph" title="">↢</span> </td> <tr id="entity-LeftCeiling"><td> <code title="">LeftCeiling;</code> </td> <td> U+02308 </td> <td> <span class="glyph" title="">⌈</span> </td> <tr id="entity-LeftDoubleBracket"><td> <code title="">LeftDoubleBracket;</code> </td> <td> U+027E6 </td> <td> <span class="glyph" title="">⟦</span> </td> <tr id="entity-LeftDownTeeVector"><td> <code title="">LeftDownTeeVector;</code> </td> <td> U+02961 </td> <td> <span class="glyph" title="">⥡</span> </td> <tr id="entity-LeftDownVector"><td> <code title="">LeftDownVector;/code> </td> <td> U+021C3 </td> <td> <span class="glyph" title="">⇃</span> </td> <tr id="entity-LeftDownVectorBar"><td> <code title="">LeftDownVectorBar;</code> </td> <td> U+02959 </td> <td> <span class="glyph" title="">⥙</span> </td> <tr id="entity-LeftFloor"><td> <code title="">LeftFloor;</code> </td> <td> U+0230A </td> <td> <span class="glyph" title="">⌊</span> </td> <tr id="entity-leftharpoondown"><td> <code title="">leftharpoondown;</code> </td> <td> U+021BD </td> <td> <span class="glyph" title="">↽</span> </td> <tr id="entity-leftharpoonup"><td> <code title="">leftharpoonup;</code> </td> <td> U+021BC </td> <td> <span class="glyph" title="">↼</span> </td> <tr id="entity-leftleftarrows"><td> <code title="">leftleftarrows;</code> </td> <td> U+021C7 </td> <td> <span class="glyph" title="">⇇</span> </td> <tr id="entity-LeftRightArrow"><td> <code title="">LeftRightArrow;</code> </td> <td> U+02194 </td> <td> <span class="glyph" title="">↔</span> </td> <tr id="entityLeftrightarrow"><td> <code title="">Leftrightarrow;</code> </td> <td> U+021D4 </td> <td> <span class="glyph" title="">⇔</span> </td> <tr id="entity-leftrightarrow"><td> <code title="">leftrightarrow;</code> </td> <td> U+02194 </td> <td> <span class="glyph" title="">↔</span> </td> <tr id="entity-leftrightarrows"><td> <code title="">leftrightarrows;</code> </td> <td> U+021C6 </td> <td> <span class="glyph" title="">⇆</span> </td> <tr id="entity-leftrightharpoons"><td> <code title="">leftrightharpoons;</code> </td> <td> U+021CB </td> <td> <span class="glyph" title="">⇋</span> </td> <tr id="entity-leftrightsquigarrow"><td> <code title="">leftrightsquigarrow;</code> </td> <td> U+021AD </td> <td> <span class="glyph" title="">↭</span> </td> <tr id="entity-LeftRightVector"><td> <code title="">LeftRightVector;</code> </td> <td> U+0294E </td> <td> <span class="glyph" title="">⥎</span> </td> <tr id="entity-LeftTee"><td> <code title="">LeftTee;</code> </td> <td> U+022A3 </td> <td> <spa class="glyph" title="">⊣</span> </td> <tr id="entity-LeftTeeArrow"><td> <code title="">LeftTeeArrow;</code> </td> <td> U+021A4 </td> <td> <span class="glyph" title="">↤</span> </td> <tr id="entity-LeftTeeVector"><td> <code title="">LeftTeeVector;</code> </td> <td> U+0295A </td> <td> <span class="glyph" title="">⥚</span> </td> <tr id="entity-leftthreetimes"><td> <code title="">leftthreetimes;</code> </td> <td> U+022CB </td> <td> <span class="glyph" title="">⋋</span> </td> <tr id="entity-LeftTriangle"><td> <code title="">LeftTriangle;</code> </td> <td> U+022B2 </td> <td> <span class="glyph" title="">⊲</span> </td> <tr id="entity-LeftTriangleBar"><td> <code title="">LeftTriangleBar;</code> </td> <td> U+029CF </td> <td> <span class="glyph" title="">⧏</span> </td> <tr id="entity-LeftTriangleEqual"><td> <code title="">LeftTriangleEqual;</code> </td> <td> U+022B4 </td> <td> <span class="glyph" title="">⊴</span> </td> <tr id="entity-LeftUpDownVector"><td> <code title="">eftUpDownVector;</code> </td> <td> U+02951 </td> <td> <span class="glyph" title="">⥑</span> </td> <tr id="entity-LeftUpTeeVector"><td> <code title="">LeftUpTeeVector;</code> </td> <td> U+02960 </td> <td> <span class="glyph" title="">⥠</span> </td> <tr id="entity-LeftUpVector"><td> <code title="">LeftUpVector;</code> </td> <td> U+021BF </td> <td> <span class="glyph" title="">↿</span> </td> <tr id="entity-LeftUpVectorBar"><td> <code title="">LeftUpVectorBar;</code> </td> <td> U+02958 </td> <td> <span class="glyph" title="">⥘</span> </td> <tr id="entity-LeftVector"><td> <code title="">LeftVector;</code> </td> <td> U+021BC </td> <td> <span class="glyph" title="">↼</span> </td> <tr id="entity-LeftVectorBar"><td> <code title="">LeftVectorBar;</code> </td> <td> U+02952 </td> <td> <span class="glyph" title="">⥒</span> </td> <tr id="entity-lEg"><td> <code title="">lEg;</code> </td> <td> U+02A8B </td> <td> <span class="glyph" title="">⪋</span> </td> <tr id="entity-leg"><d> <code title="">leg;</code> </td> <td> U+022DA </td> <td> <span class="glyph" title="">⋚</span> </td> <tr id="entity-leq"><td> <code title="">leq;</code> </td> <td> U+02264 </td> <td> <span class="glyph" title="">≤</span> </td> <tr id="entity-leqq"><td> <code title="">leqq;</code> </td> <td> U+02266 </td> <td> <span class="glyph" title="">≦</span> </td> <tr id="entity-leqslant"><td> <code title="">leqslant;</code> </td> <td> U+02A7D </td> <td> <span class="glyph" title="">⩽</span> </td> <tr id="entity-les"><td> <code title="">les;</code> </td> <td> U+02A7D </td> <td> <span class="glyph" title="">⩽</span> </td> <tr id="entity-lescc"><td> <code title="">lescc;</code> </td> <td> U+02AA8 </td> <td> <span class="glyph" title="">⪨</span> </td> <tr id="entity-lesdot"><td> <code title="">lesdot;</code> </td> <td> U+02A7F </td> <td> <span class="glyph" title="">⩿</span> </td> <tr id="entity-lesdoto"><td> <code title="">lesdoto;</code> </td> <td> U+02A81 </td> <td> <span cass="glyph" title="">⪁</span> </td> <tr id="entity-lesdotor"><td> <code title="">lesdotor;</code> </td> <td> U+02A83 </td> <td> <span class="glyph" title="">⪃</span> </td> <tr id="entity-lesg"><td> <code title="">lesg;</code> </td> <td> U+022DA U+0FE00 </td> <td> <span class="glyph compound" title="">⋚︀</span> </td> <tr id="entity-lesges"><td> <code title="">lesges;</code> </td> <td> U+02A93 </td> <td> <span class="glyph" title="">⪓</span> </td> <tr id="entity-lessapprox"><td> <code title="">lessapprox;</code> </td> <td> U+02A85 </td> <td> <span class="glyph" title="">⪅</span> </td> <tr id="entity-lessdot"><td> <code title="">lessdot;</code> </td> <td> U+022D6 </td> <td> <span class="glyph" title="">⋖</span> </td> <tr id="entity-lesseqgtr"><td> <code title="">lesseqgtr;</code> </td> <td> U+022DA </td> <td> <span class="glyph" title="">⋚</span> </td> <tr id="entity-lesseqqgtr"><td> <code title="">lesseqqgtr;</code> </td> <td> U+02A8B </td> <td> <span class"glyph" title="">⪋</span> </td> <tr id="entity-LessEqualGreater"><td> <code title="">LessEqualGreater;</code> </td> <td> U+022DA </td> <td> <span class="glyph" title="">⋚</span> </td> <tr id="entity-LessFullEqual"><td> <code title="">LessFullEqual;</code> </td> <td> U+02266 </td> <td> <span class="glyph" title="">≦</span> </td> <tr id="entity-LessGreater"><td> <code title="">LessGreater;</code> </td> <td> U+02276 </td> <td> <span class="glyph" title="">≶</span> </td> <tr id="entity-lessgtr"><td> <code title="">lessgtr;</code> </td> <td> U+02276 </td> <td> <span class="glyph" title="">≶</span> </td> <tr id="entity-LessLess"><td> <code title="">LessLess;</code> </td> <td> U+02AA1 </td> <td> <span class="glyph" title="">⪡</span> </td> <tr id="entity-lesssim"><td> <code title="">lesssim;</code> </td> <td> U+02272 </td> <td> <span class="glyph" title="">≲</span> </td> <tr id="entity-LessSlantEqual"><td> <code title="">LessSlantEqual;</code> </td> <td> U+02A7D </td> <td <span class="glyph" title="">⩽</span> </td> <tr id="entity-LessTilde"><td> <code title="">LessTilde;</code> </td> <td> U+02272 </td> <td> <span class="glyph" title="">≲</span> </td> <tr id="entity-lfisht"><td> <code title="">lfisht;</code> </td> <td> U+0297C </td> <td> <span class="glyph" title="">⥼</span> </td> <tr id="entity-lfloor"><td> <code title="">lfloor;</code> </td> <td> U+0230A </td> <td> <span class="glyph" title="">⌊</span> </td> <tr id="entity-Lfr"><td> <code title="">Lfr;</code> </td> <td> U+1D50F </td> <td> <span class="glyph" title="">𝔏</span> </td> <tr id="entity-lfr"><td> <code title="">lfr;</code> </td> <td> U+1D529 </td> <td> <span class="glyph" title="">𝔩</span> </td> <tr id="entity-lg"><td> <code title="">lg;</code> </td> <td> U+02276 </td> <td> <span class="glyph" title="">≶</span> </td> <tr id="entity-lgE"><td> <code title="">lgE;</code> </td> <td> U+02A91 </td> <td> <span class="glyph" title="">⪑</span> </td> <tr id="entity-lHr"><td> <code title="">lHar;</code> </td> <td> U+02962 </td> <td> <span class="glyph" title="">⥢</span> </td> <tr id="entity-lhard"><td> <code title="">lhard;</code> </td> <td> U+021BD </td> <td> <span class="glyph" title="">↽</span> </td> <tr id="entity-lharu"><td> <code title="">lharu;</code> </td> <td> U+021BC </td> <td> <span class="glyph" title="">↼</span> </td> <tr id="entity-lharul"><td> <code title="">lharul;</code> </td> <td> U+0296A </td> <td> <span class="glyph" title="">⥪</span> </td> <tr id="entity-lhblk"><td> <code title="">lhblk;</code> </td> <td> U+02584 </td> <td> <span class="glyph" title="">▄</span> </td> <tr id="entity-LJcy"><td> <code title="">LJcy;</code> </td> <td> U+00409 </td> <td> <span class="glyph" title="">Љ</span> </td> <tr id="entity-ljcy"><td> <code title="">ljcy;</code> </td> <td> U+00459 </td> <td> <span class="glyph" title="">љ</span> </td> <tr id="entity-Ll"><td> <code title="">Ll;</code> </td> <td> U+022D8 </td> <td> <span clas="glyph" title="">⋘</span> </td> <tr id="entity-ll"><td> <code title="">ll;</code> </td> <td> U+0226A </td> <td> <span class="glyph" title="">≪</span> </td> <tr id="entity-llarr"><td> <code title="">llarr;</code> </td> <td> U+021C7 </td> <td> <span class="glyph" title="">⇇</span> </td> <tr id="entity-llcorner"><td> <code title="">llcorner;</code> </td> <td> U+0231E </td> <td> <span class="glyph" title="">⌞</span> </td> <tr id="entity-Lleftarrow"><td> <code title="">Lleftarrow;</code> </td> <td> U+021DA </td> <td> <span class="glyph" title="">⇚</span> </td> <tr id="entity-llhard"><td> <code title="">llhard;</code> </td> <td> U+0296B </td> <td> <span class="glyph" title="">⥫</span> </td> <tr id="entity-lltri"><td> <code title="">lltri;</code> </td> <td> U+025FA </td> <td> <span class="glyph" title="">◺</span> </td> <tr id="entity-Lmidot"><td> <code title="">Lmidot;</code> </td> <td> U+0013F </td> <td> <span class="glyph" title="">Ŀ</span> </td> <tr id="entity-lmdot"><td> <code title="">lmidot;</code> </td> <td> U+00140 </td> <td> <span class="glyph" title="">ŀ</span> </td> <tr id="entity-lmoust"><td> <code title="">lmoust;</code> </td> <td> U+023B0 </td> <td> <span class="glyph" title="">⎰</span> </td> <tr id="entity-lmoustache"><td> <code title="">lmoustache;</code> </td> <td> U+023B0 </td> <td> <span class="glyph" title="">⎰</span> </td> <tr id="entity-lnap"><td> <code title="">lnap;</code> </td> <td> U+02A89 </td> <td> <span class="glyph" title="">⪉</span> </td> <tr id="entity-lnapprox"><td> <code title="">lnapprox;</code> </td> <td> U+02A89 </td> <td> <span class="glyph" title="">⪉</span> </td> <tr id="entity-lnE"><td> <code title="">lnE;</code> </td> <td> U+02268 </td> <td> <span class="glyph" title="">≨</span> </td> <tr id="entity-lne"><td> <code title="">lne;</code> </td> <td> U+02A87 </td> <td> <span class="glyph" title="">⪇</span> </td> <tr id="entity-lneq"><td> <code title="">lneq;</code> </td> <td> U+02A87 </t> <td> <span class="glyph" title="">⪇</span> </td> <tr id="entity-lneqq"><td> <code title="">lneqq;</code> </td> <td> U+02268 </td> <td> <span class="glyph" title="">≨</span> </td> <tr id="entity-lnsim"><td> <code title="">lnsim;</code> </td> <td> U+022E6 </td> <td> <span class="glyph" title="">⋦</span> </td> <tr id="entity-loang"><td> <code title="">loang;</code> </td> <td> U+027EC </td> <td> <span class="glyph" title="">⟬</span> </td> <tr id="entity-loarr"><td> <code title="">loarr;</code> </td> <td> U+021FD </td> <td> <span class="glyph" title="">⇽</span> </td> <tr id="entity-lobrk"><td> <code title="">lobrk;</code> </td> <td> U+027E6 </td> <td> <span class="glyph" title="">⟦</span> </td> <tr id="entity-LongLeftArrow"><td> <code title="">LongLeftArrow;</code> </td> <td> U+027F5 </td> <td> <span class="glyph" title="">⟵</span> </td> <tr id="entity-Longleftarrow"><td> <code title="">Longleftarrow;</code> </td> <td> U+027F8 </td> <td> <span class="glyph" title=">⟸</span> </td> <tr id="entity-longleftarrow"><td> <code title="">longleftarrow;</code> </td> <td> U+027F5 </td> <td> <span class="glyph" title="">⟵</span> </td> <tr id="entity-LongLeftRightArrow"><td> <code title="">LongLeftRightArrow;</code> </td> <td> U+027F7 </td> <td> <span class="glyph" title="">⟷</span> </td> <tr id="entity-Longleftrightarrow"><td> <code title="">Longleftrightarrow;</code> </td> <td> U+027FA </td> <td> <span class="glyph" title="">⟺</span> </td> <tr id="entity-longleftrightarrow"><td> <code title="">longleftrightarrow;</code> </td> <td> U+027F7 </td> <td> <span class="glyph" title="">⟷</span> </td> <tr id="entity-longmapsto"><td> <code title="">longmapsto;</code> </td> <td> U+027FC </td> <td> <span class="glyph" title="">⟼</span> </td> <tr id="entity-LongRightArrow"><td> <code title="">LongRightArrow;</code> </td> <td> U+027F6 </td> <td> <span class="glyph" title="">⟶</span> </td> <tr id="entity-Longrightarrow"><td> <code title="">Longightarrow;</code> </td> <td> U+027F9 </td> <td> <span class="glyph" title="">⟹</span> </td> <tr id="entity-longrightarrow"><td> <code title="">longrightarrow;</code> </td> <td> U+027F6 </td> <td> <span class="glyph" title="">⟶</span> </td> <tr id="entity-looparrowleft"><td> <code title="">looparrowleft;</code> </td> <td> U+021AB </td> <td> <span class="glyph" title="">↫</span> </td> <tr id="entity-looparrowright"><td> <code title="">looparrowright;</code> </td> <td> U+021AC </td> <td> <span class="glyph" title="">↬</span> </td> <tr id="entity-lopar"><td> <code title="">lopar;</code> </td> <td> U+02985 </td> <td> <span class="glyph" title="">⦅</span> </td> <tr id="entity-Lopf"><td> <code title="">Lopf;</code> </td> <td> U+1D543 </td> <td> <span class="glyph" title="">𝕃</span> </td> <tr id="entity-lopf"><td> <code title="">lopf;</code> </td> <td> U+1D55D </td> <td> <span class="glyph" title="">𝕝</span> </td> <tr id="entity-loplus"><td> <code title="">loplus;</cde> </td> <td> U+02A2D </td> <td> <span class="glyph" title="">⨭</span> </td> <tr id="entity-lotimes"><td> <code title="">lotimes;</code> </td> <td> U+02A34 </td> <td> <span class="glyph" title="">⨴</span> </td> <tr id="entity-lowast"><td> <code title="">lowast;</code> </td> <td> U+02217 </td> <td> <span class="glyph" title="">∗</span> </td> <tr id="entity-lowbar"><td> <code title="">lowbar;</code> </td> <td> U+0005F </td> <td> <span class="glyph" title="">_</span> </td> <tr id="entity-LowerLeftArrow"><td> <code title="">LowerLeftArrow;</code> </td> <td> U+02199 </td> <td> <span class="glyph" title="">↙</span> </td> <tr id="entity-LowerRightArrow"><td> <code title="">LowerRightArrow;</code> </td> <td> U+02198 </td> <td> <span class="glyph" title="">↘</span> </td> <tr id="entity-loz"><td> <code title="">loz;</code> </td> <td> U+025CA </td> <td> <span class="glyph" title="">◊</span> </td> <tr id="entity-lozenge"><td> <code title="">lozenge;</code> </td> <td> U+025CA </td> td> <span class="glyph" title="">◊</span> </td> <tr id="entity-lozf"><td> <code title="">lozf;</code> </td> <td> U+029EB </td> <td> <span class="glyph" title="">⧫</span> </td> <tr id="entity-lpar"><td> <code title="">lpar;</code> </td> <td> U+00028 </td> <td> <span class="glyph" title="">(</span> </td> <tr id="entity-lparlt"><td> <code title="">lparlt;</code> </td> <td> U+02993 </td> <td> <span class="glyph" title="">⦓</span> </td> <tr id="entity-lrarr"><td> <code title="">lrarr;</code> </td> <td> U+021C6 </td> <td> <span class="glyph" title="">⇆</span> </td> <tr id="entity-lrcorner"><td> <code title="">lrcorner;</code> </td> <td> U+0231F </td> <td> <span class="glyph" title="">⌟</span> </td> <tr id="entity-lrhar"><td> <code title="">lrhar;</code> </td> <td> U+021CB </td> <td> <span class="glyph" title="">⇋</span> </td> <tr id="entity-lrhard"><td> <code title="">lrhard;</code> </td> <td> U+0296D </td> <td> <span class="glyph" title="">⥭</span> </td> <tr id="entity-rm"><td> <code title="">lrm;</code> </td> <td> U+0200E </td> <td> <span class="glyph" title="">‎</span> </td> <tr id="entity-lrtri"><td> <code title="">lrtri;</code> </td> <td> U+022BF </td> <td> <span class="glyph" title="">⊿</span> </td> <tr id="entity-lsaquo"><td> <code title="">lsaquo;</code> </td> <td> U+02039 </td> <td> <span class="glyph" title="">‹</span> </td> <tr id="entity-Lscr"><td> <code title="">Lscr;</code> </td> <td> U+02112 </td> <td> <span class="glyph" title="">ℒ</span> </td> <tr id="entity-lscr"><td> <code title="">lscr;</code> </td> <td> U+1D4C1 </td> <td> <span class="glyph" title="">𝓁</span> </td> <tr id="entity-Lsh"><td> <code title="">Lsh;</code> </td> <td> U+021B0 </td> <td> <span class="glyph" title="">↰</span> </td> <tr id="entity-lsh"><td> <code title="">lsh;</code> </td> <td> U+021B0 </td> <td> <span class="glyph" title="">↰</span> </td> <tr id="entity-lsim"><td> <code title="">lsim;</code> </td> <td> U+02272 </td> <td> <span class="glph" title="">≲</span> </td> <tr id="entity-lsime"><td> <code title="">lsime;</code> </td> <td> U+02A8D </td> <td> <span class="glyph" title="">⪍</span> </td> <tr id="entity-lsimg"><td> <code title="">lsimg;</code> </td> <td> U+02A8F </td> <td> <span class="glyph" title="">⪏</span> </td> <tr id="entity-lsqb"><td> <code title="">lsqb;</code> </td> <td> U+0005B </td> <td> <span class="glyph" title="">[</span> </td> <tr id="entity-lsquo"><td> <code title="">lsquo;</code> </td> <td> U+02018 </td> <td> <span class="glyph" title="">‘</span> </td> <tr id="entity-lsquor"><td> <code title="">lsquor;</code> </td> <td> U+0201A </td> <td> <span class="glyph" title="">‚</span> </td> <tr id="entity-Lstrok"><td> <code title="">Lstrok;</code> </td> <td> U+00141 </td> <td> <span class="glyph" title="">Ł</span> </td> <tr id="entity-lstrok"><td> <code title="">lstrok;</code> </td> <td> U+00142 </td> <td> <span class="glyph" title="">ł</span> </td> <tr id="entity-LT"><td> <code title=""LT;</code> </td> <td> U+0003C </td> <td> <span class="glyph" title=""><</span> </td> <tr id="entity-Lt"><td> <code title="">Lt;</code> </td> <td> U+0226A </td> <td> <span class="glyph" title="">≪</span> </td> <tr id="entity-lt"><td> <code title="">lt;</code> </td> <td> U+0003C </td> <td> <span class="glyph" title=""><</span> </td> <tr id="entity-ltcc"><td> <code title="">ltcc;</code> </td> <td> U+02AA6 </td> <td> <span class="glyph" title="">⪦</span> </td> <tr id="entity-ltcir"><td> <code title="">ltcir;</code> </td> <td> U+02A79 </td> <td> <span class="glyph" title="">⩹</span> </td> <tr id="entity-ltdot"><td> <code title="">ltdot;</code> </td> <td> U+022D6 </td> <td> <span class="glyph" title="">⋖</span> </td> <tr id="entity-lthree"><td> <code title="">lthree;</code> </td> <td> U+022CB </td> <td> <span class="glyph" title="">⋋</span> </td> <tr id="entity-ltimes"><td> <code title="">ltimes;</code> </td> <td> U+022C9 </td> <td> <span class="glyph" title="">⋉</span></td> <tr id="entity-ltlarr"><td> <code title="">ltlarr;</code> </td> <td> U+02976 </td> <td> <span class="glyph" title="">⥶</span> </td> <tr id="entity-ltquest"><td> <code title="">ltquest;</code> </td> <td> U+02A7B </td> <td> <span class="glyph" title="">⩻</span> </td> <tr id="entity-ltri"><td> <code title="">ltri;</code> </td> <td> U+025C3 </td> <td> <span class="glyph" title="">◃</span> </td> <tr id="entity-ltrie"><td> <code title="">ltrie;</code> </td> <td> U+022B4 </td> <td> <span class="glyph" title="">⊴</span> </td> <tr id="entity-ltrif"><td> <code title="">ltrif;</code> </td> <td> U+025C2 </td> <td> <span class="glyph" title="">◂</span> </td> <tr id="entity-ltrPar"><td> <code title="">ltrPar;</code> </td> <td> U+02996 </td> <td> <span class="glyph" title="">⦖</span> </td> <tr id="entity-lurdshar"><td> <code title="">lurdshar;</code> </td> <td> U+0294A </td> <td> <span class="glyph" title="">⥊</span> </td> <tr id="entity-luruhar"><td> <code title="">luruar;</code> </td> <td> U+02966 </td> <td> <span class="glyph" title="">⥦</span> </td> <tr id="entity-lvertneqq"><td> <code title="">lvertneqq;</code> </td> <td> U+02268 U+0FE00 </td> <td> <span class="glyph compound" title="">≨︀</span> </td> <tr id="entity-lvnE"><td> <code title="">lvnE;</code> </td> <td> U+02268 U+0FE00 </td> <td> <span class="glyph compound" title="">≨︀</span> </td> <tr id="entity-macr"><td> <code title="">macr;</code> </td> <td> U+000AF </td> <td> <span class="glyph" title="">¯</span> </td> <tr id="entity-male"><td> <code title="">male;</code> </td> <td> U+02642 </td> <td> <span class="glyph" title="">♂</span> </td> <tr id="entity-malt"><td> <code title="">malt;</code> </td> <td> U+02720 </td> <td> <span class="glyph" title="">✠</span> </td> <tr id="entity-maltese"><td> <code title="">maltese;</code> </td> <td> U+02720 </td> <td> <span class="glyph" title="">✠</span> </td> <tr id="entity-Map"><td> <code title="">Map;</code> </td> <d> U+02905 </td> <td> <span class="glyph" title="">⤅</span> </td> <tr id="entity-map"><td> <code title="">map;</code> </td> <td> U+021A6 </td> <td> <span class="glyph" title="">↦</span> </td> <tr id="entity-mapsto"><td> <code title="">mapsto;</code> </td> <td> U+021A6 </td> <td> <span class="glyph" title="">↦</span> </td> <tr id="entity-mapstodown"><td> <code title="">mapstodown;</code> </td> <td> U+021A7 </td> <td> <span class="glyph" title="">↧</span> </td> <tr id="entity-mapstoleft"><td> <code title="">mapstoleft;</code> </td> <td> U+021A4 </td> <td> <span class="glyph" title="">↤</span> </td> <tr id="entity-mapstoup"><td> <code title="">mapstoup;</code> </td> <td> U+021A5 </td> <td> <span class="glyph" title="">↥</span> </td> <tr id="entity-marker"><td> <code title="">marker;</code> </td> <td> U+025AE </td> <td> <span class="glyph" title="">▮</span> </td> <tr id="entity-mcomma"><td> <code title="">mcomma;</code> </td> <td> U+02A29 </td> <td> <span class="glyph"title="">⨩</span> </td> <tr id="entity-Mcy"><td> <code title="">Mcy;</code> </td> <td> U+0041C </td> <td> <span class="glyph" title="">М</span> </td> <tr id="entity-mcy"><td> <code title="">mcy;</code> </td> <td> U+0043C </td> <td> <span class="glyph" title="">м</span> </td> <tr id="entity-mdash"><td> <code title="">mdash;</code> </td> <td> U+02014 </td> <td> <span class="glyph" title="">—</span> </td> <tr id="entity-mDDot"><td> <code title="">mDDot;</code> </td> <td> U+0223A </td> <td> <span class="glyph" title="">∺</span> </td> <tr id="entity-measuredangle"><td> <code title="">measuredangle;</code> </td> <td> U+02221 </td> <td> <span class="glyph" title="">∡</span> </td> <tr id="entity-MediumSpace"><td> <code title="">MediumSpace;</code> </td> <td> U+0205F </td> <td> <span class="glyph" title=""> </span> </td> <tr id="entity-Mellintrf"><td> <code title="">Mellintrf;</code> </td> <td> U+02133 </td> <td> <span class="glyph" title="">ℳ</span> </td> <tr id="entty-Mfr"><td> <code title="">Mfr;</code> </td> <td> U+1D510 </td> <td> <span class="glyph" title="">𝔐</span> </td> <tr id="entity-mfr"><td> <code title="">mfr;</code> </td> <td> U+1D52A </td> <td> <span class="glyph" title="">𝔪</span> </td> <tr id="entity-mho"><td> <code title="">mho;</code> </td> <td> U+02127 </td> <td> <span class="glyph" title="">℧</span> </td> <tr id="entity-micro"><td> <code title="">micro;</code> </td> <td> U+000B5 </td> <td> <span class="glyph" title="">µ</span> </td> <tr id="entity-mid"><td> <code title="">mid;</code> </td> <td> U+02223 </td> <td> <span class="glyph" title="">∣</span> </td> <tr id="entity-midast"><td> <code title="">midast;</code> </td> <td> U+0002A </td> <td> <span class="glyph" title="">*</span> </td> <tr id="entity-midcir"><td> <code title="">midcir;</code> </td> <td> U+02AF0 </td> <td> <span class="glyph" title="">⫰</span> </td> <tr id="entity-middot"><td> <code title="">middot;</code> </td> <td> U+000B7 </td> <td> <span cass="glyph" title="">·</span> </td> <tr id="entity-minus"><td> <code title="">minus;</code> </td> <td> U+02212 </td> <td> <span class="glyph" title="">−</span> </td> <tr id="entity-minusb"><td> <code title="">minusb;</code> </td> <td> U+0229F </td> <td> <span class="glyph" title="">⊟</span> </td> <tr id="entity-minusd"><td> <code title="">minusd;</code> </td> <td> U+02238 </td> <td> <span class="glyph" title="">∸</span> </td> <tr id="entity-minusdu"><td> <code title="">minusdu;</code> </td> <td> U+02A2A </td> <td> <span class="glyph" title="">⨪</span> </td> <tr id="entity-MinusPlus"><td> <code title="">MinusPlus;</code> </td> <td> U+02213 </td> <td> <span class="glyph" title="">∓</span> </td> <tr id="entity-mlcp"><td> <code title="">mlcp;</code> </td> <td> U+02ADB </td> <td> <span class="glyph" title="">⫛</span> </td> <tr id="entity-mldr"><td> <code title="">mldr;</code> </td> <td> U+02026 </td> <td> <span class="glyph" title="">…</span> </td> <tr id="entiy-mnplus"><td> <code title="">mnplus;</code> </td> <td> U+02213 </td> <td> <span class="glyph" title="">∓</span> </td> <tr id="entity-models"><td> <code title="">models;</code> </td> <td> U+022A7 </td> <td> <span class="glyph" title="">⊧</span> </td> <tr id="entity-Mopf"><td> <code title="">Mopf;</code> </td> <td> U+1D544 </td> <td> <span class="glyph" title="">𝕄</span> </td> <tr id="entity-mopf"><td> <code title="">mopf;</code> </td> <td> U+1D55E </td> <td> <span class="glyph" title="">𝕞</span> </td> <tr id="entity-mp"><td> <code title="">mp;</code> </td> <td> U+02213 </td> <td> <span class="glyph" title="">∓</span> </td> <tr id="entity-Mscr"><td> <code title="">Mscr;</code> </td> <td> U+02133 </td> <td> <span class="glyph" title="">ℳ</span> </td> <tr id="entity-mscr"><td> <code title="">mscr;</code> </td> <td> U+1D4C2 </td> <td> <span class="glyph" title="">𝓂</span> </td> <tr id="entity-mstpos"><td> <code title="">mstpos;</code> </td> <td> U+0223E </td> <td><span class="glyph" title="">∾</span> </td> <tr id="entity-Mu"><td> <code title="">Mu;</code> </td> <td> U+0039C </td> <td> <span class="glyph" title="">Μ</span> </td> <tr id="entity-mu"><td> <code title="">mu;</code> </td> <td> U+003BC </td> <td> <span class="glyph" title="">μ</span> </td> <tr id="entity-multimap"><td> <code title="">multimap;</code> </td> <td> U+022B8 </td> <td> <span class="glyph" title="">⊸</span> </td> <tr id="entity-mumap"><td> <code title="">mumap;</code> </td> <td> U+022B8 </td> <td> <span class="glyph" title="">⊸</span> </td> <tr id="entity-nabla"><td> <code title="">nabla;</code> </td> <td> U+02207 </td> <td> <span class="glyph" title="">∇</span> </td> <tr id="entity-Nacute"><td> <code title="">Nacute;</code> </td> <td> U+00143 </td> <td> <span class="glyph" title="">Ń</span> </td> <tr id="entity-nacute"><td> <code title="">nacute;</code> </td> <td> U+00144 </td> <td> <span class="glyph" title="">ń</span> </td> <tr id="entity-nang"><td> <cod title="">nang;</code> </td> <td> U+02220 U+020D2 </td> <td> <span class="glyph compound" title="">∠⃒</span> </td> <tr id="entity-nap"><td> <code title="">nap;</code> </td> <td> U+02249 </td> <td> <span class="glyph" title="">≉</span> </td> <tr id="entity-napE"><td> <code title="">napE;</code> </td> <td> U+02A70 U+00338 </td> <td> <span class="glyph compound" title="">⩰̸</span> </td> <tr id="entity-napid"><td> <code title="">napid;</code> </td> <td> U+0224B U+00338 </td> <td> <span class="glyph compound" title="">≋̸</span> </td> <tr id="entity-napos"><td> <code title="">napos;</code> </td> <td> U+00149 </td> <td> <span class="glyph" title="">ʼn</span> </td> <tr id="entity-napprox"><td> <code title="">napprox;</code> </td> <td> U+02249 </td> <td> <span class="glyph" title="">≉</span> </td> <tr id="entity-natur"><td> <code title="">natur;</code> </td> <td> U+0266E </td> <td> <span class="glyph" title="">♮</span> </td> <tr id="entity-natural"><td> <code tile="">natural;</code> </td> <td> U+0266E </td> <td> <span class="glyph" title="">♮</span> </td> <tr id="entity-naturals"><td> <code title="">naturals;</code> </td> <td> U+02115 </td> <td> <span class="glyph" title="">ℕ</span> </td> <tr id="entity-nbsp"><td> <code title="">nbsp;</code> </td> <td> U+000A0 </td> <td> <span class="glyph" title=""> </span> </td> <tr id="entity-nbump"><td> <code title="">nbump;</code> </td> <td> U+0224E U+00338 </td> <td> <span class="glyph compound" title="">≎̸</span> </td> <tr id="entity-nbumpe"><td> <code title="">nbumpe;</code> </td> <td> U+0224F U+00338 </td> <td> <span class="glyph compound" title="">≏̸</span> </td> <tr id="entity-ncap"><td> <code title="">ncap;</code> </td> <td> U+02A43 </td> <td> <span class="glyph" title="">⩃</span> </td> <tr id="entity-Ncaron"><td> <code title="">Ncaron;</code> </td> <td> U+00147 </td> <td> <span class="glyph" title="">Ň</span> </td> <tr id="entity-ncaron"><td> <code title="">ncaron;</cde> </td> <td> U+00148 </td> <td> <span class="glyph" title="">ň</span> </td> <tr id="entity-Ncedil"><td> <code title="">Ncedil;</code> </td> <td> U+00145 </td> <td> <span class="glyph" title="">Ņ</span> </td> <tr id="entity-ncedil"><td> <code title="">ncedil;</code> </td> <td> U+00146 </td> <td> <span class="glyph" title="">ņ</span> </td> <tr id="entity-ncong"><td> <code title="">ncong;</code> </td> <td> U+02247 </td> <td> <span class="glyph" title="">≇</span> </td> <tr id="entity-ncongdot"><td> <code title="">ncongdot;</code> </td> <td> U+02A6D U+00338 </td> <td> <span class="glyph compound" title="">⩭̸</span> </td> <tr id="entity-ncup"><td> <code title="">ncup;</code> </td> <td> U+02A42 </td> <td> <span class="glyph" title="">⩂</span> </td> <tr id="entity-Ncy"><td> <code title="">Ncy;</code> </td> <td> U+0041D </td> <td> <span class="glyph" title="">Н</span> </td> <tr id="entity-ncy"><td> <code title="">ncy;</code> </td> <td> U+0043D </td> <td> <span class="gyph" title="">н</span> </td> <tr id="entity-ndash"><td> <code title="">ndash;</code> </td> <td> U+02013 </td> <td> <span class="glyph" title="">–</span> </td> <tr id="entity-ne"><td> <code title="">ne;</code> </td> <td> U+02260 </td> <td> <span class="glyph" title="">≠</span> </td> <tr id="entity-nearhk"><td> <code title="">nearhk;</code> </td> <td> U+02924 </td> <td> <span class="glyph" title="">⤤</span> </td> <tr id="entity-neArr"><td> <code title="">neArr;</code> </td> <td> U+021D7 </td> <td> <span class="glyph" title="">⇗</span> </td> <tr id="entity-nearr"><td> <code title="">nearr;</code> </td> <td> U+02197 </td> <td> <span class="glyph" title="">↗</span> </td> <tr id="entity-nearrow"><td> <code title="">nearrow;</code> </td> <td> U+02197 </td> <td> <span class="glyph" title="">↗</span> </td> <tr id="entity-nedot"><td> <code title="">nedot;</code> </td> <td> U+02250 U+00338 </td> <td> <span class="glyph compound" title="">≐̸</span> </td> <tr id="entityNegativeMediumSpace"><td> <code title="">NegativeMediumSpace;</code> </td> <td> U+0200B </td> <td> <span class="glyph" title="">​</span> </td> <tr id="entity-NegativeThickSpace"><td> <code title="">NegativeThickSpace;</code> </td> <td> U+0200B </td> <td> <span class="glyph" title="">​</span> </td> <tr id="entity-NegativeThinSpace"><td> <code title="">NegativeThinSpace;</code> </td> <td> U+0200B </td> <td> <span class="glyph" title="">​</span> </td> <tr id="entity-NegativeVeryThinSpace"><td> <code title="">NegativeVeryThinSpace;</code> </td> <td> U+0200B </td> <td> <span class="glyph" title="">​</span> </td> <tr id="entity-nequiv"><td> <code title="">nequiv;</code> </td> <td> U+02262 </td> <td> <span class="glyph" title="">≢</span> </td> <tr id="entity-nesear"><td> <code title="">nesear;</code> </td> <td> U+02928 </td> <td> <span class="glyph" title="">⤨</span> </td> <tr id="entity-nesim"><td> <code title="">nesim;</code> </td> <td> U+02242 U+00338 </td> <td> <span class=glyph compound" title="">≂̸</span> </td> <tr id="entity-NestedGreaterGreater"><td> <code title="">NestedGreaterGreater;</code> </td> <td> U+0226B </td> <td> <span class="glyph" title="">≫</span> </td> <tr id="entity-NestedLessLess"><td> <code title="">NestedLessLess;</code> </td> <td> U+0226A </td> <td> <span class="glyph" title="">≪</span> </td> <tr id="entity-NewLine"><td> <code title="">NewLine;</code> </td> <td> U+0000A </td> <td> <span class="glyph control" title="">␊</span> </td> <tr id="entity-nexist"><td> <code title="">nexist;</code> </td> <td> U+02204 </td> <td> <span class="glyph" title="">∄</span> </td> <tr id="entity-nexists"><td> <code title="">nexists;</code> </td> <td> U+02204 </td> <td> <span class="glyph" title="">∄</span> </td> <tr id="entity-Nfr"><td> <code title="">Nfr;</code> </td> <td> U+1D511 </td> <td> <span class="glyph" title="">𝔑</span> </td> <tr id="entity-nfr"><td> <code title="">nfr;</code> </td> <td> U+1D52B </td> <td> <span clss="glyph" title="">𝔫</span> </td> <tr id="entity-ngE"><td> <code title="">ngE;</code> </td> <td> U+02267 U+00338 </td> <td> <span class="glyph compound" title="">≧̸</span> </td> <tr id="entity-nge"><td> <code title="">nge;</code> </td> <td> U+02271 </td> <td> <span class="glyph" title="">≱</span> </td> <tr id="entity-ngeq"><td> <code title="">ngeq;</code> </td> <td> U+02271 </td> <td> <span class="glyph" title="">≱</span> </td> <tr id="entity-ngeqq"><td> <code title="">ngeqq;</code> </td> <td> U+02267 U+00338 </td> <td> <span class="glyph compound" title="">≧̸</span> </td> <tr id="entity-ngeqslant"><td> <code title="">ngeqslant;</code> </td> <td> U+02A7E U+00338 </td> <td> <span class="glyph compound" title="">⩾̸</span> </td> <tr id="entity-nges"><td> <code title="">nges;</code> </td> <td> U+02A7E U+00338 </td> <td> <span class="glyph compound" title="">⩾̸</span> </td> <tr id="entity-nGg"><td> <code title="">nGg;</code> </td> <td> U+022D9 U+0338 </td> <td> <span class="glyph compound" title="">⋙̸</span> </td> <tr id="entity-ngsim"><td> <code title="">ngsim;</code> </td> <td> U+02275 </td> <td> <span class="glyph" title="">≵</span> </td> <tr id="entity-nGt"><td> <code title="">nGt;</code> </td> <td> U+0226B U+020D2 </td> <td> <span class="glyph compound" title="">≫⃒</span> </td> <tr id="entity-ngt"><td> <code title="">ngt;</code> </td> <td> U+0226F </td> <td> <span class="glyph" title="">≯</span> </td> <tr id="entity-ngtr"><td> <code title="">ngtr;</code> </td> <td> U+0226F </td> <td> <span class="glyph" title="">≯</span> </td> <tr id="entity-nGtv"><td> <code title="">nGtv;</code> </td> <td> U+0226B U+00338 </td> <td> <span class="glyph compound" title="">≫̸</span> </td> <tr id="entity-nhArr"><td> <code title="">nhArr;</code> </td> <td> U+021CE </td> <td> <span class="glyph" title="">⇎</span> </td> <tr id="entity-nharr"><td> <code title="">nharr;</code> </td> <td> U+021AE </td> <td> <spa class="glyph" title="">↮</span> </td> <tr id="entity-nhpar"><td> <code title="">nhpar;</code> </td> <td> U+02AF2 </td> <td> <span class="glyph" title="">⫲</span> </td> <tr id="entity-ni"><td> <code title="">ni;</code> </td> <td> U+0220B </td> <td> <span class="glyph" title="">∋</span> </td> <tr id="entity-nis"><td> <code title="">nis;</code> </td> <td> U+022FC </td> <td> <span class="glyph" title="">⋼</span> </td> <tr id="entity-nisd"><td> <code title="">nisd;</code> </td> <td> U+022FA </td> <td> <span class="glyph" title="">⋺</span> </td> <tr id="entity-niv"><td> <code title="">niv;</code> </td> <td> U+0220B </td> <td> <span class="glyph" title="">∋</span> </td> <tr id="entity-NJcy"><td> <code title="">NJcy;</code> </td> <td> U+0040A </td> <td> <span class="glyph" title="">Њ</span> </td> <tr id="entity-njcy"><td> <code title="">njcy;</code> </td> <td> U+0045A </td> <td> <span class="glyph" title="">њ</span> </td> <tr id="entity-nlArr"><td> <code title="">nlArr;</ode> </td> <td> U+021CD </td> <td> <span class="glyph" title="">⇍</span> </td> <tr id="entity-nlarr"><td> <code title="">nlarr;</code> </td> <td> U+0219A </td> <td> <span class="glyph" title="">↚</span> </td> <tr id="entity-nldr"><td> <code title="">nldr;</code> </td> <td> U+02025 </td> <td> <span class="glyph" title="">‥</span> </td> <tr id="entity-nlE"><td> <code title="">nlE;</code> </td> <td> U+02266 U+00338 </td> <td> <span class="glyph compound" title="">≦̸</span> </td> <tr id="entity-nle"><td> <code title="">nle;</code> </td> <td> U+02270 </td> <td> <span class="glyph" title="">≰</span> </td> <tr id="entity-nLeftarrow"><td> <code title="">nLeftarrow;</code> </td> <td> U+021CD </td> <td> <span class="glyph" title="">⇍</span> </td> <tr id="entity-nleftarrow"><td> <code title="">nleftarrow;</code> </td> <td> U+0219A </td> <td> <span class="glyph" title="">↚</span> </td> <tr id="entity-nLeftrightarrow"><td> <code title="">nLeftrightarrow;</code> </td> <td> U021CE </td> <td> <span class="glyph" title="">⇎</span> </td> <tr id="entity-nleftrightarrow"><td> <code title="">nleftrightarrow;</code> </td> <td> U+021AE </td> <td> <span class="glyph" title="">↮</span> </td> <tr id="entity-nleq"><td> <code title="">nleq;</code> </td> <td> U+02270 </td> <td> <span class="glyph" title="">≰</span> </td> <tr id="entity-nleqq"><td> <code title="">nleqq;</code> </td> <td> U+02266 U+00338 </td> <td> <span class="glyph compound" title="">≦̸</span> </td> <tr id="entity-nleqslant"><td> <code title="">nleqslant;</code> </td> <td> U+02A7D U+00338 </td> <td> <span class="glyph compound" title="">⩽̸</span> </td> <tr id="entity-nles"><td> <code title="">nles;</code> </td> <td> U+02A7D U+00338 </td> <td> <span class="glyph compound" title="">⩽̸</span> </td> <tr id="entity-nless"><td> <code title="">nless;</code> </td> <td> U+0226E </td> <td> <span class="glyph" title="">≮</span> </td> <tr id="entity-nLl"><td> <code title="">nLl;/code> </td> <td> U+022D8 U+00338 </td> <td> <span class="glyph compound" title="">⋘̸</span> </td> <tr id="entity-nlsim"><td> <code title="">nlsim;</code> </td> <td> U+02274 </td> <td> <span class="glyph" title="">≴</span> </td> <tr id="entity-nLt"><td> <code title="">nLt;</code> </td> <td> U+0226A U+020D2 </td> <td> <span class="glyph compound" title="">≪⃒</span> </td> <tr id="entity-nlt"><td> <code title="">nlt;</code> </td> <td> U+0226E </td> <td> <span class="glyph" title="">≮</span> </td> <tr id="entity-nltri"><td> <code title="">nltri;</code> </td> <td> U+022EA </td> <td> <span class="glyph" title="">⋪</span> </td> <tr id="entity-nltrie"><td> <code title="">nltrie;</code> </td> <td> U+022EC </td> <td> <span class="glyph" title="">⋬</span> </td> <tr id="entity-nLtv"><td> <code title="">nLtv;</code> </td> <td> U+0226A U+00338 </td> <td> <span class="glyph compound" title="">≪̸</span> </td> <tr id="entity-nmid"><td> <code title="">nmid;</code> </t> <td> U+02224 </td> <td> <span class="glyph" title="">∤</span> </td> <tr id="entity-NoBreak"><td> <code title="">NoBreak;</code> </td> <td> U+02060 </td> <td> <span class="glyph" title="">⁠</span> </td> <tr id="entity-NonBreakingSpace"><td> <code title="">NonBreakingSpace;</code> </td> <td> U+000A0 </td> <td> <span class="glyph" title=""> </span> </td> <tr id="entity-Nopf"><td> <code title="">Nopf;</code> </td> <td> U+02115 </td> <td> <span class="glyph" title="">ℕ</span> </td> <tr id="entity-nopf"><td> <code title="">nopf;</code> </td> <td> U+1D55F </td> <td> <span class="glyph" title="">𝕟</span> </td> <tr id="entity-Not"><td> <code title="">Not;</code> </td> <td> U+02AEC </td> <td> <span class="glyph" title="">⫬</span> </td> <tr id="entity-not"><td> <code title="">not;</code> </td> <td> U+000AC </td> <td> <span class="glyph" title="">¬</span> </td> <tr id="entity-NotCongruent"><td> <code title="">NotCongruent;</code> </td> <td> U+02262 </td> <td> <span class="glyh" title="">≢</span> </td> <tr id="entity-NotCupCap"><td> <code title="">NotCupCap;</code> </td> <td> U+0226D </td> <td> <span class="glyph" title="">≭</span> </td> <tr id="entity-NotDoubleVerticalBar"><td> <code title="">NotDoubleVerticalBar;</code> </td> <td> U+02226 </td> <td> <span class="glyph" title="">∦</span> </td> <tr id="entity-NotElement"><td> <code title="">NotElement;</code> </td> <td> U+02209 </td> <td> <span class="glyph" title="">∉</span> </td> <tr id="entity-NotEqual"><td> <code title="">NotEqual;</code> </td> <td> U+02260 </td> <td> <span class="glyph" title="">≠</span> </td> <tr id="entity-NotEqualTilde"><td> <code title="">NotEqualTilde;</code> </td> <td> U+02242 U+00338 </td> <td> <span class="glyph compound" title="">≂̸</span> </td> <tr id="entity-NotExists"><td> <code title="">NotExists;</code> </td> <td> U+02204 </td> <td> <span class="glyph" title="">∄</span> </td> <tr id="entity-NotGreater"><td> <code title="">NotGreater;</code> </td> <td U+0226F </td> <td> <span class="glyph" title="">≯</span> </td> <tr id="entity-NotGreaterEqual"><td> <code title="">NotGreaterEqual;</code> </td> <td> U+02271 </td> <td> <span class="glyph" title="">≱</span> </td> <tr id="entity-NotGreaterFullEqual"><td> <code title="">NotGreaterFullEqual;</code> </td> <td> U+02267 U+00338 </td> <td> <span class="glyph compound" title="">≧̸</span> </td> <tr id="entity-NotGreaterGreater"><td> <code title="">NotGreaterGreater;</code> </td> <td> U+0226B U+00338 </td> <td> <span class="glyph compound" title="">≫̸</span> </td> <tr id="entity-NotGreaterLess"><td> <code title="">NotGreaterLess;</code> </td> <td> U+02279 </td> <td> <span class="glyph" title="">≹</span> </td> <tr id="entity-NotGreaterSlantEqual"><td> <code title="">NotGreaterSlantEqual;</code> </td> <td> U+02A7E U+00338 </td> <td> <span class="glyph compound" title="">⩾̸</span> </td> <tr id="entity-NotGreaterTilde"><td> <code title="">NotGreaterTilde;</code> </td> td> U+02275 </td> <td> <span class="glyph" title="">≵</span> </td> <tr id="entity-NotHumpDownHump"><td> <code title="">NotHumpDownHump;</code> </td> <td> U+0224E U+00338 </td> <td> <span class="glyph compound" title="">≎̸</span> </td> <tr id="entity-NotHumpEqual"><td> <code title="">NotHumpEqual;</code> </td> <td> U+0224F U+00338 </td> <td> <span class="glyph compound" title="">≏̸</span> </td> <tr id="entity-notin"><td> <code title="">notin;</code> </td> <td> U+02209 </td> <td> <span class="glyph" title="">∉</span> </td> <tr id="entity-notindot"><td> <code title="">notindot;</code> </td> <td> U+022F5 U+00338 </td> <td> <span class="glyph compound" title="">⋵̸</span> </td> <tr id="entity-notinE"><td> <code title="">notinE;</code> </td> <td> U+022F9 U+00338 </td> <td> <span class="glyph compound" title="">⋹̸</span> </td> <tr id="entity-notinva"><td> <code title="">notinva;</code> </td> <td> U+02209 </td> <td> <span class="glyph" title="">∉</span> <td> <tr id="entity-notinvb"><td> <code title="">notinvb;</code> </td> <td> U+022F7 </td> <td> <span class="glyph" title="">⋷</span> </td> <tr id="entity-notinvc"><td> <code title="">notinvc;</code> </td> <td> U+022F6 </td> <td> <span class="glyph" title="">⋶</span> </td> <tr id="entity-NotLeftTriangle"><td> <code title="">NotLeftTriangle;</code> </td> <td> U+022EA </td> <td> <span class="glyph" title="">⋪</span> </td> <tr id="entity-NotLeftTriangleBar"><td> <code title="">NotLeftTriangleBar;</code> </td> <td> U+029CF U+00338 </td> <td> <span class="glyph compound" title="">⧏̸</span> </td> <tr id="entity-NotLeftTriangleEqual"><td> <code title="">NotLeftTriangleEqual;</code> </td> <td> U+022EC </td> <td> <span class="glyph" title="">⋬</span> </td> <tr id="entity-NotLess"><td> <code title="">NotLess;</code> </td> <td> U+0226E </td> <td> <span class="glyph" title="">≮</span> </td> <tr id="entity-NotLessEqual"><td> <code title="">NotLessEqual;</code> </td> <td> U+02270 <td> <td> <span class="glyph" title="">≰</span> </td> <tr id="entity-NotLessGreater"><td> <code title="">NotLessGreater;</code> </td> <td> U+02278 </td> <td> <span class="glyph" title="">≸</span> </td> <tr id="entity-NotLessLess"><td> <code title="">NotLessLess;</code> </td> <td> U+0226A U+00338 </td> <td> <span class="glyph compound" title="">≪̸</span> </td> <tr id="entity-NotLessSlantEqual"><td> <code title="">NotLessSlantEqual;</code> </td> <td> U+02A7D U+00338 </td> <td> <span class="glyph compound" title="">⩽̸</span> </td> <tr id="entity-NotLessTilde"><td> <code title="">NotLessTilde;</code> </td> <td> U+02274 </td> <td> <span class="glyph" title="">≴</span> </td> <tr id="entity-NotNestedGreaterGreater"><td> <code title="">NotNestedGreaterGreater;</code> </td> <td> U+02AA2 U+00338 </td> <td> <span class="glyph compound" title="">⪢̸</span> </td> <tr id="entity-NotNestedLessLess"><td> <code title="">NotNestedLessLess;</code> </td> <td> U+02AA1 U+00338 <td> <td> <span class="glyph compound" title="">⪡̸</span> </td> <tr id="entity-notni"><td> <code title="">notni;</code> </td> <td> U+0220C </td> <td> <span class="glyph" title="">∌</span> </td> <tr id="entity-notniva"><td> <code title="">notniva;</code> </td> <td> U+0220C </td> <td> <span class="glyph" title="">∌</span> </td> <tr id="entity-notnivb"><td> <code title="">notnivb;</code> </td> <td> U+022FE </td> <td> <span class="glyph" title="">⋾</span> </td> <tr id="entity-notnivc"><td> <code title="">notnivc;</code> </td> <td> U+022FD </td> <td> <span class="glyph" title="">⋽</span> </td> <tr id="entity-NotPrecedes"><td> <code title="">NotPrecedes;</code> </td> <td> U+02280 </td> <td> <span class="glyph" title="">⊀</span> </td> <tr id="entity-NotPrecedesEqual"><td> <code title="">NotPrecedesEqual;</code> </td> <td> U+02AAF U+00338 </td> <td> <span class="glyph compound" title="">⪯̸</span> </td> <tr id="entity-NotPrecedesSlantEqual"><td> <code title="">NotrecedesSlantEqual;</code> </td> <td> U+022E0 </td> <td> <span class="glyph" title="">⋠</span> </td> <tr id="entity-NotReverseElement"><td> <code title="">NotReverseElement;</code> </td> <td> U+0220C </td> <td> <span class="glyph" title="">∌</span> </td> <tr id="entity-NotRightTriangle"><td> <code title="">NotRightTriangle;</code> </td> <td> U+022EB </td> <td> <span class="glyph" title="">⋫</span> </td> <tr id="entity-NotRightTriangleBar"><td> <code title="">NotRightTriangleBar;</code> </td> <td> U+029D0 U+00338 </td> <td> <span class="glyph compound" title="">⧐̸</span> </td> <tr id="entity-NotRightTriangleEqual"><td> <code title="">NotRightTriangleEqual;</code> </td> <td> U+022ED </td> <td> <span class="glyph" title="">⋭</span> </td> <tr id="entity-NotSquareSubset"><td> <code title="">NotSquareSubset;</code> </td> <td> U+0228F U+00338 </td> <td> <span class="glyph compound" title="">⊏̸</span> </td> <tr id="entity-NotSquareSubsetEqual"><td> <code title="">NotSqureSubsetEqual;</code> </td> <td> U+022E2 </td> <td> <span class="glyph" title="">⋢</span> </td> <tr id="entity-NotSquareSuperset"><td> <code title="">NotSquareSuperset;</code> </td> <td> U+02290 U+00338 </td> <td> <span class="glyph compound" title="">⊐̸</span> </td> <tr id="entity-NotSquareSupersetEqual"><td> <code title="">NotSquareSupersetEqual;</code> </td> <td> U+022E3 </td> <td> <span class="glyph" title="">⋣</span> </td> <tr id="entity-NotSubset"><td> <code title="">NotSubset;</code> </td> <td> U+02282 U+020D2 </td> <td> <span class="glyph compound" title="">⊂⃒</span> </td> <tr id="entity-NotSubsetEqual"><td> <code title="">NotSubsetEqual;</code> </td> <td> U+02288 </td> <td> <span class="glyph" title="">⊈</span> </td> <tr id="entity-NotSucceeds"><td> <code title="">NotSucceeds;</code> </td> <td> U+02281 </td> <td> <span class="glyph" title="">⊁</span> </td> <tr id="entity-NotSucceedsEqual"><td> <code title="">NotSucceedsEqual;</code> </td> <td> U+02AB0 U+0338 </td> <td> <span class="glyph compound" title="">⪰̸</span> </td> <tr id="entity-NotSucceedsSlantEqual"><td> <code title="">NotSucceedsSlantEqual;</code> </td> <td> U+022E1 </td> <td> <span class="glyph" title="">⋡</span> </td> <tr id="entity-NotSucceedsTilde"><td> <code title="">NotSucceedsTilde;</code> </td> <td> U+0227F U+00338 </td> <td> <span class="glyph compound" title="">≿̸</span> </td> <tr id="entity-NotSuperset"><td> <code title="">NotSuperset;</code> </td> <td> U+02283 U+020D2 </td> <td> <span class="glyph compound" title="">⊃⃒</span> </td> <tr id="entity-NotSupersetEqual"><td> <code title="">NotSupersetEqual;</code> </td> <td> U+02289 </td> <td> <span class="glyph" title="">⊉</span> </td> <tr id="entity-NotTilde"><td> <code title="">NotTilde;</code> </td> <td> U+02241 </td> <td> <span class="glyph" title="">≁</span> </td> <tr id="entity-NotTildeEqual"><td> <code title="">NotTildeEqual;</code> </td> <td> U+02244 </td> <td> <span class="glyph"title="">≄</span> </td> <tr id="entity-NotTildeFullEqual"><td> <code title="">NotTildeFullEqual;</code> </td> <td> U+02247 </td> <td> <span class="glyph" title="">≇</span> </td> <tr id="entity-NotTildeTilde"><td> <code title="">NotTildeTilde;</code> </td> <td> U+02249 </td> <td> <span class="glyph" title="">≉</span> </td> <tr id="entity-NotVerticalBar"><td> <code title="">NotVerticalBar;</code> </td> <td> U+02224 </td> <td> <span class="glyph" title="">∤</span> </td> <tr id="entity-npar"><td> <code title="">npar;</code> </td> <td> U+02226 </td> <td> <span class="glyph" title="">∦</span> </td> <tr id="entity-nparallel"><td> <code title="">nparallel;</code> </td> <td> U+02226 </td> <td> <span class="glyph" title="">∦</span> </td> <tr id="entity-nparsl"><td> <code title="">nparsl;</code> </td> <td> U+02AFD U+020E5 </td> <td> <span class="glyph compound" title="">⫽⃥</span> </td> <tr id="entity-npart"><td> <code title="">npart;</code> </td> <td> U+02202 U+00338 </d> <td> <span class="glyph compound" title="">∂̸</span> </td> <tr id="entity-npolint"><td> <code title="">npolint;</code> </td> <td> U+02A14 </td> <td> <span class="glyph" title="">⨔</span> </td> <tr id="entity-npr"><td> <code title="">npr;</code> </td> <td> U+02280 </td> <td> <span class="glyph" title="">⊀</span> </td> <tr id="entity-nprcue"><td> <code title="">nprcue;</code> </td> <td> U+022E0 </td> <td> <span class="glyph" title="">⋠</span> </td> <tr id="entity-npre"><td> <code title="">npre;</code> </td> <td> U+02AAF U+00338 </td> <td> <span class="glyph compound" title="">⪯̸</span> </td> <tr id="entity-nprec"><td> <code title="">nprec;</code> </td> <td> U+02280 </td> <td> <span class="glyph" title="">⊀</span> </td> <tr id="entity-npreceq"><td> <code title="">npreceq;</code> </td> <td> U+02AAF U+00338 </td> <td> <span class="glyph compound" title="">⪯̸</span> </td> <tr id="entity-nrArr"><td> <code title="">nrArr;</code> </td> <td> U+021CF </td> td> <span class="glyph" title="">⇏</span> </td> <tr id="entity-nrarr"><td> <code title="">nrarr;</code> </td> <td> U+0219B </td> <td> <span class="glyph" title="">↛</span> </td> <tr id="entity-nrarrc"><td> <code title="">nrarrc;</code> </td> <td> U+02933 U+00338 </td> <td> <span class="glyph compound" title="">⤳̸</span> </td> <tr id="entity-nrarrw"><td> <code title="">nrarrw;</code> </td> <td> U+0219D U+00338 </td> <td> <span class="glyph compound" title="">↝̸</span> </td> <tr id="entity-nRightarrow"><td> <code title="">nRightarrow;</code> </td> <td> U+021CF </td> <td> <span class="glyph" title="">⇏</span> </td> <tr id="entity-nrightarrow"><td> <code title="">nrightarrow;</code> </td> <td> U+0219B </td> <td> <span class="glyph" title="">↛</span> </td> <tr id="entity-nrtri"><td> <code title="">nrtri;</code> </td> <td> U+022EB </td> <td> <span class="glyph" title="">⋫</span> </td> <tr id="entity-nrtrie"><td> <code title="">nrtrie;</code> </td> <td> U+022ED /td> <td> <span class="glyph" title="">⋭</span> </td> <tr id="entity-nsc"><td> <code title="">nsc;</code> </td> <td> U+02281 </td> <td> <span class="glyph" title="">⊁</span> </td> <tr id="entity-nsccue"><td> <code title="">nsccue;</code> </td> <td> U+022E1 </td> <td> <span class="glyph" title="">⋡</span> </td> <tr id="entity-nsce"><td> <code title="">nsce;</code> </td> <td> U+02AB0 U+00338 </td> <td> <span class="glyph compound" title="">⪰̸</span> </td> <tr id="entity-Nscr"><td> <code title="">Nscr;</code> </td> <td> U+1D4A9 </td> <td> <span class="glyph" title="">𝒩</span> </td> <tr id="entity-nscr"><td> <code title="">nscr;</code> </td> <td> U+1D4C3 </td> <td> <span class="glyph" title="">𝓃</span> </td> <tr id="entity-nshortmid"><td> <code title="">nshortmid;</code> </td> <td> U+02224 </td> <td> <span class="glyph" title="">∤</span> </td> <tr id="entity-nshortparallel"><td> <code title="">nshortparallel;</code> </td> <td> U+02226 </td> <td> <span class="gyph" title="">∦</span> </td> <tr id="entity-nsim"><td> <code title="">nsim;</code> </td> <td> U+02241 </td> <td> <span class="glyph" title="">≁</span> </td> <tr id="entity-nsime"><td> <code title="">nsime;</code> </td> <td> U+02244 </td> <td> <span class="glyph" title="">≄</span> </td> <tr id="entity-nsimeq"><td> <code title="">nsimeq;</code> </td> <td> U+02244 </td> <td> <span class="glyph" title="">≄</span> </td> <tr id="entity-nsmid"><td> <code title="">nsmid;</code> </td> <td> U+02224 </td> <td> <span class="glyph" title="">∤</span> </td> <tr id="entity-nspar"><td> <code title="">nspar;</code> </td> <td> U+02226 </td> <td> <span class="glyph" title="">∦</span> </td> <tr id="entity-nsqsube"><td> <code title="">nsqsube;</code> </td> <td> U+022E2 </td> <td> <span class="glyph" title="">⋢</span> </td> <tr id="entity-nsqsupe"><td> <code title="">nsqsupe;</code> </td> <td> U+022E3 </td> <td> <span class="glyph" title="">⋣</span> </td> <tr id="entity-nsub"><td> <ode title="">nsub;</code> </td> <td> U+02284 </td> <td> <span class="glyph" title="">⊄</span> </td> <tr id="entity-nsubE"><td> <code title="">nsubE;</code> </td> <td> U+02AC5 U+00338 </td> <td> <span class="glyph compound" title="">⫅̸</span> </td> <tr id="entity-nsube"><td> <code title="">nsube;</code> </td> <td> U+02288 </td> <td> <span class="glyph" title="">⊈</span> </td> <tr id="entity-nsubset"><td> <code title="">nsubset;</code> </td> <td> U+02282 U+020D2 </td> <td> <span class="glyph compound" title="">⊂⃒</span> </td> <tr id="entity-nsubseteq"><td> <code title="">nsubseteq;</code> </td> <td> U+02288 </td> <td> <span class="glyph" title="">⊈</span> </td> <tr id="entity-nsubseteqq"><td> <code title="">nsubseteqq;</code> </td> <td> U+02AC5 U+00338 </td> <td> <span class="glyph compound" title="">⫅̸</span> </td> <tr id="entity-nsucc"><td> <code title="">nsucc;</code> </td> <td> U+02281 </td> <td> <span class="glyph" title="">⊁</span> </td> <tr id="etity-nsucceq"><td> <code title="">nsucceq;</code> </td> <td> U+02AB0 U+00338 </td> <td> <span class="glyph compound" title="">⪰̸</span> </td> <tr id="entity-nsup"><td> <code title="">nsup;</code> </td> <td> U+02285 </td> <td> <span class="glyph" title="">⊅</span> </td> <tr id="entity-nsupE"><td> <code title="">nsupE;</code> </td> <td> U+02AC6 U+00338 </td> <td> <span class="glyph compound" title="">⫆̸</span> </td> <tr id="entity-nsupe"><td> <code title="">nsupe;</code> </td> <td> U+02289 </td> <td> <span class="glyph" title="">⊉</span> </td> <tr id="entity-nsupset"><td> <code title="">nsupset;</code> </td> <td> U+02283 U+020D2 </td> <td> <span class="glyph compound" title="">⊃⃒</span> </td> <tr id="entity-nsupseteq"><td> <code title="">nsupseteq;</code> </td> <td> U+02289 </td> <td> <span class="glyph" title="">⊉</span> </td> <tr id="entity-nsupseteqq"><td> <code title="">nsupseteqq;</code> </td> <td> U+02AC6 U+00338 </td> <td> <span class="glyph compound"title="">⫆̸</span> </td> <tr id="entity-ntgl"><td> <code title="">ntgl;</code> </td> <td> U+02279 </td> <td> <span class="glyph" title="">≹</span> </td> <tr id="entity-Ntilde"><td> <code title="">Ntilde;</code> </td> <td> U+000D1 </td> <td> <span class="glyph" title="">Ñ</span> </td> <tr id="entity-ntilde"><td> <code title="">ntilde;</code> </td> <td> U+000F1 </td> <td> <span class="glyph" title="">ñ</span> </td> <tr id="entity-ntlg"><td> <code title="">ntlg;</code> </td> <td> U+02278 </td> <td> <span class="glyph" title="">≸</span> </td> <tr id="entity-ntriangleleft"><td> <code title="">ntriangleleft;</code> </td> <td> U+022EA </td> <td> <span class="glyph" title="">⋪</span> </td> <tr id="entity-ntrianglelefteq"><td> <code title="">ntrianglelefteq;</code> </td> <td> U+022EC </td> <td> <span class="glyph" title="">⋬</span> </td> <tr id="entity-ntriangleright"><td> <code title="">ntriangleright;</code> </td> <td> U+022EB </td> <td> <span class="glyph" title=">⋫</span> </td> <tr id="entity-ntrianglerighteq"><td> <code title="">ntrianglerighteq;</code> </td> <td> U+022ED </td> <td> <span class="glyph" title="">⋭</span> </td> <tr id="entity-Nu"><td> <code title="">Nu;</code> </td> <td> U+0039D </td> <td> <span class="glyph" title="">Ν</span> </td> <tr id="entity-nu"><td> <code title="">nu;</code> </td> <td> U+003BD </td> <td> <span class="glyph" title="">ν</span> </td> <tr id="entity-num"><td> <code title="">num;</code> </td> <td> U+00023 </td> <td> <span class="glyph" title="">#</span> </td> <tr id="entity-numero"><td> <code title="">numero;</code> </td> <td> U+02116 </td> <td> <span class="glyph" title="">№</span> </td> <tr id="entity-numsp"><td> <code title="">numsp;</code> </td> <td> U+02007 </td> <td> <span class="glyph" title=""> </span> </td> <tr id="entity-nvap"><td> <code title="">nvap;</code> </td> <td> U+0224D U+020D2 </td> <td> <span class="glyph compound" title="">≍⃒</span> </td> <tr id="entity-nVDash"><td> <cde title="">nVDash;</code> </td> <td> U+022AF </td> <td> <span class="glyph" title="">⊯</span> </td> <tr id="entity-nVdash"><td> <code title="">nVdash;</code> </td> <td> U+022AE </td> <td> <span class="glyph" title="">⊮</span> </td> <tr id="entity-nvDash"><td> <code title="">nvDash;</code> </td> <td> U+022AD </td> <td> <span class="glyph" title="">⊭</span> </td> <tr id="entity-nvdash"><td> <code title="">nvdash;</code> </td> <td> U+022AC </td> <td> <span class="glyph" title="">⊬</span> </td> <tr id="entity-nvge"><td> <code title="">nvge;</code> </td> <td> U+02265 U+020D2 </td> <td> <span class="glyph compound" title="">≥⃒</span> </td> <tr id="entity-nvgt"><td> <code title="">nvgt;</code> </td> <td> U+0003E U+020D2 </td> <td> <span class="glyph compound" title="">>⃒</span> </td> <tr id="entity-nvHarr"><td> <code title="">nvHarr;</code> </td> <td> U+02904 </td> <td> <span class="glyph" title="">⤄</span> </td> <tr id="entity-nvinfin"><td> <code title="">nvinfin;/code> </td> <td> U+029DE </td> <td> <span class="glyph" title="">⧞</span> </td> <tr id="entity-nvlArr"><td> <code title="">nvlArr;</code> </td> <td> U+02902 </td> <td> <span class="glyph" title="">⤂</span> </td> <tr id="entity-nvle"><td> <code title="">nvle;</code> </td> <td> U+02264 U+020D2 </td> <td> <span class="glyph compound" title="">≤⃒</span> </td> <tr id="entity-nvlt"><td> <code title="">nvlt;</code> </td> <td> U+0003C U+020D2 </td> <td> <span class="glyph compound" title=""><⃒</span> </td> <tr id="entity-nvltrie"><td> <code title="">nvltrie;</code> </td> <td> U+022B4 U+020D2 </td> <td> <span class="glyph compound" title="">⊴⃒</span> </td> <tr id="entity-nvrArr"><td> <code title="">nvrArr;</code> </td> <td> U+02903 </td> <td> <span class="glyph" title="">⤃</span> </td> <tr id="entity-nvrtrie"><td> <code title="">nvrtrie;</code> </td> <td> U+022B5 U+020D2 </td> <td> <span class="glyph compound" title="">⊵⃒</span> </td> <tr id="entity-nvsm"><td> <code title="">nvsim;</code> </td> <td> U+0223C U+020D2 </td> <td> <span class="glyph compound" title="">∼⃒</span> </td> <tr id="entity-nwarhk"><td> <code title="">nwarhk;</code> </td> <td> U+02923 </td> <td> <span class="glyph" title="">⤣</span> </td> <tr id="entity-nwArr"><td> <code title="">nwArr;</code> </td> <td> U+021D6 </td> <td> <span class="glyph" title="">⇖</span> </td> <tr id="entity-nwarr"><td> <code title="">nwarr;</code> </td> <td> U+02196 </td> <td> <span class="glyph" title="">↖</span> </td> <tr id="entity-nwarrow"><td> <code title="">nwarrow;</code> </td> <td> U+02196 </td> <td> <span class="glyph" title="">↖</span> </td> <tr id="entity-nwnear"><td> <code title="">nwnear;</code> </td> <td> U+02927 </td> <td> <span class="glyph" title="">⤧</span> </td> <tr id="entity-Oacute"><td> <code title="">Oacute;</code> </td> <td> U+000D3 </td> <td> <span class="glyph" title="">Ó</span> </td> <tr id="entity-oacute"><td> <code title="">oacute;</coe> </td> <td> U+000F3 </td> <td> <span class="glyph" title="">ó</span> </td> <tr id="entity-oast"><td> <code title="">oast;</code> </td> <td> U+0229B </td> <td> <span class="glyph" title="">⊛</span> </td> <tr id="entity-ocir"><td> <code title="">ocir;</code> </td> <td> U+0229A </td> <td> <span class="glyph" title="">⊚</span> </td> <tr id="entity-Ocirc"><td> <code title="">Ocirc;</code> </td> <td> U+000D4 </td> <td> <span class="glyph" title="">Ô</span> </td> <tr id="entity-ocirc"><td> <code title="">ocirc;</code> </td> <td> U+000F4 </td> <td> <span class="glyph" title="">ô</span> </td> <tr id="entity-Ocy"><td> <code title="">Ocy;</code> </td> <td> U+0041E </td> <td> <span class="glyph" title="">О</span> </td> <tr id="entity-ocy"><td> <code title="">ocy;</code> </td> <td> U+0043E </td> <td> <span class="glyph" title="">о</span> </td> <tr id="entity-odash"><td> <code title="">odash;</code> </td> <td> U+0229D </td> <td> <span class="glyph" title="">⊝</span> </td <tr id="entity-Odblac"><td> <code title="">Odblac;</code> </td> <td> U+00150 </td> <td> <span class="glyph" title="">Ő</span> </td> <tr id="entity-odblac"><td> <code title="">odblac;</code> </td> <td> U+00151 </td> <td> <span class="glyph" title="">ő</span> </td> <tr id="entity-odiv"><td> <code title="">odiv;</code> </td> <td> U+02A38 </td> <td> <span class="glyph" title="">⨸</span> </td> <tr id="entity-odot"><td> <code title="">odot;</code> </td> <td> U+02299 </td> <td> <span class="glyph" title="">⊙</span> </td> <tr id="entity-odsold"><td> <code title="">odsold;</code> </td> <td> U+029BC </td> <td> <span class="glyph" title="">⦼</span> </td> <tr id="entity-OElig"><td> <code title="">OElig;</code> </td> <td> U+00152 </td> <td> <span class="glyph" title="">Œ</span> </td> <tr id="entity-oelig"><td> <code title="">oelig;</code> </td> <td> U+00153 </td> <td> <span class="glyph" title="">œ</span> </td> <tr id="entity-ofcir"><td> <code title="">ofcir;</code> </td> <td> +029BF </td> <td> <span class="glyph" title="">⦿</span> </td> <tr id="entity-Ofr"><td> <code title="">Ofr;</code> </td> <td> U+1D512 </td> <td> <span class="glyph" title="">𝔒</span> </td> <tr id="entity-ofr"><td> <code title="">ofr;</code> </td> <td> U+1D52C </td> <td> <span class="glyph" title="">𝔬</span> </td> <tr id="entity-ogon"><td> <code title="">ogon;</code> </td> <td> U+002DB </td> <td> <span class="glyph" title="">˛</span> </td> <tr id="entity-Ograve"><td> <code title="">Ograve;</code> </td> <td> U+000D2 </td> <td> <span class="glyph" title="">Ò</span> </td> <tr id="entity-ograve"><td> <code title="">ograve;</code> </td> <td> U+000F2 </td> <td> <span class="glyph" title="">ò</span> </td> <tr id="entity-ogt"><td> <code title="">ogt;</code> </td> <td> U+029C1 </td> <td> <span class="glyph" title="">⧁</span> </td> <tr id="entity-ohbar"><td> <code title="">ohbar;</code> </td> <td> U+029B5 </td> <td> <span class="glyph" title="">⦵</span> </td> <tr d="entity-ohm"><td> <code title="">ohm;</code> </td> <td> U+003A9 </td> <td> <span class="glyph" title="">Ω</span> </td> <tr id="entity-oint"><td> <code title="">oint;</code> </td> <td> U+0222E </td> <td> <span class="glyph" title="">∮</span> </td> <tr id="entity-olarr"><td> <code title="">olarr;</code> </td> <td> U+021BA </td> <td> <span class="glyph" title="">↺</span> </td> <tr id="entity-olcir"><td> <code title="">olcir;</code> </td> <td> U+029BE </td> <td> <span class="glyph" title="">⦾</span> </td> <tr id="entity-olcross"><td> <code title="">olcross;</code> </td> <td> U+029BB </td> <td> <span class="glyph" title="">⦻</span> </td> <tr id="entity-oline"><td> <code title="">oline;</code> </td> <td> U+0203E </td> <td> <span class="glyph" title="">‾</span> </td> <tr id="entity-olt"><td> <code title="">olt;</code> </td> <td> U+029C0 </td> <td> <span class="glyph" title="">⧀</span> </td> <tr id="entity-Omacr"><td> <code title="">Omacr;</code> </td> <td> U+0014C </t> <td> <span class="glyph" title="">Ō</span> </td> <tr id="entity-omacr"><td> <code title="">omacr;</code> </td> <td> U+0014D </td> <td> <span class="glyph" title="">ō</span> </td> <tr id="entity-Omega"><td> <code title="">Omega;</code> </td> <td> U+003A9 </td> <td> <span class="glyph" title="">Ω</span> </td> <tr id="entity-omega"><td> <code title="">omega;</code> </td> <td> U+003C9 </td> <td> <span class="glyph" title="">ω</span> </td> <tr id="entity-Omicron"><td> <code title="">Omicron;</code> </td> <td> U+0039F </td> <td> <span class="glyph" title="">Ο</span> </td> <tr id="entity-omicron"><td> <code title="">omicron;</code> </td> <td> U+003BF </td> <td> <span class="glyph" title="">ο</span> </td> <tr id="entity-omid"><td> <code title="">omid;</code> </td> <td> U+029B6 </td> <td> <span class="glyph" title="">⦶</span> </td> <tr id="entity-ominus"><td> <code title="">ominus;</code> </td> <td> U+02296 </td> <td> <span class="glyph" title="">⊖</span> </td> <t id="entity-Oopf"><td> <code title="">Oopf;</code> </td> <td> U+1D546 </td> <td> <span class="glyph" title="">𝕆</span> </td> <tr id="entity-oopf"><td> <code title="">oopf;</code> </td> <td> U+1D560 </td> <td> <span class="glyph" title="">𝕠</span> </td> <tr id="entity-opar"><td> <code title="">opar;</code> </td> <td> U+029B7 </td> <td> <span class="glyph" title="">⦷</span> </td> <tr id="entity-OpenCurlyDoubleQuote"><td> <code title="">OpenCurlyDoubleQuote;</code> </td> <td> U+0201C </td> <td> <span class="glyph" title="">“</span> </td> <tr id="entity-OpenCurlyQuote"><td> <code title="">OpenCurlyQuote;</code> </td> <td> U+02018 </td> <td> <span class="glyph" title="">‘</span> </td> <tr id="entity-operp"><td> <code title="">operp;</code> </td> <td> U+029B9 </td> <td> <span class="glyph" title="">⦹</span> </td> <tr id="entity-oplus"><td> <code title="">oplus;</code> </td> <td> U+02295 </td> <td> <span class="glyph" title="">⊕</span> </td> <tr id="entity-Or"><td> <ode title="">Or;</code> </td> <td> U+02A54 </td> <td> <span class="glyph" title="">⩔</span> </td> <tr id="entity-or"><td> <code title="">or;</code> </td> <td> U+02228 </td> <td> <span class="glyph" title="">∨</span> </td> <tr id="entity-orarr"><td> <code title="">orarr;</code> </td> <td> U+021BB </td> <td> <span class="glyph" title="">↻</span> </td> <tr id="entity-ord"><td> <code title="">ord;</code> </td> <td> U+02A5D </td> <td> <span class="glyph" title="">⩝</span> </td> <tr id="entity-order"><td> <code title="">order;</code> </td> <td> U+02134 </td> <td> <span class="glyph" title="">ℴ</span> </td> <tr id="entity-orderof"><td> <code title="">orderof;</code> </td> <td> U+02134 </td> <td> <span class="glyph" title="">ℴ</span> </td> <tr id="entity-ordf"><td> <code title="">ordf;</code> </td> <td> U+000AA </td> <td> <span class="glyph" title="">ª</span> </td> <tr id="entity-ordm"><td> <code title="">ordm;</code> </td> <td> U+000BA </td> <td> <span class="glyph" title=""º</span> </td> <tr id="entity-origof"><td> <code title="">origof;</code> </td> <td> U+022B6 </td> <td> <span class="glyph" title="">⊶</span> </td> <tr id="entity-oror"><td> <code title="">oror;</code> </td> <td> U+02A56 </td> <td> <span class="glyph" title="">⩖</span> </td> <tr id="entity-orslope"><td> <code title="">orslope;</code> </td> <td> U+02A57 </td> <td> <span class="glyph" title="">⩗</span> </td> <tr id="entity-orv"><td> <code title="">orv;</code> </td> <td> U+02A5B </td> <td> <span class="glyph" title="">⩛</span> </td> <tr id="entity-oS"><td> <code title="">oS;</code> </td> <td> U+024C8 </td> <td> <span class="glyph" title="">Ⓢ</span> </td> <tr id="entity-Oscr"><td> <code title="">Oscr;</code> </td> <td> U+1D4AA </td> <td> <span class="glyph" title="">𝒪</span> </td> <tr id="entity-oscr"><td> <code title="">oscr;</code> </td> <td> U+02134 </td> <td> <span class="glyph" title="">ℴ</span> </td> <tr id="entity-Oslash"><td> <code title="">Oslash;</cod> </td> <td> U+000D8 </td> <td> <span class="glyph" title="">Ø</span> </td> <tr id="entity-oslash"><td> <code title="">oslash;</code> </td> <td> U+000F8 </td> <td> <span class="glyph" title="">ø</span> </td> <tr id="entity-osol"><td> <code title="">osol;</code> </td> <td> U+02298 </td> <td> <span class="glyph" title="">⊘</span> </td> <tr id="entity-Otilde"><td> <code title="">Otilde;</code> </td> <td> U+000D5 </td> <td> <span class="glyph" title="">Õ</span> </td> <tr id="entity-otilde"><td> <code title="">otilde;</code> </td> <td> U+000F5 </td> <td> <span class="glyph" title="">õ</span> </td> <tr id="entity-Otimes"><td> <code title="">Otimes;</code> </td> <td> U+02A37 </td> <td> <span class="glyph" title="">⨷</span> </td> <tr id="entity-otimes"><td> <code title="">otimes;</code> </td> <td> U+02297 </td> <td> <span class="glyph" title="">⊗</span> </td> <tr id="entity-otimesas"><td> <code title="">otimesas;</code> </td> <td> U+02A36 </td> <td> <span class="glyph title="">⨶</span> </td> <tr id="entity-Ouml"><td> <code title="">Ouml;</code> </td> <td> U+000D6 </td> <td> <span class="glyph" title="">Ö</span> </td> <tr id="entity-ouml"><td> <code title="">ouml;</code> </td> <td> U+000F6 </td> <td> <span class="glyph" title="">ö</span> </td> <tr id="entity-ovbar"><td> <code title="">ovbar;</code> </td> <td> U+0233D </td> <td> <span class="glyph" title="">⌽</span> </td> <tr id="entity-OverBar"><td> <code title="">OverBar;</code> </td> <td> U+0203E </td> <td> <span class="glyph" title="">‾</span> </td> <tr id="entity-OverBrace"><td> <code title="">OverBrace;</code> </td> <td> U+023DE </td> <td> <span class="glyph" title="">⏞</span> </td> <tr id="entity-OverBracket"><td> <code title="">OverBracket;</code> </td> <td> U+023B4 </td> <td> <span class="glyph" title="">⎴</span> </td> <tr id="entity-OverParenthesis"><td> <code title="">OverParenthesis;</code> </td> <td> U+023DC </td> <td> <span class="glyph" title="">⏜</span> </td> tr id="entity-par"><td> <code title="">par;</code> </td> <td> U+02225 </td> <td> <span class="glyph" title="">∥</span> </td> <tr id="entity-para"><td> <code title="">para;</code> </td> <td> U+000B6 </td> <td> <span class="glyph" title="">¶</span> </td> <tr id="entity-parallel"><td> <code title="">parallel;</code> </td> <td> U+02225 </td> <td> <span class="glyph" title="">∥</span> </td> <tr id="entity-parsim"><td> <code title="">parsim;</code> </td> <td> U+02AF3 </td> <td> <span class="glyph" title="">⫳</span> </td> <tr id="entity-parsl"><td> <code title="">parsl;</code> </td> <td> U+02AFD </td> <td> <span class="glyph" title="">⫽</span> </td> <tr id="entity-part"><td> <code title="">part;</code> </td> <td> U+02202 </td> <td> <span class="glyph" title="">∂</span> </td> <tr id="entity-PartialD"><td> <code title="">PartialD;</code> </td> <td> U+02202 </td> <td> <span class="glyph" title="">∂</span> </td> <tr id="entity-Pcy"><td> <code title="">Pcy;</code> </td> <td> U+041F </td> <td> <span class="glyph" title="">П</span> </td> <tr id="entity-pcy"><td> <code title="">pcy;</code> </td> <td> U+0043F </td> <td> <span class="glyph" title="">п</span> </td> <tr id="entity-percnt"><td> <code title="">percnt;</code> </td> <td> U+00025 </td> <td> <span class="glyph" title="">%</span> </td> <tr id="entity-period"><td> <code title="">period;</code> </td> <td> U+0002E </td> <td> <span class="glyph" title="">.</span> </td> <tr id="entity-permil"><td> <code title="">permil;</code> </td> <td> U+02030 </td> <td> <span class="glyph" title="">‰</span> </td> <tr id="entity-perp"><td> <code title="">perp;</code> </td> <td> U+022A5 </td> <td> <span class="glyph" title="">⊥</span> </td> <tr id="entity-pertenk"><td> <code title="">pertenk;</code> </td> <td> U+02031 </td> <td> <span class="glyph" title="">‱</span> </td> <tr id="entity-Pfr"><td> <code title="">Pfr;</code> </td> <td> U+1D513 </td> <td> <span class="glyph" title="">𝔓</span> </td> <tr id="entity-fr"><td> <code title="">pfr;</code> </td> <td> U+1D52D </td> <td> <span class="glyph" title="">𝔭</span> </td> <tr id="entity-Phi"><td> <code title="">Phi;</code> </td> <td> U+003A6 </td> <td> <span class="glyph" title="">Φ</span> </td> <tr id="entity-phi"><td> <code title="">phi;</code> </td> <td> U+003C6 </td> <td> <span class="glyph" title="">φ</span> </td> <tr id="entity-phiv"><td> <code title="">phiv;</code> </td> <td> U+003D5 </td> <td> <span class="glyph" title="">ϕ</span> </td> <tr id="entity-phmmat"><td> <code title="">phmmat;</code> </td> <td> U+02133 </td> <td> <span class="glyph" title="">ℳ</span> </td> <tr id="entity-phone"><td> <code title="">phone;</code> </td> <td> U+0260E </td> <td> <span class="glyph" title="">☎</span> </td> <tr id="entity-Pi"><td> <code title="">Pi;</code> </td> <td> U+003A0 </td> <td> <span class="glyph" title="">Π</span> </td> <tr id="entity-pi"><td> <code title="">pi;</code> </td> <td> U+003C0 </td> <td> <span class="glyph" title="">&i;</span> </td> <tr id="entity-pitchfork"><td> <code title="">pitchfork;</code> </td> <td> U+022D4 </td> <td> <span class="glyph" title="">⋔</span> </td> <tr id="entity-piv"><td> <code title="">piv;</code> </td> <td> U+003D6 </td> <td> <span class="glyph" title="">ϖ</span> </td> <tr id="entity-planck"><td> <code title="">planck;</code> </td> <td> U+0210F </td> <td> <span class="glyph" title="">ℏ</span> </td> <tr id="entity-planckh"><td> <code title="">planckh;</code> </td> <td> U+0210E </td> <td> <span class="glyph" title="">ℎ</span> </td> <tr id="entity-plankv"><td> <code title="">plankv;</code> </td> <td> U+0210F </td> <td> <span class="glyph" title="">ℏ</span> </td> <tr id="entity-plus"><td> <code title="">plus;</code> </td> <td> U+0002B </td> <td> <span class="glyph" title="">+</span> </td> <tr id="entity-plusacir"><td> <code title="">plusacir;</code> </td> <td> U+02A23 </td> <td> <span class="glyph" title="">⨣</span> </td> <tr id="entity-plusb"><td> <code title="">plub;</code> </td> <td> U+0229E </td> <td> <span class="glyph" title="">⊞</span> </td> <tr id="entity-pluscir"><td> <code title="">pluscir;</code> </td> <td> U+02A22 </td> <td> <span class="glyph" title="">⨢</span> </td> <tr id="entity-plusdo"><td> <code title="">plusdo;</code> </td> <td> U+02214 </td> <td> <span class="glyph" title="">∔</span> </td> <tr id="entity-plusdu"><td> <code title="">plusdu;</code> </td> <td> U+02A25 </td> <td> <span class="glyph" title="">⨥</span> </td> <tr id="entity-pluse"><td> <code title="">pluse;</code> </td> <td> U+02A72 </td> <td> <span class="glyph" title="">⩲</span> </td> <tr id="entity-PlusMinus"><td> <code title="">PlusMinus;</code> </td> <td> U+000B1 </td> <td> <span class="glyph" title="">±</span> </td> <tr id="entity-plusmn"><td> <code title="">plusmn;</code> </td> <td> U+000B1 </td> <td> <span class="glyph" title="">±</span> </td> <tr id="entity-plussim"><td> <code title="">plussim;</code> </td> <td> U+02A26 </td> <td> <spn class="glyph" title="">⨦</span> </td> <tr id="entity-plustwo"><td> <code title="">plustwo;</code> </td> <td> U+02A27 </td> <td> <span class="glyph" title="">⨧</span> </td> <tr id="entity-pm"><td> <code title="">pm;</code> </td> <td> U+000B1 </td> <td> <span class="glyph" title="">±</span> </td> <tr id="entity-Poincareplane"><td> <code title="">Poincareplane;</code> </td> <td> U+0210C </td> <td> <span class="glyph" title="">ℌ</span> </td> <tr id="entity-pointint"><td> <code title="">pointint;</code> </td> <td> U+02A15 </td> <td> <span class="glyph" title="">⨕</span> </td> <tr id="entity-Popf"><td> <code title="">Popf;</code> </td> <td> U+02119 </td> <td> <span class="glyph" title="">ℙ</span> </td> <tr id="entity-popf"><td> <code title="">popf;</code> </td> <td> U+1D561 </td> <td> <span class="glyph" title="">𝕡</span> </td> <tr id="entity-pound"><td> <code title="">pound;</code> </td> <td> U+000A3 </td> <td> <span class="glyph" title="">£</span> </td> <t id="entity-Pr"><td> <code title="">Pr;</code> </td> <td> U+02ABB </td> <td> <span class="glyph" title="">⪻</span> </td> <tr id="entity-pr"><td> <code title="">pr;</code> </td> <td> U+0227A </td> <td> <span class="glyph" title="">≺</span> </td> <tr id="entity-prap"><td> <code title="">prap;</code> </td> <td> U+02AB7 </td> <td> <span class="glyph" title="">⪷</span> </td> <tr id="entity-prcue"><td> <code title="">prcue;</code> </td> <td> U+0227C </td> <td> <span class="glyph" title="">≼</span> </td> <tr id="entity-prE"><td> <code title="">prE;</code> </td> <td> U+02AB3 </td> <td> <span class="glyph" title="">⪳</span> </td> <tr id="entity-pre"><td> <code title="">pre;</code> </td> <td> U+02AAF </td> <td> <span class="glyph" title="">⪯</span> </td> <tr id="entity-prec"><td> <code title="">prec;</code> </td> <td> U+0227A </td> <td> <span class="glyph" title="">≺</span> </td> <tr id="entity-precapprox"><td> <code title="">precapprox;</code> </td> <td> U+02AB7 </td> <t> <span class="glyph" title="">⪷</span> </td> <tr id="entity-preccurlyeq"><td> <code title="">preccurlyeq;</code> </td> <td> U+0227C </td> <td> <span class="glyph" title="">≼</span> </td> <tr id="entity-Precedes"><td> <code title="">Precedes;</code> </td> <td> U+0227A </td> <td> <span class="glyph" title="">≺</span> </td> <tr id="entity-PrecedesEqual"><td> <code title="">PrecedesEqual;</code> </td> <td> U+02AAF </td> <td> <span class="glyph" title="">⪯</span> </td> <tr id="entity-PrecedesSlantEqual"><td> <code title="">PrecedesSlantEqual;</code> </td> <td> U+0227C </td> <td> <span class="glyph" title="">≼</span> </td> <tr id="entity-PrecedesTilde"><td> <code title="">PrecedesTilde;</code> </td> <td> U+0227E </td> <td> <span class="glyph" title="">≾</span> </td> <tr id="entity-preceq"><td> <code title="">preceq;</code> </td> <td> U+02AAF </td> <td> <span class="glyph" title="">⪯</span> </td> <tr id="entity-precnapprox"><td> <code title="">precnapprox;</code> </td><td> U+02AB9 </td> <td> <span class="glyph" title="">⪹</span> </td> <tr id="entity-precneqq"><td> <code title="">precneqq;</code> </td> <td> U+02AB5 </td> <td> <span class="glyph" title="">⪵</span> </td> <tr id="entity-precnsim"><td> <code title="">precnsim;</code> </td> <td> U+022E8 </td> <td> <span class="glyph" title="">⋨</span> </td> <tr id="entity-precsim"><td> <code title="">precsim;</code> </td> <td> U+0227E </td> <td> <span class="glyph" title="">≾</span> </td> <tr id="entity-Prime"><td> <code title="">Prime;</code> </td> <td> U+02033 </td> <td> <span class="glyph" title="">″</span> </td> <tr id="entity-prime"><td> <code title="">prime;</code> </td> <td> U+02032 </td> <td> <span class="glyph" title="">′</span> </td> <tr id="entity-primes"><td> <code title="">primes;</code> </td> <td> U+02119 </td> <td> <span class="glyph" title="">ℙ</span> </td> <tr id="entity-prnap"><td> <code title="">prnap;</code> </td> <td> U+02AB9 </td> <td> <span class="glyph" title=">⪹</span> </td> <tr id="entity-prnE"><td> <code title="">prnE;</code> </td> <td> U+02AB5 </td> <td> <span class="glyph" title="">⪵</span> </td> <tr id="entity-prnsim"><td> <code title="">prnsim;</code> </td> <td> U+022E8 </td> <td> <span class="glyph" title="">⋨</span> </td> <tr id="entity-prod"><td> <code title="">prod;</code> </td> <td> U+0220F </td> <td> <span class="glyph" title="">∏</span> </td> <tr id="entity-Product"><td> <code title="">Product;</code> </td> <td> U+0220F </td> <td> <span class="glyph" title="">∏</span> </td> <tr id="entity-profalar"><td> <code title="">profalar;</code> </td> <td> U+0232E </td> <td> <span class="glyph" title="">⌮</span> </td> <tr id="entity-profline"><td> <code title="">profline;</code> </td> <td> U+02312 </td> <td> <span class="glyph" title="">⌒</span> </td> <tr id="entity-profsurf"><td> <code title="">profsurf;</code> </td> <td> U+02313 </td> <td> <span class="glyph" title="">⌓</span> </td> <tr id="entity-prop"><td> <ode title="">prop;</code> </td> <td> U+0221D </td> <td> <span class="glyph" title="">∝</span> </td> <tr id="entity-Proportion"><td> <code title="">Proportion;</code> </td> <td> U+02237 </td> <td> <span class="glyph" title="">∷</span> </td> <tr id="entity-Proportional"><td> <code title="">Proportional;</code> </td> <td> U+0221D </td> <td> <span class="glyph" title="">∝</span> </td> <tr id="entity-propto"><td> <code title="">propto;</code> </td> <td> U+0221D </td> <td> <span class="glyph" title="">∝</span> </td> <tr id="entity-prsim"><td> <code title="">prsim;</code> </td> <td> U+0227E </td> <td> <span class="glyph" title="">≾</span> </td> <tr id="entity-prurel"><td> <code title="">prurel;</code> </td> <td> U+022B0 </td> <td> <span class="glyph" title="">⊰</span> </td> <tr id="entity-Pscr"><td> <code title="">Pscr;</code> </td> <td> U+1D4AB </td> <td> <span class="glyph" title="">𝒫</span> </td> <tr id="entity-pscr"><td> <code title="">pscr;</code> </td> <td> U+1D4C5 </d> <td> <span class="glyph" title="">𝓅</span> </td> <tr id="entity-Psi"><td> <code title="">Psi;</code> </td> <td> U+003A8 </td> <td> <span class="glyph" title="">Ψ</span> </td> <tr id="entity-psi"><td> <code title="">psi;</code> </td> <td> U+003C8 </td> <td> <span class="glyph" title="">ψ</span> </td> <tr id="entity-puncsp"><td> <code title="">puncsp;</code> </td> <td> U+02008 </td> <td> <span class="glyph" title=""> </span> </td> <tr id="entity-Qfr"><td> <code title="">Qfr;</code> </td> <td> U+1D514 </td> <td> <span class="glyph" title="">𝔔</span> </td> <tr id="entity-qfr"><td> <code title="">qfr;</code> </td> <td> U+1D52E </td> <td> <span class="glyph" title="">𝔮</span> </td> <tr id="entity-qint"><td> <code title="">qint;</code> </td> <td> U+02A0C </td> <td> <span class="glyph" title="">⨌</span> </td> <tr id="entity-Qopf"><td> <code title="">Qopf;</code> </td> <td> U+0211A </td> <td> <span class="glyph" title="">ℚ</span> </td> <tr id="entity-qopf"><td> <ode title="">qopf;</code> </td> <td> U+1D562 </td> <td> <span class="glyph" title="">𝕢</span> </td> <tr id="entity-qprime"><td> <code title="">qprime;</code> </td> <td> U+02057 </td> <td> <span class="glyph" title="">⁗</span> </td> <tr id="entity-Qscr"><td> <code title="">Qscr;</code> </td> <td> U+1D4AC </td> <td> <span class="glyph" title="">𝒬</span> </td> <tr id="entity-qscr"><td> <code title="">qscr;</code> </td> <td> U+1D4C6 </td> <td> <span class="glyph" title="">𝓆</span> </td> <tr id="entity-quaternions"><td> <code title="">quaternions;</code> </td> <td> U+0210D </td> <td> <span class="glyph" title="">ℍ</span> </td> <tr id="entity-quatint"><td> <code title="">quatint;</code> </td> <td> U+02A16 </td> <td> <span class="glyph" title="">⨖</span> </td> <tr id="entity-quest"><td> <code title="">quest;</code> </td> <td> U+0003F </td> <td> <span class="glyph" title="">?</span> </td> <tr id="entity-questeq"><td> <code title="">questeq;</code> </td> <td> U+0225F </td> td> <span class="glyph" title="">≟</span> </td> <tr id="entity-QUOT"><td> <code title="">QUOT;</code> </td> <td> U+00022 </td> <td> <span class="glyph" title="">"</span> </td> <tr id="entity-quot"><td> <code title="">quot;</code> </td> <td> U+00022 </td> <td> <span class="glyph" title="">"</span> </td> <tr id="entity-rAarr"><td> <code title="">rAarr;</code> </td> <td> U+021DB </td> <td> <span class="glyph" title="">⇛</span> </td> <tr id="entity-race"><td> <code title="">race;</code> </td> <td> U+0223D U+00331 </td> <td> <span class="glyph compound" title="">∽̱</span> </td> <tr id="entity-Racute"><td> <code title="">Racute;</code> </td> <td> U+00154 </td> <td> <span class="glyph" title="">Ŕ</span> </td> <tr id="entity-racute"><td> <code title="">racute;</code> </td> <td> U+00155 </td> <td> <span class="glyph" title="">ŕ</span> </td> <tr id="entity-radic"><td> <code title="">radic;</code> </td> <td> U+0221A </td> <td> <span class="glyph" title="">√</span> </td> <tr id="etity-raemptyv"><td> <code title="">raemptyv;</code> </td> <td> U+029B3 </td> <td> <span class="glyph" title="">⦳</span> </td> <tr id="entity-Rang"><td> <code title="">Rang;</code> </td> <td> U+027EB </td> <td> <span class="glyph" title="">⟫</span> </td> <tr id="entity-rang"><td> <code title="">rang;</code> </td> <td> U+027E9 </td> <td> <span class="glyph" title="">⟩</span> </td> <tr id="entity-rangd"><td> <code title="">rangd;</code> </td> <td> U+02992 </td> <td> <span class="glyph" title="">⦒</span> </td> <tr id="entity-range"><td> <code title="">range;</code> </td> <td> U+029A5 </td> <td> <span class="glyph" title="">⦥</span> </td> <tr id="entity-rangle"><td> <code title="">rangle;</code> </td> <td> U+027E9 </td> <td> <span class="glyph" title="">⟩</span> </td> <tr id="entity-raquo"><td> <code title="">raquo;</code> </td> <td> U+000BB </td> <td> <span class="glyph" title="">»</span> </td> <tr id="entity-Rarr"><td> <code title="">Rarr;</code> </td> <td> U+021A0 <td> <td> <span class="glyph" title="">↠</span> </td> <tr id="entity-rArr"><td> <code title="">rArr;</code> </td> <td> U+021D2 </td> <td> <span class="glyph" title="">⇒</span> </td> <tr id="entity-rarr"><td> <code title="">rarr;</code> </td> <td> U+02192 </td> <td> <span class="glyph" title="">→</span> </td> <tr id="entity-rarrap"><td> <code title="">rarrap;</code> </td> <td> U+02975 </td> <td> <span class="glyph" title="">⥵</span> </td> <tr id="entity-rarrb"><td> <code title="">rarrb;</code> </td> <td> U+021E5 </td> <td> <span class="glyph" title="">⇥</span> </td> <tr id="entity-rarrbfs"><td> <code title="">rarrbfs;</code> </td> <td> U+02920 </td> <td> <span class="glyph" title="">⤠</span> </td> <tr id="entity-rarrc"><td> <code title="">rarrc;</code> </td> <td> U+02933 </td> <td> <span class="glyph" title="">⤳</span> </td> <tr id="entity-rarrfs"><td> <code title="">rarrfs;</code> </td> <td> U+0291E </td> <td> <span class="glyph" title="">⤞</span> </td> <tr i="entity-rarrhk"><td> <code title="">rarrhk;</code> </td> <td> U+021AA </td> <td> <span class="glyph" title="">↪</span> </td> <tr id="entity-rarrlp"><td> <code title="">rarrlp;</code> </td> <td> U+021AC </td> <td> <span class="glyph" title="">↬</span> </td> <tr id="entity-rarrpl"><td> <code title="">rarrpl;</code> </td> <td> U+02945 </td> <td> <span class="glyph" title="">⥅</span> </td> <tr id="entity-rarrsim"><td> <code title="">rarrsim;</code> </td> <td> U+02974 </td> <td> <span class="glyph" title="">⥴</span> </td> <tr id="entity-Rarrtl"><td> <code title="">Rarrtl;</code> </td> <td> U+02916 </td> <td> <span class="glyph" title="">⤖</span> </td> <tr id="entity-rarrtl"><td> <code title="">rarrtl;</code> </td> <td> U+021A3 </td> <td> <span class="glyph" title="">↣</span> </td> <tr id="entity-rarrw"><td> <code title="">rarrw;</code> </td> <td> U+0219D </td> <td> <span class="glyph" title="">↝</span> </td> <tr id="entity-rAtail"><td> <code title="">rAtail;</code> <td> <td> U+0291C </td> <td> <span class="glyph" title="">⤜</span> </td> <tr id="entity-ratail"><td> <code title="">ratail;</code> </td> <td> U+0291A </td> <td> <span class="glyph" title="">⤚</span> </td> <tr id="entity-ratio"><td> <code title="">ratio;</code> </td> <td> U+02236 </td> <td> <span class="glyph" title="">∶</span> </td> <tr id="entity-rationals"><td> <code title="">rationals;</code> </td> <td> U+0211A </td> <td> <span class="glyph" title="">ℚ</span> </td> <tr id="entity-RBarr"><td> <code title="">RBarr;</code> </td> <td> U+02910 </td> <td> <span class="glyph" title="">⤐</span> </td> <tr id="entity-rBarr"><td> <code title="">rBarr;</code> </td> <td> U+0290F </td> <td> <span class="glyph" title="">⤏</span> </td> <tr id="entity-rbarr"><td> <code title="">rbarr;</code> </td> <td> U+0290D </td> <td> <span class="glyph" title="">⤍</span> </td> <tr id="entity-rbbrk"><td> <code title="">rbbrk;</code> </td> <td> U+02773 </td> <td> <span class="glyph" title=">❳</span> </td> <tr id="entity-rbrace"><td> <code title="">rbrace;</code> </td> <td> U+0007D </td> <td> <span class="glyph" title="">}</span> </td> <tr id="entity-rbrack"><td> <code title="">rbrack;</code> </td> <td> U+0005D </td> <td> <span class="glyph" title="">]</span> </td> <tr id="entity-rbrke"><td> <code title="">rbrke;</code> </td> <td> U+0298C </td> <td> <span class="glyph" title="">⦌</span> </td> <tr id="entity-rbrksld"><td> <code title="">rbrksld;</code> </td> <td> U+0298E </td> <td> <span class="glyph" title="">⦎</span> </td> <tr id="entity-rbrkslu"><td> <code title="">rbrkslu;</code> </td> <td> U+02990 </td> <td> <span class="glyph" title="">⦐</span> </td> <tr id="entity-Rcaron"><td> <code title="">Rcaron;</code> </td> <td> U+00158 </td> <td> <span class="glyph" title="">Ř</span> </td> <tr id="entity-rcaron"><td> <code title="">rcaron;</code> </td> <td> U+00159 </td> <td> <span class="glyph" title="">ř</span> </td> <tr id="entity-Rcedil"><td> <code title=""Rcedil;</code> </td> <td> U+00156 </td> <td> <span class="glyph" title="">Ŗ</span> </td> <tr id="entity-rcedil"><td> <code title="">rcedil;</code> </td> <td> U+00157 </td> <td> <span class="glyph" title="">ŗ</span> </td> <tr id="entity-rceil"><td> <code title="">rceil;</code> </td> <td> U+02309 </td> <td> <span class="glyph" title="">⌉</span> </td> <tr id="entity-rcub"><td> <code title="">rcub;</code> </td> <td> U+0007D </td> <td> <span class="glyph" title="">}</span> </td> <tr id="entity-Rcy"><td> <code title="">Rcy;</code> </td> <td> U+00420 </td> <td> <span class="glyph" title="">Р</span> </td> <tr id="entity-rcy"><td> <code title="">rcy;</code> </td> <td> U+00440 </td> <td> <span class="glyph" title="">р</span> </td> <tr id="entity-rdca"><td> <code title="">rdca;</code> </td> <td> U+02937 </td> <td> <span class="glyph" title="">⤷</span> </td> <tr id="entity-rdldhar"><td> <code title="">rdldhar;</code> </td> <td> U+02969 </td> <td> <span class="glyph" title="">⥩<span> </td> <tr id="entity-rdquo"><td> <code title="">rdquo;</code> </td> <td> U+0201D </td> <td> <span class="glyph" title="">”</span> </td> <tr id="entity-rdquor"><td> <code title="">rdquor;</code> </td> <td> U+0201D </td> <td> <span class="glyph" title="">”</span> </td> <tr id="entity-rdsh"><td> <code title="">rdsh;</code> </td> <td> U+021B3 </td> <td> <span class="glyph" title="">↳</span> </td> <tr id="entity-Re"><td> <code title="">Re;</code> </td> <td> U+0211C </td> <td> <span class="glyph" title="">ℜ</span> </td> <tr id="entity-real"><td> <code title="">real;</code> </td> <td> U+0211C </td> <td> <span class="glyph" title="">ℜ</span> </td> <tr id="entity-realine"><td> <code title="">realine;</code> </td> <td> U+0211B </td> <td> <span class="glyph" title="">ℛ</span> </td> <tr id="entity-realpart"><td> <code title="">realpart;</code> </td> <td> U+0211C </td> <td> <span class="glyph" title="">ℜ</span> </td> <tr id="entity-reals"><td> <code title="">reals;</code> </t> <td> U+0211D </td> <td> <span class="glyph" title="">ℝ</span> </td> <tr id="entity-rect"><td> <code title="">rect;</code> </td> <td> U+025AD </td> <td> <span class="glyph" title="">▭</span> </td> <tr id="entity-REG"><td> <code title="">REG;</code> </td> <td> U+000AE </td> <td> <span class="glyph" title="">®</span> </td> <tr id="entity-reg"><td> <code title="">reg;</code> </td> <td> U+000AE </td> <td> <span class="glyph" title="">®</span> </td> <tr id="entity-ReverseElement"><td> <code title="">ReverseElement;</code> </td> <td> U+0220B </td> <td> <span class="glyph" title="">∋</span> </td> <tr id="entity-ReverseEquilibrium"><td> <code title="">ReverseEquilibrium;</code> </td> <td> U+021CB </td> <td> <span class="glyph" title="">⇋</span> </td> <tr id="entity-ReverseUpEquilibrium"><td> <code title="">ReverseUpEquilibrium;</code> </td> <td> U+0296F </td> <td> <span class="glyph" title="">⥯</span> </td> <tr id="entity-rfisht"><td> <code title="">rfisht;</code> </td> <td> U+097D </td> <td> <span class="glyph" title="">⥽</span> </td> <tr id="entity-rfloor"><td> <code title="">rfloor;</code> </td> <td> U+0230B </td> <td> <span class="glyph" title="">⌋</span> </td> <tr id="entity-Rfr"><td> <code title="">Rfr;</code> </td> <td> U+0211C </td> <td> <span class="glyph" title="">ℜ</span> </td> <tr id="entity-rfr"><td> <code title="">rfr;</code> </td> <td> U+1D52F </td> <td> <span class="glyph" title="">𝔯</span> </td> <tr id="entity-rHar"><td> <code title="">rHar;</code> </td> <td> U+02964 </td> <td> <span class="glyph" title="">⥤</span> </td> <tr id="entity-rhard"><td> <code title="">rhard;</code> </td> <td> U+021C1 </td> <td> <span class="glyph" title="">⇁</span> </td> <tr id="entity-rharu"><td> <code title="">rharu;</code> </td> <td> U+021C0 </td> <td> <span class="glyph" title="">⇀</span> </td> <tr id="entity-rharul"><td> <code title="">rharul;</code> </td> <td> U+0296C </td> <td> <span class="glyph" title="">⥬</span> </td> <tr id"entity-Rho"><td> <code title="">Rho;</code> </td> <td> U+003A1 </td> <td> <span class="glyph" title="">Ρ</span> </td> <tr id="entity-rho"><td> <code title="">rho;</code> </td> <td> U+003C1 </td> <td> <span class="glyph" title="">ρ</span> </td> <tr id="entity-rhov"><td> <code title="">rhov;</code> </td> <td> U+003F1 </td> <td> <span class="glyph" title="">ϱ</span> </td> <tr id="entity-RightAngleBracket"><td> <code title="">RightAngleBracket;</code> </td> <td> U+027E9 </td> <td> <span class="glyph" title="">⟩</span> </td> <tr id="entity-RightArrow"><td> <code title="">RightArrow;</code> </td> <td> U+02192 </td> <td> <span class="glyph" title="">→</span> </td> <tr id="entity-Rightarrow"><td> <code title="">Rightarrow;</code> </td> <td> U+021D2 </td> <td> <span class="glyph" title="">⇒</span> </td> <tr id="entity-rightarrow"><td> <code title="">rightarrow;</code> </td> <td> U+02192 </td> <td> <span class="glyph" title="">→</span> </td> <tr id="entity-RightArrowBar"><td> <code itle="">RightArrowBar;</code> </td> <td> U+021E5 </td> <td> <span class="glyph" title="">⇥</span> </td> <tr id="entity-RightArrowLeftArrow"><td> <code title="">RightArrowLeftArrow;</code> </td> <td> U+021C4 </td> <td> <span class="glyph" title="">⇄</span> </td> <tr id="entity-rightarrowtail"><td> <code title="">rightarrowtail;</code> </td> <td> U+021A3 </td> <td> <span class="glyph" title="">↣</span> </td> <tr id="entity-RightCeiling"><td> <code title="">RightCeiling;</code> </td> <td> U+02309 </td> <td> <span class="glyph" title="">⌉</span> </td> <tr id="entity-RightDoubleBracket"><td> <code title="">RightDoubleBracket;</code> </td> <td> U+027E7 </td> <td> <span class="glyph" title="">⟧</span> </td> <tr id="entity-RightDownTeeVector"><td> <code title="">RightDownTeeVector;</code> </td> <td> U+0295D </td> <td> <span class="glyph" title="">⥝</span> </td> <tr id="entity-RightDownVector"><td> <code title="">RightDownVector;</code> </td> <td> U+021C2 </td> <td> <span class=glyph" title="">⇂</span> </td> <tr id="entity-RightDownVectorBar"><td> <code title="">RightDownVectorBar;</code> </td> <td> U+02955 </td> <td> <span class="glyph" title="">⥕</span> </td> <tr id="entity-RightFloor"><td> <code title="">RightFloor;</code> </td> <td> U+0230B </td> <td> <span class="glyph" title="">⌋</span> </td> <tr id="entity-rightharpoondown"><td> <code title="">rightharpoondown;</code> </td> <td> U+021C1 </td> <td> <span class="glyph" title="">⇁</span> </td> <tr id="entity-rightharpoonup"><td> <code title="">rightharpoonup;</code> </td> <td> U+021C0 </td> <td> <span class="glyph" title="">⇀</span> </td> <tr id="entity-rightleftarrows"><td> <code title="">rightleftarrows;</code> </td> <td> U+021C4 </td> <td> <span class="glyph" title="">⇄</span> </td> <tr id="entity-rightleftharpoons"><td> <code title="">rightleftharpoons;</code> </td> <td> U+021CC </td> <td> <span class="glyph" title="">⇌</span> </td> <tr id="entity-rightrightarrows"><td> <code tite="">rightrightarrows;</code> </td> <td> U+021C9 </td> <td> <span class="glyph" title="">⇉</span> </td> <tr id="entity-rightsquigarrow"><td> <code title="">rightsquigarrow;</code> </td> <td> U+0219D </td> <td> <span class="glyph" title="">↝</span> </td> <tr id="entity-RightTee"><td> <code title="">RightTee;</code> </td> <td> U+022A2 </td> <td> <span class="glyph" title="">⊢</span> </td> <tr id="entity-RightTeeArrow"><td> <code title="">RightTeeArrow;</code> </td> <td> U+021A6 </td> <td> <span class="glyph" title="">↦</span> </td> <tr id="entity-RightTeeVector"><td> <code title="">RightTeeVector;</code> </td> <td> U+0295B </td> <td> <span class="glyph" title="">⥛</span> </td> <tr id="entity-rightthreetimes"><td> <code title="">rightthreetimes;</code> </td> <td> U+022CC </td> <td> <span class="glyph" title="">⋌</span> </td> <tr id="entity-RightTriangle"><td> <code title="">RightTriangle;</code> </td> <td> U+022B3 </td> <td> <span class="glyph" title="">⊳</span> </td><tr id="entity-RightTriangleBar"><td> <code title="">RightTriangleBar;</code> </td> <td> U+029D0 </td> <td> <span class="glyph" title="">⧐</span> </td> <tr id="entity-RightTriangleEqual"><td> <code title="">RightTriangleEqual;</code> </td> <td> U+022B5 </td> <td> <span class="glyph" title="">⊵</span> </td> <tr id="entity-RightUpDownVector"><td> <code title="">RightUpDownVector;</code> </td> <td> U+0294F </td> <td> <span class="glyph" title="">⥏</span> </td> <tr id="entity-RightUpTeeVector"><td> <code title="">RightUpTeeVector;</code> </td> <td> U+0295C </td> <td> <span class="glyph" title="">⥜</span> </td> <tr id="entity-RightUpVector"><td> <code title="">RightUpVector;</code> </td> <td> U+021BE </td> <td> <span class="glyph" title="">↾</span> </td> <tr id="entity-RightUpVectorBar"><td> <code title="">RightUpVectorBar;</code> </td> <td> U+02954 </td> <td> <span class="glyph" title="">⥔</span> </td> <tr id="entity-RightVector"><td> <code title="">RightVector;</code> </d> <td> U+021C0 </td> <td> <span class="glyph" title="">⇀</span> </td> <tr id="entity-RightVectorBar"><td> <code title="">RightVectorBar;</code> </td> <td> U+02953 </td> <td> <span class="glyph" title="">⥓</span> </td> <tr id="entity-ring"><td> <code title="">ring;</code> </td> <td> U+002DA </td> <td> <span class="glyph" title="">˚</span> </td> <tr id="entity-risingdotseq"><td> <code title="">risingdotseq;</code> </td> <td> U+02253 </td> <td> <span class="glyph" title="">≓</span> </td> <tr id="entity-rlarr"><td> <code title="">rlarr;</code> </td> <td> U+021C4 </td> <td> <span class="glyph" title="">⇄</span> </td> <tr id="entity-rlhar"><td> <code title="">rlhar;</code> </td> <td> U+021CC </td> <td> <span class="glyph" title="">⇌</span> </td> <tr id="entity-rlm"><td> <code title="">rlm;</code> </td> <td> U+0200F </td> <td> <span class="glyph" title="">‏</span> </td> <tr id="entity-rmoust"><td> <code title="">rmoust;</code> </td> <td> U+023B1 </td> <td> <span class="glyp" title="">⎱</span> </td> <tr id="entity-rmoustache"><td> <code title="">rmoustache;</code> </td> <td> U+023B1 </td> <td> <span class="glyph" title="">⎱</span> </td> <tr id="entity-rnmid"><td> <code title="">rnmid;</code> </td> <td> U+02AEE </td> <td> <span class="glyph" title="">⫮</span> </td> <tr id="entity-roang"><td> <code title="">roang;</code> </td> <td> U+027ED </td> <td> <span class="glyph" title="">⟭</span> </td> <tr id="entity-roarr"><td> <code title="">roarr;</code> </td> <td> U+021FE </td> <td> <span class="glyph" title="">⇾</span> </td> <tr id="entity-robrk"><td> <code title="">robrk;</code> </td> <td> U+027E7 </td> <td> <span class="glyph" title="">⟧</span> </td> <tr id="entity-ropar"><td> <code title="">ropar;</code> </td> <td> U+02986 </td> <td> <span class="glyph" title="">⦆</span> </td> <tr id="entity-Ropf"><td> <code title="">Ropf;</code> </td> <td> U+0211D </td> <td> <span class="glyph" title="">ℝ</span> </td> <tr id="entity-ropf"><td> code title="">ropf;</code> </td> <td> U+1D563 </td> <td> <span class="glyph" title="">𝕣</span> </td> <tr id="entity-roplus"><td> <code title="">roplus;</code> </td> <td> U+02A2E </td> <td> <span class="glyph" title="">⨮</span> </td> <tr id="entity-rotimes"><td> <code title="">rotimes;</code> </td> <td> U+02A35 </td> <td> <span class="glyph" title="">⨵</span> </td> <tr id="entity-RoundImplies"><td> <code title="">RoundImplies;</code> </td> <td> U+02970 </td> <td> <span class="glyph" title="">⥰</span> </td> <tr id="entity-rpar"><td> <code title="">rpar;</code> </td> <td> U+00029 </td> <td> <span class="glyph" title="">)</span> </td> <tr id="entity-rpargt"><td> <code title="">rpargt;</code> </td> <td> U+02994 </td> <td> <span class="glyph" title="">⦔</span> </td> <tr id="entity-rppolint"><td> <code title="">rppolint;</code> </td> <td> U+02A12 </td> <td> <span class="glyph" title="">⨒</span> </td> <tr id="entity-rrarr"><td> <code title="">rrarr;</code> </td> <td> U+0219 </td> <td> <span class="glyph" title="">⇉</span> </td> <tr id="entity-Rrightarrow"><td> <code title="">Rrightarrow;</code> </td> <td> U+021DB </td> <td> <span class="glyph" title="">⇛</span> </td> <tr id="entity-rsaquo"><td> <code title="">rsaquo;</code> </td> <td> U+0203A </td> <td> <span class="glyph" title="">›</span> </td> <tr id="entity-Rscr"><td> <code title="">Rscr;</code> </td> <td> U+0211B </td> <td> <span class="glyph" title="">ℛ</span> </td> <tr id="entity-rscr"><td> <code title="">rscr;</code> </td> <td> U+1D4C7 </td> <td> <span class="glyph" title="">𝓇</span> </td> <tr id="entity-Rsh"><td> <code title="">Rsh;</code> </td> <td> U+021B1 </td> <td> <span class="glyph" title="">↱</span> </td> <tr id="entity-rsh"><td> <code title="">rsh;</code> </td> <td> U+021B1 </td> <td> <span class="glyph" title="">↱</span> </td> <tr id="entity-rsqb"><td> <code title="">rsqb;</code> </td> <td> U+0005D </td> <td> <span class="glyph" title="">]</span> </td> <tr id="enity-rsquo"><td> <code title="">rsquo;</code> </td> <td> U+02019 </td> <td> <span class="glyph" title="">’</span> </td> <tr id="entity-rsquor"><td> <code title="">rsquor;</code> </td> <td> U+02019 </td> <td> <span class="glyph" title="">’</span> </td> <tr id="entity-rthree"><td> <code title="">rthree;</code> </td> <td> U+022CC </td> <td> <span class="glyph" title="">⋌</span> </td> <tr id="entity-rtimes"><td> <code title="">rtimes;</code> </td> <td> U+022CA </td> <td> <span class="glyph" title="">⋊</span> </td> <tr id="entity-rtri"><td> <code title="">rtri;</code> </td> <td> U+025B9 </td> <td> <span class="glyph" title="">▹</span> </td> <tr id="entity-rtrie"><td> <code title="">rtrie;</code> </td> <td> U+022B5 </td> <td> <span class="glyph" title="">⊵</span> </td> <tr id="entity-rtrif"><td> <code title="">rtrif;</code> </td> <td> U+025B8 </td> <td> <span class="glyph" title="">▸</span> </td> <tr id="entity-rtriltri"><td> <code title="">rtriltri;</code> </td> <td> U+02CE </td> <td> <span class="glyph" title="">⧎</span> </td> <tr id="entity-RuleDelayed"><td> <code title="">RuleDelayed;</code> </td> <td> U+029F4 </td> <td> <span class="glyph" title="">⧴</span> </td> <tr id="entity-ruluhar"><td> <code title="">ruluhar;</code> </td> <td> U+02968 </td> <td> <span class="glyph" title="">⥨</span> </td> <tr id="entity-rx"><td> <code title="">rx;</code> </td> <td> U+0211E </td> <td> <span class="glyph" title="">℞</span> </td> <tr id="entity-Sacute"><td> <code title="">Sacute;</code> </td> <td> U+0015A </td> <td> <span class="glyph" title="">Ś</span> </td> <tr id="entity-sacute"><td> <code title="">sacute;</code> </td> <td> U+0015B </td> <td> <span class="glyph" title="">ś</span> </td> <tr id="entity-sbquo"><td> <code title="">sbquo;</code> </td> <td> U+0201A </td> <td> <span class="glyph" title="">‚</span> </td> <tr id="entity-Sc"><td> <code title="">Sc;</code> </td> <td> U+02ABC </td> <td> <span class="glyph" title="">⪼</span> </d> <tr id="entity-sc"><td> <code title="">sc;</code> </td> <td> U+0227B </td> <td> <span class="glyph" title="">≻</span> </td> <tr id="entity-scap"><td> <code title="">scap;</code> </td> <td> U+02AB8 </td> <td> <span class="glyph" title="">⪸</span> </td> <tr id="entity-Scaron"><td> <code title="">Scaron;</code> </td> <td> U+00160 </td> <td> <span class="glyph" title="">Š</span> </td> <tr id="entity-scaron"><td> <code title="">scaron;</code> </td> <td> U+00161 </td> <td> <span class="glyph" title="">š</span> </td> <tr id="entity-sccue"><td> <code title="">sccue;</code> </td> <td> U+0227D </td> <td> <span class="glyph" title="">≽</span> </td> <tr id="entity-scE"><td> <code title="">scE;</code> </td> <td> U+02AB4 </td> <td> <span class="glyph" title="">⪴</span> </td> <tr id="entity-sce"><td> <code title="">sce;</code> </td> <td> U+02AB0 </td> <td> <span class="glyph" title="">⪰</span> </td> <tr id="entity-Scedil"><td> <code title="">Scedil;</code> </td> <td> U+001E </td> <td> <span class="glyph" title="">Ş</span> </td> <tr id="entity-scedil"><td> <code title="">scedil;</code> </td> <td> U+0015F </td> <td> <span class="glyph" title="">ş</span> </td> <tr id="entity-Scirc"><td> <code title="">Scirc;</code> </td> <td> U+0015C </td> <td> <span class="glyph" title="">Ŝ</span> </td> <tr id="entity-scirc"><td> <code title="">scirc;</code> </td> <td> U+0015D </td> <td> <span class="glyph" title="">ŝ</span> </td> <tr id="entity-scnap"><td> <code title="">scnap;</code> </td> <td> U+02ABA </td> <td> <span class="glyph" title="">⪺</span> </td> <tr id="entity-scnE"><td> <code title="">scnE;</code> </td> <td> U+02AB6 </td> <td> <span class="glyph" title="">⪶</span> </td> <tr id="entity-scnsim"><td> <code title="">scnsim;</code> </td> <td> U+022E9 </td> <td> <span class="glyph" title="">⋩</span> </td> <tr id="entity-scpolint"><td> <code title="">scpolint;</code> </td> <td> U+02A13 </td> <td> <span class="glyph" title="">⨓</span> </td> tr id="entity-scsim"><td> <code title="">scsim;</code> </td> <td> U+0227F </td> <td> <span class="glyph" title="">≿</span> </td> <tr id="entity-Scy"><td> <code title="">Scy;</code> </td> <td> U+00421 </td> <td> <span class="glyph" title="">С</span> </td> <tr id="entity-scy"><td> <code title="">scy;</code> </td> <td> U+00441 </td> <td> <span class="glyph" title="">с</span> </td> <tr id="entity-sdot"><td> <code title="">sdot;</code> </td> <td> U+022C5 </td> <td> <span class="glyph" title="">⋅</span> </td> <tr id="entity-sdotb"><td> <code title="">sdotb;</code> </td> <td> U+022A1 </td> <td> <span class="glyph" title="">⊡</span> </td> <tr id="entity-sdote"><td> <code title="">sdote;</code> </td> <td> U+02A66 </td> <td> <span class="glyph" title="">⩦</span> </td> <tr id="entity-searhk"><td> <code title="">searhk;</code> </td> <td> U+02925 </td> <td> <span class="glyph" title="">⤥</span> </td> <tr id="entity-seArr"><td> <code title="">seArr;</code> </td> <td> U+021D8 </t> <td> <span class="glyph" title="">⇘</span> </td> <tr id="entity-searr"><td> <code title="">searr;</code> </td> <td> U+02198 </td> <td> <span class="glyph" title="">↘</span> </td> <tr id="entity-searrow"><td> <code title="">searrow;</code> </td> <td> U+02198 </td> <td> <span class="glyph" title="">↘</span> </td> <tr id="entity-sect"><td> <code title="">sect;</code> </td> <td> U+000A7 </td> <td> <span class="glyph" title="">§</span> </td> <tr id="entity-semi"><td> <code title="">semi;</code> </td> <td> U+0003B </td> <td> <span class="glyph" title="">;</span> </td> <tr id="entity-seswar"><td> <code title="">seswar;</code> </td> <td> U+02929 </td> <td> <span class="glyph" title="">⤩</span> </td> <tr id="entity-setminus"><td> <code title="">setminus;</code> </td> <td> U+02216 </td> <td> <span class="glyph" title="">∖</span> </td> <tr id="entity-setmn"><td> <code title="">setmn;</code> </td> <td> U+02216 </td> <td> <span class="glyph" title="">∖</span> </td> <tr id="entty-sext"><td> <code title="">sext;</code> </td> <td> U+02736 </td> <td> <span class="glyph" title="">✶</span> </td> <tr id="entity-Sfr"><td> <code title="">Sfr;</code> </td> <td> U+1D516 </td> <td> <span class="glyph" title="">𝔖</span> </td> <tr id="entity-sfr"><td> <code title="">sfr;</code> </td> <td> U+1D530 </td> <td> <span class="glyph" title="">𝔰</span> </td> <tr id="entity-sfrown"><td> <code title="">sfrown;</code> </td> <td> U+02322 </td> <td> <span class="glyph" title="">⌢</span> </td> <tr id="entity-sharp"><td> <code title="">sharp;</code> </td> <td> U+0266F </td> <td> <span class="glyph" title="">♯</span> </td> <tr id="entity-SHCHcy"><td> <code title="">SHCHcy;</code> </td> <td> U+00429 </td> <td> <span class="glyph" title="">Щ</span> </td> <tr id="entity-shchcy"><td> <code title="">shchcy;</code> </td> <td> U+00449 </td> <td> <span class="glyph" title="">щ</span> </td> <tr id="entity-SHcy"><td> <code title="">SHcy;</code> </td> <td> U+00428 </td> <t> <span class="glyph" title="">Ш</span> </td> <tr id="entity-shcy"><td> <code title="">shcy;</code> </td> <td> U+00448 </td> <td> <span class="glyph" title="">ш</span> </td> <tr id="entity-ShortDownArrow"><td> <code title="">ShortDownArrow;</code> </td> <td> U+02193 </td> <td> <span class="glyph" title="">↓</span> </td> <tr id="entity-ShortLeftArrow"><td> <code title="">ShortLeftArrow;</code> </td> <td> U+02190 </td> <td> <span class="glyph" title="">←</span> </td> <tr id="entity-shortmid"><td> <code title="">shortmid;</code> </td> <td> U+02223 </td> <td> <span class="glyph" title="">∣</span> </td> <tr id="entity-shortparallel"><td> <code title="">shortparallel;</code> </td> <td> U+02225 </td> <td> <span class="glyph" title="">∥</span> </td> <tr id="entity-ShortRightArrow"><td> <code title="">ShortRightArrow;</code> </td> <td> U+02192 </td> <td> <span class="glyph" title="">→</span> </td> <tr id="entity-ShortUpArrow"><td> <code title="">ShortUpArrow;</code> </td> <td> +02191 </td> <td> <span class="glyph" title="">↑</span> </td> <tr id="entity-shy"><td> <code title="">shy;</code> </td> <td> U+000AD </td> <td> <span class="glyph" title="">­</span> </td> <tr id="entity-Sigma"><td> <code title="">Sigma;</code> </td> <td> U+003A3 </td> <td> <span class="glyph" title="">Σ</span> </td> <tr id="entity-sigma"><td> <code title="">sigma;</code> </td> <td> U+003C3 </td> <td> <span class="glyph" title="">σ</span> </td> <tr id="entity-sigmaf"><td> <code title="">sigmaf;</code> </td> <td> U+003C2 </td> <td> <span class="glyph" title="">ς</span> </td> <tr id="entity-sigmav"><td> <code title="">sigmav;</code> </td> <td> U+003C2 </td> <td> <span class="glyph" title="">ς</span> </td> <tr id="entity-sim"><td> <code title="">sim;</code> </td> <td> U+0223C </td> <td> <span class="glyph" title="">∼</span> </td> <tr id="entity-simdot"><td> <code title="">simdot;</code> </td> <td> U+02A6A </td> <td> <span class="glyph" title="">⩪</span> </td> <tr id"entity-sime"><td> <code title="">sime;</code> </td> <td> U+02243 </td> <td> <span class="glyph" title="">≃</span> </td> <tr id="entity-simeq"><td> <code title="">simeq;</code> </td> <td> U+02243 </td> <td> <span class="glyph" title="">≃</span> </td> <tr id="entity-simg"><td> <code title="">simg;</code> </td> <td> U+02A9E </td> <td> <span class="glyph" title="">⪞</span> </td> <tr id="entity-simgE"><td> <code title="">simgE;</code> </td> <td> U+02AA0 </td> <td> <span class="glyph" title="">⪠</span> </td> <tr id="entity-siml"><td> <code title="">siml;</code> </td> <td> U+02A9D </td> <td> <span class="glyph" title="">⪝</span> </td> <tr id="entity-simlE"><td> <code title="">simlE;</code> </td> <td> U+02A9F </td> <td> <span class="glyph" title="">⪟</span> </td> <tr id="entity-simne"><td> <code title="">simne;</code> </td> <td> U+02246 </td> <td> <span class="glyph" title="">≆</span> </td> <tr id="entity-simplus"><td> <code title="">simplus;</code> </td> <td> U+02A24 /td> <td> <span class="glyph" title="">⨤</span> </td> <tr id="entity-simrarr"><td> <code title="">simrarr;</code> </td> <td> U+02972 </td> <td> <span class="glyph" title="">⥲</span> </td> <tr id="entity-slarr"><td> <code title="">slarr;</code> </td> <td> U+02190 </td> <td> <span class="glyph" title="">←</span> </td> <tr id="entity-SmallCircle"><td> <code title="">SmallCircle;</code> </td> <td> U+02218 </td> <td> <span class="glyph" title="">∘</span> </td> <tr id="entity-smallsetminus"><td> <code title="">smallsetminus;</code> </td> <td> U+02216 </td> <td> <span class="glyph" title="">∖</span> </td> <tr id="entity-smashp"><td> <code title="">smashp;</code> </td> <td> U+02A33 </td> <td> <span class="glyph" title="">⨳</span> </td> <tr id="entity-smeparsl"><td> <code title="">smeparsl;</code> </td> <td> U+029E4 </td> <td> <span class="glyph" title="">⧤</span> </td> <tr id="entity-smid"><td> <code title="">smid;</code> </td> <td> U+02223 </td> <td> <span class="glyph"title="">∣</span> </td> <tr id="entity-smile"><td> <code title="">smile;</code> </td> <td> U+02323 </td> <td> <span class="glyph" title="">⌣</span> </td> <tr id="entity-smt"><td> <code title="">smt;</code> </td> <td> U+02AAA </td> <td> <span class="glyph" title="">⪪</span> </td> <tr id="entity-smte"><td> <code title="">smte;</code> </td> <td> U+02AAC </td> <td> <span class="glyph" title="">⪬</span> </td> <tr id="entity-smtes"><td> <code title="">smtes;</code> </td> <td> U+02AAC U+0FE00 </td> <td> <span class="glyph compound" title="">⪬︀</span> </td> <tr id="entity-SOFTcy"><td> <code title="">SOFTcy;</code> </td> <td> U+0042C </td> <td> <span class="glyph" title="">Ь</span> </td> <tr id="entity-softcy"><td> <code title="">softcy;</code> </td> <td> U+0044C </td> <td> <span class="glyph" title="">ь</span> </td> <tr id="entity-sol"><td> <code title="">sol;</code> </td> <td> U+0002F </td> <td> <span class="glyph" title="">/</span> </td> <tr id="entity-solb"><td <code title="">solb;</code> </td> <td> U+029C4 </td> <td> <span class="glyph" title="">⧄</span> </td> <tr id="entity-solbar"><td> <code title="">solbar;</code> </td> <td> U+0233F </td> <td> <span class="glyph" title="">⌿</span> </td> <tr id="entity-Sopf"><td> <code title="">Sopf;</code> </td> <td> U+1D54A </td> <td> <span class="glyph" title="">𝕊</span> </td> <tr id="entity-sopf"><td> <code title="">sopf;</code> </td> <td> U+1D564 </td> <td> <span class="glyph" title="">𝕤</span> </td> <tr id="entity-spades"><td> <code title="">spades;</code> </td> <td> U+02660 </td> <td> <span class="glyph" title="">♠</span> </td> <tr id="entity-spadesuit"><td> <code title="">spadesuit;</code> </td> <td> U+02660 </td> <td> <span class="glyph" title="">♠</span> </td> <tr id="entity-spar"><td> <code title="">spar;</code> </td> <td> U+02225 </td> <td> <span class="glyph" title="">∥</span> </td> <tr id="entity-sqcap"><td> <code title="">sqcap;</code> </td> <td> U+02293 </td> <td <span class="glyph" title="">⊓</span> </td> <tr id="entity-sqcaps"><td> <code title="">sqcaps;</code> </td> <td> U+02293 U+0FE00 </td> <td> <span class="glyph compound" title="">⊓︀</span> </td> <tr id="entity-sqcup"><td> <code title="">sqcup;</code> </td> <td> U+02294 </td> <td> <span class="glyph" title="">⊔</span> </td> <tr id="entity-sqcups"><td> <code title="">sqcups;</code> </td> <td> U+02294 U+0FE00 </td> <td> <span class="glyph compound" title="">⊔︀</span> </td> <tr id="entity-Sqrt"><td> <code title="">Sqrt;</code> </td> <td> U+0221A </td> <td> <span class="glyph" title="">√</span> </td> <tr id="entity-sqsub"><td> <code title="">sqsub;</code> </td> <td> U+0228F </td> <td> <span class="glyph" title="">⊏</span> </td> <tr id="entity-sqsube"><td> <code title="">sqsube;</code> </td> <td> U+02291 </td> <td> <span class="glyph" title="">⊑</span> </td> <tr id="entity-sqsubset"><td> <code title="">sqsubset;</code> </td> <td> U+0228F </td> <td> <span clas="glyph" title="">⊏</span> </td> <tr id="entity-sqsubseteq"><td> <code title="">sqsubseteq;</code> </td> <td> U+02291 </td> <td> <span class="glyph" title="">⊑</span> </td> <tr id="entity-sqsup"><td> <code title="">sqsup;</code> </td> <td> U+02290 </td> <td> <span class="glyph" title="">⊐</span> </td> <tr id="entity-sqsupe"><td> <code title="">sqsupe;</code> </td> <td> U+02292 </td> <td> <span class="glyph" title="">⊒</span> </td> <tr id="entity-sqsupset"><td> <code title="">sqsupset;</code> </td> <td> U+02290 </td> <td> <span class="glyph" title="">⊐</span> </td> <tr id="entity-sqsupseteq"><td> <code title="">sqsupseteq;</code> </td> <td> U+02292 </td> <td> <span class="glyph" title="">⊒</span> </td> <tr id="entity-squ"><td> <code title="">squ;</code> </td> <td> U+025A1 </td> <td> <span class="glyph" title="">□</span> </td> <tr id="entity-Square"><td> <code title="">Square;</code> </td> <td> U+025A1 </td> <td> <span class="glyph" title="">□</span> </td> <tr d="entity-square"><td> <code title="">square;</code> </td> <td> U+025A1 </td> <td> <span class="glyph" title="">□</span> </td> <tr id="entity-SquareIntersection"><td> <code title="">SquareIntersection;</code> </td> <td> U+02293 </td> <td> <span class="glyph" title="">⊓</span> </td> <tr id="entity-SquareSubset"><td> <code title="">SquareSubset;</code> </td> <td> U+0228F </td> <td> <span class="glyph" title="">⊏</span> </td> <tr id="entity-SquareSubsetEqual"><td> <code title="">SquareSubsetEqual;</code> </td> <td> U+02291 </td> <td> <span class="glyph" title="">⊑</span> </td> <tr id="entity-SquareSuperset"><td> <code title="">SquareSuperset;</code> </td> <td> U+02290 </td> <td> <span class="glyph" title="">⊐</span> </td> <tr id="entity-SquareSupersetEqual"><td> <code title="">SquareSupersetEqual;</code> </td> <td> U+02292 </td> <td> <span class="glyph" title="">⊒</span> </td> <tr id="entity-SquareUnion"><td> <code title="">SquareUnion;</code> </td> <td> U+02294 </td> <td> <pan class="glyph" title="">⊔</span> </td> <tr id="entity-squarf"><td> <code title="">squarf;</code> </td> <td> U+025AA </td> <td> <span class="glyph" title="">▪</span> </td> <tr id="entity-squf"><td> <code title="">squf;</code> </td> <td> U+025AA </td> <td> <span class="glyph" title="">▪</span> </td> <tr id="entity-srarr"><td> <code title="">srarr;</code> </td> <td> U+02192 </td> <td> <span class="glyph" title="">→</span> </td> <tr id="entity-Sscr"><td> <code title="">Sscr;</code> </td> <td> U+1D4AE </td> <td> <span class="glyph" title="">𝒮</span> </td> <tr id="entity-sscr"><td> <code title="">sscr;</code> </td> <td> U+1D4C8 </td> <td> <span class="glyph" title="">𝓈</span> </td> <tr id="entity-ssetmn"><td> <code title="">ssetmn;</code> </td> <td> U+02216 </td> <td> <span class="glyph" title="">∖</span> </td> <tr id="entity-ssmile"><td> <code title="">ssmile;</code> </td> <td> U+02323 </td> <td> <span class="glyph" title="">⌣</span> </td> <tr id="entity-sstaf"><td> <code title="">sstarf;</code> </td> <td> U+022C6 </td> <td> <span class="glyph" title="">⋆</span> </td> <tr id="entity-Star"><td> <code title="">Star;</code> </td> <td> U+022C6 </td> <td> <span class="glyph" title="">⋆</span> </td> <tr id="entity-star"><td> <code title="">star;</code> </td> <td> U+02606 </td> <td> <span class="glyph" title="">☆</span> </td> <tr id="entity-starf"><td> <code title="">starf;</code> </td> <td> U+02605 </td> <td> <span class="glyph" title="">★</span> </td> <tr id="entity-straightepsilon"><td> <code title="">straightepsilon;</code> </td> <td> U+003F5 </td> <td> <span class="glyph" title="">ϵ</span> </td> <tr id="entity-straightphi"><td> <code title="">straightphi;</code> </td> <td> U+003D5 </td> <td> <span class="glyph" title="">ϕ</span> </td> <tr id="entity-strns"><td> <code title="">strns;</code> </td> <td> U+000AF </td> <td> <span class="glyph" title="">¯</span> </td> <tr id="entity-Sub"><td> <code title="">Sub;</code> </td> <td>U+022D0 </td> <td> <span class="glyph" title="">⋐</span> </td> <tr id="entity-sub"><td> <code title="">sub;</code> </td> <td> U+02282 </td> <td> <span class="glyph" title="">⊂</span> </td> <tr id="entity-subdot"><td> <code title="">subdot;</code> </td> <td> U+02ABD </td> <td> <span class="glyph" title="">⪽</span> </td> <tr id="entity-subE"><td> <code title="">subE;</code> </td> <td> U+02AC5 </td> <td> <span class="glyph" title="">⫅</span> </td> <tr id="entity-sube"><td> <code title="">sube;</code> </td> <td> U+02286 </td> <td> <span class="glyph" title="">⊆</span> </td> <tr id="entity-subedot"><td> <code title="">subedot;</code> </td> <td> U+02AC3 </td> <td> <span class="glyph" title="">⫃</span> </td> <tr id="entity-submult"><td> <code title="">submult;</code> </td> <td> U+02AC1 </td> <td> <span class="glyph" title="">⫁</span> </td> <tr id="entity-subnE"><td> <code title="">subnE;</code> </td> <td> U+02ACB </td> <td> <span class="glyph" title="">⫋</span> </t> <tr id="entity-subne"><td> <code title="">subne;</code> </td> <td> U+0228A </td> <td> <span class="glyph" title="">⊊</span> </td> <tr id="entity-subplus"><td> <code title="">subplus;</code> </td> <td> U+02ABF </td> <td> <span class="glyph" title="">⪿</span> </td> <tr id="entity-subrarr"><td> <code title="">subrarr;</code> </td> <td> U+02979 </td> <td> <span class="glyph" title="">⥹</span> </td> <tr id="entity-Subset"><td> <code title="">Subset;</code> </td> <td> U+022D0 </td> <td> <span class="glyph" title="">⋐</span> </td> <tr id="entity-subset"><td> <code title="">subset;</code> </td> <td> U+02282 </td> <td> <span class="glyph" title="">⊂</span> </td> <tr id="entity-subseteq"><td> <code title="">subseteq;</code> </td> <td> U+02286 </td> <td> <span class="glyph" title="">⊆</span> </td> <tr id="entity-subseteqq"><td> <code title="">subseteqq;</code> </td> <td> U+02AC5 </td> <td> <span class="glyph" title="">⫅</span> </td> <tr id="entity-SubsetEqual"><td> <code tite="">SubsetEqual;</code> </td> <td> U+02286 </td> <td> <span class="glyph" title="">⊆</span> </td> <tr id="entity-subsetneq"><td> <code title="">subsetneq;</code> </td> <td> U+0228A </td> <td> <span class="glyph" title="">⊊</span> </td> <tr id="entity-subsetneqq"><td> <code title="">subsetneqq;</code> </td> <td> U+02ACB </td> <td> <span class="glyph" title="">⫋</span> </td> <tr id="entity-subsim"><td> <code title="">subsim;</code> </td> <td> U+02AC7 </td> <td> <span class="glyph" title="">⫇</span> </td> <tr id="entity-subsub"><td> <code title="">subsub;</code> </td> <td> U+02AD5 </td> <td> <span class="glyph" title="">⫕</span> </td> <tr id="entity-subsup"><td> <code title="">subsup;</code> </td> <td> U+02AD3 </td> <td> <span class="glyph" title="">⫓</span> </td> <tr id="entity-succ"><td> <code title="">succ;</code> </td> <td> U+0227B </td> <td> <span class="glyph" title="">≻</span> </td> <tr id="entity-succapprox"><td> <code title="">succapprox;</code> </td> <td>U+02AB8 </td> <td> <span class="glyph" title="">⪸</span> </td> <tr id="entity-succcurlyeq"><td> <code title="">succcurlyeq;</code> </td> <td> U+0227D </td> <td> <span class="glyph" title="">≽</span> </td> <tr id="entity-Succeeds"><td> <code title="">Succeeds;</code> </td> <td> U+0227B </td> <td> <span class="glyph" title="">≻</span> </td> <tr id="entity-SucceedsEqual"><td> <code title="">SucceedsEqual;</code> </td> <td> U+02AB0 </td> <td> <span class="glyph" title="">⪰</span> </td> <tr id="entity-SucceedsSlantEqual"><td> <code title="">SucceedsSlantEqual;</code> </td> <td> U+0227D </td> <td> <span class="glyph" title="">≽</span> </td> <tr id="entity-SucceedsTilde"><td> <code title="">SucceedsTilde;</code> </td> <td> U+0227F </td> <td> <span class="glyph" title="">≿</span> </td> <tr id="entity-succeq"><td> <code title="">succeq;</code> </td> <td> U+02AB0 </td> <td> <span class="glyph" title="">⪰</span> </td> <tr id="entity-succnapprox"><td> <code title="">succnappox;</code> </td> <td> U+02ABA </td> <td> <span class="glyph" title="">⪺</span> </td> <tr id="entity-succneqq"><td> <code title="">succneqq;</code> </td> <td> U+02AB6 </td> <td> <span class="glyph" title="">⪶</span> </td> <tr id="entity-succnsim"><td> <code title="">succnsim;</code> </td> <td> U+022E9 </td> <td> <span class="glyph" title="">⋩</span> </td> <tr id="entity-succsim"><td> <code title="">succsim;</code> </td> <td> U+0227F </td> <td> <span class="glyph" title="">≿</span> </td> <tr id="entity-SuchThat"><td> <code title="">SuchThat;</code> </td> <td> U+0220B </td> <td> <span class="glyph" title="">∋</span> </td> <tr id="entity-Sum"><td> <code title="">Sum;</code> </td> <td> U+02211 </td> <td> <span class="glyph" title="">∑</span> </td> <tr id="entity-sum"><td> <code title="">sum;</code> </td> <td> U+02211 </td> <td> <span class="glyph" title="">∑</span> </td> <tr id="entity-sung"><td> <code title="">sung;</code> </td> <td> U+0266A </td> <td> <span class="glyph" tile="">♪</span> </td> <tr id="entity-Sup"><td> <code title="">Sup;</code> </td> <td> U+022D1 </td> <td> <span class="glyph" title="">⋑</span> </td> <tr id="entity-sup"><td> <code title="">sup;</code> </td> <td> U+02283 </td> <td> <span class="glyph" title="">⊃</span> </td> <tr id="entity-sup1"><td> <code title="">sup1;</code> </td> <td> U+000B9 </td> <td> <span class="glyph" title="">¹</span> </td> <tr id="entity-sup2"><td> <code title="">sup2;</code> </td> <td> U+000B2 </td> <td> <span class="glyph" title="">²</span> </td> <tr id="entity-sup3"><td> <code title="">sup3;</code> </td> <td> U+000B3 </td> <td> <span class="glyph" title="">³</span> </td> <tr id="entity-supdot"><td> <code title="">supdot;</code> </td> <td> U+02ABE </td> <td> <span class="glyph" title="">⪾</span> </td> <tr id="entity-supdsub"><td> <code title="">supdsub;</code> </td> <td> U+02AD8 </td> <td> <span class="glyph" title="">⫘</span> </td> <tr id="entity-supE"><td> <code title="">supE;</code> /td> <td> U+02AC6 </td> <td> <span class="glyph" title="">⫆</span> </td> <tr id="entity-supe"><td> <code title="">supe;</code> </td> <td> U+02287 </td> <td> <span class="glyph" title="">⊇</span> </td> <tr id="entity-supedot"><td> <code title="">supedot;</code> </td> <td> U+02AC4 </td> <td> <span class="glyph" title="">⫄</span> </td> <tr id="entity-Superset"><td> <code title="">Superset;</code> </td> <td> U+02283 </td> <td> <span class="glyph" title="">⊃</span> </td> <tr id="entity-SupersetEqual"><td> <code title="">SupersetEqual;</code> </td> <td> U+02287 </td> <td> <span class="glyph" title="">⊇</span> </td> <tr id="entity-suphsol"><td> <code title="">suphsol;</code> </td> <td> U+027C9 </td> <td> <span class="glyph" title="">⟉</span> </td> <tr id="entity-suphsub"><td> <code title="">suphsub;</code> </td> <td> U+02AD7 </td> <td> <span class="glyph" title="">⫗</span> </td> <tr id="entity-suplarr"><td> <code title="">suplarr;</code> </td> <td> U+0297B </td> <td> <spanclass="glyph" title="">⥻</span> </td> <tr id="entity-supmult"><td> <code title="">supmult;</code> </td> <td> U+02AC2 </td> <td> <span class="glyph" title="">⫂</span> </td> <tr id="entity-supnE"><td> <code title="">supnE;</code> </td> <td> U+02ACC </td> <td> <span class="glyph" title="">⫌</span> </td> <tr id="entity-supne"><td> <code title="">supne;</code> </td> <td> U+0228B </td> <td> <span class="glyph" title="">⊋</span> </td> <tr id="entity-supplus"><td> <code title="">supplus;</code> </td> <td> U+02AC0 </td> <td> <span class="glyph" title="">⫀</span> </td> <tr id="entity-Supset"><td> <code title="">Supset;</code> </td> <td> U+022D1 </td> <td> <span class="glyph" title="">⋑</span> </td> <tr id="entity-supset"><td> <code title="">supset;</code> </td> <td> U+02283 </td> <td> <span class="glyph" title="">⊃</span> </td> <tr id="entity-supseteq"><td> <code title="">supseteq;</code> </td> <td> U+02287 </td> <td> <span class="glyph" title="">⊇</span> </td> <tr id=entity-supseteqq"><td> <code title="">supseteqq;</code> </td> <td> U+02AC6 </td> <td> <span class="glyph" title="">⫆</span> </td> <tr id="entity-supsetneq"><td> <code title="">supsetneq;</code> </td> <td> U+0228B </td> <td> <span class="glyph" title="">⊋</span> </td> <tr id="entity-supsetneqq"><td> <code title="">supsetneqq;</code> </td> <td> U+02ACC </td> <td> <span class="glyph" title="">⫌</span> </td> <tr id="entity-supsim"><td> <code title="">supsim;</code> </td> <td> U+02AC8 </td> <td> <span class="glyph" title="">⫈</span> </td> <tr id="entity-supsub"><td> <code title="">supsub;</code> </td> <td> U+02AD4 </td> <td> <span class="glyph" title="">⫔</span> </td> <tr id="entity-supsup"><td> <code title="">supsup;</code> </td> <td> U+02AD6 </td> <td> <span class="glyph" title="">⫖</span> </td> <tr id="entity-swarhk"><td> <code title="">swarhk;</code> </td> <td> U+02926 </td> <td> <span class="glyph" title="">⤦</span> </td> <tr id="entity-swArr"><td> <code title"">swArr;</code> </td> <td> U+021D9 </td> <td> <span class="glyph" title="">⇙</span> </td> <tr id="entity-swarr"><td> <code title="">swarr;</code> </td> <td> U+02199 </td> <td> <span class="glyph" title="">↙</span> </td> <tr id="entity-swarrow"><td> <code title="">swarrow;</code> </td> <td> U+02199 </td> <td> <span class="glyph" title="">↙</span> </td> <tr id="entity-swnwar"><td> <code title="">swnwar;</code> </td> <td> U+0292A </td> <td> <span class="glyph" title="">⤪</span> </td> <tr id="entity-szlig"><td> <code title="">szlig;</code> </td> <td> U+000DF </td> <td> <span class="glyph" title="">ß</span> </td> <tr id="entity-Tab"><td> <code title="">Tab;</code> </td> <td> U+00009 </td> <td> <span class="glyph control" title="">␉</span> </td> <tr id="entity-target"><td> <code title="">target;</code> </td> <td> U+02316 </td> <td> <span class="glyph" title="">⌖</span> </td> <tr id="entity-Tau"><td> <code title="">Tau;</code> </td> <td> U+003A4 </td> <td> <span class="gyph" title="">Τ</span> </td> <tr id="entity-tau"><td> <code title="">tau;</code> </td> <td> U+003C4 </td> <td> <span class="glyph" title="">τ</span> </td> <tr id="entity-tbrk"><td> <code title="">tbrk;</code> </td> <td> U+023B4 </td> <td> <span class="glyph" title="">⎴</span> </td> <tr id="entity-Tcaron"><td> <code title="">Tcaron;</code> </td> <td> U+00164 </td> <td> <span class="glyph" title="">Ť</span> </td> <tr id="entity-tcaron"><td> <code title="">tcaron;</code> </td> <td> U+00165 </td> <td> <span class="glyph" title="">ť</span> </td> <tr id="entity-Tcedil"><td> <code title="">Tcedil;</code> </td> <td> U+00162 </td> <td> <span class="glyph" title="">Ţ</span> </td> <tr id="entity-tcedil"><td> <code title="">tcedil;</code> </td> <td> U+00163 </td> <td> <span class="glyph" title="">ţ</span> </td> <tr id="entity-Tcy"><td> <code title="">Tcy;</code> </td> <td> U+00422 </td> <td> <span class="glyph" title="">Т</span> </td> <tr id="entity-tcy"><td> <code title="">tcy;<code> </td> <td> U+00442 </td> <td> <span class="glyph" title="">т</span> </td> <tr id="entity-tdot"><td> <code title="">tdot;</code> </td> <td> U+020DB </td> <td> <span class="glyph composition" title="">◌⃛</span> </td> <tr id="entity-telrec"><td> <code title="">telrec;</code> </td> <td> U+02315 </td> <td> <span class="glyph" title="">⌕</span> </td> <tr id="entity-Tfr"><td> <code title="">Tfr;</code> </td> <td> U+1D517 </td> <td> <span class="glyph" title="">𝔗</span> </td> <tr id="entity-tfr"><td> <code title="">tfr;</code> </td> <td> U+1D531 </td> <td> <span class="glyph" title="">𝔱</span> </td> <tr id="entity-there4"><td> <code title="">there4;</code> </td> <td> U+02234 </td> <td> <span class="glyph" title="">∴</span> </td> <tr id="entity-Therefore"><td> <code title="">Therefore;</code> </td> <td> U+02234 </td> <td> <span class="glyph" title="">∴</span> </td> <tr id="entity-therefore"><td> <code title="">therefore;</code> </td> <td> U+02234 </td> <td><span class="glyph" title="">∴</span> </td> <tr id="entity-Theta"><td> <code title="">Theta;</code> </td> <td> U+00398 </td> <td> <span class="glyph" title="">Θ</span> </td> <tr id="entity-theta"><td> <code title="">theta;</code> </td> <td> U+003B8 </td> <td> <span class="glyph" title="">θ</span> </td> <tr id="entity-thetasym"><td> <code title="">thetasym;</code> </td> <td> U+003D1 </td> <td> <span class="glyph" title="">ϑ</span> </td> <tr id="entity-thetav"><td> <code title="">thetav;</code> </td> <td> U+003D1 </td> <td> <span class="glyph" title="">ϑ</span> </td> <tr id="entity-thickapprox"><td> <code title="">thickapprox;</code> </td> <td> U+02248 </td> <td> <span class="glyph" title="">≈</span> </td> <tr id="entity-thicksim"><td> <code title="">thicksim;</code> </td> <td> U+0223C </td> <td> <span class="glyph" title="">∼</span> </td> <tr id="entity-ThickSpace"><td> <code title="">ThickSpace;</code> </td> <td> U+0205F U+0200A </td> <td> <span class="glyph copound" title="">  </span> </td> <tr id="entity-thinsp"><td> <code title="">thinsp;</code> </td> <td> U+02009 </td> <td> <span class="glyph" title=""> </span> </td> <tr id="entity-ThinSpace"><td> <code title="">ThinSpace;</code> </td> <td> U+02009 </td> <td> <span class="glyph" title=""> </span> </td> <tr id="entity-thkap"><td> <code title="">thkap;</code> </td> <td> U+02248 </td> <td> <span class="glyph" title="">≈</span> </td> <tr id="entity-thksim"><td> <code title="">thksim;</code> </td> <td> U+0223C </td> <td> <span class="glyph" title="">∼</span> </td> <tr id="entity-THORN"><td> <code title="">THORN;</code> </td> <td> U+000DE </td> <td> <span class="glyph" title="">Þ</span> </td> <tr id="entity-thorn"><td> <code title="">thorn;</code> </td> <td> U+000FE </td> <td> <span class="glyph" title="">þ</span> </td> <tr id="entity-Tilde"><td> <code title="">Tilde;</code> </td> <td> U+0223C </td> <td> <span class="glyph" title="">∼</span> </td> <tr id="entity-tlde"><td> <code title="">tilde;</code> </td> <td> U+002DC </td> <td> <span class="glyph" title="">˜</span> </td> <tr id="entity-TildeEqual"><td> <code title="">TildeEqual;</code> </td> <td> U+02243 </td> <td> <span class="glyph" title="">≃</span> </td> <tr id="entity-TildeFullEqual"><td> <code title="">TildeFullEqual;</code> </td> <td> U+02245 </td> <td> <span class="glyph" title="">≅</span> </td> <tr id="entity-TildeTilde"><td> <code title="">TildeTilde;</code> </td> <td> U+02248 </td> <td> <span class="glyph" title="">≈</span> </td> <tr id="entity-times"><td> <code title="">times;</code> </td> <td> U+000D7 </td> <td> <span class="glyph" title="">×</span> </td> <tr id="entity-timesb"><td> <code title="">timesb;</code> </td> <td> U+022A0 </td> <td> <span class="glyph" title="">⊠</span> </td> <tr id="entity-timesbar"><td> <code title="">timesbar;</code> </td> <td> U+02A31 </td> <td> <span class="glyph" title="">⨱</span> </td> <tr id="entity-timesd"><td> <code title=">timesd;</code> </td> <td> U+02A30 </td> <td> <span class="glyph" title="">⨰</span> </td> <tr id="entity-tint"><td> <code title="">tint;</code> </td> <td> U+0222D </td> <td> <span class="glyph" title="">∭</span> </td> <tr id="entity-toea"><td> <code title="">toea;</code> </td> <td> U+02928 </td> <td> <span class="glyph" title="">⤨</span> </td> <tr id="entity-top"><td> <code title="">top;</code> </td> <td> U+022A4 </td> <td> <span class="glyph" title="">⊤</span> </td> <tr id="entity-topbot"><td> <code title="">topbot;</code> </td> <td> U+02336 </td> <td> <span class="glyph" title="">⌶</span> </td> <tr id="entity-topcir"><td> <code title="">topcir;</code> </td> <td> U+02AF1 </td> <td> <span class="glyph" title="">⫱</span> </td> <tr id="entity-Topf"><td> <code title="">Topf;</code> </td> <td> U+1D54B </td> <td> <span class="glyph" title="">𝕋</span> </td> <tr id="entity-topf"><td> <code title="">topf;</code> </td> <td> U+1D565 </td> <td> <span class="glyph" title=">𝕥</span> </td> <tr id="entity-topfork"><td> <code title="">topfork;</code> </td> <td> U+02ADA </td> <td> <span class="glyph" title="">⫚</span> </td> <tr id="entity-tosa"><td> <code title="">tosa;</code> </td> <td> U+02929 </td> <td> <span class="glyph" title="">⤩</span> </td> <tr id="entity-tprime"><td> <code title="">tprime;</code> </td> <td> U+02034 </td> <td> <span class="glyph" title="">‴</span> </td> <tr id="entity-TRADE"><td> <code title="">TRADE;</code> </td> <td> U+02122 </td> <td> <span class="glyph" title="">™</span> </td> <tr id="entity-trade"><td> <code title="">trade;</code> </td> <td> U+02122 </td> <td> <span class="glyph" title="">™</span> </td> <tr id="entity-triangle"><td> <code title="">triangle;</code> </td> <td> U+025B5 </td> <td> <span class="glyph" title="">▵</span> </td> <tr id="entity-triangledown"><td> <code title="">triangledown;</code> </td> <td> U+025BF </td> <td> <span class="glyph" title="">▿</span> </td> <tr id="entity-trianleleft"><td> <code title="">triangleleft;</code> </td> <td> U+025C3 </td> <td> <span class="glyph" title="">◃</span> </td> <tr id="entity-trianglelefteq"><td> <code title="">trianglelefteq;</code> </td> <td> U+022B4 </td> <td> <span class="glyph" title="">⊴</span> </td> <tr id="entity-triangleq"><td> <code title="">triangleq;</code> </td> <td> U+0225C </td> <td> <span class="glyph" title="">≜</span> </td> <tr id="entity-triangleright"><td> <code title="">triangleright;</code> </td> <td> U+025B9 </td> <td> <span class="glyph" title="">▹</span> </td> <tr id="entity-trianglerighteq"><td> <code title="">trianglerighteq;</code> </td> <td> U+022B5 </td> <td> <span class="glyph" title="">⊵</span> </td> <tr id="entity-tridot"><td> <code title="">tridot;</code> </td> <td> U+025EC </td> <td> <span class="glyph" title="">◬</span> </td> <tr id="entity-trie"><td> <code title="">trie;</code> </td> <td> U+0225C </td> <td> <span class="glyph" title="">≜</span> </td> <tr id="entity-riminus"><td> <code title="">triminus;</code> </td> <td> U+02A3A </td> <td> <span class="glyph" title="">⨺</span> </td> <tr id="entity-TripleDot"><td> <code title="">TripleDot;</code> </td> <td> U+020DB </td> <td> <span class="glyph composition" title="">◌⃛</span> </td> <tr id="entity-triplus"><td> <code title="">triplus;</code> </td> <td> U+02A39 </td> <td> <span class="glyph" title="">⨹</span> </td> <tr id="entity-trisb"><td> <code title="">trisb;</code> </td> <td> U+029CD </td> <td> <span class="glyph" title="">⧍</span> </td> <tr id="entity-tritime"><td> <code title="">tritime;</code> </td> <td> U+02A3B </td> <td> <span class="glyph" title="">⨻</span> </td> <tr id="entity-trpezium"><td> <code title="">trpezium;</code> </td> <td> U+023E2 </td> <td> <span class="glyph" title="">⏢</span> </td> <tr id="entity-Tscr"><td> <code title="">Tscr;</code> </td> <td> U+1D4AF </td> <td> <span class="glyph" title="">𝒯</span> </td> <tr id="entity-tscr"><td> <code tite="">tscr;</code> </td> <td> U+1D4C9 </td> <td> <span class="glyph" title="">𝓉</span> </td> <tr id="entity-TScy"><td> <code title="">TScy;</code> </td> <td> U+00426 </td> <td> <span class="glyph" title="">Ц</span> </td> <tr id="entity-tscy"><td> <code title="">tscy;</code> </td> <td> U+00446 </td> <td> <span class="glyph" title="">ц</span> </td> <tr id="entity-TSHcy"><td> <code title="">TSHcy;</code> </td> <td> U+0040B </td> <td> <span class="glyph" title="">Ћ</span> </td> <tr id="entity-tshcy"><td> <code title="">tshcy;</code> </td> <td> U+0045B </td> <td> <span class="glyph" title="">ћ</span> </td> <tr id="entity-Tstrok"><td> <code title="">Tstrok;</code> </td> <td> U+00166 </td> <td> <span class="glyph" title="">Ŧ</span> </td> <tr id="entity-tstrok"><td> <code title="">tstrok;</code> </td> <td> U+00167 </td> <td> <span class="glyph" title="">ŧ</span> </td> <tr id="entity-twixt"><td> <code title="">twixt;</code> </td> <td> U+0226C </td> <td> <span class="glyph" tile="">≬</span> </td> <tr id="entity-twoheadleftarrow"><td> <code title="">twoheadleftarrow;</code> </td> <td> U+0219E </td> <td> <span class="glyph" title="">↞</span> </td> <tr id="entity-twoheadrightarrow"><td> <code title="">twoheadrightarrow;</code> </td> <td> U+021A0 </td> <td> <span class="glyph" title="">↠</span> </td> <tr id="entity-Uacute"><td> <code title="">Uacute;</code> </td> <td> U+000DA </td> <td> <span class="glyph" title="">Ú</span> </td> <tr id="entity-uacute"><td> <code title="">uacute;</code> </td> <td> U+000FA </td> <td> <span class="glyph" title="">ú</span> </td> <tr id="entity-Uarr"><td> <code title="">Uarr;</code> </td> <td> U+0219F </td> <td> <span class="glyph" title="">↟</span> </td> <tr id="entity-uArr"><td> <code title="">uArr;</code> </td> <td> U+021D1 </td> <td> <span class="glyph" title="">⇑</span> </td> <tr id="entity-uarr"><td> <code title="">uarr;</code> </td> <td> U+02191 </td> <td> <span class="glyph" title="">↑</span> </td><tr id="entity-Uarrocir"><td> <code title="">Uarrocir;</code> </td> <td> U+02949 </td> <td> <span class="glyph" title="">⥉</span> </td> <tr id="entity-Ubrcy"><td> <code title="">Ubrcy;</code> </td> <td> U+0040E </td> <td> <span class="glyph" title="">Ў</span> </td> <tr id="entity-ubrcy"><td> <code title="">ubrcy;</code> </td> <td> U+0045E </td> <td> <span class="glyph" title="">ў</span> </td> <tr id="entity-Ubreve"><td> <code title="">Ubreve;</code> </td> <td> U+0016C </td> <td> <span class="glyph" title="">Ŭ</span> </td> <tr id="entity-ubreve"><td> <code title="">ubreve;</code> </td> <td> U+0016D </td> <td> <span class="glyph" title="">ŭ</span> </td> <tr id="entity-Ucirc"><td> <code title="">Ucirc;</code> </td> <td> U+000DB </td> <td> <span class="glyph" title="">Û</span> </td> <tr id="entity-ucirc"><td> <code title="">ucirc;</code> </td> <td> U+000FB </td> <td> <span class="glyph" title="">û</span> </td> <tr id="entity-Ucy"><td> <code title="">Ucy;</code> </td> <td U+00423 </td> <td> <span class="glyph" title="">У</span> </td> <tr id="entity-ucy"><td> <code title="">ucy;</code> </td> <td> U+00443 </td> <td> <span class="glyph" title="">у</span> </td> <tr id="entity-udarr"><td> <code title="">udarr;</code> </td> <td> U+021C5 </td> <td> <span class="glyph" title="">⇅</span> </td> <tr id="entity-Udblac"><td> <code title="">Udblac;</code> </td> <td> U+00170 </td> <td> <span class="glyph" title="">Ű</span> </td> <tr id="entity-udblac"><td> <code title="">udblac;</code> </td> <td> U+00171 </td> <td> <span class="glyph" title="">ű</span> </td> <tr id="entity-udhar"><td> <code title="">udhar;</code> </td> <td> U+0296E </td> <td> <span class="glyph" title="">⥮</span> </td> <tr id="entity-ufisht"><td> <code title="">ufisht;</code> </td> <td> U+0297E </td> <td> <span class="glyph" title="">⥾</span> </td> <tr id="entity-Ufr"><td> <code title="">Ufr;</code> </td> <td> U+1D518 </td> <td> <span class="glyph" title="">𝔘</span> </td> tr id="entity-ufr"><td> <code title="">ufr;</code> </td> <td> U+1D532 </td> <td> <span class="glyph" title="">𝔲</span> </td> <tr id="entity-Ugrave"><td> <code title="">Ugrave;</code> </td> <td> U+000D9 </td> <td> <span class="glyph" title="">Ù</span> </td> <tr id="entity-ugrave"><td> <code title="">ugrave;</code> </td> <td> U+000F9 </td> <td> <span class="glyph" title="">ù</span> </td> <tr id="entity-uHar"><td> <code title="">uHar;</code> </td> <td> U+02963 </td> <td> <span class="glyph" title="">⥣</span> </td> <tr id="entity-uharl"><td> <code title="">uharl;</code> </td> <td> U+021BF </td> <td> <span class="glyph" title="">↿</span> </td> <tr id="entity-uharr"><td> <code title="">uharr;</code> </td> <td> U+021BE </td> <td> <span class="glyph" title="">↾</span> </td> <tr id="entity-uhblk"><td> <code title="">uhblk;</code> </td> <td> U+02580 </td> <td> <span class="glyph" title="">▀</span> </td> <tr id="entity-ulcorn"><td> <code title="">ulcorn;</code> </td> <td>U+0231C </td> <td> <span class="glyph" title="">⌜</span> </td> <tr id="entity-ulcorner"><td> <code title="">ulcorner;</code> </td> <td> U+0231C </td> <td> <span class="glyph" title="">⌜</span> </td> <tr id="entity-ulcrop"><td> <code title="">ulcrop;</code> </td> <td> U+0230F </td> <td> <span class="glyph" title="">⌏</span> </td> <tr id="entity-ultri"><td> <code title="">ultri;</code> </td> <td> U+025F8 </td> <td> <span class="glyph" title="">◸</span> </td> <tr id="entity-Umacr"><td> <code title="">Umacr;</code> </td> <td> U+0016A </td> <td> <span class="glyph" title="">Ū</span> </td> <tr id="entity-umacr"><td> <code title="">umacr;</code> </td> <td> U+0016B </td> <td> <span class="glyph" title="">ū</span> </td> <tr id="entity-uml"><td> <code title="">uml;</code> </td> <td> U+000A8 </td> <td> <span class="glyph" title="">¨</span> </td> <tr id="entity-UnderBar"><td> <code title="">UnderBar;</code> </td> <td> U+0005F </td> <td> <span class="glyph" title="">_</span> </td> <r id="entity-UnderBrace"><td> <code title="">UnderBrace;</code> </td> <td> U+023DF </td> <td> <span class="glyph" title="">⏟</span> </td> <tr id="entity-UnderBracket"><td> <code title="">UnderBracket;</code> </td> <td> U+023B5 </td> <td> <span class="glyph" title="">⎵</span> </td> <tr id="entity-UnderParenthesis"><td> <code title="">UnderParenthesis;</code> </td> <td> U+023DD </td> <td> <span class="glyph" title="">⏝</span> </td> <tr id="entity-Union"><td> <code title="">Union;</code> </td> <td> U+022C3 </td> <td> <span class="glyph" title="">⋃</span> </td> <tr id="entity-UnionPlus"><td> <code title="">UnionPlus;</code> </td> <td> U+0228E </td> <td> <span class="glyph" title="">⊎</span> </td> <tr id="entity-Uogon"><td> <code title="">Uogon;</code> </td> <td> U+00172 </td> <td> <span class="glyph" title="">Ų</span> </td> <tr id="entity-uogon"><td> <code title="">uogon;</code> </td> <td> U+00173 </td> <td> <span class="glyph" title="">ų</span> </td> <tr id="entity-Uopf"<td> <code title="">Uopf;</code> </td> <td> U+1D54C </td> <td> <span class="glyph" title="">𝕌</span> </td> <tr id="entity-uopf"><td> <code title="">uopf;</code> </td> <td> U+1D566 </td> <td> <span class="glyph" title="">𝕦</span> </td> <tr id="entity-UpArrow"><td> <code title="">UpArrow;</code> </td> <td> U+02191 </td> <td> <span class="glyph" title="">↑</span> </td> <tr id="entity-Uparrow"><td> <code title="">Uparrow;</code> </td> <td> U+021D1 </td> <td> <span class="glyph" title="">⇑</span> </td> <tr id="entity-uparrow"><td> <code title="">uparrow;</code> </td> <td> U+02191 </td> <td> <span class="glyph" title="">↑</span> </td> <tr id="entity-UpArrowBar"><td> <code title="">UpArrowBar;</code> </td> <td> U+02912 </td> <td> <span class="glyph" title="">⤒</span> </td> <tr id="entity-UpArrowDownArrow"><td> <code title="">UpArrowDownArrow;</code> </td> <td> U+021C5 </td> <td> <span class="glyph" title="">⇅</span> </td> <tr id="entity-UpDownArrow"><td> <code title="">UDownArrow;</code> </td> <td> U+02195 </td> <td> <span class="glyph" title="">↕</span> </td> <tr id="entity-Updownarrow"><td> <code title="">Updownarrow;</code> </td> <td> U+021D5 </td> <td> <span class="glyph" title="">⇕</span> </td> <tr id="entity-updownarrow"><td> <code title="">updownarrow;</code> </td> <td> U+02195 </td> <td> <span class="glyph" title="">↕</span> </td> <tr id="entity-UpEquilibrium"><td> <code title="">UpEquilibrium;</code> </td> <td> U+0296E </td> <td> <span class="glyph" title="">⥮</span> </td> <tr id="entity-upharpoonleft"><td> <code title="">upharpoonleft;</code> </td> <td> U+021BF </td> <td> <span class="glyph" title="">↿</span> </td> <tr id="entity-upharpoonright"><td> <code title="">upharpoonright;</code> </td> <td> U+021BE </td> <td> <span class="glyph" title="">↾</span> </td> <tr id="entity-uplus"><td> <code title="">uplus;</code> </td> <td> U+0228E </td> <td> <span class="glyph" title="">⊎</span> </td> <tr id="entity-UpperLeftArrow"><t> <code title="">UpperLeftArrow;</code> </td> <td> U+02196 </td> <td> <span class="glyph" title="">↖</span> </td> <tr id="entity-UpperRightArrow"><td> <code title="">UpperRightArrow;</code> </td> <td> U+02197 </td> <td> <span class="glyph" title="">↗</span> </td> <tr id="entity-Upsi"><td> <code title="">Upsi;</code> </td> <td> U+003D2 </td> <td> <span class="glyph" title="">ϒ</span> </td> <tr id="entity-upsi"><td> <code title="">upsi;</code> </td> <td> U+003C5 </td> <td> <span class="glyph" title="">υ</span> </td> <tr id="entity-upsih"><td> <code title="">upsih;</code> </td> <td> U+003D2 </td> <td> <span class="glyph" title="">ϒ</span> </td> <tr id="entity-Upsilon"><td> <code title="">Upsilon;</code> </td> <td> U+003A5 </td> <td> <span class="glyph" title="">Υ</span> </td> <tr id="entity-upsilon"><td> <code title="">upsilon;</code> </td> <td> U+003C5 </td> <td> <span class="glyph" title="">υ</span> </td> <tr id="entity-UpTee"><td> <code title="">UpTee;</code> /td> <td> U+022A5 </td> <td> <span class="glyph" title="">⊥</span> </td> <tr id="entity-UpTeeArrow"><td> <code title="">UpTeeArrow;</code> </td> <td> U+021A5 </td> <td> <span class="glyph" title="">↥</span> </td> <tr id="entity-upuparrows"><td> <code title="">upuparrows;</code> </td> <td> U+021C8 </td> <td> <span class="glyph" title="">⇈</span> </td> <tr id="entity-urcorn"><td> <code title="">urcorn;</code> </td> <td> U+0231D </td> <td> <span class="glyph" title="">⌝</span> </td> <tr id="entity-urcorner"><td> <code title="">urcorner;</code> </td> <td> U+0231D </td> <td> <span class="glyph" title="">⌝</span> </td> <tr id="entity-urcrop"><td> <code title="">urcrop;</code> </td> <td> U+0230E </td> <td> <span class="glyph" title="">⌎</span> </td> <tr id="entity-Uring"><td> <code title="">Uring;</code> </td> <td> U+0016E </td> <td> <span class="glyph" title="">Ů</span> </td> <tr id="entity-uring"><td> <code title="">uring;</code> </td> <td> U+0016F </td> <td> <span class="lyph" title="">ů</span> </td> <tr id="entity-urtri"><td> <code title="">urtri;</code> </td> <td> U+025F9 </td> <td> <span class="glyph" title="">◹</span> </td> <tr id="entity-Uscr"><td> <code title="">Uscr;</code> </td> <td> U+1D4B0 </td> <td> <span class="glyph" title="">𝒰</span> </td> <tr id="entity-uscr"><td> <code title="">uscr;</code> </td> <td> U+1D4CA </td> <td> <span class="glyph" title="">𝓊</span> </td> <tr id="entity-utdot"><td> <code title="">utdot;</code> </td> <td> U+022F0 </td> <td> <span class="glyph" title="">⋰</span> </td> <tr id="entity-Utilde"><td> <code title="">Utilde;</code> </td> <td> U+00168 </td> <td> <span class="glyph" title="">Ũ</span> </td> <tr id="entity-utilde"><td> <code title="">utilde;</code> </td> <td> U+00169 </td> <td> <span class="glyph" title="">ũ</span> </td> <tr id="entity-utri"><td> <code title="">utri;</code> </td> <td> U+025B5 </td> <td> <span class="glyph" title="">▵</span> </td> <tr id="entity-utrif"><td> <code tile="">utrif;</code> </td> <td> U+025B4 </td> <td> <span class="glyph" title="">▴</span> </td> <tr id="entity-uuarr"><td> <code title="">uuarr;</code> </td> <td> U+021C8 </td> <td> <span class="glyph" title="">⇈</span> </td> <tr id="entity-Uuml"><td> <code title="">Uuml;</code> </td> <td> U+000DC </td> <td> <span class="glyph" title="">Ü</span> </td> <tr id="entity-uuml"><td> <code title="">uuml;</code> </td> <td> U+000FC </td> <td> <span class="glyph" title="">ü</span> </td> <tr id="entity-uwangle"><td> <code title="">uwangle;</code> </td> <td> U+029A7 </td> <td> <span class="glyph" title="">⦧</span> </td> <tr id="entity-vangrt"><td> <code title="">vangrt;</code> </td> <td> U+0299C </td> <td> <span class="glyph" title="">⦜</span> </td> <tr id="entity-varepsilon"><td> <code title="">varepsilon;</code> </td> <td> U+003F5 </td> <td> <span class="glyph" title="">ϵ</span> </td> <tr id="entity-varkappa"><td> <code title="">varkappa;</code> </td> <td> U+003F0 </td> <td> <san class="glyph" title="">ϰ</span> </td> <tr id="entity-varnothing"><td> <code title="">varnothing;</code> </td> <td> U+02205 </td> <td> <span class="glyph" title="">∅</span> </td> <tr id="entity-varphi"><td> <code title="">varphi;</code> </td> <td> U+003D5 </td> <td> <span class="glyph" title="">ϕ</span> </td> <tr id="entity-varpi"><td> <code title="">varpi;</code> </td> <td> U+003D6 </td> <td> <span class="glyph" title="">ϖ</span> </td> <tr id="entity-varpropto"><td> <code title="">varpropto;</code> </td> <td> U+0221D </td> <td> <span class="glyph" title="">∝</span> </td> <tr id="entity-vArr"><td> <code title="">vArr;</code> </td> <td> U+021D5 </td> <td> <span class="glyph" title="">⇕</span> </td> <tr id="entity-varr"><td> <code title="">varr;</code> </td> <td> U+02195 </td> <td> <span class="glyph" title="">↕</span> </td> <tr id="entity-varrho"><td> <code title="">varrho;</code> </td> <td> U+003F1 </td> <td> <span class="glyph" title="">ϱ</span> </td> <tr id="etity-varsigma"><td> <code title="">varsigma;</code> </td> <td> U+003C2 </td> <td> <span class="glyph" title="">ς</span> </td> <tr id="entity-varsubsetneq"><td> <code title="">varsubsetneq;</code> </td> <td> U+0228A U+0FE00 </td> <td> <span class="glyph compound" title="">⊊︀</span> </td> <tr id="entity-varsubsetneqq"><td> <code title="">varsubsetneqq;</code> </td> <td> U+02ACB U+0FE00 </td> <td> <span class="glyph compound" title="">⫋︀</span> </td> <tr id="entity-varsupsetneq"><td> <code title="">varsupsetneq;</code> </td> <td> U+0228B U+0FE00 </td> <td> <span class="glyph compound" title="">⊋︀</span> </td> <tr id="entity-varsupsetneqq"><td> <code title="">varsupsetneqq;</code> </td> <td> U+02ACC U+0FE00 </td> <td> <span class="glyph compound" title="">⫌︀</span> </td> <tr id="entity-vartheta"><td> <code title="">vartheta;</code> </td> <td> U+003D1 </td> <td> <span class="glyph" title="">ϑ</span> </td> <tr id="entity-vartriangleleft"><td> <ode title="">vartriangleleft;</code> </td> <td> U+022B2 </td> <td> <span class="glyph" title="">⊲</span> </td> <tr id="entity-vartriangleright"><td> <code title="">vartriangleright;</code> </td> <td> U+022B3 </td> <td> <span class="glyph" title="">⊳</span> </td> <tr id="entity-Vbar"><td> <code title="">Vbar;</code> </td> <td> U+02AEB </td> <td> <span class="glyph" title="">⫫</span> </td> <tr id="entity-vBar"><td> <code title="">vBar;</code> </td> <td> U+02AE8 </td> <td> <span class="glyph" title="">⫨</span> </td> <tr id="entity-vBarv"><td> <code title="">vBarv;</code> </td> <td> U+02AE9 </td> <td> <span class="glyph" title="">⫩</span> </td> <tr id="entity-Vcy"><td> <code title="">Vcy;</code> </td> <td> U+00412 </td> <td> <span class="glyph" title="">В</span> </td> <tr id="entity-vcy"><td> <code title="">vcy;</code> </td> <td> U+00432 </td> <td> <span class="glyph" title="">в</span> </td> <tr id="entity-VDash"><td> <code title="">VDash;</code> </td> <td> U+022AB <td> <td> <span class="glyph" title="">⊫</span> </td> <tr id="entity-Vdash"><td> <code title="">Vdash;</code> </td> <td> U+022A9 </td> <td> <span class="glyph" title="">⊩</span> </td> <tr id="entity-vDash"><td> <code title="">vDash;</code> </td> <td> U+022A8 </td> <td> <span class="glyph" title="">⊨</span> </td> <tr id="entity-vdash"><td> <code title="">vdash;</code> </td> <td> U+022A2 </td> <td> <span class="glyph" title="">⊢</span> </td> <tr id="entity-Vdashl"><td> <code title="">Vdashl;</code> </td> <td> U+02AE6 </td> <td> <span class="glyph" title="">⫦</span> </td> <tr id="entity-Vee"><td> <code title="">Vee;</code> </td> <td> U+022C1 </td> <td> <span class="glyph" title="">⋁</span> </td> <tr id="entity-vee"><td> <code title="">vee;</code> </td> <td> U+02228 </td> <td> <span class="glyph" title="">∨</span> </td> <tr id="entity-veebar"><td> <code title="">veebar;</code> </td> <td> U+022BB </td> <td> <span class="glyph" title="">⊻</span> </td> <tr id="entity-veeq"><td> <code title="">veeeq;</code> </td> <td> U+0225A </td> <td> <span class="glyph" title="">≚</span> </td> <tr id="entity-vellip"><td> <code title="">vellip;</code> </td> <td> U+022EE </td> <td> <span class="glyph" title="">⋮</span> </td> <tr id="entity-Verbar"><td> <code title="">Verbar;</code> </td> <td> U+02016 </td> <td> <span class="glyph" title="">‖</span> </td> <tr id="entity-verbar"><td> <code title="">verbar;</code> </td> <td> U+0007C </td> <td> <span class="glyph" title="">|</span> </td> <tr id="entity-Vert"><td> <code title="">Vert;</code> </td> <td> U+02016 </td> <td> <span class="glyph" title="">‖</span> </td> <tr id="entity-vert"><td> <code title="">vert;</code> </td> <td> U+0007C </td> <td> <span class="glyph" title="">|</span> </td> <tr id="entity-VerticalBar"><td> <code title="">VerticalBar;</code> </td> <td> U+02223 </td> <td> <span class="glyph" title="">∣</span> </td> <tr id="entity-VerticalLine"><td> <code title="">VerticalLine;</code> </td> <td> U+000C </td> <td> <span class="glyph" title="">|</span> </td> <tr id="entity-VerticalSeparator"><td> <code title="">VerticalSeparator;</code> </td> <td> U+02758 </td> <td> <span class="glyph" title="">❘</span> </td> <tr id="entity-VerticalTilde"><td> <code title="">VerticalTilde;</code> </td> <td> U+02240 </td> <td> <span class="glyph" title="">≀</span> </td> <tr id="entity-VeryThinSpace"><td> <code title="">VeryThinSpace;</code> </td> <td> U+0200A </td> <td> <span class="glyph" title=""> </span> </td> <tr id="entity-Vfr"><td> <code title="">Vfr;</code> </td> <td> U+1D519 </td> <td> <span class="glyph" title="">𝔙</span> </td> <tr id="entity-vfr"><td> <code title="">vfr;</code> </td> <td> U+1D533 </td> <td> <span class="glyph" title="">𝔳</span> </td> <tr id="entity-vltri"><td> <code title="">vltri;</code> </td> <td> U+022B2 </td> <td> <span class="glyph" title="">⊲</span> </td> <tr id="entity-vnsub"><td> <code title="">vnsub;</code> </td> <td> U+02282 U+020D2 </td> <td> <san class="glyph compound" title="">⊂⃒</span> </td> <tr id="entity-vnsup"><td> <code title="">vnsup;</code> </td> <td> U+02283 U+020D2 </td> <td> <span class="glyph compound" title="">⊃⃒</span> </td> <tr id="entity-Vopf"><td> <code title="">Vopf;</code> </td> <td> U+1D54D </td> <td> <span class="glyph" title="">𝕍</span> </td> <tr id="entity-vopf"><td> <code title="">vopf;</code> </td> <td> U+1D567 </td> <td> <span class="glyph" title="">𝕧</span> </td> <tr id="entity-vprop"><td> <code title="">vprop;</code> </td> <td> U+0221D </td> <td> <span class="glyph" title="">∝</span> </td> <tr id="entity-vrtri"><td> <code title="">vrtri;</code> </td> <td> U+022B3 </td> <td> <span class="glyph" title="">⊳</span> </td> <tr id="entity-Vscr"><td> <code title="">Vscr;</code> </td> <td> U+1D4B1 </td> <td> <span class="glyph" title="">𝒱</span> </td> <tr id="entity-vscr"><td> <code title="">vscr;</code> </td> <td> U+1D4CB </td> <td> <span class="glyph" title="">𝓋</pan> </td> <tr id="entity-vsubnE"><td> <code title="">vsubnE;</code> </td> <td> U+02ACB U+0FE00 </td> <td> <span class="glyph compound" title="">⫋︀</span> </td> <tr id="entity-vsubne"><td> <code title="">vsubne;</code> </td> <td> U+0228A U+0FE00 </td> <td> <span class="glyph compound" title="">⊊︀</span> </td> <tr id="entity-vsupnE"><td> <code title="">vsupnE;</code> </td> <td> U+02ACC U+0FE00 </td> <td> <span class="glyph compound" title="">⫌︀</span> </td> <tr id="entity-vsupne"><td> <code title="">vsupne;</code> </td> <td> U+0228B U+0FE00 </td> <td> <span class="glyph compound" title="">⊋︀</span> </td> <tr id="entity-Vvdash"><td> <code title="">Vvdash;</code> </td> <td> U+022AA </td> <td> <span class="glyph" title="">⊪</span> </td> <tr id="entity-vzigzag"><td> <code title="">vzigzag;</code> </td> <td> U+0299A </td> <td> <span class="glyph" title="">⦚</span> </td> <tr id="entity-Wcirc"><td> <code title="">Wcirc;</code> </td> <td> U+00174 </t> <td> <span class="glyph" title="">Ŵ</span> </td> <tr id="entity-wcirc"><td> <code title="">wcirc;</code> </td> <td> U+00175 </td> <td> <span class="glyph" title="">ŵ</span> </td> <tr id="entity-wedbar"><td> <code title="">wedbar;</code> </td> <td> U+02A5F </td> <td> <span class="glyph" title="">⩟</span> </td> <tr id="entity-Wedge"><td> <code title="">Wedge;</code> </td> <td> U+022C0 </td> <td> <span class="glyph" title="">⋀</span> </td> <tr id="entity-wedge"><td> <code title="">wedge;</code> </td> <td> U+02227 </td> <td> <span class="glyph" title="">∧</span> </td> <tr id="entity-wedgeq"><td> <code title="">wedgeq;</code> </td> <td> U+02259 </td> <td> <span class="glyph" title="">≙</span> </td> <tr id="entity-weierp"><td> <code title="">weierp;</code> </td> <td> U+02118 </td> <td> <span class="glyph" title="">℘</span> </td> <tr id="entity-Wfr"><td> <code title="">Wfr;</code> </td> <td> U+1D51A </td> <td> <span class="glyph" title="">𝔚</span> </td> <tr id="entty-wfr"><td> <code title="">wfr;</code> </td> <td> U+1D534 </td> <td> <span class="glyph" title="">𝔴</span> </td> <tr id="entity-Wopf"><td> <code title="">Wopf;</code> </td> <td> U+1D54E </td> <td> <span class="glyph" title="">𝕎</span> </td> <tr id="entity-wopf"><td> <code title="">wopf;</code> </td> <td> U+1D568 </td> <td> <span class="glyph" title="">𝕨</span> </td> <tr id="entity-wp"><td> <code title="">wp;</code> </td> <td> U+02118 </td> <td> <span class="glyph" title="">℘</span> </td> <tr id="entity-wr"><td> <code title="">wr;</code> </td> <td> U+02240 </td> <td> <span class="glyph" title="">≀</span> </td> <tr id="entity-wreath"><td> <code title="">wreath;</code> </td> <td> U+02240 </td> <td> <span class="glyph" title="">≀</span> </td> <tr id="entity-Wscr"><td> <code title="">Wscr;</code> </td> <td> U+1D4B2 </td> <td> <span class="glyph" title="">𝒲</span> </td> <tr id="entity-wscr"><td> <code title="">wscr;</code> </td> <td> U+1D4CC </td> <td> <span clas="glyph" title="">𝓌</span> </td> <tr id="entity-xcap"><td> <code title="">xcap;</code> </td> <td> U+022C2 </td> <td> <span class="glyph" title="">⋂</span> </td> <tr id="entity-xcirc"><td> <code title="">xcirc;</code> </td> <td> U+025EF </td> <td> <span class="glyph" title="">◯</span> </td> <tr id="entity-xcup"><td> <code title="">xcup;</code> </td> <td> U+022C3 </td> <td> <span class="glyph" title="">⋃</span> </td> <tr id="entity-xdtri"><td> <code title="">xdtri;</code> </td> <td> U+025BD </td> <td> <span class="glyph" title="">▽</span> </td> <tr id="entity-Xfr"><td> <code title="">Xfr;</code> </td> <td> U+1D51B </td> <td> <span class="glyph" title="">𝔛</span> </td> <tr id="entity-xfr"><td> <code title="">xfr;</code> </td> <td> U+1D535 </td> <td> <span class="glyph" title="">𝔵</span> </td> <tr id="entity-xhArr"><td> <code title="">xhArr;</code> </td> <td> U+027FA </td> <td> <span class="glyph" title="">⟺</span> </td> <tr id="entity-xharr"><td> <code tile="">xharr;</code> </td> <td> U+027F7 </td> <td> <span class="glyph" title="">⟷</span> </td> <tr id="entity-Xi"><td> <code title="">Xi;</code> </td> <td> U+0039E </td> <td> <span class="glyph" title="">Ξ</span> </td> <tr id="entity-xi"><td> <code title="">xi;</code> </td> <td> U+003BE </td> <td> <span class="glyph" title="">ξ</span> </td> <tr id="entity-xlArr"><td> <code title="">xlArr;</code> </td> <td> U+027F8 </td> <td> <span class="glyph" title="">⟸</span> </td> <tr id="entity-xlarr"><td> <code title="">xlarr;</code> </td> <td> U+027F5 </td> <td> <span class="glyph" title="">⟵</span> </td> <tr id="entity-xmap"><td> <code title="">xmap;</code> </td> <td> U+027FC </td> <td> <span class="glyph" title="">⟼</span> </td> <tr id="entity-xnis"><td> <code title="">xnis;</code> </td> <td> U+022FB </td> <td> <span class="glyph" title="">⋻</span> </td> <tr id="entity-xodot"><td> <code title="">xodot;</code> </td> <td> U+02A00 </td> <td> <span class="glyph" title="">⨀<span> </td> <tr id="entity-Xopf"><td> <code title="">Xopf;</code> </td> <td> U+1D54F </td> <td> <span class="glyph" title="">𝕏</span> </td> <tr id="entity-xopf"><td> <code title="">xopf;</code> </td> <td> U+1D569 </td> <td> <span class="glyph" title="">𝕩</span> </td> <tr id="entity-xoplus"><td> <code title="">xoplus;</code> </td> <td> U+02A01 </td> <td> <span class="glyph" title="">⨁</span> </td> <tr id="entity-xotime"><td> <code title="">xotime;</code> </td> <td> U+02A02 </td> <td> <span class="glyph" title="">⨂</span> </td> <tr id="entity-xrArr"><td> <code title="">xrArr;</code> </td> <td> U+027F9 </td> <td> <span class="glyph" title="">⟹</span> </td> <tr id="entity-xrarr"><td> <code title="">xrarr;</code> </td> <td> U+027F6 </td> <td> <span class="glyph" title="">⟶</span> </td> <tr id="entity-Xscr"><td> <code title="">Xscr;</code> </td> <td> U+1D4B3 </td> <td> <span class="glyph" title="">𝒳</span> </td> <tr id="entity-xscr"><td> <code title="">xscr;</coe> </td> <td> U+1D4CD </td> <td> <span class="glyph" title="">𝓍</span> </td> <tr id="entity-xsqcup"><td> <code title="">xsqcup;</code> </td> <td> U+02A06 </td> <td> <span class="glyph" title="">⨆</span> </td> <tr id="entity-xuplus"><td> <code title="">xuplus;</code> </td> <td> U+02A04 </td> <td> <span class="glyph" title="">⨄</span> </td> <tr id="entity-xutri"><td> <code title="">xutri;</code> </td> <td> U+025B3 </td> <td> <span class="glyph" title="">△</span> </td> <tr id="entity-xvee"><td> <code title="">xvee;</code> </td> <td> U+022C1 </td> <td> <span class="glyph" title="">⋁</span> </td> <tr id="entity-xwedge"><td> <code title="">xwedge;</code> </td> <td> U+022C0 </td> <td> <span class="glyph" title="">⋀</span> </td> <tr id="entity-Yacute"><td> <code title="">Yacute;</code> </td> <td> U+000DD </td> <td> <span class="glyph" title="">Ý</span> </td> <tr id="entity-yacute"><td> <code title="">yacute;</code> </td> <td> U+000FD </td> <td> <span class="glyph" titl="">ý</span> </td> <tr id="entity-YAcy"><td> <code title="">YAcy;</code> </td> <td> U+0042F </td> <td> <span class="glyph" title="">Я</span> </td> <tr id="entity-yacy"><td> <code title="">yacy;</code> </td> <td> U+0044F </td> <td> <span class="glyph" title="">я</span> </td> <tr id="entity-Ycirc"><td> <code title="">Ycirc;</code> </td> <td> U+00176 </td> <td> <span class="glyph" title="">Ŷ</span> </td> <tr id="entity-ycirc"><td> <code title="">ycirc;</code> </td> <td> U+00177 </td> <td> <span class="glyph" title="">ŷ</span> </td> <tr id="entity-Ycy"><td> <code title="">Ycy;</code> </td> <td> U+0042B </td> <td> <span class="glyph" title="">Ы</span> </td> <tr id="entity-ycy"><td> <code title="">ycy;</code> </td> <td> U+0044B </td> <td> <span class="glyph" title="">ы</span> </td> <tr id="entity-yen"><td> <code title="">yen;</code> </td> <td> U+000A5 </td> <td> <span class="glyph" title="">¥</span> </td> <tr id="entity-Yfr"><td> <code title="">Yfr;</code> </td> <td> U1D51C </td> <td> <span class="glyph" title="">𝔜</span> </td> <tr id="entity-yfr"><td> <code title="">yfr;</code> </td> <td> U+1D536 </td> <td> <span class="glyph" title="">𝔶</span> </td> <tr id="entity-YIcy"><td> <code title="">YIcy;</code> </td> <td> U+00407 </td> <td> <span class="glyph" title="">Ї</span> </td> <tr id="entity-yicy"><td> <code title="">yicy;</code> </td> <td> U+00457 </td> <td> <span class="glyph" title="">ї</span> </td> <tr id="entity-Yopf"><td> <code title="">Yopf;</code> </td> <td> U+1D550 </td> <td> <span class="glyph" title="">𝕐</span> </td> <tr id="entity-yopf"><td> <code title="">yopf;</code> </td> <td> U+1D56A </td> <td> <span class="glyph" title="">𝕪</span> </td> <tr id="entity-Yscr"><td> <code title="">Yscr;</code> </td> <td> U+1D4B4 </td> <td> <span class="glyph" title="">𝒴</span> </td> <tr id="entity-yscr"><td> <code title="">yscr;</code> </td> <td> U+1D4CE </td> <td> <span class="glyph" title="">𝓎</span> </td> <tr id=entity-YUcy"><td> <code title="">YUcy;</code> </td> <td> U+0042E </td> <td> <span class="glyph" title="">Ю</span> </td> <tr id="entity-yucy"><td> <code title="">yucy;</code> </td> <td> U+0044E </td> <td> <span class="glyph" title="">ю</span> </td> <tr id="entity-Yuml"><td> <code title="">Yuml;</code> </td> <td> U+00178 </td> <td> <span class="glyph" title="">Ÿ</span> </td> <tr id="entity-yuml"><td> <code title="">yuml;</code> </td> <td> U+000FF </td> <td> <span class="glyph" title="">ÿ</span> </td> <tr id="entity-Zacute"><td> <code title="">Zacute;</code> </td> <td> U+00179 </td> <td> <span class="glyph" title="">Ź</span> </td> <tr id="entity-zacute"><td> <code title="">zacute;</code> </td> <td> U+0017A </td> <td> <span class="glyph" title="">ź</span> </td> <tr id="entity-Zcaron"><td> <code title="">Zcaron;</code> </td> <td> U+0017D </td> <td> <span class="glyph" title="">Ž</span> </td> <tr id="entity-zcaron"><td> <code title="">zcaron;</code> </td> <td> U+0017E </td> <t> <span class="glyph" title="">ž</span> </td> <tr id="entity-Zcy"><td> <code title="">Zcy;</code> </td> <td> U+00417 </td> <td> <span class="glyph" title="">З</span> </td> <tr id="entity-zcy"><td> <code title="">zcy;</code> </td> <td> U+00437 </td> <td> <span class="glyph" title="">з</span> </td> <tr id="entity-Zdot"><td> <code title="">Zdot;</code> </td> <td> U+0017B </td> <td> <span class="glyph" title="">Ż</span> </td> <tr id="entity-zdot"><td> <code title="">zdot;</code> </td> <td> U+0017C </td> <td> <span class="glyph" title="">ż</span> </td> <tr id="entity-zeetrf"><td> <code title="">zeetrf;</code> </td> <td> U+02128 </td> <td> <span class="glyph" title="">ℨ</span> </td> <tr id="entity-ZeroWidthSpace"><td> <code title="">ZeroWidthSpace;</code> </td> <td> U+0200B </td> <td> <span class="glyph" title="">​</span> </td> <tr id="entity-Zeta"><td> <code title="">Zeta;</code> </td> <td> U+00396 </td> <td> <span class="glyph" title="">Ζ</span> </td> <tr id="entity-zta"><td> <code title="">zeta;</code> </td> <td> U+003B6 </td> <td> <span class="glyph" title="">ζ</span> </td> <tr id="entity-Zfr"><td> <code title="">Zfr;</code> </td> <td> U+02128 </td> <td> <span class="glyph" title="">ℨ</span> </td> <tr id="entity-zfr"><td> <code title="">zfr;</code> </td> <td> U+1D537 </td> <td> <span class="glyph" title="">𝔷</span> </td> <tr id="entity-ZHcy"><td> <code title="">ZHcy;</code> </td> <td> U+00416 </td> <td> <span class="glyph" title="">Ж</span> </td> <tr id="entity-zhcy"><td> <code title="">zhcy;</code> </td> <td> U+00436 </td> <td> <span class="glyph" title="">ж</span> </td> <tr id="entity-zigrarr"><td> <code title="">zigrarr;</code> </td> <td> U+021DD </td> <td> <span class="glyph" title="">⇝</span> </td> <tr id="entity-Zopf"><td> <code title="">Zopf;</code> </td> <td> U+02124 </td> <td> <span class="glyph" title="">ℤ</span> </td> <tr id="entity-zopf"><td> <code title="">zopf;</code> </td> <td> U+1D56B </td> <td> <span class="gyph" title="">𝕫</span> </td> <tr id="entity-Zscr"><td> <code title="">Zscr;</code> </td> <td> U+1D4B5 </td> <td> <span class="glyph" title="">𝒵</span> </td> <tr id="entity-zscr"><td> <code title="">zscr;</code> </td> <td> U+1D4CF </td> <td> <span class="glyph" title="">𝓏</span> </td> <tr id="entity-zwj"><td> <code title="">zwj;</code> </td> <td> U+0200D </td> <td> <span class="glyph" title="">‍</span> </td> <tr id="entity-zwnj"><td> <code title="">zwnj;</code> </td> <td> U+0200C </td> <td> <span class="glyph" title="">‌</span> </td> </table></div> + + <p><i>The glyphs displayed above are non-normative. Refer to the Unicode specifications for formal definitions of the characters - listed above.</i> \ No newline at end of file + listed above.</i></p> + + + + \ No newline at end of file Index: the-h6-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-h6-element.html,v retrieving revision 1.117 retrieving revision 1.118 diff -u -d -r1.117 -r1.118 --- the-h6-element.html 5 Mar 2012 05:58:59 -0000 1.117 +++ the-h6-element.html 13 Mar 2012 19:58:58 -0000 1.118 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-aside-element.html">← 4.4.5 The aside element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-hgroup-element.html">4.4.7 The hgroup element →</a> </div> - <h4 id="the-h1-h2-h3-h4-h5-and-h6-elements"><span class="secno">4.4.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>h1</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h2</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h3</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h4</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h5</code></dfn>, and <dfn aria-haspopup="true" role="button" tabindex="0"><code>h6</code></dfn> elements</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_14" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-h1-h2-h3-h4-h5-and-h6-elements"><span class="secno">4.4.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>h1</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h2</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h3</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h4</code></dfn>, <dfn aria-haspopup="true" role="button" tabindex="0"><code>h5</code></dfn>, and <dfn aria-haspopup="true" role="button" tabindex="0"><code>h6</code></dfn> elements</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_14" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_29">Flow content</a>.</dd> <dd><a href="content-models.html#heading-content" id="heading-content_2">Heading content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_4">Palpable content</a>.</dd> @@ -366,11 +406,17 @@ <pre class="idl">interface <dfn aria-haspopup="true" id="htmlheadingelement" role="button" tabindex="0">HTMLHeadingElement</dfn> : <a href="elements.html#htmlelement" id="htmlelement_19">HTMLElement</a> {};</pre> </dd> </dl><p>These elements <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represent" reference in the full HTML5 spec.'>represent</a> headings - for their sections.<p>The semantics and meaning of these elements are defined in the - section on <a href="headings-and-sections.html#headings-and-sections" id="headings-and-sections_1">headings and sections</a>.<p>These elements have a <dfn aria-haspopup="true" id="rank" role="button" tabindex="0">rank</dfn> given by the number in + for their sections.</p> + + <p>The semantics and meaning of these elements are defined in the + section on <a href="headings-and-sections.html#headings-and-sections" id="headings-and-sections_1">headings and sections</a>.</p> + + <p>These elements have a <dfn aria-haspopup="true" id="rank" role="button" tabindex="0">rank</dfn> given by the number in their name. The <code><a href="#the-h1-h2-h3-h4-h5-and-h6-elements" id="h1_7">h1</a></code> element is said to have the highest rank, the <code><a href="#the-h1-h2-h3-h4-h5-and-h6-elements" id="h6_3">h6</a></code> element has the lowest rank, and two - elements with the same name have equal rank.<div class="example"> + elements with the same name have equal rank.</p> + + <div class="example"> <p>As far as their respective document outlines (their heading and section structures) are concerned, these two snippets are @@ -408,4 +454,9 @@ latter style for its convenience in the face of heavy editing; which is best is purely an issue of preferred authoring style.</p> - </div> \ No newline at end of file + </div> + + + + + \ No newline at end of file Index: the-button-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-button-element.html,v retrieving revision 1.608 retrieving revision 1.609 diff -u -d -r1.608 -r1.609 --- the-button-element.html 22 Feb 2012 01:00:58 -0000 1.608 +++ the-button-element.html 13 Mar 2012 19:58:56 -0000 1.609 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="common-input-element-apis.html">← 4.10.7.3 Common input element APIs</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-select-element.html">4.10.9 The select element →</a> </div> - <h4 id="the-button-element"><span class="secno">4.10.8 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>button</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_88" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-button-element"><span class="secno">4.10.8 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>button</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_88" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_130">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_138">Phrasing content</a>.</dd> <dd><a href="content-models.html#interactive-content" id="interactive-content_13">Interactive content</a>.</dd> @@ -397,12 +437,18 @@ readonly attribute <a class="full-spec-link" href="http://dev.w3.org/html5/spec/infrastructure.html#nodelist" title='Read about this "NodeList" reference in the full HTML5 spec.'>NodeList</a> <a href="the-label-element.html#dom-lfe-labels" title="dom-lfe-labels">labels</a>; };</pre> </dd> - </dl><p>The <code><a href="#the-button-element" id="button_14">button</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a button.<p>The element is a <a href="forms.html#concept-button" id="concept-button_4" title="concept-button">button</a>.<p>The <dfn aria-haspopup="true" id="attr-button-type" role="button" tabindex="0"><code>type</code></dfn> + </dl><p>The <code><a href="#the-button-element" id="button_14">button</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a button.</p> + + <p>The element is a <a href="forms.html#concept-button" id="concept-button_4" title="concept-button">button</a>.</p> + + <p>The <dfn aria-haspopup="true" id="attr-button-type" role="button" tabindex="0"><code>type</code></dfn> attribute controls the behavior of the button when it is activated. It is an <a href="common-microsyntaxes.html#enumerated-attribute" id="enumerated-attribute_11">enumerated attribute</a>. The following table lists the keywords and states for the attribute — the keywords in the left column map to the states in the cell in the second - column on the same row as the keyword.<table><thead><tr><th> Keyword + column on the same row as the keyword.</p> + + <table><thead><tr><th> Keyword <th> State <th> Brief description <tbody><tr><td><dfn aria-haspopup="true" id="attr-button-type-submit" role="button" tabindex="0"><code>submit</code></dfn> @@ -415,27 +461,43 @@ <td><a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-button-element.html#attr-button-type-button-state" title='Read about this "Button" reference in the full HTML5 spec.'>Button</a> <td>Does nothing. </table><p>The <i>missing value default</i> is the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-button-element.html#attr-button-type-submit-state" title='Read about this "Submit Button" reference in the full HTML5 spec.'>Submit Button</a> - state.<p>If the <code title="attr-button-type"><a href="#attr-button-type" id="type_84">type</a></code> attribute is in + state.</p> + + <p>If the <code title="attr-button-type"><a href="#attr-button-type" id="type_84">type</a></code> attribute is in the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-button-element.html#attr-button-type-submit-state" title='Read about this "Submit Button" reference in the full HTML5 spec.'>Submit Button</a> - state, the element is specifically a <a href="forms.html#concept-submit-button" id="concept-submit-button_2" title="concept-submit-button">submit button</a>.<p>The <code title="attr-fae-form"><a href="association-of-controls-and-forms.html#attr-fae-form" id="form_52">form</a></code> attribute is used to + state, the element is specifically a <a href="forms.html#concept-submit-button" id="concept-submit-button_2" title="concept-submit-button">submit button</a>.</p> + + + + <p>The <code title="attr-fae-form"><a href="association-of-controls-and-forms.html#attr-fae-form" id="form_52">form</a></code> attribute is used to explicitly associate the <code><a href="#the-button-element" id="button_15">button</a></code> element with its <a href="association-of-controls-and-forms.html#form-owner" id="form-owner_8">form owner</a>. The <code title="attr-fe-name"><a href="attributes-common-to-form-controls.html#attr-fe-name" id="name_38">name</a></code> attribute represents the element's name. The <code title="attr-fe-disabled"><a href="attributes-common-to-form-controls.html#attr-fe-disabled" id="disabled_14">disabled</a></code> attribute is used to make the control non-interactive and to prevent its value from being submitted. The <code title="attr-fe-autofocus"><a href="attributes-common-to-form-controls.html#attr-fe-autofocus" id="autofocus_2">autofocus</a></code> attribute controls focus. The <code title="attr-fs-formaction"><a href="attributes-common-to-form-controls.html#attr-fs-formaction" id="formaction_27">formaction</a></code>, <code title="attr-fs-formenctype"><a href="attributes-common-to-form-controls.html#attr-fs-formenctype" id="formenctype_27">formenctype</a></code>, <code title="attr-fs-formmethod"><a href="attributes-common-to-form-controls.html#attr-fs-formmethod" id="formmethod_27">formmethod</a></code>, <code title="attr-fs-formnovalidate"><a href="attributes-common-to-form-controls.html#attr-fs-formnovalidate" id="formnovalidate_28">formnovalidate</a></code>, and <code title="attr-fs-formtarget"><a href="attributes-common-to-form-controls.html#attr-fs-formtarget" id="formtarget_27">formtarget</a></code> attributes are - <a href="attributes-common-to-form-controls.html#attributes-for-form-submission" id="attributes-for-form-submission_3">attributes for form submission</a>.<p class="note">The <code title="attr-fs-formnovalidate"><a href="attributes-common-to-form-controls.html#attr-fs-formnovalidate" id="formnovalidate_29">formnovalidate</a></code> attribute can + <a href="attributes-common-to-form-controls.html#attributes-for-form-submission" id="attributes-for-form-submission_3">attributes for form submission</a>.</p> + + <p class="note">The <code title="attr-fs-formnovalidate"><a href="attributes-common-to-form-controls.html#attr-fs-formnovalidate" id="formnovalidate_29">formnovalidate</a></code> attribute can be used to make submit buttons that do not trigger the constraint - validation.<p>The <code title="attr-fs-formaction"><a href="attributes-common-to-form-controls.html#attr-fs-formaction" id="formaction_28">formaction</a></code>, <code title="attr-fs-formenctype"><a href="attributes-common-to-form-controls.html#attr-fs-formenctype" id="formenctype_28">formenctype</a></code>, <code title="attr-fs-formmethod"><a href="attributes-common-to-form-controls.html#attr-fs-formmethod" id="formmethod_28">formmethod</a></code>, <code title="attr-fs-formnovalidate"><a href="attributes-common-to-form-controls.html#attr-fs-formnovalidate" id="formnovalidate_30">formnovalidate</a></code>, and <code title="attr-fs-formtarget"><a href="attributes-common-to-form-controls.html#attr-fs-formtarget" id="formtarget_28">formtarget</a></code> must not be specified + validation.</p> + + <p>The <code title="attr-fs-formaction"><a href="attributes-common-to-form-controls.html#attr-fs-formaction" id="formaction_28">formaction</a></code>, <code title="attr-fs-formenctype"><a href="attributes-common-to-form-controls.html#attr-fs-formenctype" id="formenctype_28">formenctype</a></code>, <code title="attr-fs-formmethod"><a href="attributes-common-to-form-controls.html#attr-fs-formmethod" id="formmethod_28">formmethod</a></code>, <code title="attr-fs-formnovalidate"><a href="attributes-common-to-form-controls.html#attr-fs-formnovalidate" id="formnovalidate_30">formnovalidate</a></code>, and <code title="attr-fs-formtarget"><a href="attributes-common-to-form-controls.html#attr-fs-formtarget" id="formtarget_28">formtarget</a></code> must not be specified if the element's <code title="attr-button-type"><a href="#attr-button-type" id="type_85">type</a></code> attribute is not in the <a class="full-spec-link" href="http://dev.w3.org/html5/spec/the-button-element.html#attr-button-type-submit-state" title='Read about this "Submit Button" reference in the full HTML5 spec.'>Submit Button</a> - state.<p>The <dfn aria-haspopup="true" id="attr-button-value" role="button" tabindex="0"><code>value</code></dfn> + state.</p> + + <p>The <dfn aria-haspopup="true" id="attr-button-value" role="button" tabindex="0"><code>value</code></dfn> attribute gives the element's value for the purposes of form submission. The element's <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-form-controls.html#concept-fe-value" title='Read about this "value" reference in the full HTML5 spec.'>value</a> is the value of the element's <code title="attr-button-value"><a href="#attr-button-value" id="value_33">value</a></code> attribute, if there is - one, or the empty string otherwise.<p class="note">A button (and its value) is only included in the + one, or the empty string otherwise.</p> + + <p class="note">A button (and its value) is only included in the form submission if the button itself was used to initiate the form submission.</p> + + <p>The <dfn aria-haspopup="true" id="dom-button-value" role="button" tabindex="0"><code>value</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_71">reflect</a> the content attribute of the same name.</p> @@ -443,7 +505,9 @@ <p>The <dfn aria-haspopup="true" id="dom-button-type" role="button" tabindex="0"><code>type</code></dfn> IDL attribute must <a href="common-dom-interfaces.html#reflect" id="reflect_72">reflect</a> the content attribute of the same name, <a class="full-spec-link" href="http://dev.w3.org/html5/spec/common-dom-interfaces.html#limited-to-only-known-values" title='Read about this "limited to only known values" reference in the full HTML5 spec.'>limited to only known values</a>.</p> -<div class="example"> + + + <div class="example"> <p>The following button is labeled "Show hint" and pops up a dialog box when activated:</p> @@ -453,4 +517,9 @@ Show hint </button></pre> - </div> \ No newline at end of file + </div> + + + + + \ No newline at end of file Index: links.html =================================================================== RCS file: /sources/public/html5/spec-author-view/links.html,v retrieving revision 1.622 retrieving revision 1.623 diff -u -d -r1.622 -r1.623 --- links.html 15 Feb 2012 10:14:11 -0000 1.622 +++ links.html 13 Mar 2012 19:58:43 -0000 1.623 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,7 +380,9 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="commands.html">← 4.11.5 Commands</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="browsers.html">5 Loading Web pages →</a> @@ -354,10 +392,16 @@ <ol><li><a href="links.html#link-type-next" id="4.12.3.13.1-link-type-next"><span class="secno">4.12.3.13.1 </span>Link type "<code>next</code>"</a><li><a href="links.html#link-type-prev" id="4.12.3.13.2-link-type-prev"><span class="secno">4.12.3.13.2 </span>Link type "<code>prev</code>"</a></ol><li><a href="links.html#other-link-types"><span class="secno">4.12.3.14 </span>Other link types</a></ol></ol><li><a href="links.html#common-idioms"><span class="secno">4.13 </span>Common idioms without dedicated elements</a> <ol><li><a href="links.html#the-main-part-of-the-content"><span class="secno">4.13.1 </span>The main part of the content</a><li><a href="links.html#rel-up"><span class="secno">4.13.2 </span>Bread crumb navigation</a><li><a href="links.html#tag-clouds"><span class="secno">4.13.3 </span>Tag clouds</a><li><a href="links.html#conversations"><span class="secno">4.13.4 </span>Conversations</a><li><a href="links.html#footnotes"><span class="secno">4.13.5 </span>Footnotes</a></ol></ol></ol></div> - <h3 id="links"><span class="secno">4.12 </span>Links</h3><h4 id="introduction-3"><span class="secno">4.12.1 </span>Introduction</h4><p>Links are a conceptual construct, created by <code><a href="the-a-element.html#the-a-element" id="a_27">a</a></code>, + <h3 id="links"><span class="secno">4.12 </span>Links</h3> + + <h4 id="introduction-3"><span class="secno">4.12.1 </span>Introduction</h4> + + <p>Links are a conceptual construct, created by <code><a href="the-a-element.html#the-a-element" id="a_27">a</a></code>, <code><a href="the-area-element.html#the-area-element" id="area_20">area</a></code>, and <code><a href="the-link-element.html#the-link-element" id="link_27">link</a></code> elements, that <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represent" reference in the full HTML5 spec.'>represent</a> a connection between two resources, one of which is the current <code><a href="dom.html#document" id="document_71">Document</a></code>. There - are two kinds of links in HTML:<dl><dt><dfn aria-haspopup="true" id="external-resource-link" role="button" tabindex="0">Links to external + are two kinds of links in HTML:</p> + + <dl><dt><dfn aria-haspopup="true" id="external-resource-link" role="button" tabindex="0">Links to external resources</dfn></dt> <dd><p>These are links to resources that are to be used to augment @@ -373,7 +417,9 @@ </dl><p>For <code><a href="the-link-element.html#the-link-element" id="link_28">link</a></code> elements with an <code title="attr-link-href"><a href="the-link-element.html#attr-link-href" id="href_4">href</a></code> attribute and a <code title="attr-link-rel"><a href="the-link-element.html#attr-link-rel" id="rel_6">rel</a></code> attribute, links must be created for the keywords of the <code title="attr-link-rel"><a href="the-link-element.html#attr-link-rel" id="rel_7">rel</a></code> - attribute, as defined for those keywords in the <a href="#linkTypes">link types</a> section.<p>Similarly, for <code><a href="the-a-element.html#the-a-element" id="a_28">a</a></code> and <code><a href="the-area-element.html#the-area-element" id="area_21">area</a></code> elements with + attribute, as defined for those keywords in the <a href="#linkTypes">link types</a> section.</p> + + <p>Similarly, for <code><a href="the-a-element.html#the-a-element" id="a_28">a</a></code> and <code><a href="the-area-element.html#the-area-element" id="area_21">area</a></code> elements with an <code title="attr-hyperlink-href"><a href="#attr-hyperlink-href" id="href_24">href</a></code> attribute and a <code title="attr-hyperlink-rel"><a href="#attr-hyperlink-rel" id="rel_18">rel</a></code> attribute, links must be created for the keywords of the <code title="attr-hyperlink-rel"><a href="#attr-hyperlink-rel" id="rel_19">rel</a></code> attribute as defined for those @@ -387,45 +433,90 @@ meaning (it has no <a href="#linkTypes">link type</a>) beyond linking the element's document to the resource given by the element's <code title="attr-hyperlink-href"><a href="#attr-hyperlink-href" id="href_26">href</a></code> - attribute.<p>A <a href="#hyperlink" id="hyperlink_14">hyperlink</a> can have one or more <dfn aria-haspopup="true" id="hyperlink-annotation" role="button" tabindex="0">hyperlink annotations</dfn> that modify - the processing semantics of that hyperlink.<h4 id="links-created-by-a-and-area-elements"><span class="secno">4.12.2 </span>Links created by <code><a href="the-a-element.html#the-a-element" id="a_30">a</a></code> and <code><a href="the-area-element.html#the-area-element" id="area_23">area</a></code> elements</h4><p>The <dfn aria-haspopup="true" id="attr-hyperlink-href" role="button" tabindex="0"><code>href</code></dfn> + attribute.</p> + + <p>A <a href="#hyperlink" id="hyperlink_14">hyperlink</a> can have one or more <dfn aria-haspopup="true" id="hyperlink-annotation" role="button" tabindex="0">hyperlink annotations</dfn> that modify + the processing semantics of that hyperlink.</p> + + + <h4 id="links-created-by-a-and-area-elements"><span class="secno">4.12.2 </span>Links created by <code><a href="the-a-element.html#the-a-element" id="a_30">a</a></code> and <code><a href="the-area-element.html#the-area-element" id="area_23">area</a></code> elements</h4> + + <p>The <dfn aria-haspopup="true" id="attr-hyperlink-href" role="button" tabindex="0"><code>href</code></dfn> attribute on <code><a href="the-a-element.html#the-a-element" id="a_31">a</a></code> and <code><a href="the-area-element.html#the-area-element" id="area_24">area</a></code> elements must have a value that is a <a href="urls.html#valid-url-potentially-surrounded-by-spaces" id="valid-url-potentially-surrounded-by-spaces_5">valid URL potentially surrounded by - spaces</a>.<p class="note">The <code title="attr-hyperlink-href"><a href="#attr-hyperlink-href" id="href_27">href</a></code> + spaces</a>.</p> + + <p class="note">The <code title="attr-hyperlink-href"><a href="#attr-hyperlink-href" id="href_27">href</a></code> attribute on <code><a href="the-a-element.html#the-a-element" id="a_32">a</a></code> and <code><a href="the-area-element.html#the-area-element" id="area_25">area</a></code> elements is not required; when those elements do not have <code title="attr-hyperlink-href"><a href="#attr-hyperlink-href" id="href_28">href</a></code> attributes they do not - create hyperlinks.<p>The <dfn aria-haspopup="true" id="attr-hyperlink-target" role="button" tabindex="0"><code>target</code></dfn> + create hyperlinks.</p> + + <p>The <dfn aria-haspopup="true" id="attr-hyperlink-target" role="button" tabindex="0"><code>target</code></dfn> attribute, if present, must be a <a href="browsers.html#valid-browsing-context-name-or-keyword" id="valid-browsing-context-name-or-keyword_2">valid browsing context name or keyword</a>. It gives the name of the <a href="browsers.html#browsing-context" id="browsing-context_10">browsing - context</a> that will be used. <p>The <dfn aria-haspopup="true" id="attr-hyperlink-rel" role="button" tabindex="0"><code>rel</code></dfn> + context</a> that will be used. </p> + + + <p>The <dfn aria-haspopup="true" id="attr-hyperlink-rel" role="button" tabindex="0"><code>rel</code></dfn> attribute on <code><a href="the-a-element.html#the-a-element" id="a_33">a</a></code> and <code><a href="the-area-element.html#the-area-element" id="area_26">area</a></code> elements controls what kinds of links the elements create. The attribue's value must be a <a href="common-microsyntaxes.html#set-of-space-separated-tokens" id="set-of-space-separated-tokens_7">set of space-separated tokens</a>. The <a href="#linkTypes">allowed keywords and their meanings</a> are - defined below.<p>The <code title="attr-hyperlink-rel"><a href="#attr-hyperlink-rel" id="rel_22">rel</a></code> attribute has + defined below.</p> + + <p>The <code title="attr-hyperlink-rel"><a href="#attr-hyperlink-rel" id="rel_22">rel</a></code> attribute has no default value. If the attribute is omitted or if none of the values in the attribute are recognized by the user agent, then the document has no particular relationship with the destination - resource other than there being a hyperlink between the two.<p>The <dfn aria-haspopup="true" id="attr-hyperlink-media" role="button" tabindex="0"><code>media</code></dfn> + resource other than there being a hyperlink between the two.</p> + + <p>The <dfn aria-haspopup="true" id="attr-hyperlink-media" role="button" tabindex="0"><code>media</code></dfn> attribute describes for which media the target document was designed. It is purely advisory. The value must be a <a href="common-microsyntaxes.html#valid-media-query" id="valid-media-query_3">valid media query</a>. The default, if the <code title="attr-hyperlink-media"><a href="#attr-hyperlink-media" id="media_12">media</a></code> attribute is omitted, is - "<code title="">all</code>".<p>The <dfn aria-haspopup="true" id="attr-hyperlink-hreflang" role="button" tabindex="0"><code>hreflang</code></dfn> + "<code title="">all</code>".</p> + + <p>The <dfn aria-haspopup="true" id="attr-hyperlink-hreflang" role="button" tabindex="0"><code>hreflang</code></dfn> attribute on <code><a href="the-a-element.html#the-a-element" id="a_34">a</a></code> and <code><a href="the-area-element.html#the-area-element" id="area_27">area</a></code> elements that create <a href="#hyperlink" id="hyperlink_15" title="hyperlink">hyperlinks</a>, if present, gives the language of the linked resource. It is purely advisory. The - value must be a valid BCP 47 language tag. <a href="references.html#refsBCP47">[BCP47]</a> <p>The <dfn aria-haspopup="true" id="attr-hyperlink-type" role="button" tabindex="0"><code>type</code></dfn> + value must be a valid BCP 47 language tag. <a href="references.html#refsBCP47">[BCP47]</a> </p> + + <p>The <dfn aria-haspopup="true" id="attr-hyperlink-type" role="button" tabindex="0"><code>type</code></dfn> attribute, if present, gives the <a href="infrastructure.html#mime-type" id="mime-type_13">MIME type</a> of the linked resource. It is purely advisory. The value must be a - <a href="infrastructure.html#valid-mime-type" id="valid-mime-type_7">valid MIME type</a>. <h4 id="linkTypes"><span class="secno">4.12.3 </span>Link types</h4><p>The following table summarizes the link types that are defined by + <a href="infrastructure.html#valid-mime-type" id="valid-mime-type_7">valid MIME type</a>. </p> + + + + + + + + + <h4 id="linkTypes"><span class="secno">4.12.3 </span>Link types</h4> + + <p>The following table summarizes the link types that are defined by this specification. This table is non-normative; the actual definitions for the link types are given in the next few - sections.<p>In this section, the term <i>referenced document</i> refers to + sections.</p> + + <p>In this section, the term <i>referenced document</i> refers to the resource identified by the element representing the link, and the term <i>current document</i> refers to the resource within - which the element representing the link finds itself.<p>Except where otherwise specified, a keyword must not be specified + which the element representing the link finds itself.</p> + + + + <p>Except where otherwise specified, a keyword must not be specified more than once per <code title="attr-hyperlink-rel"><a href="#attr-hyperlink-rel" id="rel_23">rel</a></code> - attribute.<p>Link types are always <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_17">ASCII case-insensitive</a>.<p class="example">Thus, <code title="">rel="next"</code> is the - same as <code title="">rel="NEXT"</code>.<table><thead><tr><th rowspan="2">Link type</th> + attribute.</p> + + <p>Link types are always <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_17">ASCII case-insensitive</a>.</p> + + <p class="example">Thus, <code title="">rel="next"</code> is the + same as <code title="">rel="NEXT"</code>.</p> + + <table><thead><tr><th rowspan="2">Link type</th> <th colspan="2">Effect on...</th> <th rowspan="2">Brief description</th> <tr><th><code><a href="the-link-element.html#the-link-element" id="link_30">link</a></code></th> @@ -486,10 +577,16 @@ <td><em>not allowed</em></td> <td><a href="#hyperlink" id="hyperlink_31">Hyperlink</a></td> <td>Gives a tag (identified by the given address) that applies to the current document.</td> - </table><h5 id="rel-alternate"><span class="secno">4.12.3.1 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>alternate</code></dfn>"</h5><p>The <code title="rel-alternate"><a href="#rel-alternate" id="alternate_0">alternate</a></code> keyword may be + </table><h5 id="rel-alternate"><span class="secno">4.12.3.1 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>alternate</code></dfn>"</h5> + + <p>The <code title="rel-alternate"><a href="#rel-alternate" id="alternate_0">alternate</a></code> keyword may be used with <code><a href="the-link-element.html#the-link-element" id="link_31">link</a></code>, <code><a href="the-a-element.html#the-a-element" id="a_36">a</a></code>, and <code><a href="the-area-element.html#the-area-element" id="area_29">area</a></code> - elements.<p>The meaning of this keyword depends on the values of the other - attributes.<dl class="switch"><dt>If the element is a <code><a href="the-link-element.html#the-link-element" id="link_32">link</a></code> element and the <code title="attr-link-rel"><a href="the-link-element.html#attr-link-rel" id="rel_8">rel</a></code> attribute also contains the + elements.</p> + + <p>The meaning of this keyword depends on the values of the other + attributes.</p> + + <dl class="switch"><dt>If the element is a <code><a href="the-link-element.html#the-link-element" id="link_32">link</a></code> element and the <code title="attr-link-rel"><a href="the-link-element.html#attr-link-rel" id="rel_8">rel</a></code> attribute also contains the keyword <code title="rel-stylesheet"><a href="#link-type-stylesheet" id="stylesheet_1">stylesheet</a></code></dt> <dd> @@ -563,23 +660,42 @@ </dd> - </dl><h5 id="link-type-author"><span class="secno">4.12.3.2 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>author</code></dfn>"</h5><p>The <code title="rel-author"><a href="#link-type-author" id="author_0">author</a></code> keyword may be + </dl><h5 id="link-type-author"><span class="secno">4.12.3.2 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>author</code></dfn>"</h5> + + <p>The <code title="rel-author"><a href="#link-type-author" id="author_0">author</a></code> keyword may be used with <code><a href="the-link-element.html#the-link-element" id="link_33">link</a></code>, <code><a href="the-a-element.html#the-a-element" id="a_37">a</a></code>, and <code><a href="the-area-element.html#the-area-element" id="area_30">area</a></code> - elements. This keyword creates a <a href="#hyperlink" id="hyperlink_34">hyperlink</a>.<p>For <code><a href="the-a-element.html#the-a-element" id="a_38">a</a></code> and <code><a href="the-area-element.html#the-area-element" id="area_31">area</a></code> elements, the <code title="rel-author"><a href="#link-type-author" id="author_1">author</a></code> keyword indicates that the + elements. This keyword creates a <a href="#hyperlink" id="hyperlink_34">hyperlink</a>.</p> + + <p>For <code><a href="the-a-element.html#the-a-element" id="a_38">a</a></code> and <code><a href="the-area-element.html#the-area-element" id="area_31">area</a></code> elements, the <code title="rel-author"><a href="#link-type-author" id="author_1">author</a></code> keyword indicates that the referenced document provides further information about the author of the nearest <code><a href="the-article-element.html#the-article-element" id="article_19">article</a></code> element ancestor of the element defining the hyperlink, if there is one, or of the page as a whole, - otherwise.<p>For <code><a href="the-link-element.html#the-link-element" id="link_34">link</a></code> elements, the <code title="rel-author"><a href="#link-type-author" id="author_2">author</a></code> keyword indicates that the + otherwise.</p> + + <p>For <code><a href="the-link-element.html#the-link-element" id="link_34">link</a></code> elements, the <code title="rel-author"><a href="#link-type-author" id="author_2">author</a></code> keyword indicates that the referenced document provides further information about the author - for the page as a whole.<p class="note">The "referenced document" can be, and often is, a + for the page as a whole.</p> + + <p class="note">The "referenced document" can be, and often is, a <code title="">mailto:</code> URL giving the e-mail address of the - author. <a href="references.html#refsMAILTO">[MAILTO]</a><h5 id="link-type-bookmark"><span class="secno">4.12.3.3 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>bookmark</code></dfn>"</h5><p>The <code title="rel-bookmark"><a href="#link-type-bookmark" id="bookmark_0">bookmark</a></code> keyword may be + author. <a href="references.html#refsMAILTO">[MAILTO]</a></p> + + + + + <h5 id="link-type-bookmark"><span class="secno">4.12.3.3 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>bookmark</code></dfn>"</h5> + + <p>The <code title="rel-bookmark"><a href="#link-type-bookmark" id="bookmark_0">bookmark</a></code> keyword may be used with <code><a href="the-a-element.html#the-a-element" id="a_39">a</a></code> and <code><a href="the-area-element.html#the-area-element" id="area_32">area</a></code> elements. This - keyword creates a <a href="#hyperlink" id="hyperlink_35">hyperlink</a>.<p>The <code title="rel-bookmark"><a href="#link-type-bookmark" id="bookmark_1">bookmark</a></code> keyword gives a + keyword creates a <a href="#hyperlink" id="hyperlink_35">hyperlink</a>.</p> + + <p>The <code title="rel-bookmark"><a href="#link-type-bookmark" id="bookmark_1">bookmark</a></code> keyword gives a permalink for the nearest ancestor <code><a href="the-article-element.html#the-article-element" id="article_20">article</a></code> element of the linking element in question, or of <a class="full-spec-link" href="http://dev.w3.org/html5/spec/headings-and-sections.html#associatedSection" title='Read about this "the section the linking element is most closely associated with" reference in the full HTML5 spec.'>the section the linking element is most closely associated with</a>, if there are no ancestor - <code><a href="the-article-element.html#the-article-element" id="article_21">article</a></code> elements.<div class="example"> + <code><a href="the-article-element.html#the-article-element" id="article_21">article</a></code> elements.</p> + + <div class="example"> <p>The following snippet has three permalinks. A user agent could determine which permalink applies to which part of the spec by looking at where the permalinks are given.</p> @@ -603,11 +719,24 @@ </article> </body> ...</pre> - </div><h5 id="link-type-help"><span class="secno">4.12.3.4 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>help</code></dfn>"</h5><p>The <code title="rel-help"><a href="#link-type-help" id="help_0">help</a></code> keyword may be used with + </div> + + + + + + + <h5 id="link-type-help"><span class="secno">4.12.3.4 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>help</code></dfn>"</h5> + + <p>The <code title="rel-help"><a href="#link-type-help" id="help_0">help</a></code> keyword may be used with <code><a href="the-link-element.html#the-link-element" id="link_35">link</a></code>, <code><a href="the-a-element.html#the-a-element" id="a_40">a</a></code>, and <code><a href="the-area-element.html#the-area-element" id="area_33">area</a></code> - elements. This keyword creates a <a href="#hyperlink" id="hyperlink_36">hyperlink</a>.<p>For <code><a href="the-a-element.html#the-a-element" id="a_41">a</a></code> and <code><a href="the-area-element.html#the-area-element" id="area_34">area</a></code> elements, the <code title="rel-help"><a href="#link-type-help" id="help_1">help</a></code> keyword indicates that the referenced + elements. This keyword creates a <a href="#hyperlink" id="hyperlink_36">hyperlink</a>.</p> + + <p>For <code><a href="the-a-element.html#the-a-element" id="a_41">a</a></code> and <code><a href="the-area-element.html#the-area-element" id="area_34">area</a></code> elements, the <code title="rel-help"><a href="#link-type-help" id="help_1">help</a></code> keyword indicates that the referenced document provides further help information for the parent of the - element defining the hyperlink, and its children.<div class="example"> + element defining the hyperlink, and its children.</p> + + <div class="example"> <p>In the following example, the form control has associated context-sensitive help. The user agent could use this information, @@ -616,26 +745,59 @@ <pre> <p><label> Topic: <input name=topic> <a href="help/topic.html" rel="help">(Help)</a></label></p></pre> - </div><p>For <code><a href="the-link-element.html#the-link-element" id="link_36">link</a></code> elements, the <code title="rel-help"><a href="#link-type-help" id="help_2">help</a></code> keyword indicates that the referenced - document provides help for the page as a whole.<p>For <code><a href="the-a-element.html#the-a-element" id="a_42">a</a></code> and <code><a href="the-area-element.html#the-area-element" id="area_35">area</a></code> elements, on some + </div> + + <p>For <code><a href="the-link-element.html#the-link-element" id="link_36">link</a></code> elements, the <code title="rel-help"><a href="#link-type-help" id="help_2">help</a></code> keyword indicates that the referenced + document provides help for the page as a whole.</p> + + <p>For <code><a href="the-a-element.html#the-a-element" id="a_42">a</a></code> and <code><a href="the-area-element.html#the-area-element" id="area_35">area</a></code> elements, on some browsers, the <code title="rel-help"><a href="#link-type-help" id="help_3">help</a></code> keyword causes the - link to use a different cursor.<h5 id="rel-icon"><span class="secno">4.12.3.5 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>icon</code></dfn>"</h5><p>The <code title="rel-icon"><a href="#rel-icon" id="icon_6">icon</a></code> keyword may be used with - <code><a href="the-link-element.html#the-link-element" id="link_37">link</a></code> elements. This keyword creates an <a href="#external-resource-link" id="external-resource-link_7" title="external resource link">external resource link</a>.<p>Icons could be auditory icons, visual icons, or other kinds of - icons. <p>The <dfn aria-haspopup="true" id="attr-link-sizes" role="button" tabindex="0"><code>sizes</code></dfn> + link to use a different cursor.</p> + + + <h5 id="rel-icon"><span class="secno">4.12.3.5 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>icon</code></dfn>"</h5> + + <p>The <code title="rel-icon"><a href="#rel-icon" id="icon_6">icon</a></code> keyword may be used with + <code><a href="the-link-element.html#the-link-element" id="link_37">link</a></code> elements. This keyword creates an <a href="#external-resource-link" id="external-resource-link_7" title="external resource link">external resource link</a>.</p> + + + + <p>Icons could be auditory icons, visual icons, or other kinds of + icons. </p> + + + + <p>The <dfn aria-haspopup="true" id="attr-link-sizes" role="button" tabindex="0"><code>sizes</code></dfn> attribute gives the sizes of icons for visual media. Its value, if present, is merely advisory. User agents may use the value to decide - which icon(s) to use if multiple icons are available.<p>If specified, the attribute must have a value that is an + which icon(s) to use if multiple icons are available.</p> + + <p>If specified, the attribute must have a value that is an <a href="common-microsyntaxes.html#unordered-set-of-unique-space-separated-tokens" id="unordered-set-of-unique-space-separated-tokens_3">unordered set of unique space-separated tokens</a> which are <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_18">ASCII case-insensitive</a>. Each value must be either an <a href="infrastructure.html#ascii-case-insensitive" id="ascii-case-insensitive_19">ASCII case-insensitive</a> match for the string "<code title="attr-link-sizes-any"><a href="#attr-link-sizes-any" id="any">any</a></code>", or a value that consists of two <a href="common-microsyntaxes.html#valid-non-negative-integer" id="valid-non-negative-integer_15" title="valid non-negative integer">valid non-negative - integers</a> that do not have a leading U+0030 DIGIT ZERO (0) + integers</a> that do not have a leading "0" (U+0030) character and that are separated by a single U+0078 LATIN SMALL - LETTER X or U+0058 LATIN CAPITAL LETTER X character.<p>The keywords represent icon sizes.<p>The <dfn aria-haspopup="true" id="attr-link-sizes-any" role="button" tabindex="0"><code>any</code></dfn> keyword + LETTER X or U+0058 LATIN CAPITAL LETTER X character.</p> + + <p>The keywords represent icon sizes.</p> + + + + <p>The <dfn aria-haspopup="true" id="attr-link-sizes-any" role="button" tabindex="0"><code>any</code></dfn> keyword represents that the resource contains a scalable icon, e.g. as - provided by an SVG image.<p>The keywords specified on the <code title="attr-link-sizes"><a href="#attr-link-sizes" id="sizes_1">sizes</a></code> attribute must not represent + provided by an SVG image.</p> + + + + <p>The keywords specified on the <code title="attr-link-sizes"><a href="#attr-link-sizes" id="sizes_1">sizes</a></code> attribute must not represent icon sizes that are not actually available in the linked - resource.<div class="example"> + resource.</p> + + + + <div class="example"> <p>The following snippet shows the top part of an application with several icons.</p> @@ -656,18 +818,31 @@ <body> ...</pre> - </div><p>For historical reasons, the <code title="rel-icon"><a href="#rel-icon" id="icon_7">icon</a></code> + </div> + + <p>For historical reasons, the <code title="rel-icon"><a href="#rel-icon" id="icon_7">icon</a></code> keyword may be preceded by the keyword "<code title="">shortcut</code>". If the "<code title="">shortcut</code>" keyword is present, it must be come immediately before the <code title="rel-icon"><a href="#rel-icon" id="icon_8">icon</a></code> keyword and the two keywords must be - separated by only a single U+0020 SPACE character.<h5 id="link-type-license"><span class="secno">4.12.3.6 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>license</code></dfn>"</h5><p>The <code title="rel-license"><a href="#link-type-license" id="license_0">license</a></code> keyword may be used + separated by only a single U+0020 SPACE character.</p> + + + <h5 id="link-type-license"><span class="secno">4.12.3.6 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>license</code></dfn>"</h5> + + <p>The <code title="rel-license"><a href="#link-type-license" id="license_0">license</a></code> keyword may be used with <code><a href="the-link-element.html#the-link-element" id="link_38">link</a></code>, <code><a href="the-a-element.html#the-a-element" id="a_43">a</a></code>, and <code><a href="the-area-element.html#the-area-element" id="area_36">area</a></code> - elements. This keyword creates a <a href="#hyperlink" id="hyperlink_37">hyperlink</a>.<p>The <code title="rel-license"><a href="#link-type-license" id="license_1">license</a></code> keyword indicates + elements. This keyword creates a <a href="#hyperlink" id="hyperlink_37">hyperlink</a>.</p> + + <p>The <code title="rel-license"><a href="#link-type-license" id="license_1">license</a></code> keyword indicates that the referenced document provides the copyright license terms under which the main content of the current document is - provided.<p>This specification does not specify how to distinguish between + provided.</p> + + <p>This specification does not specify how to distinguish between the main content of a document and content that is not deemed to be part of that main content. The distinction should be made clear to - the user.<div class="example"> + the user.</p> + + <div class="example"> <p>Consider a photo sharing site. A page on that site might describe and show a photograph, and the page might be marked up as @@ -706,60 +881,164 @@ photograph, while having the page copyright in light small text at the foot of the page.</p> - </div><h5 id="link-type-nofollow"><span class="secno">4.12.3.7 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>nofollow</code></dfn>"</h5><p>The <code title="rel-nofollow"><a href="#link-type-nofollow" id="nofollow_0">nofollow</a></code> keyword may be + </div> + + + + + <h5 id="link-type-nofollow"><span class="secno">4.12.3.7 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>nofollow</code></dfn>"</h5> + + <p>The <code title="rel-nofollow"><a href="#link-type-nofollow" id="nofollow_0">nofollow</a></code> keyword may be used with <code><a href="the-a-element.html#the-a-element" id="a_44">a</a></code> and <code><a href="the-area-element.html#the-area-element" id="area_37">area</a></code> elements. This keyword does not create a <a href="#hyperlink" id="hyperlink_38">hyperlink</a>, but <a href="#hyperlink-annotation" id="hyperlink-annotation_2" title="hyperlink annotation">annotates</a> any other hyperlinks created by the element (the implied hyperlink, if no other keywords - create one).<p>The <code title="rel-nofollow"><a href="#link-type-nofollow" id="nofollow_1">nofollow</a></code> keyword indicates + create one).</p> + + <p>The <code title="rel-nofollow"><a href="#link-type-nofollow" id="nofollow_1">nofollow</a></code> keyword indicates that the link is not endorsed by the original author or publisher of the page, or that the link to the referenced document was included primarily because of a commercial relationship between people - affiliated with the two pages.<h5 id="link-type-noreferrer"><span class="secno">4.12.3.8 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>noreferrer</code></dfn>"</h5><p>The <code title="rel-noreferrer"><a href="#link-type-noreferrer" id="noreferrer_1">noreferrer</a></code> keyword may be + affiliated with the two pages.</p> + + + <h5 id="link-type-noreferrer"><span class="secno">4.12.3.8 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>noreferrer</code></dfn>"</h5> + + <p>The <code title="rel-noreferrer"><a href="#link-type-noreferrer" id="noreferrer_1">noreferrer</a></code> keyword may be used with <code><a href="the-a-element.html#the-a-element" id="a_45">a</a></code> and <code><a href="the-area-element.html#the-area-element" id="area_38">area</a></code> elements. This keyword does not create a <a href="#hyperlink" id="hyperlink_39">hyperlink</a>, but <a href="#hyperlink-annotation" id="hyperlink-annotation_3" title="hyperlink annotation">annotates</a> any other hyperlinks created by the element (the implied hyperlink, if no other keywords - create one).<p>It indicates that no referrer information is to be leaked when - following the link.<h5 id="link-type-prefetch"><span class="secno">4.12.3.9 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>prefetch</code></dfn>"</h5><p>The <code title="rel-prefetch"><a href="#link-type-prefetch" id="prefetch_0">prefetch</a></code> keyword may be + create one).</p> + + <p>It indicates that no referrer information is to be leaked when + following the link.</p> + + + + + + + + + + <h5 id="link-type-prefetch"><span class="secno">4.12.3.9 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>prefetch</code></dfn>"</h5> + + <p>The <code title="rel-prefetch"><a href="#link-type-prefetch" id="prefetch_0">prefetch</a></code> keyword may be used with <code><a href="the-link-element.html#the-link-element" id="link_39">link</a></code>, <code><a href="the-a-element.html#the-a-element" id="a_46">a</a></code>, and <code><a href="the-area-element.html#the-area-element" id="area_39">area</a></code> elements. This keyword creates an <a href="#external-resource-link" id="external-resource-link_8" title="external resource - link">external resource link</a>.<p>The <code title="rel-prefetch"><a href="#link-type-prefetch" id="prefetch_1">prefetch</a></code> keyword indicates + link">external resource link</a>.</p> + + <p>The <code title="rel-prefetch"><a href="#link-type-prefetch" id="prefetch_1">prefetch</a></code> keyword indicates that preemptively fetching and caching the specified resource is likely to be beneficial, as it is highly likely that the user will - require this resource.<p>There is no default type for resources given by the <code title="rel-prefetch"><a href="#link-type-prefetch" id="prefetch_2">prefetch</a></code> keyword.<h5 id="link-type-search"><span class="secno">4.12.3.10 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>search</code></dfn>"</h5><p>The <code title="rel-search"><a href="#link-type-search" id="search_0">search</a></code> keyword may be used + require this resource.</p> + + <p>There is no default type for resources given by the <code title="rel-prefetch"><a href="#link-type-prefetch" id="prefetch_2">prefetch</a></code> keyword.</p> + + + <h5 id="link-type-search"><span class="secno">4.12.3.10 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>search</code></dfn>"</h5> + + <p>The <code title="rel-search"><a href="#link-type-search" id="search_0">search</a></code> keyword may be used with <code><a href="the-link-element.html#the-link-element" id="link_40">link</a></code>, <code><a href="the-a-element.html#the-a-element" id="a_47">a</a></code>, and <code><a href="the-area-element.html#the-area-element" id="area_40">area</a></code> - elements. This keyword creates a <a href="#hyperlink" id="hyperlink_40">hyperlink</a>.<p>The <code title="rel-search"><a href="#link-type-search" id="search_1">search</a></code> keyword indicates that + elements. This keyword creates a <a href="#hyperlink" id="hyperlink_40">hyperlink</a>.</p> + + <p>The <code title="rel-search"><a href="#link-type-search" id="search_1">search</a></code> keyword indicates that the referenced document provides an interface specifically for - searching the document and its related resources.<p class="note">OpenSearch description documents can be used with + searching the document and its related resources.</p> + + <p class="note">OpenSearch description documents can be used with <code><a href="the-link-element.html#the-link-element" id="link_41">link</a></code> elements and the <code title="rel-search"><a href="#link-type-search" id="search_2">search</a></code> link type to enable user agents to - autodiscover search interfaces. <a href="references.html#refsOPENSEARCH">[OPENSEARCH]</a><h5 id="link-type-stylesheet"><span class="secno">4.12.3.11 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>stylesheet</code></dfn>"</h5><p>The <code title="rel-stylesheet"><a href="#link-type-stylesheet" id="stylesheet_3">stylesheet</a></code> keyword may be + autodiscover search interfaces. <a href="references.html#refsOPENSEARCH">[OPENSEARCH]</a></p> + + + + + + <h5 id="link-type-stylesheet"><span class="secno">4.12.3.11 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>stylesheet</code></dfn>"</h5> + + <p>The <code title="rel-stylesheet"><a href="#link-type-stylesheet" id="stylesheet_3">stylesheet</a></code> keyword may be used with <code><a href="the-link-element.html#the-link-element" id="link_42">link</a></code> elements. This keyword creates an <a href="#external-resource-link" id="external-resource-link_9" title="external resource link">external resource link</a> that - contributes to the <a href="styling.html#styling" id="styling-processing-model_2">styling processing model</a>.<p>The specified resource is a resource that describes how to + contributes to the <a href="styling.html#styling" id="styling-processing-model_2">styling processing model</a>.</p> + + <p>The specified resource is a resource that describes how to present the document. Exactly how the resource is to be processed - depends on the actual type of the resource.<p>If the <code title="rel-alternate"><a href="#rel-alternate" id="alternate_9">alternate</a></code> keyword is + depends on the actual type of the resource.</p> + + <p>If the <code title="rel-alternate"><a href="#rel-alternate" id="alternate_9">alternate</a></code> keyword is also specified on the <code><a href="the-link-element.html#the-link-element" id="link_43">link</a></code> element, then <dfn aria-haspopup="true" id="the-link-is-an-alternative-stylesheet" role="button" tabindex="0">the link is an alternative stylesheet</dfn>; in this case, the <code title="attr-title"><a href="global-attributes.html#the-title-attribute" id="title_33">title</a></code> attribute must be specified on the - <code><a href="the-link-element.html#the-link-element" id="link_44">link</a></code> element, with a non-empty value.<p>The default type for resources given by the <code title="rel-stylesheet"><a href="#link-type-stylesheet" id="stylesheet_4">stylesheet</a></code> keyword is <code title="">text/css</code>.<h5 id="link-type-tag"><span class="secno">4.12.3.12 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>tag</code></dfn>"</h5><p>The <code title="rel-tag"><a href="#link-type-tag" id="tag_0">tag</a></code> keyword may be used with + <code><a href="the-link-element.html#the-link-element" id="link_44">link</a></code> element, with a non-empty value.</p> + + <p>The default type for resources given by the <code title="rel-stylesheet"><a href="#link-type-stylesheet" id="stylesheet_4">stylesheet</a></code> keyword is <code title="">text/css</code>.</p> + + + + + <h5 id="link-type-tag"><span class="secno">4.12.3.12 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>tag</code></dfn>"</h5> + + <p>The <code title="rel-tag"><a href="#link-type-tag" id="tag_0">tag</a></code> keyword may be used with <code><a href="the-a-element.html#the-a-element" id="a_48">a</a></code> and <code><a href="the-area-element.html#the-area-element" id="area_41">area</a></code> elements. This keyword creates - a <a href="#hyperlink" id="hyperlink_41">hyperlink</a>.<p>The <code title="rel-tag"><a href="#link-type-tag" id="tag_1">tag</a></code> keyword indicates that the + a <a href="#hyperlink" id="hyperlink_41">hyperlink</a>.</p> + + <p>The <code title="rel-tag"><a href="#link-type-tag" id="tag_1">tag</a></code> keyword indicates that the <em>tag</em> that the referenced document represents applies to the - current document.<p class="note">Since it indicates that the tag <em>applies to the + current document.</p> + + <p class="note">Since it indicates that the tag <em>applies to the current document</em>, it would be inappropriate to use this keyword in the markup of a <a href="#tag-cloud">tag cloud</a>, which lists - the popular tags across a set of pages.<h5 id="sequential-link-types"><span class="secno">4.12.3.13 </span>Sequential link types</h5><p>Some documents form part of a sequence of documents.<p>A sequence of documents is one where each document can have a + the popular tags across a set of pages.</p> + + + + <h5 id="sequential-link-types"><span class="secno">4.12.3.13 </span>Sequential link types</h5> + + <p>Some documents form part of a sequence of documents.</p> + + <p>A sequence of documents is one where each document can have a <em>previous sibling</em> and a <em>next sibling</em>. A document with no previous sibling is the start of its sequence, a document - with no next sibling is the end of its sequence.<p>A document may be part of multiple sequences.<h6 id="link-type-next"><span class="secno">4.12.3.13.1 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>next</code></dfn>"</h6><p>The <code title="rel-next"><a href="#link-type-next" id="next_1">next</a></code> keyword may be used with + with no next sibling is the end of its sequence.</p> + + <p>A document may be part of multiple sequences.</p> + + + <h6 id="link-type-next"><span class="secno">4.12.3.13.1 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>next</code></dfn>"</h6> + + <p>The <code title="rel-next"><a href="#link-type-next" id="next_1">next</a></code> keyword may be used with <code><a href="the-link-element.html#the-link-element" id="link_45">link</a></code>, <code><a href="the-a-element.html#the-a-element" id="a_49">a</a></code>, and <code><a href="the-area-element.html#the-area-element" id="area_42">area</a></code> - elements. This keyword creates a <a href="#hyperlink" id="hyperlink_42">hyperlink</a>.<p>The <code title="rel-next"><a href="#link-type-next" id="next_2">next</a></code> keyword indicates that the + elements. This keyword creates a <a href="#hyperlink" id="hyperlink_42">hyperlink</a>.</p> + + <p>The <code title="rel-next"><a href="#link-type-next" id="next_2">next</a></code> keyword indicates that the document is part of a sequence, and that the link is leading to the - document that is the next logical document in the sequence.<h6 id="link-type-prev"><span class="secno">4.12.3.13.2 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>prev</code></dfn>"</h6><p>The <code title="rel-prev"><a href="#link-type-prev" id="prev_0">prev</a></code> keyword may be used with + document that is the next logical document in the sequence.</p> + + + <h6 id="link-type-prev"><span class="secno">4.12.3.13.2 </span>Link type "<dfn aria-haspopup="true" role="button" tabindex="0"><code>prev</code></dfn>"</h6> + + <p>The <code title="rel-prev"><a href="#link-type-prev" id="prev_0">prev</a></code> keyword may be used with <code><a href="the-link-element.html#the-link-element" id="link_46">link</a></code>, <code><a href="the-a-element.html#the-a-element" id="a_50">a</a></code>, and <code><a href="the-area-element.html#the-area-element" id="area_43">area</a></code> - elements. This keyword creates a <a href="#hyperlink" id="hyperlink_43">hyperlink</a>.<p>The <code title="rel-prev"><a href="#link-type-prev" id="prev_1">prev</a></code> keyword indicates that the + elements. This keyword creates a <a href="#hyperlink" id="hyperlink_43">hyperlink</a>.</p> + + <p>The <code title="rel-prev"><a href="#link-type-prev" id="prev_1">prev</a></code> keyword indicates that the document is part of a sequence, and that the link is leading to the - document that is the previous logical document in the sequence.<h5 id="other-link-types"><span class="secno">4.12.3.14 </span>Other link types</h5><p><dfn aria-haspopup="true" id="concept-rel-extensions" role="button" tabindex="0">Extensions to the predefined - set of link types</dfn> may be registered in the <a href="http://microformats.org/wiki/existing-rel-values#HTML5_link_type_extensions">microformats wiki existing-rel-values page</a>. <a href="references.html#refsMFREL">[MFREL]</a><p>Anyone is free to edit the <span title="">microformats wiki + document that is the previous logical document in the sequence.</p> + + + + + <h5 id="other-link-types"><span class="secno">4.12.3.14 </span>Other link types</h5> + + + + + <p><dfn aria-haspopup="true" id="concept-rel-extensions" role="button" tabindex="0">Extensions to the predefined + set of link types</dfn> may be registered in the <a href="http://microformats.org/wiki/existing-rel-values#HTML5_link_type_extensions">microformats wiki existing-rel-values page</a>. <a href="references.html#refsMFREL">[MFREL]</a></p> + + <p>Anyone is free to edit the <span title="">microformats wiki existing-rel-values page</span> at any time to add a type. Extension - types must be specified with the following information:<dl><dt>Keyword</dt> + types must be specified with the following information:</p> + + <dl><dt>Keyword</dt> <dd> @@ -767,7 +1046,7 @@ confusingly similar to any other defined value (e.g. differing only in case).</p> - <p>If the value contains a U+003A COLON character (:), it must + <p>If the value contains a ":" (U+003A) character, it must also be an <a href="urls.html#absolute-url" id="absolute-url_7">absolute URL</a>.</p> </dd> @@ -903,15 +1182,27 @@ wiki existing-rel-values page</a> with the status "proposed" or "ratified" may be used with the <code title="">rel</code> attribute on <code><a href="the-link-element.html#the-link-element" id="link_51">link</a></code>, <code><a href="the-a-element.html#the-a-element" id="a_56">a</a></code>, and <code><a href="the-area-element.html#the-area-element" id="area_49">area</a></code> elements - in accordance to the "Effect on..." field. <a href="references.html#refsMFREL">[MFREL]</a><h3 id="common-idioms"><span class="secno">4.13 </span>Common idioms without dedicated elements</h3><h4 id="the-main-part-of-the-content"><span class="secno">4.13.1 </span>The main part of the content</h4><p>The main content of a page — not including headers and + in accordance to the "Effect on..." field. <a href="references.html#refsMFREL">[MFREL]</a></p> + + + + <h3 id="common-idioms"><span class="secno">4.13 </span>Common idioms without dedicated elements</h3> + + <h4 id="the-main-part-of-the-content"><span class="secno">4.13.1 </span>The main part of the content</h4> + + <p>The main content of a page — not including headers and footers, navigation links, sidebars, advertisements, and so forth — can be marked up in a variety of ways, depending on the - needs of the author.<p>The simplest solution is to not mark up the main content at all, + needs of the author.</p> + + <p>The simplest solution is to not mark up the main content at all, and just leave it as implicit. Another way to think of this is that the <code><a href="the-body-element.html#the-body-element" id="body_25">body</a></code> elements marks up the main content of the page, and the bits that aren't main content are excluded through the use of more appropriate elements like <code><a href="the-aside-element.html#the-aside-element" id="aside_9">aside</a></code> and - <code><a href="the-nav-element.html#the-nav-element" id="nav_11">nav</a></code>.<div class="example"> + <code><a href="the-nav-element.html#the-nav-element" id="nav_11">nav</a></code>.</p> + + <div class="example"> <p>Here is a short Web page marked up along this minimalistic school of thought. The main content is highlighted. Notice how all @@ -942,10 +1233,14 @@ </body> </html></pre> - </div><p>If the main content is an independent unit of content that one + </div> + + <p>If the main content is an independent unit of content that one could imagine syndicating independently, then the <code><a href="the-article-element.html#the-article-element" id="article_22">article</a></code> element would be appropriate to mark up the - main content of the document.<div class="example"> + main content of the document.</p> + + <div class="example"> <p>The document in the previous example is here recast as a blog post:</p> @@ -978,10 +1273,14 @@ </body> </html></pre> - </div><p>If the main content is not an independent unit of content so much + </div> + + <p>If the main content is not an independent unit of content so much as a section of a larger work, for instance a chapter, then the <code><a href="the-section-element.html#the-section-element" id="section_15">section</a></code> element would be appropriate to mark up the - main content of the document.<div class="example"> + main content of the document.</p> + + <div class="example"> <p>Here is the same document, case as a chapter in an online book:</p> @@ -1011,10 +1310,14 @@ </body> </html></pre> - </div><p>If neither <code><a href="the-article-element.html#the-article-element" id="article_23">article</a></code> nor <code><a href="the-section-element.html#the-section-element" id="section_16">section</a></code> would be + </div> + + <p>If neither <code><a href="the-article-element.html#the-article-element" id="article_23">article</a></code> nor <code><a href="the-section-element.html#the-section-element" id="section_16">section</a></code> would be appropriate, but the main content still needs an explicit element, for example for styling purposes, then the <code><a href="the-div-element.html#the-div-element" id="div_17">div</a></code> element - can be used.<div class="example"> + can be used.</p> + + <div class="example"> <p>This is the same as the original example, but using <code><a href="the-div-element.html#the-div-element" id="div_18">div</a></code> for the main content instead of leaving it @@ -1047,11 +1350,18 @@ </body> </html></pre> - </div><h4 id="rel-up"><span class="secno">4.13.2 </span>Bread crumb navigation</h4><p>This specification does not provide a machine-readable way of + </div> + + + <h4 id="rel-up"><span class="secno">4.13.2 </span>Bread crumb navigation</h4> + + <p>This specification does not provide a machine-readable way of describing bread-crumb navigation menus. Authors are encouraged to just use a series of links in a paragraph. The <code><a href="the-nav-element.html#the-nav-element" id="nav_13">nav</a></code> element can be used to mark the section containing these - paragraphs as being navigation blocks.<div class="example"> + paragraphs as being navigation blocks.</p> + + <div class="example"> <p>In the following example, the current page can be reached via two paths.</p> @@ -1070,12 +1380,19 @@ </p> </nav></pre> - </div><h4 id="tag-clouds"><span class="secno">4.13.3 </span>Tag clouds</h4><p id="tag-cloud">This specification does not define any markup + </div> + + + <h4 id="tag-clouds"><span class="secno">4.13.3 </span>Tag clouds</h4> + + <p id="tag-cloud">This specification does not define any markup specifically for marking up lists of keywords that apply to a group of pages (also known as <i>tag clouds</i>). In general, authors are encouraged to either mark up such lists using <code><a href="the-ul-element.html#the-ul-element" id="ul_15">ul</a></code> elements with explicit inline counts that are then hidden and turned - into a presentational effect using a style sheet, or to use SVG.<div class="example"> + into a presentational effect using a style sheet, or to use SVG.</p> + + <div class="example"> <p>Here, three tags are included in a short tag cloud:</p> @@ -1115,15 +1432,26 @@ that apply to the page itself; they are just part of an index listing the tags themselves.</p> - </div><h4 id="conversations"><span class="secno">4.13.4 </span>Conversations</h4><p>This specification does not define a specific element for marking + </div> + + + <h4 id="conversations"><span class="secno">4.13.4 </span>Conversations</h4> + + + + <p>This specification does not define a specific element for marking up conversations, meeting minutes, chat transcripts, dialogues in screenplays, instant message logs, and other situations where - different players take turns in discourse.<p>Instead, authors are encouraged to mark up conversations using + different players take turns in discourse.</p> + + <p>Instead, authors are encouraged to mark up conversations using <code><a href="the-p-element.html#the-p-element" id="p_27">p</a></code> elements and punctuation. Authors who need to mark the speaker for styling purposes are encouraged to use <code><a href="the-span-element.html#the-span-element" id="span_13">span</a></code> or <code><a href="the-b-element.html#the-b-element" id="b_17">b</a></code>. Paragraphs with their text wrapped in the <code><a href="the-i-element.html#the-i-element" id="i_26">i</a></code> element can be used for marking up - stage directions.<div class="example"> + stage directions.</p> + + <div class="example"> <p>This example demonstrates this using an extract from Abbot and Costello's famous sketch, <cite>Who's on first</cite>:</p> @@ -1136,7 +1464,10 @@ <p> Costello: When you pay off the first baseman every month, who gets the money? <p> Abbott: Every dollar of it.</pre> - </div><div class="example"> + </div> + + + <div class="example"> <p>HTML does not have a good way to mark up graphs, so descriptions of interactive conversations from games are more difficult to mark @@ -1190,8 +1521,17 @@ </dd> </ul></pre> - </div><h4 id="footnotes"><span class="secno">4.13.5 </span>Footnotes</h4><p>HTML does not have a dedicated mechanism for marking up - footnotes. Here are the recommended alternatives.<hr><p>For short inline annotations, the <code title="attr-title"><a href="global-attributes.html#the-title-attribute" id="title_35">title</a></code> attribute should be used.<div class="example"> + </div> + + + <h4 id="footnotes"><span class="secno">4.13.5 </span>Footnotes</h4> + + <p>HTML does not have a dedicated mechanism for marking up + footnotes. Here are the recommended alternatives.</p> + + <hr><p>For short inline annotations, the <code title="attr-title"><a href="global-attributes.html#the-title-attribute" id="title_35">title</a></code> attribute should be used.</p> + + <div class="example"> <p>In this example, two parts of a dialogue are annotated with footnote-like content using the <code title="attr-title"><a href="global-attributes.html#the-title-attribute" id="title_36">title</a></code> attribute.</p> @@ -1203,9 +1543,13 @@ <p> <b>Shopkeeper</b>: Sorry, <span <strong>title="This is, of course, a lie."</strong>>we're closing for lunch</span>.</pre> - </div><hr><p>For longer annotations, the <code><a href="the-a-element.html#the-a-element" id="a_58">a</a></code> element should be + </div> + + <hr><p>For longer annotations, the <code><a href="the-a-element.html#the-a-element" id="a_58">a</a></code> element should be used, pointing to an element later in the document. The convention - is that the contents of the link be a number in square brackets.<div class="example"> + is that the contents of the link be a number in square brackets.</p> + + <div class="example"> <p>In this example, a footnote in the dialogue links to a paragraph below the dialogue. The paragraph then reciprocally links back to the @@ -1226,9 +1570,13 @@ contradicting the interviewer and thus making it false.</p> </section></pre> - </div><hr><p>For side notes, longer annotations that apply to entire sections + </div> + + <hr><p>For side notes, longer annotations that apply to entire sections of the text rather than just specific words or sentences, the - <code><a href="the-aside-element.html#the-aside-element" id="aside_10">aside</a></code> element should be used.<div class="example"> + <code><a href="the-aside-element.html#the-aside-element" id="aside_10">aside</a></code> element should be used.</p> + + <div class="example"> <p>In this example, a sidebar is given after a dialogue, giving it some context.</p> @@ -1244,9 +1592,13 @@ Yalt has been publishing incompetently-written phrase books. </aside></pre> - </div><hr><p>For figures or tables, footnotes can be included in the relevant + </div> + + <hr><p>For figures or tables, footnotes can be included in the relevant <code><a href="the-figcaption-element.html#the-figcaption-element" id="figcaption_15">figcaption</a></code> or <code><a href="the-caption-element.html#the-caption-element" id="caption_15">caption</a></code> element, or in - surrounding prose.<div class="example"> + surrounding prose.</p> + + <div class="example"> <p>In this example, a table has cells with footnotes that are given in prose. A <code><a href="the-figure-element.html#the-figure-element" id="figure_19">figure</a></code> element is used to @@ -1279,4 +1631,13 @@ <p id="fn4">4. A lot.</p> </figure></pre> - </div> \ No newline at end of file + </div> + + + + + + + + + \ No newline at end of file Index: the-cite-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-cite-element.html,v retrieving revision 1.118 retrieving revision 1.119 diff -u -d -r1.118 -r1.119 --- the-cite-element.html 21 Feb 2012 21:59:03 -0000 1.118 +++ the-cite-element.html 13 Mar 2012 19:58:56 -0000 1.119 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-s-element.html">← 4.6.5 The s element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-q-element.html">4.6.7 The q element →</a> </div> - <h4 id="the-cite-element"><span class="secno">4.6.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>cite</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_37" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-cite-element"><span class="secno">4.6.6 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>cite</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_37" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_76">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_43">Phrasing content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_22">Palpable content</a>.</dd> @@ -384,14 +424,20 @@ a legal case report, etc). This can be a work that is being quoted or referenced in detail (i.e. a citation), or it can just be a work - that is mentioned in passing.<p>A person's name is not the title of a work — even if people + that is mentioned in passing.</p> + + <p>A person's name is not the title of a work — even if people call that person a piece of work — and the element must therefore not be used to mark up people's names. (In some cases, the <code><a href="the-b-element.html#the-b-element" id="b_4">b</a></code> element might be appropriate for names; e.g. in a gossip article where the names of famous people are keywords rendered with a different style to draw attention to them. In other cases, if an element is <em>really</em> needed, the - <code><a href="the-span-element.html#the-span-element" id="span_8">span</a></code> element can be used.)<div class="example"> + <code><a href="the-span-element.html#the-span-element" id="span_8">span</a></code> element can be used.)</p> + + + + <div class="example"> <p>This next example shows a typical use of the <code><a href="#the-cite-element" id="cite_10">cite</a></code> element:</p> @@ -401,7 +447,9 @@ Swine</cite> by Stephan Pastis. My favorite track is <cite>Jive Samba</cite> by the Cannonball Adderley Sextet.</p></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>This is correct usage:</p> @@ -418,7 +466,9 @@ stood in mid-February 2008, leaving attribute values unquoted is unsafe. This is obviously an over-simplification.</p></pre> - </div><div class="example"> + </div> + + <div class="example"> <p>The <code><a href="#the-cite-element" id="cite_12">cite</a></code> element is obviously a key part of any citation in a bibliography, but it is only used to mark the @@ -427,8 +477,12 @@ <pre><p><cite>Universal Declaration of Human Rights</cite>, United Nations, December 1948. Adopted by General Assembly resolution 217 A (III).</p></pre> - </div><p class="note">A <em>citation</em> is not a <em>quote</em> (for - which the <code><a href="the-q-element.html#the-q-element" id="q_5">q</a></code> element is appropriate).<div class="example"> + </div> + + <p class="note">A <em>citation</em> is not a <em>quote</em> (for + which the <code><a href="the-q-element.html#the-q-element" id="q_5">q</a></code> element is appropriate).</p> + + <div class="example"> <p>This is incorrect usage, because <code><a href="#the-cite-element" id="cite_13">cite</a></code> is not for quotes:</p> @@ -451,4 +505,8 @@ <pre><p>And then <b>Ian</b> said <q>this might be right, in a gossip column, maybe!</q>.</p></pre> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: the-hgroup-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-hgroup-element.html,v retrieving revision 1.120 retrieving revision 1.121 diff -u -d -r1.120 -r1.121 --- the-hgroup-element.html 21 Feb 2012 21:59:05 -0000 1.120 +++ the-hgroup-element.html 13 Mar 2012 19:58:58 -0000 1.121 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-h1-h2-h3-h4-h5-and-h6-elements.html">← 4.4.6 The h1, h2, h3, h4, h5, and h6 elements</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-header-element.html">4.4.8 The header element →</a> </div> - <h4 id="the-hgroup-element"><span class="secno">4.4.7 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>hgroup</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_15" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-hgroup-element"><span class="secno">4.4.7 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>hgroup</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_15" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_31">Flow content</a>.</dd> <dd><a href="content-models.html#heading-content" id="heading-content_3">Heading content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_5">Palpable content</a>.</dd> @@ -366,21 +406,31 @@ heading of a section. The element is used to group a set of <code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h1_9">h1</a></code>–<code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h6_5">h6</a></code> elements when the heading has multiple levels, such as subheadings, alternative titles, or - taglines.<p>For the purposes of document summaries, outlines, and the like, + taglines.</p> + + <p>For the purposes of document summaries, outlines, and the like, the text of <code><a href="#the-hgroup-element" id="hgroup_13">hgroup</a></code> elements is defined to be the text of the highest <a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#rank" id="rank_0" title="rank">ranked</a> <code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h1_10">h1</a></code>–<code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h6_6">h6</a></code> element descendant of the <code><a href="#the-hgroup-element" id="hgroup_14">hgroup</a></code> element, if there are any such elements, and the first such element if there are multiple elements with that <a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#rank" id="rank_1">rank</a>. If there are no such elements, then the text of - the <code><a href="#the-hgroup-element" id="hgroup_15">hgroup</a></code> element is the empty string.<p>Other elements of <a href="content-models.html#heading-content" id="heading-content_4">heading content</a> in the - <code><a href="#the-hgroup-element" id="hgroup_16">hgroup</a></code> element indicate subheadings or subtitles.<p>The <a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#rank" id="rank_2">rank</a> of an <code><a href="#the-hgroup-element" id="hgroup_17">hgroup</a></code> element is the + the <code><a href="#the-hgroup-element" id="hgroup_15">hgroup</a></code> element is the empty string.</p> + + <p>Other elements of <a href="content-models.html#heading-content" id="heading-content_4">heading content</a> in the + <code><a href="#the-hgroup-element" id="hgroup_16">hgroup</a></code> element indicate subheadings or subtitles.</p> + + <p>The <a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#rank" id="rank_2">rank</a> of an <code><a href="#the-hgroup-element" id="hgroup_17">hgroup</a></code> element is the rank of the highest-ranked <code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h1_11">h1</a></code>–<code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h6_7">h6</a></code> element descendant of the <code><a href="#the-hgroup-element" id="hgroup_18">hgroup</a></code> element, if there are any such elements, or otherwise the same as for an <code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h1_12">h1</a></code> - element (the highest rank).<p>The section on <a href="headings-and-sections.html#headings-and-sections" id="headings-and-sections_2">headings and sections</a> + element (the highest rank).</p> + + <p>The section on <a href="headings-and-sections.html#headings-and-sections" id="headings-and-sections_2">headings and sections</a> defines how <code><a href="#the-hgroup-element" id="hgroup_19">hgroup</a></code> elements are assigned to individual - sections.<div class="example"> + sections.</p> + + <div class="example"> <p>Here are some examples of valid headings. In each case, the emphasized text represents the text that would be used as the @@ -401,4 +451,7 @@ mask the <code><a href="the-h1-h2-h3-h4-h5-and-h6-elements.html#the-h1-h2-h3-h4-h5-and-h6-elements" id="h2_5">h2</a></code> element (which acts as a secondary title) from the <a href="headings-and-sections.html#outline" id="outline_3">outline</a> algorithm.</p> - </div> \ No newline at end of file + </div> + + + \ No newline at end of file Index: common-input-element-apis.html =================================================================== RCS file: /sources/public/html5/spec-author-view/common-input-element-apis.html,v retrieving revision 1.24 retrieving revision 1.25 diff -u -d -r1.24 -r1.25 --- common-input-element-apis.html 15 Feb 2012 10:14:01 -0000 1.24 +++ common-input-element-apis.html 13 Mar 2012 19:58:36 -0000 1.25 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="common-input-element-attributes.html">← 4.10.7.2 Common input element attributes</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-button-element.html">4.10.8 The button element →</a> </div> - <h5 id="common-input-element-apis"><span class="secno">4.10.7.3 </span>Common <code><a href="the-input-element.html#the-input-element" id="input_121">input</a></code> element APIs</h5><dl class="domintro"><dt><var title="">input</var> . <code id="dom-input-value" title="dom-input-value"><a href="#dom-input-value">value</a></code> [ = <var title="">value</var> ]</dt> + <h5 id="common-input-element-apis"><span class="secno">4.10.7.3 </span>Common <code><a href="the-input-element.html#the-input-element" id="input_121">input</a></code> element APIs</h5> + + <dl class="domintro"><dt><var title="">input</var> . <code id="dom-input-value" title="dom-input-value"><a href="#dom-input-value">value</a></code> [ = <var title="">value</var> ]</dt> <dd> Index: the-tr-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-tr-element.html,v retrieving revision 1.128 retrieving revision 1.129 diff -u -d -r1.128 -r1.129 --- the-tr-element.html 21 Feb 2012 21:59:09 -0000 1.128 +++ the-tr-element.html 13 Mar 2012 19:59:02 -0000 1.129 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-tfoot-element.html">← 4.9.7 The tfoot element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-td-element.html">4.9.9 The td element →</a> </div> - <h4 id="the-tr-element"><span class="secno">4.9.8 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>tr</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_80" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-tr-element"><span class="secno">4.9.8 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>tr</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_80" title="element-dfn-categories">Categories</a>:</dt> <dd>None.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_80" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>As a child of a <code><a href="the-thead-element.html#the-thead-element" id="thead_15">thead</a></code> element.</dd> @@ -374,7 +414,12 @@ void <a href="#dom-tr-deletecell" title="dom-tr-deleteCell">deleteCell</a>(long index); };</pre> </dd> - </dl><p>The <code><a href="#the-tr-element" id="tr_17">tr</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-td-and-th-elements.html#concept-row" title='Read about this "row" reference in the full HTML5 spec.'>row</a> of <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-td-and-th-elements.html#concept-cell" title='Read about this "cells" reference in the full HTML5 spec.'>cells</a> in a <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-td-and-th-elements.html#concept-table" title='Read about this "table" reference in the full HTML5 spec.'>table</a>.<dl class="domintro"><dt><var title="">tr</var> . <code id="dom-tr-rowindex" title="dom-tr-rowIndex"><a href="#dom-tr-rowindex">rowIndex</a></code></dt> + </dl><p>The <code><a href="#the-tr-element" id="tr_17">tr</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-td-and-th-elements.html#concept-row" title='Read about this "row" reference in the full HTML5 spec.'>row</a> of <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-td-and-th-elements.html#concept-cell" title='Read about this "cells" reference in the full HTML5 spec.'>cells</a> in a <a class="full-spec-link" href="http://dev.w3.org/html5/spec/attributes-common-to-td-and-th-elements.html#concept-table" title='Read about this "table" reference in the full HTML5 spec.'>table</a>.</p> + + + + + <dl class="domintro"><dt><var title="">tr</var> . <code id="dom-tr-rowindex" title="dom-tr-rowIndex"><a href="#dom-tr-rowindex">rowIndex</a></code></dt> <dd> Index: the-sub-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-sub-element.html,v retrieving revision 1.114 retrieving revision 1.115 diff -u -d -r1.114 -r1.115 --- the-sub-element.html 21 Feb 2012 21:59:08 -0000 1.114 +++ the-sub-element.html 13 Mar 2012 19:59:01 -0000 1.115 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-kbd-element.html">← 4.6.14 The kbd element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-i-element.html">4.6.16 The i element →</a> </div> - <h4 id="the-sub-and-sup-elements"><span class="secno">4.6.15 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>sub</code></dfn> and <dfn aria-haspopup="true" role="button" tabindex="0"><code>sup</code></dfn> elements</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_46" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-sub-and-sup-elements"><span class="secno">4.6.15 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>sub</code></dfn> and <dfn aria-haspopup="true" role="button" tabindex="0"><code>sup</code></dfn> elements</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_46" title="element-dfn-categories">Categories</a>:</dt> <dd><a href="content-models.html#flow-content" id="flow-content_85">Flow content</a>.</dd> <dd><a href="content-models.html#phrasing-content" id="phrasing-content_71">Phrasing content</a>.</dd> <dd><a href="content-models.html#palpable-content" id="palpable-content_31">Palpable content</a>.</dd> @@ -364,20 +404,30 @@ <dd>Use <code><a href="elements.html#htmlelement" id="htmlelement_50">HTMLElement</a></code>.</dd> </dl><p>The <code><a href="#the-sub-and-sup-elements" id="sup_2">sup</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> a superscript and the <code><a href="#the-sub-and-sup-elements" id="sub_2">sub</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> - a subscript.<p>These elements must be used only to mark up typographical + a subscript.</p> + + <p>These elements must be used only to mark up typographical conventions with specific meanings, not for typographical presentation for presentation's sake. For example, it would be inappropriate for the <code><a href="#the-sub-and-sup-elements" id="sub_3">sub</a></code> and <code><a href="#the-sub-and-sup-elements" id="sup_3">sup</a></code> elements to be used in the name of the LaTeX document preparation system. In general, authors should use these elements only if the <em>absence</em> of those elements would change the meaning of the - content.<p>In certain languages, superscripts are part of the typographical - conventions for some abbreviations.<div class="example"> + content.</p> + + <p>In certain languages, superscripts are part of the typographical + conventions for some abbreviations.</p> + + <div class="example"> <pre><p>The most beautiful women are <span lang="fr"><abbr>M<sup>lle</sup></abbr> Gwendoline</span> and <span lang="fr"><abbr>M<sup>me</sup></abbr> Denise</span>.</p></pre> - </div><p>The <code><a href="#the-sub-and-sup-elements" id="sub_4">sub</a></code> element can be used inside a - <code><a href="the-var-element.html#the-var-element" id="var_6">var</a></code> element, for variables that have subscripts.<div class="example"> + </div> + + <p>The <code><a href="#the-sub-and-sup-elements" id="sub_4">sub</a></code> element can be used inside a + <code><a href="the-var-element.html#the-var-element" id="var_6">var</a></code> element, for variables that have subscripts.</p> + + <div class="example"> <p>Here, the <code><a href="#the-sub-and-sup-elements" id="sub_5">sub</a></code> element is used to represents the subscript that identifies the variable in a family of @@ -387,10 +437,18 @@ (<var>x<sub><var>i</var></sub></var>, <var>y<sub><var>i</var></sub></var>). For example, the 10th point has coordinate (<var>x<sub>10</sub></var>, <var>y<sub>10</sub></var>).</p></pre> - </div><p>Mathematical expressions often use subscripts and superscripts. + </div> + + <p>Mathematical expressions often use subscripts and superscripts. Authors are encouraged to use MathML for marking up mathematics, but authors may opt to use <code><a href="#the-sub-and-sup-elements" id="sub_6">sub</a></code> and <code><a href="#the-sub-and-sup-elements" id="sup_4">sup</a></code> if - detailed mathematical markup is not desired. <a href="references.html#refsMATHML">[MATHML]</a><div class="example"> + detailed mathematical markup is not desired. <a href="references.html#refsMATHML">[MATHML]</a></p> + + <div class="example"> <pre><var>E</var>=<var>m</var><var>c</var><sup>2</sup></pre> <pre>f(<var>x</var>, <var>n</var>) = log<sub>4</sub><var>x</var><sup><var>n</var></sup></pre> - </div> \ No newline at end of file + </div> + + + + \ No newline at end of file Index: timers.html =================================================================== RCS file: /sources/public/html5/spec-author-view/timers.html,v retrieving revision 1.595 retrieving revision 1.596 diff -u -d -r1.595 -r1.596 --- timers.html 15 Feb 2012 10:14:27 -0000 1.595 +++ timers.html 13 Mar 2012 19:59:03 -0000 1.596 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,15 +380,21 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="webappapis.html">← 6 Web application APIs</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="user-prompts.html">6.4 User prompts →</a> </div> - <h3 id="timers"><span class="secno">6.3 </span>Timers</h3><p>The <code title="dom-windowtimers-setTimeout"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/timers.html#dom-windowtimers-settimeout" title='Read about this "setTimeout()" reference in the full HTML5 spec.'>setTimeout()</a></code> + <h3 id="timers"><span class="secno">6.3 </span>Timers</h3> + + <p>The <code title="dom-windowtimers-setTimeout"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/timers.html#dom-windowtimers-settimeout" title='Read about this "setTimeout()" reference in the full HTML5 spec.'>setTimeout()</a></code> and <code title="dom-windowtimers-setInterval"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/timers.html#dom-windowtimers-setinterval" title='Read about this "setInterval()" reference in the full HTML5 spec.'>setInterval()</a></code> - methods allow authors to schedule timer-based callbacks.<pre class="idl">[NoInterfaceObject] + methods allow authors to schedule timer-based callbacks.</p> + + <pre class="idl">[NoInterfaceObject] interface <dfn aria-haspopup="true" id="windowtimers" role="button" tabindex="0">WindowTimers</dfn> { long <a class="full-spec-link" href="http://dev.w3.org/html5/spec/timers.html#dom-windowtimers-settimeout" title='Read about this "setTimeout" reference in the full HTML5 spec.'>setTimeout</a>(Function handler, optional long timeout, any... args); long <a class="full-spec-link" href="http://dev.w3.org/html5/spec/timers.html#dom-windowtimers-settimeout" title='Read about this "setTimeout" reference in the full HTML5 spec.'>setTimeout</a>([AllowAny] DOMString handler, optional long timeout, any... args); @@ -361,7 +403,11 @@ long <a class="full-spec-link" href="http://dev.w3.org/html5/spec/timers.html#dom-windowtimers-setinterval" title='Read about this "setInterval" reference in the full HTML5 spec.'>setInterval</a>([AllowAny] DOMString handler, optional long timeout, any... args); void <a href="#dom-windowtimers-clearinterval" title="dom-windowtimers-clearInterval">clearInterval</a>(long handle); }; -<a href="browsers.html#window" id="window_26">Window</a> implements <a href="#windowtimers" id="windowtimers_0">WindowTimers</a>;</pre><dl class="domintro"><dt><var title="">handle</var> = <var title="">window</var> . <code title="dom-windowtimers-setTimeout"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/timers.html#dom-windowtimers-settimeout" title='Read about this "setTimeout" reference in the full HTML5 spec.'>setTimeout</a></code>( <var title="">handler</var> [, <var title="">timeout</var> [, <var title="">arguments</var>... ] ] )</dt> +<a href="browsers.html#window" id="window_26">Window</a> implements <a href="#windowtimers" id="windowtimers_0">WindowTimers</a>;</pre> + + + + <dl class="domintro"><dt><var title="">handle</var> = <var title="">window</var> . <code title="dom-windowtimers-setTimeout"><a class="full-spec-link" href="http://dev.w3.org/html5/spec/timers.html#dom-windowtimers-settimeout" title='Read about this "setTimeout" reference in the full HTML5 spec.'>setTimeout</a></code>( <var title="">handler</var> [, <var title="">timeout</var> [, <var title="">arguments</var>... ] ] )</dt> <dd> @@ -415,4 +461,10 @@ </dl><p class="note">This API does not guarantee that timers will run exactly on schedule. Delays due to CPU load, other tasks, etc, are - to be expected. \ No newline at end of file + to be expected.</p> + + + + + + \ No newline at end of file Index: namespaces.html =================================================================== RCS file: /sources/public/html5/spec-author-view/namespaces.html,v retrieving revision 1.106 retrieving revision 1.107 diff -u -d -r1.106 -r1.107 --- namespaces.html 15 Feb 2012 10:14:12 -0000 1.106 +++ namespaces.html 13 Mar 2012 19:58:43 -0000 1.107 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,18 +380,40 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="common-dom-interfaces.html">← 2.6 Common DOM interfaces</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="dom.html">3 Semantics, structure, and APIs of HTML documents →</a> </div> - <h3 id="namespaces"><span class="secno">2.7 </span>Namespaces</h3><p>The <dfn aria-haspopup="true" id="html-namespace-0" role="button" tabindex="0">HTML namespace</dfn> is: <code>http://www.w3.org/1999/xhtml</code><p>The <dfn aria-haspopup="true" id="mathml-namespace" role="button" tabindex="0">MathML namespace</dfn> is: <code>http://www.w3.org/1998/Math/MathML</code><p>The <dfn aria-haspopup="true" id="svg-namespace" role="button" tabindex="0">SVG namespace</dfn> is: <code>http://www.w3.org/2000/svg</code><p>The <dfn aria-haspopup="true" id="xlink-namespace" role="button" tabindex="0">XLink namespace</dfn> is: <code>http://www.w3.org/1999/xlink</code><p>The <dfn aria-haspopup="true" id="xml-namespace" role="button" tabindex="0">XML namespace</dfn> is: <code>http://www.w3.org/XML/1998/namespace</code><p>The <dfn aria-haspopup="true" id="xmlns-namespace" role="button" tabindex="0">XMLNS namespace</dfn> is: <code>http://www.w3.org/2000/xmlns/</code><hr><p>Data mining tools and other user agents that perfor operations + <h3 id="namespaces"><span class="secno">2.7 </span>Namespaces</h3> + + <p>The <dfn aria-haspopup="true" id="html-namespace-0" role="button" tabindex="0">HTML namespace</dfn> is: <code>http://www.w3.org/1999/xhtml</code></p> + + <p>The <dfn aria-haspopup="true" id="mathml-namespace" role="button" tabindex="0">MathML namespace</dfn> is: <code>http://www.w3.org/1998/Math/MathML</code></p> + + <p>The <dfn aria-haspopup="true" id="svg-namespace" role="button" tabindex="0">SVG namespace</dfn> is: <code>http://www.w3.org/2000/svg</code></p> + + <p>The <dfn aria-haspopup="true" id="xlink-namespace" role="button" tabindex="0">XLink namespace</dfn> is: <code>http://www.w3.org/1999/xlink</code></p> + + <p>The <dfn aria-haspopup="true" id="xml-namespace" role="button" tabindex="0">XML namespace</dfn> is: <code>http://www.w3.org/XML/1998/namespace</code></p> + + <p>The <dfn aria-haspopup="true" id="xmlns-namespace" role="button" tabindex="0">XMLNS namespace</dfn> is: <code>http://www.w3.org/2000/xmlns/</code></p> + + <hr><p>Data mining tools and other user agents that perform operations on content without running scripts, evaluating CSS or XPath expressions, or otherwise exposing the resulting DOM to arbitrary content, may "support namespaces" by just asserting that their DOM node analogues are in certain namespaces, without actually exposing - the above strings.<hr><p class="note">In <a href="syntax.html#syntax" id="the-html-syntax_2">the HTML syntax</a>, namespace prefixes + the above strings.</p> + + <hr><p class="note">In <a href="syntax.html#syntax" id="the-html-syntax_2">the HTML syntax</a>, namespace prefixes and namespace declarations do not have the same effect as in XML. For instance, the colon has no special meaning in HTML element - names. \ No newline at end of file + names.</p> + + + + \ No newline at end of file Index: the-rt-element.html =================================================================== RCS file: /sources/public/html5/spec-author-view/the-rt-element.html,v retrieving revision 1.116 retrieving revision 1.117 diff -u -d -r1.116 -r1.117 --- the-rt-element.html 21 Feb 2012 21:59:07 -0000 1.116 +++ the-rt-element.html 13 Mar 2012 19:59:00 -0000 1.117 @@ -193,7 +193,43 @@ fieldset > :last-child { margin-bottom: 0; } fieldset p { margin: 0.5em 0; } - </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-ED" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><style type="text/css"> + .stability { + position: fixed; + bottom: 0; + left: 0; right: 0; + margin: 0 auto 0 auto; + width: 50%; + background: maroon; color: yellow; + -webkit-border-radius: 1em 1em 0 0; + -moz-border-radius: 1em 1em 0 0; + border-radius: 1em 1em 0 0; + -moz-box-shadow: 0 0 1em #500; + -webkit-box-shadow: 0 0 1em #500; + box-shadow: 0 0 1em red; + padding: 0.5em 1em; + text-align: center; + } + .stability strong { + display: block; + } + .stability input { + appearance: none; margin: 0; border: 0; padding: 0.25em 0.5em; background: transparent; color: black; + position: absolute; top: -0.5em; right: 0; font: 1.25em sans-serif; text-align: center; + } + .stability input:hover { + color: white; + text-shadow: 0 0 2px black; + } + .stability input:active { + padding: 0.3em 0.45em 0.2em 0.55em; + } + .stability :link, .stability :visited, + .stability :link:hover, .stability :visited:hover { + background: transparent; + color: white; + } + + </style><link href="style.css" rel="stylesheet"><link href="http://www.w3.org/StyleSheets/TR/W3C-WD" rel="stylesheet" type="text/css"><script src="link-fixup.js" type="text/javascript"></script><meta content="noindex" name="robots"><style type="text/css"> .applies thead th > * { display: block; } .applies thead code { display: block; } @@ -344,13 +380,17 @@ <h1>HTML5: Edition for Web Authors</h1> - </div><div class="prev_next"> + </div> + + <div class="prev_next"> <a href="the-ruby-element.html">← 4.6.20 The ruby element</a> – <a href="Overview.html#contents">Table of contents</a> – <a href="the-rp-element.html">4.6.22 The rp element →</a> </div> - <h4 id="the-rt-element"><span class="secno">4.6.21 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>rt</code></dfn> element</h4><dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_52" title="element-dfn-categories">Categories</a>:</dt> + <h4 id="the-rt-element"><span class="secno">4.6.21 </span>The <dfn aria-haspopup="true" role="button" tabindex="0"><code>rt</code></dfn> element</h4> + + <dl class="element"><dt><a href="element-definitions.html#element-dfn-categories" id="element-dfn-categories_52" title="element-dfn-categories">Categories</a>:</dt> <dd>None.</dd> <dt><a href="element-definitions.html#element-dfn-contexts" id="element-dfn-contexts_52" title="element-dfn-contexts">Contexts in which this element can be used</a>:</dt> <dd>As a child of a <code><a href="the-ruby-element.html#the-ruby-element" id="ruby_8">ruby</a></code> element.</dd> @@ -361,7 +401,14 @@ <dt><a href="element-definitions.html#element-dfn-dom" id="element-dfn-dom_52" title="element-dfn-dom">DOM interface</a>:</dt> <dd>Uses <code><a href="elements.html#htmlelement" id="htmlelement_56">HTMLElement</a></code>.</dd> </dl><p>The <code><a href="#the-rt-element" id="rt_6">rt</a></code> element marks the ruby text component of a - ruby annotation.<p>An <code><a href="#the-rt-element" id="rt_7">rt</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> an + ruby annotation.</p> + + <p>An <code><a href="#the-rt-element" id="rt_7">rt</a></code> element <a class="full-spec-link" href="http://dev.w3.org/html5/spec/rendering.html#represents" title='Read about this "represents" reference in the full HTML5 spec.'>represents</a> an annotation (given by its children) for the zero or more nodes of phrasing content that immediately precedes it in the - <code><a href="the-ruby-element.html#the-ruby-element" id="ruby_9">ruby</a></code> element, ignoring <code><a href="the-rp-element.html#the-rp-element" id="rp_3">rp</a></code> elements. \ No newline at end of file + <code><a href="the-ruby-element.html#the-ruby-element" id="ruby_9">ruby</a></code> element, ignoring <code><a href="the-rp-element.html#the-rp-element" id="rp_3">rp</a></code> elements.</p> + + + + + \ No newline at end of file
Received on Tuesday, 13 March 2012 20:00:13 UTC