forked from whatwg-cn/html
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathskeleton.html
More file actions
209 lines (189 loc) · 99.2 KB
/
skeleton.html
File metadata and controls
209 lines (189 loc) · 99.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
<!-- -*- mode: Text; fill-column: 100 -*- vim: set textwidth=100 :
! EDITOR NOTES
!
! Adding a new element involves editing the following sections:
! - section for the element itself
! - descriptions of the element's categories
! - images/content-venn.svg
! - syntax, if it's void or otherwise special
! - parser, if it's not phrasing-level
! - rendering
! - obsolete section
! - element, attribute, content model, and interface indexes
!
! Adding a new attribute involves editing the following sections:
! - The IDL and content attributes for the relevant elements
! - element and attribute indexes
!-->
<!--
! https://lists.w3.org/Archives/Public/www-archive/2014Apr/0034.html
!-->
<!DOCTYPE html> <!-- Note: This file is NOT HTML, it's a proprietary language that is then post-processed into HTML. -->
<html lang="en-US-x-hixie">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
<title w-nodev>HTML Standard</title>
<title w-dev>HTML Standard, Developer's Edition</title>
<meta name="theme-color" content="#3c790a">
<link w-nodev rel="stylesheet" href="https://resources.whatwg.org/spec.css">
<link w-nodev w-noreview rel="stylesheet" href="https://resources.whatwg.org/standard.css">
<link w-nohtml w-nodev w-nosnap rel="stylesheet" href="https://resources.whatwg.org/review-draft.css">
<link w-nosnap w-noreview rel="icon" href="https://resources.whatwg.org/logo.svg">
<link w-nohtml w-nodev rel="icon" href="https://resources.whatwg.org/logo-snapshot.svg">
<script>
function toggleStatus(div) {
div.parentNode.classList.toggle('wrapped');
}
</script>
<style>
.status { min-height: 0.6em; font: 1em sans-serif; width: 9em; padding: 0.3em; position: absolute; z-index: 8; right: 0.3em; background: #EEE; color: black; box-shadow: 0 0 3px #999; overflow: hidden; margin: -2em 0 0 0; border-collapse: initial; border-spacing: initial; }
.status:hover { z-index: 9; }
.status:focus-within { z-index: 9; }
.status.wrapped > :not(input) { display: none; }
.status > input { position: absolute; left: 0; top: 0; width: 1em; height: 1em; border: none; background: transparent; padding: 0; margin: 0; }
.status > p { font-size: 0.6em; margin: 0; padding: 0; }
.status > p + p { padding-top: 0.5em; }
.status > p > strong { margin-left: 1.5em; }
.status > .support { display: block; }
.status > .support > span { padding: 0.2em 0; display: block; display: table; }
.status > .support > span.partial { color: #666666; filter: grayscale(50%); }
.status > .support > span.no { color: #CCCCCC; filter: grayscale(100%); }
.status > .support > span.no::before { opacity: 0.5; }
.status > .support > span:first-of-type { padding-top: 0.5em; }
.status > .support > span > span { padding: 0 0.5em; display: table-cell; vertical-align: top; }
.status > .support > span > span:first-child { width: 100%; }
.status > .support > span > span:last-child { width: 100%; white-space: pre; padding: 0; }
.status > .support > span::before { content: ' '; display: table-cell; min-width: 1.5em; height: 1.5em; background: no-repeat center center; background-size: contain; text-align: right; font-size: 0.75em; font-weight: bold; }
.status > .support > .and_chr::before { background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); }
.status > .support > .and_ff::before { background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); }
.status > .support > .and_uc::before { background-image: url(https://resources.whatwg.org/browser-logos/uc.png); } /* UC Browser for Android */
.status > .support > .android::before { background-image: url(https://resources.whatwg.org/browser-logos/android.svg); }
.status > .support > .bb::before { background-image: url(https://resources.whatwg.org/browser-logos/bb.jpg); } /* Blackberry Browser */
.status > .support > .chrome::before { background-image: url(https://resources.whatwg.org/browser-logos/chrome.svg); }
.status > .support > .edge::before { background-image: url(https://resources.whatwg.org/browser-logos/edge.svg); }
.status > .support > .firefox::before { background-image: url(https://resources.whatwg.org/browser-logos/firefox.png); }
.status > .support > .ie::before { background-image: url(https://resources.whatwg.org/browser-logos/ie.png); }
.status > .support > .ie_mob::before { background-image: url(https://resources.whatwg.org/browser-logos/ie-mobile.svg); }
.status > .support > .ios_saf::before { background-image: url(https://resources.whatwg.org/browser-logos/safari-ios.svg); }
.status > .support > .op_mini::before { background-image: url(https://resources.whatwg.org/browser-logos/opera-mini.png); }
.status > .support > .op_mob::before { background-image: url(https://resources.whatwg.org/browser-logos/opera.png); }
.status > .support > .opera::before { background-image: url(https://resources.whatwg.org/browser-logos/opera.png); }
.status > .support > .safari::before { background-image: url(https://resources.whatwg.org/browser-logos/safari.png); }
.status > .support > .samsung::before { background-image: url(https://resources.whatwg.org/browser-logos/samsung.png); }
.status > .caniuse { text-align: right; font-style: italic; width: 100%; }
.status > .caniuse + p { margin-top: 0.5em; border-top: 1px solid silver; }
@media (max-width: 767px) {
.status { right: -9em; }
}
</style>
<link w-dev rel="stylesheet" href="styles.css">
<style w-nodev>
[hidden] { display: none; }
.bad, .bad *:not(.X\58X) { color: gray; border-color: gray; background: transparent; }
.fingerprint { position: absolute; right: 0; z-index: 5; }
@media (max-width: 767px) {
.fingerprint { max-width: 35px; }
}
.applies .yes, .yesno .yes { background: yellow; }
.yesno .yes, .yesno .no { text-align: center; }
.applies thead th > * { display: block; }
.applies thead code { display: block; }
.applies td { text-align: center; }
.matrix, .matrix td { border: hidden; text-align: right; }
.matrix { margin-left: 2em; }
.vertical-summary-table tr > th[rowspan="2"]:first-child + th,
.vertical-summary-table tr > td[rowspan="2"]:first-child + td { border-bottom: hidden; }
.dice-example { border-collapse: collapse; border-style: hidden solid solid hidden; border-width: thin; margin-left: 3em; }
.dice-example caption { width: 30em; font-size: smaller; font-style: italic; padding: 0.75em 0; text-align: left; }
.dice-example td, .dice-example th { border: solid thin; width: 1.35em; height: 1.05em; text-align: center; padding: 0; }
td.eg { border-width: thin; text-align: center; }
#table-example-1 { border: solid thin; border-collapse: collapse; margin-left: 3em; }
#table-example-1 caption { padding-bottom: 0.5em; }
#table-example-1 thead, #table-example-1 tbody { border: none; }
#table-example-1 th, #table-example-1 td { border: solid thin; }
#table-example-1 th { font-weight: normal; }
#table-example-1 td { border-style: none solid; vertical-align: top; }
#table-example-1 th { padding: 0.5em; vertical-align: middle; text-align: center; }
#table-example-1 tbody tr:first-child td { padding-top: 0.5em; }
#table-example-1 tbody tr:last-child td { padding-bottom: 1.5em; }
#table-example-1 tbody td:first-child { padding-left: 2.5em; padding-right: 0; width: 9em; }
#table-example-1 tbody td:first-child::after { content: leader(". "); }
#table-example-1 tbody td { padding-left: 2em; padding-right: 2em; }
#table-example-1 tbody td:first-child + td { width: 10em; }
#table-example-1 tbody td:first-child + td ~ td { width: 2.5em; }
#table-example-1 tbody td:first-child + td + td + td ~ td { width: 1.25em; }
.apple-table-examples { border: none; border-collapse: separate; border-spacing: 1.5em 0em; width: 40em; margin-left: 3em; }
.apple-table-examples * { font-family: "Times", serif; }
.apple-table-examples td, .apple-table-examples th { border: none; white-space: nowrap; padding-top: 0; padding-bottom: 0; }
.apple-table-examples tbody th:first-child { border-left: none; width: 100%; }
.apple-table-examples thead th:first-child ~ th { font-size: smaller; font-weight: bolder; border-bottom: solid 2px; text-align: center; }
.apple-table-examples tbody th::after, .apple-table-examples tfoot th::after { content: leader(". ") }
.apple-table-examples tbody th, .apple-table-examples tfoot th { font: inherit; text-align: left; }
.apple-table-examples td { text-align: right; vertical-align: top; }
.apple-table-examples.e1 tbody tr:last-child td { border-bottom: solid 1px; }
.apple-table-examples.e1 tbody + tbody tr:last-child td { border-bottom: double 3px; }
.apple-table-examples.e2 th[scope=row] { padding-left: 1em; }
.apple-table-examples sup { line-height: 0; }
.three-column-nowrap tr > td:first-child,
.three-column-nowrap tr > td:first-child + td,
.three-column-nowrap tr > td:first-child + td + td { white-space: nowrap; }
.details-example img { vertical-align: top; }
.parse-error-table td > p:first-child { margin-top: 0; }
#named-character-references-table {
white-space: nowrap;
font-size: 0.6em;
column-width: 30em;
column-gap: 1em;
-moz-column-width: 30em;
-moz-column-gap: 1em;
-webkit-column-width: 30em;
-webkit-column-gap: 1em;
}
#named-character-references-table > table > tbody > tr > td:first-child + td,
#named-character-references-table > table > tbody > tr > td:last-child { text-align: center; }
#named-character-references-table > table > tbody > tr > td:last-child:hover > span { position: absolute; top: auto; left: auto; margin-left: 0.5em; line-height: 1.2; font-size: 5em; border: outset; padding: 0.25em 0.5em; background: white; width: 1.25em; height: auto; text-align: center; }
#named-character-references-table > table > tbody > tr#entity-CounterClockwiseContourIntegral > td:first-child { font-size: 0.5em; }
.glyph.control { color: red; }
#table-example-1 * { font-family: "Essays1743", serif; line-height: 1.01em; }
@font-face {
font-family: 'Essays1743';
src: url('/fonts/Essays1743.ttf');
}
@font-face {
font-family: 'Essays1743';
font-weight: bold;
src: url('/fonts/Essays1743-Bold.ttf');
}
@font-face {
font-family: 'Essays1743';
font-style: italic;
src: url('/fonts/Essays1743-Italic.ttf');
}
@font-face {
font-family: 'Essays1743';
font-style: italic;
font-weight: bold;
src: url('/fonts/Essays1743-BoldItalic.ttf');
}
@media (max-width: 767px) {
#abstractimg { width: 100%; }
}
#abstractimg, #abstractimg text { font: inherit; }
#abstractimg rect { fill: #424242; }
#abstractimg text { fill: #ffffff; font-size: 18px }
#abstractimg .top { word-spacing: 50px; text-anchor: middle; }
#abstractimg .left, #abstractimg .bottom { word-spacing: 12px; }
#abstractimg .right { font-size: 25px; }
</style>
</head>
<body>
<script w-dev src="search.js" async></script>
<script w-nodev w-noreview src="/html-dfn.js" async></script>
<script w-nodev w-noreview src="https://resources.whatwg.org/file-issue.js" async data-file-issue-url="https://github.com/whatwg/html/issues/new"></script>
<header class="head with-buttons" id="head">
<a href="https://whatwg.org/" class="logo"><img width="100" height="100" alt="WHATWG" src="https://resources.whatwg.org/logo.svg"></a>
<hgroup w-nodev>
<h1 class="allcaps">HTML</h1>
<file src="living-standard-mdash-last-updated-date-01-jan-1901"><file src="commit-snapshot-mdash-last-updated-date-01-jan-1901"><file src="review-draft-mdash-published-date-01-jan-1901"><file src="developers-edition-mdash-last-updated-date-01-jan-1901"><file src="table-of-contents"><file src="full-table-of-contents"><file src="about-this-specification"><file src="introduction/index"><file src="introduction/where-does-this-specification-fit"><file src="introduction/is-this-html5"><file src="introduction/background"><file src="introduction/audience"><file src="introduction/scope"><file src="introduction/history"><file src="introduction/design-notes/index"><file src="introduction/design-notes/serializability-of-script-execution"><file src="introduction/design-notes/compliance-with-other-specifications"><file src="introduction/design-notes/extensibility"><file src="introduction/html-vs-xml-syntax"><file src="introduction/structure-of-this-specification/index"><file src="introduction/structure-of-this-specification/how-to-read-this-specification"><file src="introduction/structure-of-this-specification/typographic-conventions"><file src="introduction/privacy-concerns/index"><file src="introduction/privacy-concerns/cross-site-communication"><file src="introduction/a-quick-introduction-to-html/index"><file src="introduction/a-quick-introduction-to-html/writing-secure-applications-with-html"><file src="introduction/a-quick-introduction-to-html/common-pitfalls-to-avoid-when-using-the-scripting-apis"><file src="introduction/a-quick-introduction-to-html/how-to-catch-mistakes-when-writing-html-validators-and-conformance-checkers"><file src="introduction/conformance-requirements-for-authors/index"><file src="introduction/conformance-requirements-for-authors/presentational-markup"><file src="introduction/conformance-requirements-for-authors/syntax-errors"><file src="introduction/conformance-requirements-for-authors/restrictions-on-content-models-and-on-attribute-values"><file src="introduction/suggested-reading"><file src="common-infrastructure/index"><file src="common-infrastructure/terminology/index"><file src="common-infrastructure/terminology/parallelism"><file src="common-infrastructure/terminology/resources"><file src="common-infrastructure/terminology/xml-compatibility"><file src="common-infrastructure/terminology/dom-trees"><file src="common-infrastructure/terminology/scripting"><file src="common-infrastructure/terminology/plugins"><file src="common-infrastructure/terminology/character-encodings"><file src="common-infrastructure/terminology/conformance-classes"><file src="common-infrastructure/terminology/dependencies"><file src="common-infrastructure/terminology/extensibility"><file src="common-infrastructure/terminology/interactions-with-xpath-and-xslt"><file src="common-infrastructure/case-sensitivity-and-string-comparison"><file src="common-infrastructure/common-microsyntaxes/index"><file src="common-infrastructure/common-microsyntaxes/common-parser-idioms"><file src="common-infrastructure/common-microsyntaxes/boolean-attributes"><file src="common-infrastructure/common-microsyntaxes/keywords-and-enumerated-attributes"><file src="common-infrastructure/common-microsyntaxes/numbers/index"><file src="common-infrastructure/common-microsyntaxes/numbers/signed-integers"><file src="common-infrastructure/common-microsyntaxes/numbers/non-negative-integers"><file src="common-infrastructure/common-microsyntaxes/numbers/floating-point-numbers"><file src="common-infrastructure/common-microsyntaxes/numbers/percentages-and-lengths"><file src="common-infrastructure/common-microsyntaxes/numbers/non-zero-percentages-and-lengths"><file src="common-infrastructure/common-microsyntaxes/numbers/lists-of-floating-point-numbers"><file src="common-infrastructure/common-microsyntaxes/numbers/lists-of-dimensions"><file src="common-infrastructure/common-microsyntaxes/dates-and-times/index"><file src="common-infrastructure/common-microsyntaxes/dates-and-times/months"><file src="common-infrastructure/common-microsyntaxes/dates-and-times/dates"><file src="common-infrastructure/common-microsyntaxes/dates-and-times/yearless-dates"><file src="common-infrastructure/common-microsyntaxes/dates-and-times/times"><file src="common-infrastructure/common-microsyntaxes/dates-and-times/local-dates-and-times"><file src="common-infrastructure/common-microsyntaxes/dates-and-times/time-zones"><file src="common-infrastructure/common-microsyntaxes/dates-and-times/global-dates-and-times"><file src="common-infrastructure/common-microsyntaxes/dates-and-times/weeks"><file src="common-infrastructure/common-microsyntaxes/dates-and-times/durations"><file src="common-infrastructure/common-microsyntaxes/dates-and-times/vaguer-moments-in-time"><file src="common-infrastructure/common-microsyntaxes/colors"><file src="common-infrastructure/common-microsyntaxes/space-separated-tokens"><file src="common-infrastructure/common-microsyntaxes/comma-separated-tokens"><file src="common-infrastructure/common-microsyntaxes/references"><file src="common-infrastructure/common-microsyntaxes/media-queries"><file src="common-infrastructure/urls/index"><file src="common-infrastructure/urls/terminology"><file src="common-infrastructure/urls/parsing-urls"><file src="common-infrastructure/urls/dynamic-changes-to-base-urls"><file src="common-infrastructure/fetching-resources/index"><file src="common-infrastructure/fetching-resources/terminology"><file src="common-infrastructure/fetching-resources/determining-the-type-of-a-resource"><file src="common-infrastructure/fetching-resources/extracting-character-encodings-from-meta-elements"><file src="common-infrastructure/fetching-resources/cors-settings-attributes"><file src="common-infrastructure/fetching-resources/referrer-policy-attributes"><file src="common-infrastructure/fetching-resources/nonce-attributes"><file src="common-infrastructure/common-dom-interfaces/index"><file src="common-infrastructure/common-dom-interfaces/reflecting-content-attributes-in-idl-attributes"><file src="common-infrastructure/common-dom-interfaces/collections/index"><file src="common-infrastructure/common-dom-interfaces/collections/the-htmlallcollection-interface/index"><file src="common-infrastructure/common-dom-interfaces/collections/the-htmlallcollection-interface/call-thisargument-argumentslist"><file src="common-infrastructure/common-dom-interfaces/collections/the-htmlformcontrolscollection-interface"><file src="common-infrastructure/common-dom-interfaces/collections/the-htmloptionscollection-interface"><file src="common-infrastructure/common-dom-interfaces/the-domstringlist-interface"><file src="common-infrastructure/common-dom-interfaces/garbage-collection"><file src="common-infrastructure/safe-passing-of-structured-data/index"><file src="common-infrastructure/safe-passing-of-structured-data/serializable-objects"><file src="common-infrastructure/safe-passing-of-structured-data/transferable-objects"><file src="common-infrastructure/safe-passing-of-structured-data/structuredserializeinternal-value-forstorage-memory"><file src="common-infrastructure/safe-passing-of-structured-data/structuredserialize-value"><file src="common-infrastructure/safe-passing-of-structured-data/structuredserializeforstorage-value"><file src="common-infrastructure/safe-passing-of-structured-data/structureddeserialize-serialized-targetrealm-memory"><file src="common-infrastructure/safe-passing-of-structured-data/structuredserializewithtransfer-value-transferlist"><file src="common-infrastructure/safe-passing-of-structured-data/structureddeserializewithtransfer-serializewithtransferresult-targetrealm"><file src="common-infrastructure/safe-passing-of-structured-data/performing-serialization-and-transferring-from-other-specifications"><file src="semantics-structure-and-apis-of-html-documents/index"><file src="semantics-structure-and-apis-of-html-documents/documents/index"><file src="semantics-structure-and-apis-of-html-documents/documents/the-document-object"><file src="semantics-structure-and-apis-of-html-documents/documents/resource-metadata-management"><file src="semantics-structure-and-apis-of-html-documents/documents/dom-tree-accessors"><file src="semantics-structure-and-apis-of-html-documents/elements/index"><file src="semantics-structure-and-apis-of-html-documents/elements/semantics"><file src="semantics-structure-and-apis-of-html-documents/elements/elements-in-the-dom"><file src="semantics-structure-and-apis-of-html-documents/elements/html-element-constructors"><file src="semantics-structure-and-apis-of-html-documents/elements/element-definitions/index"><file src="semantics-structure-and-apis-of-html-documents/elements/element-definitions/attributes"><file src="semantics-structure-and-apis-of-html-documents/elements/content-models/index"><file src="semantics-structure-and-apis-of-html-documents/elements/content-models/the-nothing-content-model"><file src="semantics-structure-and-apis-of-html-documents/elements/content-models/kinds-of-content/index"><file src="semantics-structure-and-apis-of-html-documents/elements/content-models/kinds-of-content/metadata-content"><file src="semantics-structure-and-apis-of-html-documents/elements/content-models/kinds-of-content/flow-content"><file src="semantics-structure-and-apis-of-html-documents/elements/content-models/kinds-of-content/sectioning-content"><file src="semantics-structure-and-apis-of-html-documents/elements/content-models/kinds-of-content/heading-content"><file src="semantics-structure-and-apis-of-html-documents/elements/content-models/kinds-of-content/phrasing-content"><file src="semantics-structure-and-apis-of-html-documents/elements/content-models/kinds-of-content/embedded-content"><file src="semantics-structure-and-apis-of-html-documents/elements/content-models/kinds-of-content/interactive-content"><file src="semantics-structure-and-apis-of-html-documents/elements/content-models/kinds-of-content/palpable-content"><file src="semantics-structure-and-apis-of-html-documents/elements/content-models/kinds-of-content/script-supporting-elements"><file src="semantics-structure-and-apis-of-html-documents/elements/content-models/transparent-content-models"><file src="semantics-structure-and-apis-of-html-documents/elements/content-models/paragraphs"><file src="semantics-structure-and-apis-of-html-documents/elements/global-attributes/index"><file src="semantics-structure-and-apis-of-html-documents/elements/global-attributes/the-title-attribute"><file src="semantics-structure-and-apis-of-html-documents/elements/global-attributes/the-lang-and-xml-lang-attributes"><file src="semantics-structure-and-apis-of-html-documents/elements/global-attributes/the-translate-attribute"><file src="semantics-structure-and-apis-of-html-documents/elements/global-attributes/the-dir-attribute"><file src="semantics-structure-and-apis-of-html-documents/elements/global-attributes/the-style-attribute"><file src="semantics-structure-and-apis-of-html-documents/elements/global-attributes/embedding-custom-non-visible-data-with-the-data-attributes"><file src="semantics-structure-and-apis-of-html-documents/elements/the-innertext-idl-attribute"><file src="semantics-structure-and-apis-of-html-documents/elements/requirements-relating-to-the-bidirectional-algorithm/index"><file src="semantics-structure-and-apis-of-html-documents/elements/requirements-relating-to-the-bidirectional-algorithm/authoring-conformance-criteria-for-bidirectional-algorithm-formatting-characters"><file src="semantics-structure-and-apis-of-html-documents/elements/requirements-relating-to-the-bidirectional-algorithm/user-agent-conformance-criteria"><file src="semantics-structure-and-apis-of-html-documents/elements/requirements-related-to-aria-and-to-platform-accessibility-apis"><file src="the-elements-of-html/index"><file src="the-elements-of-html/the-document-element/index"><file src="the-elements-of-html/the-document-element/the-html-element"><file src="the-elements-of-html/document-metadata/index"><file src="the-elements-of-html/document-metadata/the-head-element"><file src="the-elements-of-html/document-metadata/the-title-element"><file src="the-elements-of-html/document-metadata/the-base-element"><file src="the-elements-of-html/document-metadata/the-link-element/index"><file src="the-elements-of-html/document-metadata/the-link-element/processing-the-media-attribute"><file src="the-elements-of-html/document-metadata/the-link-element/processing-the-type-attribute"><file src="the-elements-of-html/document-metadata/the-link-element/obtaining-a-resource-from-a-link-element"><file src="the-elements-of-html/document-metadata/the-link-element/processing-link-headers"><file src="the-elements-of-html/document-metadata/the-link-element/providing-users-with-a-means-to-follow-hyperlinks-created-using-the-link-element"><file src="the-elements-of-html/document-metadata/the-meta-element/index"><file src="the-elements-of-html/document-metadata/the-meta-element/standard-metadata-names"><file src="the-elements-of-html/document-metadata/the-meta-element/other-metadata-names"><file src="the-elements-of-html/document-metadata/the-meta-element/pragma-directives"><file src="the-elements-of-html/document-metadata/the-meta-element/specifying-the-documents-character-encoding"><file src="the-elements-of-html/document-metadata/the-style-element"><file src="the-elements-of-html/document-metadata/interactions-of-styling-and-scripting"><file src="the-elements-of-html/sections/index"><file src="the-elements-of-html/sections/the-body-element"><file src="the-elements-of-html/sections/the-article-element"><file src="the-elements-of-html/sections/the-section-element"><file src="the-elements-of-html/sections/the-nav-element"><file src="the-elements-of-html/sections/the-aside-element"><file src="the-elements-of-html/sections/the-h1-h2-h3-h4-h5-and-h6-elements"><file src="the-elements-of-html/sections/the-hgroup-element"><file src="the-elements-of-html/sections/the-header-element"><file src="the-elements-of-html/sections/the-footer-element"><file src="the-elements-of-html/sections/the-address-element"><file src="the-elements-of-html/sections/headings-and-sections/index"><file src="the-elements-of-html/sections/headings-and-sections/creating-an-outline"><file src="the-elements-of-html/sections/headings-and-sections/sample-outlines"><file src="the-elements-of-html/sections/headings-and-sections/exposing-outlines-to-users"><file src="the-elements-of-html/sections/usage-summary/index"><file src="the-elements-of-html/sections/usage-summary/article-or-section"><file src="the-elements-of-html/grouping-content/index"><file src="the-elements-of-html/grouping-content/the-p-element"><file src="the-elements-of-html/grouping-content/the-hr-element"><file src="the-elements-of-html/grouping-content/the-pre-element"><file src="the-elements-of-html/grouping-content/the-blockquote-element"><file src="the-elements-of-html/grouping-content/the-ol-element"><file src="the-elements-of-html/grouping-content/the-ul-element"><file src="the-elements-of-html/grouping-content/the-menu-element"><file src="the-elements-of-html/grouping-content/the-li-element"><file src="the-elements-of-html/grouping-content/the-dl-element"><file src="the-elements-of-html/grouping-content/the-dt-element"><file src="the-elements-of-html/grouping-content/the-dd-element"><file src="the-elements-of-html/grouping-content/the-figure-element"><file src="the-elements-of-html/grouping-content/the-figcaption-element"><file src="the-elements-of-html/grouping-content/the-main-element"><file src="the-elements-of-html/grouping-content/the-div-element"><file src="the-elements-of-html/text-level-semantics/index"><file src="the-elements-of-html/text-level-semantics/the-a-element"><file src="the-elements-of-html/text-level-semantics/the-em-element"><file src="the-elements-of-html/text-level-semantics/the-strong-element"><file src="the-elements-of-html/text-level-semantics/the-small-element"><file src="the-elements-of-html/text-level-semantics/the-s-element"><file src="the-elements-of-html/text-level-semantics/the-cite-element"><file src="the-elements-of-html/text-level-semantics/the-q-element"><file src="the-elements-of-html/text-level-semantics/the-dfn-element"><file src="the-elements-of-html/text-level-semantics/the-abbr-element"><file src="the-elements-of-html/text-level-semantics/the-ruby-element"><file src="the-elements-of-html/text-level-semantics/the-rt-element"><file src="the-elements-of-html/text-level-semantics/the-rp-element"><file src="the-elements-of-html/text-level-semantics/the-data-element"><file src="the-elements-of-html/text-level-semantics/the-time-element"><file src="the-elements-of-html/text-level-semantics/the-code-element"><file src="the-elements-of-html/text-level-semantics/the-var-element"><file src="the-elements-of-html/text-level-semantics/the-samp-element"><file src="the-elements-of-html/text-level-semantics/the-kbd-element"><file src="the-elements-of-html/text-level-semantics/the-sub-and-sup-elements"><file src="the-elements-of-html/text-level-semantics/the-i-element"><file src="the-elements-of-html/text-level-semantics/the-b-element"><file src="the-elements-of-html/text-level-semantics/the-u-element"><file src="the-elements-of-html/text-level-semantics/the-mark-element"><file src="the-elements-of-html/text-level-semantics/the-bdi-element"><file src="the-elements-of-html/text-level-semantics/the-bdo-element"><file src="the-elements-of-html/text-level-semantics/the-span-element"><file src="the-elements-of-html/text-level-semantics/the-br-element"><file src="the-elements-of-html/text-level-semantics/the-wbr-element"><file src="the-elements-of-html/text-level-semantics/usage-summary"><file src="the-elements-of-html/links/index"><file src="the-elements-of-html/links/introduction"><file src="the-elements-of-html/links/links-created-by-a-and-area-elements"><file src="the-elements-of-html/links/api-for-a-and-area-elements"><file src="the-elements-of-html/links/following-hyperlinks"><file src="the-elements-of-html/links/downloading-resources/index"><file src="the-elements-of-html/links/downloading-resources/hyperlink-auditing"><file src="the-elements-of-html/links/link-types/index"><file src="the-elements-of-html/links/link-types/link-type-alternate"><file src="the-elements-of-html/links/link-types/link-type-author"><file src="the-elements-of-html/links/link-types/link-type-bookmark"><file src="the-elements-of-html/links/link-types/link-type-canonical"><file src="the-elements-of-html/links/link-types/link-type-dns-prefetch"><file src="the-elements-of-html/links/link-types/link-type-external"><file src="the-elements-of-html/links/link-types/link-type-help"><file src="the-elements-of-html/links/link-types/link-type-icon"><file src="the-elements-of-html/links/link-types/link-type-license"><file src="the-elements-of-html/links/link-types/link-type-modulepreload"><file src="the-elements-of-html/links/link-types/link-type-nofollow"><file src="the-elements-of-html/links/link-types/link-type-noopener"><file src="the-elements-of-html/links/link-types/link-type-noreferrer"><file src="the-elements-of-html/links/link-types/link-type-pingback"><file src="the-elements-of-html/links/link-types/link-type-preconnect"><file src="the-elements-of-html/links/link-types/link-type-prefetch"><file src="the-elements-of-html/links/link-types/link-type-preload"><file src="the-elements-of-html/links/link-types/link-type-prerender"><file src="the-elements-of-html/links/link-types/link-type-search"><file src="the-elements-of-html/links/link-types/link-type-stylesheet"><file src="the-elements-of-html/links/link-types/link-type-tag"><file src="the-elements-of-html/links/link-types/sequential-link-types/index"><file src="the-elements-of-html/links/link-types/sequential-link-types/link-type-next"><file src="the-elements-of-html/links/link-types/sequential-link-types/link-type-prev"><file src="the-elements-of-html/links/link-types/other-link-types"><file src="the-elements-of-html/edits/index"><file src="the-elements-of-html/edits/the-ins-element"><file src="the-elements-of-html/edits/the-del-element"><file src="the-elements-of-html/edits/attributes-common-to-ins-and-del-elements"><file src="the-elements-of-html/edits/edits-and-paragraphs"><file src="the-elements-of-html/edits/edits-and-lists"><file src="the-elements-of-html/edits/edits-and-tables"><file src="the-elements-of-html/embedded-content/index"><file src="the-elements-of-html/embedded-content/the-picture-element"><file src="the-elements-of-html/embedded-content/the-source-element"><file src="the-elements-of-html/embedded-content/the-img-element"><file src="the-elements-of-html/embedded-content/images/index"><file src="the-elements-of-html/embedded-content/images/introduction/index"><file src="the-elements-of-html/embedded-content/images/introduction/adaptive-images"><file src="the-elements-of-html/embedded-content/images/attributes-common-to-source-and-img-elements/index"><file src="the-elements-of-html/embedded-content/images/attributes-common-to-source-and-img-elements/srcset-attributes"><file src="the-elements-of-html/embedded-content/images/attributes-common-to-source-and-img-elements/sizes-attributes"><file src="the-elements-of-html/embedded-content/images/processing-model/index"><file src="the-elements-of-html/embedded-content/images/processing-model/when-to-obtain-images"><file src="the-elements-of-html/embedded-content/images/processing-model/reacting-to-dom-mutations"><file src="the-elements-of-html/embedded-content/images/processing-model/the-list-of-available-images"><file src="the-elements-of-html/embedded-content/images/processing-model/decoding-images"><file src="the-elements-of-html/embedded-content/images/processing-model/updating-the-image-data"><file src="the-elements-of-html/embedded-content/images/processing-model/selecting-an-image-source"><file src="the-elements-of-html/embedded-content/images/processing-model/updating-the-source-set"><file src="the-elements-of-html/embedded-content/images/processing-model/parsing-a-srcset-attribute"><file src="the-elements-of-html/embedded-content/images/processing-model/parsing-a-sizes-attribute"><file src="the-elements-of-html/embedded-content/images/processing-model/normalizing-the-source-densities"><file src="the-elements-of-html/embedded-content/images/processing-model/reacting-to-environment-changes"><file src="the-elements-of-html/embedded-content/images/requirements-for-providing-text-to-act-as-an-alternative-for-images/index"><file src="the-elements-of-html/embedded-content/images/requirements-for-providing-text-to-act-as-an-alternative-for-images/general-guidelines"><file src="the-elements-of-html/embedded-content/images/requirements-for-providing-text-to-act-as-an-alternative-for-images/a-link-or-button-containing-nothing-but-the-image"><file src="the-elements-of-html/embedded-content/images/requirements-for-providing-text-to-act-as-an-alternative-for-images/a-phrase-or-paragraph-with-an-alternative-graphical-representation-charts-diagrams-graphs-maps-illustrations"><file src="the-elements-of-html/embedded-content/images/requirements-for-providing-text-to-act-as-an-alternative-for-images/a-short-phrase-or-label-with-an-alternative-graphical-representation-icons-logos"><file src="the-elements-of-html/embedded-content/images/requirements-for-providing-text-to-act-as-an-alternative-for-images/text-that-has-been-rendered-to-a-graphic-for-typographical-effect"><file src="the-elements-of-html/embedded-content/images/requirements-for-providing-text-to-act-as-an-alternative-for-images/a-graphical-representation-of-some-of-the-surrounding-text"><file src="the-elements-of-html/embedded-content/images/requirements-for-providing-text-to-act-as-an-alternative-for-images/ancillary-images"><file src="the-elements-of-html/embedded-content/images/requirements-for-providing-text-to-act-as-an-alternative-for-images/a-purely-decorative-image-that-doesnt-add-any-information"><file src="the-elements-of-html/embedded-content/images/requirements-for-providing-text-to-act-as-an-alternative-for-images/a-group-of-images-that-form-a-single-larger-picture-with-no-links"><file src="the-elements-of-html/embedded-content/images/requirements-for-providing-text-to-act-as-an-alternative-for-images/a-group-of-images-that-form-a-single-larger-picture-with-links"><file src="the-elements-of-html/embedded-content/images/requirements-for-providing-text-to-act-as-an-alternative-for-images/a-key-part-of-the-content"><file src="the-elements-of-html/embedded-content/images/requirements-for-providing-text-to-act-as-an-alternative-for-images/an-image-not-intended-for-the-user"><file src="the-elements-of-html/embedded-content/images/requirements-for-providing-text-to-act-as-an-alternative-for-images/an-image-in-an-e-mail-or-private-document-intended-for-a-specific-person-who-is-known-to-be-able-to-view-images"><file src="the-elements-of-html/embedded-content/images/requirements-for-providing-text-to-act-as-an-alternative-for-images/guidance-for-markup-generators"><file src="the-elements-of-html/embedded-content/images/requirements-for-providing-text-to-act-as-an-alternative-for-images/guidance-for-conformance-checkers"><file src="the-elements-of-html/embedded-content/the-iframe-element"><file src="the-elements-of-html/embedded-content/the-embed-element"><file src="the-elements-of-html/embedded-content/the-object-element"><file src="the-elements-of-html/embedded-content/the-param-element"><file src="the-elements-of-html/embedded-content/the-video-element/index"><file src="the-elements-of-html/embedded-content/the-video-element/video-and-audio-codecs-for-video-elements"><file src="the-elements-of-html/embedded-content/the-audio-element/index"><file src="the-elements-of-html/embedded-content/the-audio-element/audio-codecs-for-audio-elements"><file src="the-elements-of-html/embedded-content/the-track-element"><file src="the-elements-of-html/embedded-content/media-elements/index"><file src="the-elements-of-html/embedded-content/media-elements/error-codes"><file src="the-elements-of-html/embedded-content/media-elements/location-of-the-media-resource"><file src="the-elements-of-html/embedded-content/media-elements/mime-types"><file src="the-elements-of-html/embedded-content/media-elements/network-states"><file src="the-elements-of-html/embedded-content/media-elements/loading-the-media-resource"><file src="the-elements-of-html/embedded-content/media-elements/offsets-into-the-media-resource"><file src="the-elements-of-html/embedded-content/media-elements/ready-states"><file src="the-elements-of-html/embedded-content/media-elements/playing-the-media-resource"><file src="the-elements-of-html/embedded-content/media-elements/seeking"><file src="the-elements-of-html/embedded-content/media-elements/media-resources-with-multiple-media-tracks/index"><file src="the-elements-of-html/embedded-content/media-elements/media-resources-with-multiple-media-tracks/audiotracklist-and-videotracklist-objects"><file src="the-elements-of-html/embedded-content/media-elements/media-resources-with-multiple-media-tracks/selecting-specific-audio-and-video-tracks-declaratively"><file src="the-elements-of-html/embedded-content/media-elements/timed-text-tracks/index"><file src="the-elements-of-html/embedded-content/media-elements/timed-text-tracks/text-track-model"><file src="the-elements-of-html/embedded-content/media-elements/timed-text-tracks/sourcing-in-band-text-tracks"><file src="the-elements-of-html/embedded-content/media-elements/timed-text-tracks/sourcing-out-of-band-text-tracks"><file src="the-elements-of-html/embedded-content/media-elements/timed-text-tracks/guidelines-for-exposing-cues-in-various-formats-as-text-track-cues"><file src="the-elements-of-html/embedded-content/media-elements/timed-text-tracks/text-track-api"><file src="the-elements-of-html/embedded-content/media-elements/timed-text-tracks/event-handlers-for-objects-of-the-text-track-apis"><file src="the-elements-of-html/embedded-content/media-elements/timed-text-tracks/best-practices-for-metadata-text-tracks"><file src="the-elements-of-html/embedded-content/media-elements/identifying-a-track-kind-through-a-url"><file src="the-elements-of-html/embedded-content/media-elements/user-interface"><file src="the-elements-of-html/embedded-content/media-elements/time-ranges"><file src="the-elements-of-html/embedded-content/media-elements/the-trackevent-interface"><file src="the-elements-of-html/embedded-content/media-elements/events-summary"><file src="the-elements-of-html/embedded-content/media-elements/security-and-privacy-considerations"><file src="the-elements-of-html/embedded-content/media-elements/best-practices-for-authors-using-media-elements"><file src="the-elements-of-html/embedded-content/media-elements/best-practices-for-implementers-of-media-elements"><file src="the-elements-of-html/embedded-content/the-map-element"><file src="the-elements-of-html/embedded-content/the-area-element"><file src="the-elements-of-html/embedded-content/image-maps/index"><file src="the-elements-of-html/embedded-content/image-maps/authoring"><file src="the-elements-of-html/embedded-content/image-maps/processing-model"><file src="the-elements-of-html/embedded-content/mathml"><file src="the-elements-of-html/embedded-content/svg"><file src="the-elements-of-html/embedded-content/dimension-attributes"><file src="the-elements-of-html/tabular-data/index"><file src="the-elements-of-html/tabular-data/the-table-element/index"><file src="the-elements-of-html/tabular-data/the-table-element/techniques-for-describing-tables"><file src="the-elements-of-html/tabular-data/the-table-element/techniques-for-table-design"><file src="the-elements-of-html/tabular-data/the-caption-element"><file src="the-elements-of-html/tabular-data/the-colgroup-element"><file src="the-elements-of-html/tabular-data/the-col-element"><file src="the-elements-of-html/tabular-data/the-tbody-element"><file src="the-elements-of-html/tabular-data/the-thead-element"><file src="the-elements-of-html/tabular-data/the-tfoot-element"><file src="the-elements-of-html/tabular-data/the-tr-element"><file src="the-elements-of-html/tabular-data/the-td-element"><file src="the-elements-of-html/tabular-data/the-th-element"><file src="the-elements-of-html/tabular-data/attributes-common-to-td-and-th-elements"><file src="the-elements-of-html/tabular-data/processing-model/index"><file src="the-elements-of-html/tabular-data/processing-model/forming-a-table"><file src="the-elements-of-html/tabular-data/processing-model/forming-relationships-between-data-cells-and-header-cells"><file src="the-elements-of-html/tabular-data/examples"><file src="the-elements-of-html/forms/index"><file src="the-elements-of-html/forms/introduction/index"><file src="the-elements-of-html/forms/introduction/writing-a-forms-user-interface"><file src="the-elements-of-html/forms/introduction/implementing-the-server-side-processing-for-a-form"><file src="the-elements-of-html/forms/introduction/configuring-a-form-to-communicate-with-a-server"><file src="the-elements-of-html/forms/introduction/client-side-form-validation"><file src="the-elements-of-html/forms/introduction/enabling-client-side-automatic-filling-of-form-controls"><file src="the-elements-of-html/forms/introduction/improving-the-user-experience-on-mobile-devices"><file src="the-elements-of-html/forms/introduction/the-difference-between-the-field-type-the-autofill-field-name-and-the-input-modality"><file src="the-elements-of-html/forms/introduction/date-time-and-number-formats"><file src="the-elements-of-html/forms/categories"><file src="the-elements-of-html/forms/the-form-element"><file src="the-elements-of-html/forms/the-label-element"><file src="the-elements-of-html/forms/the-input-element/index"><file src="the-elements-of-html/forms/the-input-element/states-of-the-type-attribute/index"><file src="the-elements-of-html/forms/the-input-element/states-of-the-type-attribute/hidden-state-type-hidden"><file src="the-elements-of-html/forms/the-input-element/states-of-the-type-attribute/text-type-text-state-and-search-state-type-search"><file src="the-elements-of-html/forms/the-input-element/states-of-the-type-attribute/telephone-state-type-tel"><file src="the-elements-of-html/forms/the-input-element/states-of-the-type-attribute/url-state-type-url"><file src="the-elements-of-html/forms/the-input-element/states-of-the-type-attribute/e-mail-state-type-email"><file src="the-elements-of-html/forms/the-input-element/states-of-the-type-attribute/password-state-type-password"><file src="the-elements-of-html/forms/the-input-element/states-of-the-type-attribute/date-state-type-date"><file src="the-elements-of-html/forms/the-input-element/states-of-the-type-attribute/month-state-type-month"><file src="the-elements-of-html/forms/the-input-element/states-of-the-type-attribute/week-state-type-week"><file src="the-elements-of-html/forms/the-input-element/states-of-the-type-attribute/time-state-type-time"><file src="the-elements-of-html/forms/the-input-element/states-of-the-type-attribute/local-date-and-time-state-type-datetime-local"><file src="the-elements-of-html/forms/the-input-element/states-of-the-type-attribute/number-state-type-number"><file src="the-elements-of-html/forms/the-input-element/states-of-the-type-attribute/range-state-type-range"><file src="the-elements-of-html/forms/the-input-element/states-of-the-type-attribute/color-state-type-color"><file src="the-elements-of-html/forms/the-input-element/states-of-the-type-attribute/checkbox-state-type-checkbox"><file src="the-elements-of-html/forms/the-input-element/states-of-the-type-attribute/radio-button-state-type-radio"><file src="the-elements-of-html/forms/the-input-element/states-of-the-type-attribute/file-upload-state-type-file"><file src="the-elements-of-html/forms/the-input-element/states-of-the-type-attribute/submit-button-state-type-submit"><file src="the-elements-of-html/forms/the-input-element/states-of-the-type-attribute/image-button-state-type-image"><file src="the-elements-of-html/forms/the-input-element/states-of-the-type-attribute/reset-button-state-type-reset"><file src="the-elements-of-html/forms/the-input-element/states-of-the-type-attribute/button-state-type-button"><file src="the-elements-of-html/forms/the-input-element/implementation-notes-regarding-localization-of-form-controls"><file src="the-elements-of-html/forms/the-input-element/common-input-element-attributes/index"><file src="the-elements-of-html/forms/the-input-element/common-input-element-attributes/the-maxlength-and-minlength-attributes"><file src="the-elements-of-html/forms/the-input-element/common-input-element-attributes/the-size-attribute"><file src="the-elements-of-html/forms/the-input-element/common-input-element-attributes/the-readonly-attribute"><file src="the-elements-of-html/forms/the-input-element/common-input-element-attributes/the-required-attribute"><file src="the-elements-of-html/forms/the-input-element/common-input-element-attributes/the-multiple-attribute"><file src="the-elements-of-html/forms/the-input-element/common-input-element-attributes/the-pattern-attribute"><file src="the-elements-of-html/forms/the-input-element/common-input-element-attributes/the-min-and-max-attributes"><file src="the-elements-of-html/forms/the-input-element/common-input-element-attributes/the-step-attribute"><file src="the-elements-of-html/forms/the-input-element/common-input-element-attributes/the-list-attribute"><file src="the-elements-of-html/forms/the-input-element/common-input-element-attributes/the-placeholder-attribute"><file src="the-elements-of-html/forms/the-input-element/common-input-element-apis"><file src="the-elements-of-html/forms/the-input-element/common-event-behaviors"><file src="the-elements-of-html/forms/the-button-element"><file src="the-elements-of-html/forms/the-select-element"><file src="the-elements-of-html/forms/the-datalist-element"><file src="the-elements-of-html/forms/the-optgroup-element"><file src="the-elements-of-html/forms/the-option-element"><file src="the-elements-of-html/forms/the-textarea-element"><file src="the-elements-of-html/forms/the-output-element"><file src="the-elements-of-html/forms/the-progress-element"><file src="the-elements-of-html/forms/the-meter-element"><file src="the-elements-of-html/forms/the-fieldset-element"><file src="the-elements-of-html/forms/the-legend-element"><file src="the-elements-of-html/forms/form-control-infrastructure/index"><file src="the-elements-of-html/forms/form-control-infrastructure/a-form-controls-value"><file src="the-elements-of-html/forms/form-control-infrastructure/mutability"><file src="the-elements-of-html/forms/form-control-infrastructure/association-of-controls-and-forms"><file src="the-elements-of-html/forms/attributes-common-to-form-controls/index"><file src="the-elements-of-html/forms/attributes-common-to-form-controls/naming-form-controls-the-name-attribute"><file src="the-elements-of-html/forms/attributes-common-to-form-controls/submitting-element-directionality-the-dirname-attribute"><file src="the-elements-of-html/forms/attributes-common-to-form-controls/limiting-user-input-length-the-maxlength-attribute"><file src="the-elements-of-html/forms/attributes-common-to-form-controls/setting-minimum-input-length-requirements-the-minlength-attribute"><file src="the-elements-of-html/forms/attributes-common-to-form-controls/enabling-and-disabling-form-controls-the-disabled-attribute"><file src="the-elements-of-html/forms/attributes-common-to-form-controls/form-submission/index"><file src="the-elements-of-html/forms/attributes-common-to-form-controls/form-submission/autofocusing-a-form-control-the-autofocus-attribute"><file src="the-elements-of-html/forms/attributes-common-to-form-controls/autofill/index"><file src="the-elements-of-html/forms/attributes-common-to-form-controls/autofill/autofilling-form-controls-the-autocomplete-attribute"><file src="the-elements-of-html/forms/attributes-common-to-form-controls/autofill/processing-model"><file src="the-elements-of-html/forms/apis-for-the-text-control-selections"><file src="the-elements-of-html/forms/constraints/index"><file src="the-elements-of-html/forms/constraints/definitions"><file src="the-elements-of-html/forms/constraints/constraint-validation"><file src="the-elements-of-html/forms/constraints/the-constraint-validation-api"><file src="the-elements-of-html/forms/constraints/security"><file src="the-elements-of-html/forms/form-submission/index"><file src="the-elements-of-html/forms/form-submission/introduction"><file src="the-elements-of-html/forms/form-submission/implicit-submission"><file src="the-elements-of-html/forms/form-submission/form-submission-algorithm"><file src="the-elements-of-html/forms/form-submission/constructing-the-entry-list"><file src="the-elements-of-html/forms/form-submission/selecting-a-form-submission-encoding"><file src="the-elements-of-html/forms/form-submission/url-encoded-form-data"><file src="the-elements-of-html/forms/form-submission/multipart-form-data"><file src="the-elements-of-html/forms/form-submission/plain-text-form-data"><file src="the-elements-of-html/forms/resetting-a-form"><file src="the-elements-of-html/interactive-elements/index"><file src="the-elements-of-html/interactive-elements/the-details-element"><file src="the-elements-of-html/interactive-elements/the-summary-element"><file src="the-elements-of-html/interactive-elements/commands/index"><file src="the-elements-of-html/interactive-elements/commands/facets"><file src="the-elements-of-html/interactive-elements/commands/using-the-a-element-to-define-a-command"><file src="the-elements-of-html/interactive-elements/commands/using-the-button-element-to-define-a-command"><file src="the-elements-of-html/interactive-elements/commands/using-the-input-element-to-define-a-command"><file src="the-elements-of-html/interactive-elements/commands/using-the-option-element-to-define-a-command"><file src="the-elements-of-html/interactive-elements/commands/using-the-accesskey-attribute-on-a-legend-element-to-define-a-command"><file src="the-elements-of-html/interactive-elements/commands/using-the-accesskey-attribute-to-define-a-command-on-other-elements"><file src="the-elements-of-html/interactive-elements/the-dialog-element"><file src="the-elements-of-html/scripting/index"><file src="the-elements-of-html/scripting/the-script-element/index"><file src="the-elements-of-html/scripting/the-script-element/processing-model"><file src="the-elements-of-html/scripting/the-script-element/scripting-languages"><file src="the-elements-of-html/scripting/the-script-element/restrictions-for-contents-of-script-elements"><file src="the-elements-of-html/scripting/the-script-element/inline-documentation-for-external-scripts"><file src="the-elements-of-html/scripting/the-script-element/interaction-of-script-elements-and-xslt"><file src="the-elements-of-html/scripting/the-noscript-element"><file src="the-elements-of-html/scripting/the-template-element/index"><file src="the-elements-of-html/scripting/the-template-element/interaction-of-template-elements-with-xslt-and-xpath"><file src="the-elements-of-html/scripting/the-slot-element"><file src="the-elements-of-html/scripting/the-canvas-element/index"><file src="the-elements-of-html/scripting/the-canvas-element/the-2d-rendering-context/index"><file src="the-elements-of-html/scripting/the-canvas-element/the-2d-rendering-context/implementation-notes"><file src="the-elements-of-html/scripting/the-canvas-element/the-2d-rendering-context/the-canvas-state"><file src="the-elements-of-html/scripting/the-canvas-element/the-2d-rendering-context/line-styles"><file src="the-elements-of-html/scripting/the-canvas-element/the-2d-rendering-context/text-styles"><file src="the-elements-of-html/scripting/the-canvas-element/the-2d-rendering-context/building-paths"><file src="the-elements-of-html/scripting/the-canvas-element/the-2d-rendering-context/path2d-objects"><file src="the-elements-of-html/scripting/the-canvas-element/the-2d-rendering-context/transformations"><file src="the-elements-of-html/scripting/the-canvas-element/the-2d-rendering-context/image-sources-for-2d-rendering-contexts"><file src="the-elements-of-html/scripting/the-canvas-element/the-2d-rendering-context/fill-and-stroke-styles"><file src="the-elements-of-html/scripting/the-canvas-element/the-2d-rendering-context/drawing-rectangles-to-the-bitmap"><file src="the-elements-of-html/scripting/the-canvas-element/the-2d-rendering-context/drawing-text-to-the-bitmap"><file src="the-elements-of-html/scripting/the-canvas-element/the-2d-rendering-context/drawing-paths-to-the-canvas"><file src="the-elements-of-html/scripting/the-canvas-element/the-2d-rendering-context/drawing-focus-rings-and-scrolling-paths-into-view"><file src="the-elements-of-html/scripting/the-canvas-element/the-2d-rendering-context/drawing-images"><file src="the-elements-of-html/scripting/the-canvas-element/the-2d-rendering-context/pixel-manipulation"><file src="the-elements-of-html/scripting/the-canvas-element/the-2d-rendering-context/compositing"><file src="the-elements-of-html/scripting/the-canvas-element/the-2d-rendering-context/image-smoothing"><file src="the-elements-of-html/scripting/the-canvas-element/the-2d-rendering-context/shadows"><file src="the-elements-of-html/scripting/the-canvas-element/the-2d-rendering-context/filters"><file src="the-elements-of-html/scripting/the-canvas-element/the-2d-rendering-context/working-with-externally-defined-svg-filters"><file src="the-elements-of-html/scripting/the-canvas-element/the-2d-rendering-context/drawing-model"><file src="the-elements-of-html/scripting/the-canvas-element/the-2d-rendering-context/best-practices"><file src="the-elements-of-html/scripting/the-canvas-element/the-2d-rendering-context/examples"><file src="the-elements-of-html/scripting/the-canvas-element/the-imagebitmap-rendering-context/index"><file src="the-elements-of-html/scripting/the-canvas-element/the-imagebitmap-rendering-context/introduction"><file src="the-elements-of-html/scripting/the-canvas-element/the-imagebitmap-rendering-context/the-imagebitmaprenderingcontext-interface"><file src="the-elements-of-html/scripting/the-canvas-element/the-offscreencanvas-interface/index"><file src="the-elements-of-html/scripting/the-canvas-element/the-offscreencanvas-interface/the-offscreen-2d-rendering-context"><file src="the-elements-of-html/scripting/the-canvas-element/color-spaces-and-color-correction"><file src="the-elements-of-html/scripting/the-canvas-element/serializing-bitmaps-to-a-file"><file src="the-elements-of-html/scripting/the-canvas-element/security-with-canvas-elements"><file src="the-elements-of-html/custom-elements/index"><file src="the-elements-of-html/custom-elements/introduction/index"><file src="the-elements-of-html/custom-elements/introduction/creating-an-autonomous-custom-element"><file src="the-elements-of-html/custom-elements/introduction/creating-a-customized-built-in-element"><file src="the-elements-of-html/custom-elements/introduction/drawbacks-of-autonomous-custom-elements"><file src="the-elements-of-html/custom-elements/introduction/upgrading-elements-after-their-creation"><file src="the-elements-of-html/custom-elements/requirements-for-custom-element-constructors"><file src="the-elements-of-html/custom-elements/core-concepts"><file src="the-elements-of-html/custom-elements/the-customelementregistry-interface"><file src="the-elements-of-html/custom-elements/upgrades"><file src="the-elements-of-html/custom-elements/custom-element-reactions"><file src="the-elements-of-html/common-idioms-without-dedicated-elements/index"><file src="the-elements-of-html/common-idioms-without-dedicated-elements/the-main-part-of-the-content"><file src="the-elements-of-html/common-idioms-without-dedicated-elements/bread-crumb-navigation"><file src="the-elements-of-html/common-idioms-without-dedicated-elements/tag-clouds"><file src="the-elements-of-html/common-idioms-without-dedicated-elements/conversations"><file src="the-elements-of-html/common-idioms-without-dedicated-elements/footnotes"><file src="the-elements-of-html/disabled-elements"><file src="the-elements-of-html/matching-html-elements-using-selectors-and-css/index"><file src="the-elements-of-html/matching-html-elements-using-selectors-and-css/case-sensitivity-of-the-css-attr-function"><file src="the-elements-of-html/matching-html-elements-using-selectors-and-css/case-sensitivity-of-selectors"><file src="the-elements-of-html/matching-html-elements-using-selectors-and-css/pseudo-classes"><file src="microdata/index"><file src="microdata/introduction/index"><file src="microdata/introduction/overview"><file src="microdata/introduction/the-basic-syntax"><file src="microdata/introduction/typed-items"><file src="microdata/introduction/global-identifiers-for-items"><file src="microdata/introduction/selecting-names-when-defining-vocabularies"><file src="microdata/encoding-microdata/index"><file src="microdata/encoding-microdata/the-microdata-model"><file src="microdata/encoding-microdata/items"><file src="microdata/encoding-microdata/names-the-itemprop-attribute"><file src="microdata/encoding-microdata/values"><file src="microdata/encoding-microdata/associating-names-with-items"><file src="microdata/encoding-microdata/microdata-and-other-namespaces"><file src="microdata/sample-microdata-vocabularies/index"><file src="microdata/sample-microdata-vocabularies/vcard/index"><file src="microdata/sample-microdata-vocabularies/vcard/conversion-to-vcard"><file src="microdata/sample-microdata-vocabularies/vcard/examples"><file src="microdata/sample-microdata-vocabularies/vevent/index"><file src="microdata/sample-microdata-vocabularies/vevent/conversion-to-icalendar"><file src="microdata/sample-microdata-vocabularies/vevent/examples"><file src="microdata/sample-microdata-vocabularies/licensing-works/index"><file src="microdata/sample-microdata-vocabularies/licensing-works/examples"><file src="microdata/converting-html-to-other-formats/index"><file src="microdata/converting-html-to-other-formats/json"><file src="user-interaction/index"><file src="user-interaction/the-hidden-attribute"><file src="user-interaction/inert-subtrees"><file src="user-interaction/activation"><file src="user-interaction/focus/index"><file src="user-interaction/focus/introduction"><file src="user-interaction/focus/data-model"><file src="user-interaction/focus/the-tabindex-attribute"><file src="user-interaction/focus/processing-model"><file src="user-interaction/focus/sequential-focus-navigation"><file src="user-interaction/focus/focus-management-apis"><file src="user-interaction/assigning-keyboard-shortcuts/index"><file src="user-interaction/assigning-keyboard-shortcuts/introduction"><file src="user-interaction/assigning-keyboard-shortcuts/the-accesskey-attribute"><file src="user-interaction/assigning-keyboard-shortcuts/processing-model"><file src="user-interaction/editing/index"><file src="user-interaction/editing/making-document-regions-editable-the-contenteditable-content-attribute"><file src="user-interaction/editing/making-entire-documents-editable-the-designmode-idl-attribute"><file src="user-interaction/editing/best-practices-for-in-page-editors"><file src="user-interaction/editing/editing-apis"><file src="user-interaction/editing/spelling-and-grammar-checking"><file src="user-interaction/editing/autocapitalization"><file src="user-interaction/editing/input-modalities-the-inputmode-attribute"><file src="user-interaction/drag-and-drop/index"><file src="user-interaction/drag-and-drop/introduction"><file src="user-interaction/drag-and-drop/the-drag-data-store"><file src="user-interaction/drag-and-drop/the-datatransfer-interface/index"><file src="user-interaction/drag-and-drop/the-datatransfer-interface/the-datatransferitemlist-interface"><file src="user-interaction/drag-and-drop/the-datatransfer-interface/the-datatransferitem-interface"><file src="user-interaction/drag-and-drop/the-dragevent-interface"><file src="user-interaction/drag-and-drop/processing-model"><file src="user-interaction/drag-and-drop/events-summary"><file src="user-interaction/drag-and-drop/the-draggable-attribute"><file src="user-interaction/drag-and-drop/copy-and-paste/index"><file src="user-interaction/drag-and-drop/copy-and-paste/copy-to-clipboard"><file src="user-interaction/drag-and-drop/copy-and-paste/cut-to-clipboard"><file src="user-interaction/drag-and-drop/copy-and-paste/paste-from-clipboard"><file src="user-interaction/drag-and-drop/copy-and-paste/paste-from-selection"><file src="user-interaction/drag-and-drop/security-risks-in-the-drag-and-drop-model"><file src="loading-web-pages/index"><file src="loading-web-pages/browsing-contexts/index"><file src="loading-web-pages/browsing-contexts/nested-browsing-contexts/index"><file src="loading-web-pages/browsing-contexts/nested-browsing-contexts/navigating-nested-browsing-contexts-in-the-dom"><file src="loading-web-pages/browsing-contexts/auxiliary-browsing-contexts/index"><file src="loading-web-pages/browsing-contexts/auxiliary-browsing-contexts/navigating-auxiliary-browsing-contexts-in-the-dom"><file src="loading-web-pages/browsing-contexts/security"><file src="loading-web-pages/browsing-contexts/groupings-of-browsing-contexts"><file src="loading-web-pages/browsing-contexts/browsing-context-names"><file src="loading-web-pages/security-infrastructure-for-window-windowproxy-and-location-objects/index"><file src="loading-web-pages/security-infrastructure-for-window-windowproxy-and-location-objects/integration-with-idl"><file src="loading-web-pages/security-infrastructure-for-window-windowproxy-and-location-objects/shared-internal-slot-crossoriginpropertydescriptormap"><file src="loading-web-pages/security-infrastructure-for-window-windowproxy-and-location-objects/shared-abstract-operations/index"><file src="loading-web-pages/security-infrastructure-for-window-windowproxy-and-location-objects/shared-abstract-operations/crossoriginproperties-o"><file src="loading-web-pages/security-infrastructure-for-window-windowproxy-and-location-objects/shared-abstract-operations/isplatformobjectsameorigin-o"><file src="loading-web-pages/security-infrastructure-for-window-windowproxy-and-location-objects/shared-abstract-operations/crossorigingetownpropertyhelper-o-p"><file src="loading-web-pages/security-infrastructure-for-window-windowproxy-and-location-objects/shared-abstract-operations/crossoriginget-o-p-receiver"><file src="loading-web-pages/security-infrastructure-for-window-windowproxy-and-location-objects/shared-abstract-operations/crossoriginset-o-p-v-receiver"><file src="loading-web-pages/security-infrastructure-for-window-windowproxy-and-location-objects/shared-abstract-operations/crossoriginownpropertykeys-o"><file src="loading-web-pages/the-window-object/index"><file src="loading-web-pages/the-window-object/apis-for-creating-and-navigating-browsing-contexts-by-name"><file src="loading-web-pages/the-window-object/accessing-other-browsing-contexts"><file src="loading-web-pages/the-window-object/named-access-on-the-window-object"><file src="loading-web-pages/the-window-object/garbage-collection-and-browsing-contexts"><file src="loading-web-pages/the-window-object/closing-browsing-contexts"><file src="loading-web-pages/the-window-object/browser-interface-elements"><file src="loading-web-pages/the-window-object/script-settings-for-window-objects"><file src="loading-web-pages/the-windowproxy-exotic-object/index"><file src="loading-web-pages/the-windowproxy-exotic-object/getprototypeof"><file src="loading-web-pages/the-windowproxy-exotic-object/setprototypeof-v"><file src="loading-web-pages/the-windowproxy-exotic-object/isextensible"><file src="loading-web-pages/the-windowproxy-exotic-object/preventextensions"><file src="loading-web-pages/the-windowproxy-exotic-object/getownproperty-p"><file src="loading-web-pages/the-windowproxy-exotic-object/defineownproperty-p-desc"><file src="loading-web-pages/the-windowproxy-exotic-object/get-p-receiver"><file src="loading-web-pages/the-windowproxy-exotic-object/set-p-v-receiver"><file src="loading-web-pages/the-windowproxy-exotic-object/delete-p"><file src="loading-web-pages/the-windowproxy-exotic-object/ownpropertykeys"><file src="loading-web-pages/origin/index"><file src="loading-web-pages/origin/relaxing-the-same-origin-restriction"><file src="loading-web-pages/sandboxing"><file src="loading-web-pages/session-history-and-navigation/index"><file src="loading-web-pages/session-history-and-navigation/the-session-history-of-browsing-contexts"><file src="loading-web-pages/session-history-and-navigation/the-history-interface"><file src="loading-web-pages/session-history-and-navigation/implementation-notes-for-session-history"><file src="loading-web-pages/session-history-and-navigation/the-location-interface/index"><file src="loading-web-pages/session-history-and-navigation/the-location-interface/getprototypeof"><file src="loading-web-pages/session-history-and-navigation/the-location-interface/setprototypeof-v"><file src="loading-web-pages/session-history-and-navigation/the-location-interface/isextensible"><file src="loading-web-pages/session-history-and-navigation/the-location-interface/preventextensions"><file src="loading-web-pages/session-history-and-navigation/the-location-interface/getownproperty-p"><file src="loading-web-pages/session-history-and-navigation/the-location-interface/defineownproperty-p-desc"><file src="loading-web-pages/session-history-and-navigation/the-location-interface/get-p-receiver"><file src="loading-web-pages/session-history-and-navigation/the-location-interface/set-p-v-receiver"><file src="loading-web-pages/session-history-and-navigation/the-location-interface/delete-p"><file src="loading-web-pages/session-history-and-navigation/the-location-interface/ownpropertykeys"><file src="loading-web-pages/browsing-the-web/index"><file src="loading-web-pages/browsing-the-web/navigating-across-documents"><file src="loading-web-pages/browsing-the-web/page-load-processing-model-for-html-files"><file src="loading-web-pages/browsing-the-web/page-load-processing-model-for-xml-files"><file src="loading-web-pages/browsing-the-web/page-load-processing-model-for-text-files"><file src="loading-web-pages/browsing-the-web/page-load-processing-model-for-multipart-x-mixed-replace-resources"><file src="loading-web-pages/browsing-the-web/page-load-processing-model-for-media"><file src="loading-web-pages/browsing-the-web/page-load-processing-model-for-content-that-uses-plugins"><file src="loading-web-pages/browsing-the-web/page-load-processing-model-for-inline-content-that-doesnt-have-a-dom"><file src="loading-web-pages/browsing-the-web/navigating-to-a-fragment"><file src="loading-web-pages/browsing-the-web/history-traversal/index"><file src="loading-web-pages/browsing-the-web/history-traversal/persisted-user-state-restoration"><file src="loading-web-pages/browsing-the-web/history-traversal/the-popstateevent-interface"><file src="loading-web-pages/browsing-the-web/history-traversal/the-hashchangeevent-interface"><file src="loading-web-pages/browsing-the-web/history-traversal/the-pagetransitionevent-interface"><file src="loading-web-pages/browsing-the-web/unloading-documents/index"><file src="loading-web-pages/browsing-the-web/unloading-documents/the-beforeunloadevent-interface"><file src="loading-web-pages/browsing-the-web/aborting-a-document-load"><file src="loading-web-pages/offline-web-applications/index"><file src="loading-web-pages/offline-web-applications/introduction/index"><file src="loading-web-pages/offline-web-applications/introduction/supporting-offline-caching-for-legacy-applications"><file src="loading-web-pages/offline-web-applications/introduction/events-summary"><file src="loading-web-pages/offline-web-applications/application-caches"><file src="loading-web-pages/offline-web-applications/the-cache-manifest-syntax/index"><file src="loading-web-pages/offline-web-applications/the-cache-manifest-syntax/some-sample-manifests"><file src="loading-web-pages/offline-web-applications/the-cache-manifest-syntax/writing-cache-manifests"><file src="loading-web-pages/offline-web-applications/the-cache-manifest-syntax/parsing-cache-manifests"><file src="loading-web-pages/offline-web-applications/downloading-or-updating-an-application-cache"><file src="loading-web-pages/offline-web-applications/the-application-cache-selection-algorithm"><file src="loading-web-pages/offline-web-applications/changes-to-the-networking-model"><file src="loading-web-pages/offline-web-applications/expiring-application-caches"><file src="loading-web-pages/offline-web-applications/disk-space"><file src="loading-web-pages/offline-web-applications/security-concerns-with-offline-applications-caches"><file src="loading-web-pages/offline-web-applications/application-cache-api"><file src="loading-web-pages/offline-web-applications/browser-state"><file src="web-application-apis/index"><file src="web-application-apis/scripting/index"><file src="web-application-apis/scripting/introduction"><file src="web-application-apis/scripting/enabling-and-disabling-scripting"><file src="web-application-apis/scripting/processing-model/index"><file src="web-application-apis/scripting/processing-model/definitions"><file src="web-application-apis/scripting/processing-model/fetching-scripts"><file src="web-application-apis/scripting/processing-model/creating-scripts"><file src="web-application-apis/scripting/processing-model/calling-scripts"><file src="web-application-apis/scripting/processing-model/realms-settings-objects-and-global-objects/index"><file src="web-application-apis/scripting/processing-model/realms-settings-objects-and-global-objects/entry"><file src="web-application-apis/scripting/processing-model/realms-settings-objects-and-global-objects/incumbent"><file src="web-application-apis/scripting/processing-model/realms-settings-objects-and-global-objects/current"><file src="web-application-apis/scripting/processing-model/realms-settings-objects-and-global-objects/relevant"><file src="web-application-apis/scripting/processing-model/killing-scripts"><file src="web-application-apis/scripting/processing-model/integration-with-the-javascript-job-queue/index"><file src="web-application-apis/scripting/processing-model/integration-with-the-javascript-job-queue/enqueuejob-queuename-job-arguments"><file src="web-application-apis/scripting/processing-model/integration-with-the-javascript-module-system/index"><file src="web-application-apis/scripting/processing-model/integration-with-the-javascript-module-system/hostresolveimportedmodule-referencingscriptormodule-specifier"><file src="web-application-apis/scripting/processing-model/integration-with-the-javascript-module-system/hostimportmoduledynamically-referencingscriptormodule-specifier-promisecapability"><file src="web-application-apis/scripting/processing-model/integration-with-the-javascript-module-system/hostgetimportmetaproperties-modulerecord"><file src="web-application-apis/scripting/processing-model/integration-with-the-javascript-agent-formalism"><file src="web-application-apis/scripting/processing-model/integration-with-the-javascript-agent-cluster-formalism"><file src="web-application-apis/scripting/processing-model/runtime-script-errors/index"><file src="web-application-apis/scripting/processing-model/runtime-script-errors/runtime-script-errors-in-documents"><file src="web-application-apis/scripting/processing-model/runtime-script-errors/the-errorevent-interface"><file src="web-application-apis/scripting/processing-model/unhandled-promise-rejections/index"><file src="web-application-apis/scripting/processing-model/unhandled-promise-rejections/hostpromiserejectiontracker-promise-operation"><file src="web-application-apis/scripting/processing-model/unhandled-promise-rejections/the-promiserejectionevent-interface"><file src="web-application-apis/scripting/processing-model/hostensurecancompilestrings-callerrealm-calleerealm"><file src="web-application-apis/scripting/event-loops/index"><file src="web-application-apis/scripting/event-loops/definitions"><file src="web-application-apis/scripting/event-loops/processing-model"><file src="web-application-apis/scripting/event-loops/generic-task-sources"><file src="web-application-apis/scripting/event-loops/dealing-with-the-event-loop-from-other-specifications"><file src="web-application-apis/scripting/events/index"><file src="web-application-apis/scripting/events/event-handlers"><file src="web-application-apis/scripting/events/event-handlers-on-elements-document-objects-and-window-objects/index"><file src="web-application-apis/scripting/events/event-handlers-on-elements-document-objects-and-window-objects/idl-definitions"><file src="web-application-apis/scripting/events/event-firing"><file src="web-application-apis/the-windoworworkerglobalscope-mixin"><file src="web-application-apis/base64-utility-methods"><file src="web-application-apis/dynamic-markup-insertion/index"><file src="web-application-apis/dynamic-markup-insertion/opening-the-input-stream"><file src="web-application-apis/dynamic-markup-insertion/closing-the-input-stream"><file src="web-application-apis/dynamic-markup-insertion/document-write"><file src="web-application-apis/dynamic-markup-insertion/document-writeln"><file src="web-application-apis/timers"><file src="web-application-apis/user-prompts/index"><file src="web-application-apis/user-prompts/simple-dialogs"><file src="web-application-apis/user-prompts/printing"><file src="web-application-apis/system-state-and-capabilities/index"><file src="web-application-apis/system-state-and-capabilities/the-navigator-object/index"><file src="web-application-apis/system-state-and-capabilities/the-navigator-object/client-identification"><file src="web-application-apis/system-state-and-capabilities/the-navigator-object/language-preferences"><file src="web-application-apis/system-state-and-capabilities/the-navigator-object/custom-scheme-handlers-the-registerprotocolhandler-method/index"><file src="web-application-apis/system-state-and-capabilities/the-navigator-object/custom-scheme-handlers-the-registerprotocolhandler-method/security-and-privacy"><file src="web-application-apis/system-state-and-capabilities/the-navigator-object/cookies"><file src="web-application-apis/system-state-and-capabilities/the-navigator-object/plugins"><file src="web-application-apis/images"><file src="web-application-apis/animation-frames"><file src="communication/index"><file src="communication/the-messageevent-interface"><file src="communication/server-sent-events/index"><file src="communication/server-sent-events/introduction"><file src="communication/server-sent-events/the-eventsource-interface"><file src="communication/server-sent-events/processing-model"><file src="communication/server-sent-events/parsing-an-event-stream"><file src="communication/server-sent-events/the-event-stream-format"><file src="communication/server-sent-events/interpreting-an-event-stream"><file src="communication/server-sent-events/authoring-notes"><file src="communication/server-sent-events/connectionless-push-and-other-features"><file src="communication/server-sent-events/garbage-collection"><file src="communication/server-sent-events/implementation-advice"><file src="communication/web-sockets/index"><file src="communication/web-sockets/introduction"><file src="communication/web-sockets/the-websocket-interface"><file src="communication/web-sockets/feedback-from-the-protocol"><file src="communication/web-sockets/ping-and-pong-frames"><file src="communication/web-sockets/the-closeevent-interface"><file src="communication/web-sockets/garbage-collection"><file src="communication/cross-document-messaging/index"><file src="communication/cross-document-messaging/introduction"><file src="communication/cross-document-messaging/security/index"><file src="communication/cross-document-messaging/security/authors"><file src="communication/cross-document-messaging/security/user-agents"><file src="communication/cross-document-messaging/posting-messages"><file src="communication/channel-messaging/index"><file src="communication/channel-messaging/introduction/index"><file src="communication/channel-messaging/introduction/examples"><file src="communication/channel-messaging/introduction/ports-as-the-basis-of-an-object-capability-model-on-the-web"><file src="communication/channel-messaging/introduction/ports-as-the-basis-of-abstracting-out-service-implementations"><file src="communication/channel-messaging/message-channels"><file src="communication/channel-messaging/message-ports"><file src="communication/channel-messaging/broadcasting-to-many-ports"><file src="communication/channel-messaging/ports-and-garbage-collection"><file src="communication/broadcasting-to-other-browsing-contexts"><file src="web-workers/index"><file src="web-workers/introduction/index"><file src="web-workers/introduction/scope"><file src="web-workers/introduction/examples/index"><file src="web-workers/introduction/examples/a-background-number-crunching-worker"><file src="web-workers/introduction/examples/using-a-javascript-module-as-a-worker"><file src="web-workers/introduction/examples/shared-workers-introduction"><file src="web-workers/introduction/examples/shared-state-using-a-shared-worker"><file src="web-workers/introduction/examples/delegation"><file src="web-workers/introduction/examples/providing-libraries"><file src="web-workers/introduction/tutorials/index"><file src="web-workers/introduction/tutorials/creating-a-dedicated-worker"><file src="web-workers/introduction/tutorials/communicating-with-a-dedicated-worker"><file src="web-workers/introduction/tutorials/shared-workers"><file src="web-workers/infrastructure/index"><file src="web-workers/infrastructure/the-global-scope/index"><file src="web-workers/infrastructure/the-global-scope/the-workerglobalscope-common-interface"><file src="web-workers/infrastructure/the-global-scope/dedicated-workers-and-the-dedicatedworkerglobalscope-interface"><file src="web-workers/infrastructure/the-global-scope/shared-workers-and-the-sharedworkerglobalscope-interface"><file src="web-workers/infrastructure/the-event-loop"><file src="web-workers/infrastructure/the-workers-lifetime"><file src="web-workers/infrastructure/processing-model"><file src="web-workers/infrastructure/runtime-script-errors"><file src="web-workers/infrastructure/creating-workers/index"><file src="web-workers/infrastructure/creating-workers/the-abstractworker-mixin"><file src="web-workers/infrastructure/creating-workers/properties-present-on-both-worker-and-sharedworker"><file src="web-workers/infrastructure/creating-workers/script-settings-for-workers"><file src="web-workers/infrastructure/creating-workers/dedicated-workers-and-the-worker-interface"><file src="web-workers/infrastructure/creating-workers/shared-workers-and-the-sharedworker-interface"><file src="web-workers/infrastructure/concurrent-hardware-capabilities"><file src="web-workers/apis-available-to-workers/index"><file src="web-workers/apis-available-to-workers/importing-scripts-and-libraries"><file src="web-workers/apis-available-to-workers/the-workernavigator-interface"><file src="web-workers/apis-available-to-workers/the-workerlocation-interface"><file src="web-storage/index"><file src="web-storage/introduction"><file src="web-storage/the-api/index"><file src="web-storage/the-api/the-storage-interface"><file src="web-storage/the-api/the-sessionstorage-attribute"><file src="web-storage/the-api/the-localstorage-attribute"><file src="web-storage/the-api/the-storage-event/index"><file src="web-storage/the-api/the-storage-event/the-storageevent-interface"><file src="web-storage/disk-space"><file src="web-storage/privacy/index"><file src="web-storage/privacy/user-tracking"><file src="web-storage/privacy/sensitivity-of-data"><file src="web-storage/security/index"><file src="web-storage/security/dns-spoofing-attacks"><file src="web-storage/security/cross-directory-attacks"><file src="web-storage/security/implementation-risks"><file src="the-html-syntax/index"><file src="the-html-syntax/writing-html-documents/index"><file src="the-html-syntax/writing-html-documents/the-doctype"><file src="the-html-syntax/writing-html-documents/elements/index"><file src="the-html-syntax/writing-html-documents/elements/start-tags"><file src="the-html-syntax/writing-html-documents/elements/end-tags"><file src="the-html-syntax/writing-html-documents/elements/attributes"><file src="the-html-syntax/writing-html-documents/elements/optional-tags"><file src="the-html-syntax/writing-html-documents/elements/restrictions-on-content-models"><file src="the-html-syntax/writing-html-documents/elements/restrictions-on-the-contents-of-raw-text-and-escapable-raw-text-elements"><file src="the-html-syntax/writing-html-documents/text/index"><file src="the-html-syntax/writing-html-documents/text/newlines"><file src="the-html-syntax/writing-html-documents/character-references"><file src="the-html-syntax/writing-html-documents/cdata-sections"><file src="the-html-syntax/writing-html-documents/comments"><file src="the-html-syntax/parsing-html-documents/index"><file src="the-html-syntax/parsing-html-documents/overview-of-the-parsing-model"><file src="the-html-syntax/parsing-html-documents/parse-errors"><file src="the-html-syntax/parsing-html-documents/the-input-byte-stream/index"><file src="the-html-syntax/parsing-html-documents/the-input-byte-stream/parsing-with-a-known-character-encoding"><file src="the-html-syntax/parsing-html-documents/the-input-byte-stream/determining-the-character-encoding"><file src="the-html-syntax/parsing-html-documents/the-input-byte-stream/character-encodings"><file src="the-html-syntax/parsing-html-documents/the-input-byte-stream/changing-the-encoding-while-parsing"><file src="the-html-syntax/parsing-html-documents/the-input-byte-stream/preprocessing-the-input-stream"><file src="the-html-syntax/parsing-html-documents/parse-state/index"><file src="the-html-syntax/parsing-html-documents/parse-state/the-insertion-mode"><file src="the-html-syntax/parsing-html-documents/parse-state/the-stack-of-open-elements"><file src="the-html-syntax/parsing-html-documents/parse-state/the-list-of-active-formatting-elements"><file src="the-html-syntax/parsing-html-documents/parse-state/the-element-pointers"><file src="the-html-syntax/parsing-html-documents/parse-state/other-parsing-state-flags"><file src="the-html-syntax/parsing-html-documents/tokenization/index"><file src="the-html-syntax/parsing-html-documents/tokenization/data-state"><file src="the-html-syntax/parsing-html-documents/tokenization/rcdata-state"><file src="the-html-syntax/parsing-html-documents/tokenization/rawtext-state"><file src="the-html-syntax/parsing-html-documents/tokenization/script-data-state"><file src="the-html-syntax/parsing-html-documents/tokenization/plaintext-state"><file src="the-html-syntax/parsing-html-documents/tokenization/tag-open-state"><file src="the-html-syntax/parsing-html-documents/tokenization/end-tag-open-state"><file src="the-html-syntax/parsing-html-documents/tokenization/tag-name-state"><file src="the-html-syntax/parsing-html-documents/tokenization/rcdata-less-than-sign-state"><file src="the-html-syntax/parsing-html-documents/tokenization/rcdata-end-tag-open-state"><file src="the-html-syntax/parsing-html-documents/tokenization/rcdata-end-tag-name-state"><file src="the-html-syntax/parsing-html-documents/tokenization/rawtext-less-than-sign-state"><file src="the-html-syntax/parsing-html-documents/tokenization/rawtext-end-tag-open-state"><file src="the-html-syntax/parsing-html-documents/tokenization/rawtext-end-tag-name-state"><file src="the-html-syntax/parsing-html-documents/tokenization/script-data-less-than-sign-state"><file src="the-html-syntax/parsing-html-documents/tokenization/script-data-end-tag-open-state"><file src="the-html-syntax/parsing-html-documents/tokenization/script-data-end-tag-name-state"><file src="the-html-syntax/parsing-html-documents/tokenization/script-data-escape-start-state"><file src="the-html-syntax/parsing-html-documents/tokenization/script-data-escape-start-dash-state"><file src="the-html-syntax/parsing-html-documents/tokenization/script-data-escaped-state"><file src="the-html-syntax/parsing-html-documents/tokenization/script-data-escaped-dash-state"><file src="the-html-syntax/parsing-html-documents/tokenization/script-data-escaped-dash-dash-state"><file src="the-html-syntax/parsing-html-documents/tokenization/script-data-escaped-less-than-sign-state"><file src="the-html-syntax/parsing-html-documents/tokenization/script-data-escaped-end-tag-open-state"><file src="the-html-syntax/parsing-html-documents/tokenization/script-data-escaped-end-tag-name-state"><file src="the-html-syntax/parsing-html-documents/tokenization/script-data-double-escape-start-state"><file src="the-html-syntax/parsing-html-documents/tokenization/script-data-double-escaped-state"><file src="the-html-syntax/parsing-html-documents/tokenization/script-data-double-escaped-dash-state"><file src="the-html-syntax/parsing-html-documents/tokenization/script-data-double-escaped-dash-dash-state"><file src="the-html-syntax/parsing-html-documents/tokenization/script-data-double-escaped-less-than-sign-state"><file src="the-html-syntax/parsing-html-documents/tokenization/script-data-double-escape-end-state"><file src="the-html-syntax/parsing-html-documents/tokenization/before-attribute-name-state"><file src="the-html-syntax/parsing-html-documents/tokenization/attribute-name-state"><file src="the-html-syntax/parsing-html-documents/tokenization/after-attribute-name-state"><file src="the-html-syntax/parsing-html-documents/tokenization/before-attribute-value-state"><file src="the-html-syntax/parsing-html-documents/tokenization/attribute-value-double-quoted-state"><file src="the-html-syntax/parsing-html-documents/tokenization/attribute-value-single-quoted-state"><file src="the-html-syntax/parsing-html-documents/tokenization/attribute-value-unquoted-state"><file src="the-html-syntax/parsing-html-documents/tokenization/after-attribute-value-quoted-state"><file src="the-html-syntax/parsing-html-documents/tokenization/self-closing-start-tag-state"><file src="the-html-syntax/parsing-html-documents/tokenization/bogus-comment-state"><file src="the-html-syntax/parsing-html-documents/tokenization/markup-declaration-open-state"><file src="the-html-syntax/parsing-html-documents/tokenization/comment-start-state"><file src="the-html-syntax/parsing-html-documents/tokenization/comment-start-dash-state"><file src="the-html-syntax/parsing-html-documents/tokenization/comment-state"><file src="the-html-syntax/parsing-html-documents/tokenization/comment-less-than-sign-state"><file src="the-html-syntax/parsing-html-documents/tokenization/comment-less-than-sign-bang-state"><file src="the-html-syntax/parsing-html-documents/tokenization/comment-less-than-sign-bang-dash-state"><file src="the-html-syntax/parsing-html-documents/tokenization/comment-less-than-sign-bang-dash-dash-state"><file src="the-html-syntax/parsing-html-documents/tokenization/comment-end-dash-state"><file src="the-html-syntax/parsing-html-documents/tokenization/comment-end-state"><file src="the-html-syntax/parsing-html-documents/tokenization/comment-end-bang-state"><file src="the-html-syntax/parsing-html-documents/tokenization/doctype-state"><file src="the-html-syntax/parsing-html-documents/tokenization/before-doctype-name-state"><file src="the-html-syntax/parsing-html-documents/tokenization/doctype-name-state"><file src="the-html-syntax/parsing-html-documents/tokenization/after-doctype-name-state"><file src="the-html-syntax/parsing-html-documents/tokenization/after-doctype-public-keyword-state"><file src="the-html-syntax/parsing-html-documents/tokenization/before-doctype-public-identifier-state"><file src="the-html-syntax/parsing-html-documents/tokenization/doctype-public-identifier-double-quoted-state"><file src="the-html-syntax/parsing-html-documents/tokenization/doctype-public-identifier-single-quoted-state"><file src="the-html-syntax/parsing-html-documents/tokenization/after-doctype-public-identifier-state"><file src="the-html-syntax/parsing-html-documents/tokenization/between-doctype-public-and-system-identifiers-state"><file src="the-html-syntax/parsing-html-documents/tokenization/after-doctype-system-keyword-state"><file src="the-html-syntax/parsing-html-documents/tokenization/before-doctype-system-identifier-state"><file src="the-html-syntax/parsing-html-documents/tokenization/doctype-system-identifier-double-quoted-state"><file src="the-html-syntax/parsing-html-documents/tokenization/doctype-system-identifier-single-quoted-state"><file src="the-html-syntax/parsing-html-documents/tokenization/after-doctype-system-identifier-state"><file src="the-html-syntax/parsing-html-documents/tokenization/bogus-doctype-state"><file src="the-html-syntax/parsing-html-documents/tokenization/cdata-section-state"><file src="the-html-syntax/parsing-html-documents/tokenization/cdata-section-bracket-state"><file src="the-html-syntax/parsing-html-documents/tokenization/cdata-section-end-state"><file src="the-html-syntax/parsing-html-documents/tokenization/character-reference-state"><file src="the-html-syntax/parsing-html-documents/tokenization/named-character-reference-state"><file src="the-html-syntax/parsing-html-documents/tokenization/ambiguous-ampersand-state"><file src="the-html-syntax/parsing-html-documents/tokenization/numeric-character-reference-state"><file src="the-html-syntax/parsing-html-documents/tokenization/hexademical-character-reference-start-state"><file src="the-html-syntax/parsing-html-documents/tokenization/decimal-character-reference-start-state"><file src="the-html-syntax/parsing-html-documents/tokenization/hexademical-character-reference-state"><file src="the-html-syntax/parsing-html-documents/tokenization/decimal-character-reference-state"><file src="the-html-syntax/parsing-html-documents/tokenization/numeric-character-reference-end-state"><file src="the-html-syntax/parsing-html-documents/tree-construction/index"><file src="the-html-syntax/parsing-html-documents/tree-construction/creating-and-inserting-nodes"><file src="the-html-syntax/parsing-html-documents/tree-construction/parsing-elements-that-contain-only-text"><file src="the-html-syntax/parsing-html-documents/tree-construction/closing-elements-that-have-implied-end-tags"><file src="the-html-syntax/parsing-html-documents/tree-construction/the-rules-for-parsing-tokens-in-html-content/index"><file src="the-html-syntax/parsing-html-documents/tree-construction/the-rules-for-parsing-tokens-in-html-content/the-initial-insertion-mode"><file src="the-html-syntax/parsing-html-documents/tree-construction/the-rules-for-parsing-tokens-in-html-content/the-before-html-insertion-mode"><file src="the-html-syntax/parsing-html-documents/tree-construction/the-rules-for-parsing-tokens-in-html-content/the-before-head-insertion-mode"><file src="the-html-syntax/parsing-html-documents/tree-construction/the-rules-for-parsing-tokens-in-html-content/the-in-head-insertion-mode"><file src="the-html-syntax/parsing-html-documents/tree-construction/the-rules-for-parsing-tokens-in-html-content/the-in-head-noscript-insertion-mode"><file src="the-html-syntax/parsing-html-documents/tree-construction/the-rules-for-parsing-tokens-in-html-content/the-after-head-insertion-mode"><file src="the-html-syntax/parsing-html-documents/tree-construction/the-rules-for-parsing-tokens-in-html-content/the-in-body-insertion-mode"><file src="the-html-syntax/parsing-html-documents/tree-construction/the-rules-for-parsing-tokens-in-html-content/the-text-insertion-mode"><file src="the-html-syntax/parsing-html-documents/tree-construction/the-rules-for-parsing-tokens-in-html-content/the-in-table-insertion-mode"><file src="the-html-syntax/parsing-html-documents/tree-construction/the-rules-for-parsing-tokens-in-html-content/the-in-table-text-insertion-mode"><file src="the-html-syntax/parsing-html-documents/tree-construction/the-rules-for-parsing-tokens-in-html-content/the-in-caption-insertion-mode"><file src="the-html-syntax/parsing-html-documents/tree-construction/the-rules-for-parsing-tokens-in-html-content/the-in-column-group-insertion-mode"><file src="the-html-syntax/parsing-html-documents/tree-construction/the-rules-for-parsing-tokens-in-html-content/the-in-table-body-insertion-mode"><file src="the-html-syntax/parsing-html-documents/tree-construction/the-rules-for-parsing-tokens-in-html-content/the-in-row-insertion-mode"><file src="the-html-syntax/parsing-html-documents/tree-construction/the-rules-for-parsing-tokens-in-html-content/the-in-cell-insertion-mode"><file src="the-html-syntax/parsing-html-documents/tree-construction/the-rules-for-parsing-tokens-in-html-content/the-in-select-insertion-mode"><file src="the-html-syntax/parsing-html-documents/tree-construction/the-rules-for-parsing-tokens-in-html-content/the-in-select-in-table-insertion-mode"><file src="the-html-syntax/parsing-html-documents/tree-construction/the-rules-for-parsing-tokens-in-html-content/the-in-template-insertion-mode"><file src="the-html-syntax/parsing-html-documents/tree-construction/the-rules-for-parsing-tokens-in-html-content/the-after-body-insertion-mode"><file src="the-html-syntax/parsing-html-documents/tree-construction/the-rules-for-parsing-tokens-in-html-content/the-in-frameset-insertion-mode"><file src="the-html-syntax/parsing-html-documents/tree-construction/the-rules-for-parsing-tokens-in-html-content/the-after-frameset-insertion-mode"><file src="the-html-syntax/parsing-html-documents/tree-construction/the-rules-for-parsing-tokens-in-html-content/the-after-after-body-insertion-mode"><file src="the-html-syntax/parsing-html-documents/tree-construction/the-rules-for-parsing-tokens-in-html-content/the-after-after-frameset-insertion-mode"><file src="the-html-syntax/parsing-html-documents/tree-construction/the-rules-for-parsing-tokens-in-foreign-content"><file src="the-html-syntax/parsing-html-documents/the-end"><file src="the-html-syntax/parsing-html-documents/coercing-an-html-dom-into-an-infoset"><file src="the-html-syntax/parsing-html-documents/an-introduction-to-error-handling-and-strange-cases-in-the-parser/index"><file src="the-html-syntax/parsing-html-documents/an-introduction-to-error-handling-and-strange-cases-in-the-parser/misnested-tags-lt-b-lt-i-lt-b-lt-i"><file src="the-html-syntax/parsing-html-documents/an-introduction-to-error-handling-and-strange-cases-in-the-parser/misnested-tags-lt-b-lt-p-lt-b-lt-p"><file src="the-html-syntax/parsing-html-documents/an-introduction-to-error-handling-and-strange-cases-in-the-parser/unexpected-markup-in-tables"><file src="the-html-syntax/parsing-html-documents/an-introduction-to-error-handling-and-strange-cases-in-the-parser/scripts-that-modify-the-page-as-it-is-being-parsed"><file src="the-html-syntax/parsing-html-documents/an-introduction-to-error-handling-and-strange-cases-in-the-parser/the-execution-of-scripts-that-are-moving-across-multiple-documents"><file src="the-html-syntax/parsing-html-documents/an-introduction-to-error-handling-and-strange-cases-in-the-parser/unclosed-formatting-elements"><file src="the-html-syntax/serializing-html-fragments"><file src="the-html-syntax/parsing-html-fragments"><file src="the-html-syntax/named-character-references"><file src="the-xml-syntax/index"><file src="the-xml-syntax/writing-documents-in-the-xml-syntax"><file src="the-xml-syntax/parsing-xml-documents"><file src="the-xml-syntax/serializing-xml-fragments"><file src="the-xml-syntax/parsing-xml-fragments"><file src="rendering/index"><file src="rendering/introduction"><file src="rendering/the-css-user-agent-style-sheet-and-presentational-hints"><file src="rendering/non-replaced-elements/index"><file src="rendering/non-replaced-elements/hidden-elements"><file src="rendering/non-replaced-elements/the-page"><file src="rendering/non-replaced-elements/flow-content"><file src="rendering/non-replaced-elements/phrasing-content"><file src="rendering/non-replaced-elements/bidirectional-text"><file src="rendering/non-replaced-elements/quotes"><file src="rendering/non-replaced-elements/sections-and-headings"><file src="rendering/non-replaced-elements/lists"><file src="rendering/non-replaced-elements/tables"><file src="rendering/non-replaced-elements/margin-collapsing-quirks"><file src="rendering/non-replaced-elements/form-controls"><file src="rendering/non-replaced-elements/the-hr-element"><file src="rendering/non-replaced-elements/the-fieldset-and-legend-elements"><file src="rendering/replaced-elements/index"><file src="rendering/replaced-elements/embedded-content"><file src="rendering/replaced-elements/images"><file src="rendering/replaced-elements/attributes-for-embedded-content-and-images"><file src="rendering/replaced-elements/image-maps"><file src="rendering/widgets/index"><file src="rendering/widgets/introduction"><file src="rendering/widgets/the-button-element"><file src="rendering/widgets/the-details-and-summary-elements"><file src="rendering/widgets/the-input-element-as-a-text-entry-widget"><file src="rendering/widgets/the-input-element-as-domain-specific-widgets"><file src="rendering/widgets/the-input-element-as-a-range-control"><file src="rendering/widgets/the-input-element-as-a-color-well"><file src="rendering/widgets/the-input-element-as-a-checkbox-and-radio-button-widgets"><file src="rendering/widgets/the-input-element-as-a-file-upload-control"><file src="rendering/widgets/the-input-element-as-a-button"><file src="rendering/widgets/the-marquee-element"><file src="rendering/widgets/the-meter-element"><file src="rendering/widgets/the-progress-element"><file src="rendering/widgets/the-select-element"><file src="rendering/widgets/the-textarea-element"><file src="rendering/frames-and-framesets"><file src="rendering/interactive-media/index"><file src="rendering/interactive-media/links-forms-and-navigation"><file src="rendering/interactive-media/the-title-attribute"><file src="rendering/interactive-media/editing-hosts"><file src="rendering/interactive-media/text-rendered-in-native-user-interfaces"><file src="rendering/print-media"><file src="rendering/unstyled-xml-documents"><file src="obsolete-features/index"><file src="obsolete-features/obsolete-but-conforming-features/index"><file src="obsolete-features/obsolete-but-conforming-features/warnings-for-obsolete-but-conforming-features"><file src="obsolete-features/non-conforming-features"><file src="obsolete-features/requirements-for-implementations/index"><file src="obsolete-features/requirements-for-implementations/the-marquee-element"><file src="obsolete-features/requirements-for-implementations/frames"><file src="obsolete-features/requirements-for-implementations/other-elements-attributes-and-apis"><file src="iana-considerations/index"><file src="iana-considerations/text-html"><file src="iana-considerations/multipart-x-mixed-replace"><file src="iana-considerations/application-xhtml-xml"><file src="iana-considerations/text-cache-manifest"><file src="iana-considerations/text-ping"><file src="iana-considerations/application-microdata-json"><file src="iana-considerations/text-event-stream"><file src="iana-considerations/ping-from"><file src="iana-considerations/ping-to"><file src="iana-considerations/refresh"><file src="iana-considerations/last-event-id"><file src="iana-considerations/web-scheme-prefix"><file src="index/index"><file src="index/elements"><file src="index/element-content-categories"><file src="index/attributes"><file src="index/element-interfaces"><file src="index/all-interfaces"><file src="index/events"><file src="index/mime-types"><file src="references"><file src="acknowledgments"> </body>
</html>