0% found this document useful (0 votes)
71 views1,262 pages

HTML

html notes

Uploaded by

shubham mekhe
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
71 views1,262 pages

HTML

html notes

Uploaded by

shubham mekhe
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd

HTML

Living Standard — Last Updated 11 November 2019

One-Page Version Multipage Version


html.spec.whatwg.org /multipage

Developer Version PDF Version


/dev /print.pdf

Translations FAQ
日本語 • 简体中文 on GitHub

Join us on IRC Contribute on GitHub


#whatwg on Freenode whatwg/html repository

Commits Snapshot
on GitHub as of this commit

Twitter Updates Open Issues


@htmlstandard filed on GitHub

Open an Issue Tests


whatwg.org/newbug web-platform-tests html/

Issues for Tests


ongoing work

Table of contents
1 Introduction ............................................................................................................................................................................ 1
2 Common infrastructure........................................................................................................................................................... 2
3 Semantics, structure, and APIs of HTML documents............................................................................................................... 3
4 The elements of HTML ............................................................................................................................................................ 4
5 Microdata.............................................................................................................................................................................. 12
6 User interaction .................................................................................................................................................................... 12
7 Loading Web pages .............................................................................................................................................................. 13
8 Web application APIs ............................................................................................................................................................ 15
9 Communication .................................................................................................................................................................... 16
10 Web workers ....................................................................................................................................................................... 17
11 Web storage ....................................................................................................................................................................... 17
12 The HTML syntax ................................................................................................................................................................ 18
13 The XML syntax .................................................................................................................................................................. 20
14 Rendering ........................................................................................................................................................................... 20
15 Obsolete features ............................................................................................................................................................... 21
16 IANA considerations............................................................................................................................................................ 22
Index........................................................................................................................................................................................ 22
References............................................................................................................................................................................... 22
Acknowledgments ................................................................................................................................................................... 22

Full table of contents

1 Introduction .......................................................................................................................................................................... 23
1.1 Where does this specification fit?.................................................................................................................. 23

1.2 Is this HTML5? ............................................................................................................................................... 23

1.3 Background ................................................................................................................................................... 24

1.4 Audience ....................................................................................................................................................... 24

1.5 Scope ............................................................................................................................................................ 24

1
1.6 History........................................................................................................................................................... 24

1.7 Design notes ................................................................................................................................................. 25


1.7.1 Serializability of script execution ........................................................................................... 26
1.7.2 Compliance with other specifications .................................................................................... 26
1.7.3 Extensibility ........................................................................................................................... 26

1.8 HTML vs XML syntax ..................................................................................................................................... 27

1.9 Structure of this specification........................................................................................................................ 27


1.9.1 How to read this specification................................................................................................ 28
1.9.2 Typographic conventions ....................................................................................................... 28

1.10 Privacy concerns ......................................................................................................................................... 29


1.10.1 Cross-site communication.................................................................................................... 30

1.11 A quick introduction to HTML ...................................................................................................................... 30


1.11.1 Writing secure applications with HTML ................................................................................ 33
1.11.2 Common pitfalls to avoid when using the scripting APIs ..................................................... 34
1.11.3 How to catch mistakes when writing HTML: validators and conformance checkers............. 35

1.12 Conformance requirements for authors ...................................................................................................... 35


1.12.1 Presentational markup......................................................................................................... 35
1.12.2 Syntax errors ....................................................................................................................... 36
1.12.3 Restrictions on content models and on attribute values ...................................................... 38

1.13 Suggested reading ...................................................................................................................................... 41

2 Common infrastructure......................................................................................................................................................... 42
2.1 Terminology................................................................................................................................................... 42
2.1.1 Parallelism ............................................................................................................................. 42
2.1.2 Resources .............................................................................................................................. 43
2.1.3 XML compatibility .................................................................................................................. 44
2.1.4 DOM trees.............................................................................................................................. 44
2.1.5 Scripting ................................................................................................................................ 45
2.1.6 Plugins ................................................................................................................................... 45
2.1.7 Character encodings.............................................................................................................. 46
2.1.8 Conformance classes ............................................................................................................. 46
2.1.9 Dependencies ........................................................................................................................ 49
2.1.10 Extensibility ......................................................................................................................... 64
2.1.11 Interactions with XPath and XSLT......................................................................................... 64

2.2 Case-sensitivity and string comparison......................................................................................................... 66

2.3 Policy-controlled features .............................................................................................................................. 66

2.4 Common microsyntaxes................................................................................................................................ 66


2.4.1 Common parser idioms.......................................................................................................... 66
2.4.2 Boolean attributes ................................................................................................................. 66
2.4.3 Keywords and enumerated attributes.................................................................................... 67
2.4.4 Numbers ................................................................................................................................ 67
2.4.4.1 Signed integers .............................................................................................. 67
2.4.4.2 Non-negative integers .................................................................................... 68
2.4.4.3 Floating-point numbers .................................................................................. 68
2.4.4.4 Percentages and lengths ................................................................................ 70
2.4.4.5 Non-zero percentages and lengths................................................................. 71
2.4.4.6 Lists of floating-point numbers....................................................................... 71
2.4.4.7 Lists of dimensions......................................................................................... 72
2.4.5 Dates and times..................................................................................................................... 72
2.4.5.1 Months ........................................................................................................... 73

2
2.4.5.2 Dates.............................................................................................................. 74
2.4.5.3 Yearless dates ................................................................................................ 74
2.4.5.4 Times.............................................................................................................. 75
2.4.5.5 Local dates and times .................................................................................... 76
2.4.5.6 Time zones ..................................................................................................... 77
2.4.5.7 Global dates and times .................................................................................. 78
2.4.5.8 Weeks............................................................................................................. 80
2.4.5.9 Durations........................................................................................................ 81
2.4.5.10 Vaguer moments in time .............................................................................. 84
2.4.6 Colors .................................................................................................................................... 84
2.4.7 Space-separated tokens ........................................................................................................ 86
2.4.8 Comma-separated tokens...................................................................................................... 86
2.4.9 References ............................................................................................................................. 87
2.4.10 Media queries ...................................................................................................................... 87

2.5 URLs .............................................................................................................................................................. 87


2.5.1 Terminology ........................................................................................................................... 87
2.5.2 Parsing URLs .......................................................................................................................... 88
2.5.3 Dynamic changes to base URLs............................................................................................. 88

2.6 Fetching resources ........................................................................................................................................ 89


2.6.1 Terminology ........................................................................................................................... 89
2.6.2 Determining the type of a resource ....................................................................................... 89
2.6.3 Extracting character encodings from meta elements............................................................. 89
2.6.4 CORS settings attributes........................................................................................................ 90
2.6.5 Referrer policy attributes ....................................................................................................... 91
2.6.6 Nonce attributes .................................................................................................................... 91

2.7 Common DOM interfaces .............................................................................................................................. 92


2.7.1 Reflecting content attributes in IDL attributes ....................................................................... 92
2.7.2 Collections ............................................................................................................................. 93
2.7.2.1 The HTMLAllCollection interface................................................................. 93
2.7.2.1.1 [[Call]] ( thisArgument, argumentsList ) ................................. 95
2.7.2.2 The HTMLFormControlsCollection interface................................................ 96
2.7.2.3 The HTMLOptionsCollection interface ......................................................... 97
2.7.3 The DOMStringList interface ................................................................................................ 99

2.8 Safe passing of structured data .................................................................................................................. 100


2.8.1 Serializable objects .............................................................................................................. 100
2.8.2 Transferable objects............................................................................................................. 101
2.8.3 StructuredSerializeInternal ( value, forStorage [ , memory ] ) ............................................. 102
2.8.4 StructuredSerialize ( value ) ................................................................................................ 105
2.8.5 StructuredSerializeForStorage ( value ) ............................................................................... 105
2.8.6 StructuredDeserialize ( serialized, targetRealm [ , memory ] )............................................ 106
2.8.7 StructuredSerializeWithTransfer ( value, transferList )......................................................... 108
2.8.8 StructuredDeserializeWithTransfer ( serializeWithTransferResult, targetRealm )................. 109
2.8.9 Performing serialization and transferring from other specifications .................................... 110

3 Semantics, structure, and APIs of HTML documents........................................................................................................... 112


3.1 Documents .................................................................................................................................................. 112
3.1.1 The Document object............................................................................................................ 112
3.1.2 The DocumentOrShadowRoot interface................................................................................. 113
3.1.3 Resource metadata management........................................................................................ 113
3.1.4 DOM tree accessors ............................................................................................................. 115

3.2 Elements ..................................................................................................................................................... 119


3
3.2.1 Semantics ............................................................................................................................ 119
3.2.2 Elements in the DOM ........................................................................................................... 121
3.2.3 HTML element constructors ................................................................................................. 123
3.2.4 Element definitions .............................................................................................................. 126
3.2.4.1 Attributes ..................................................................................................... 127
3.2.5 Content models ................................................................................................................... 127
3.2.5.1 The "nothing" content model ....................................................................... 127
3.2.5.2 Kinds of content ........................................................................................... 128
3.2.5.2.1 Metadata content ................................................................. 128
3.2.5.2.2 Flow content ......................................................................... 129
3.2.5.2.3 Sectioning content ................................................................ 129
3.2.5.2.4 Heading content ................................................................... 129
3.2.5.2.5 Phrasing content................................................................... 130
3.2.5.2.6 Embedded content ............................................................... 130
3.2.5.2.7 Interactive content ............................................................... 130
3.2.5.2.8 Palpable content ................................................................... 130
3.2.5.2.9 Script-supporting elements................................................... 131
3.2.5.3 Transparent content models......................................................................... 131
3.2.5.4 Paragraphs ................................................................................................... 132
3.2.6 Global attributes .................................................................................................................. 134
3.2.6.1 The title attribute ...................................................................................... 137
3.2.6.2 The lang and xml:lang attributes ............................................................... 137
3.2.6.3 The translate attribute .............................................................................. 138
3.2.6.4 The dir attribute.......................................................................................... 139
3.2.6.5 The style attribute ...................................................................................... 142
3.2.6.6 Embedding custom non-visible data with the data-* attributes.................. 143
3.2.7 The innerText IDL attribute................................................................................................ 146
3.2.8 Requirements relating to the bidirectional algorithm .......................................................... 148
3.2.8.1 Authoring conformance criteria for bidirectional-algorithm formatting
characters ................................................................................................................ 148
3.2.8.2 User agent conformance criteria .................................................................. 148
3.2.9 Requirements related to ARIA and to platform accessibility APIs......................................... 148

4 The elements of HTML ........................................................................................................................................................ 149


4.1 The document element ............................................................................................................................... 149
4.1.1 The html element ................................................................................................................ 149

4.2 Document metadata ................................................................................................................................... 150


4.2.1 The head element ................................................................................................................ 150
4.2.2 The title element .............................................................................................................. 151
4.2.3 The base element ................................................................................................................ 152
4.2.4 The link element ................................................................................................................ 154
4.2.4.1 Processing the media attribute..................................................................... 157
4.2.4.2 Processing the type attribute....................................................................... 158
4.2.4.3 Fetching and processing a resource from a link element ........................... 159
4.2.4.4 Processing `Link` headers........................................................................... 160
4.2.4.5 Providing users with a means to follow hyperlinks created using the link
element .................................................................................................................... 160
4.2.5 The meta element ................................................................................................................ 160
4.2.5.1 Standard metadata names........................................................................... 161
4.2.5.2 Other metadata names ................................................................................ 164
4.2.5.3 Pragma directives......................................................................................... 165
4.2.5.4 Specifying the document's character encoding............................................ 169
4.2.6 The style element .............................................................................................................. 170
4.2.7 Interactions of styling and scripting..................................................................................... 173

4
4.3 Sections ...................................................................................................................................................... 174
4.3.1 The body element ................................................................................................................ 174
4.3.2 The article element .......................................................................................................... 175
4.3.3 The section element .......................................................................................................... 177
4.3.4 The nav element .................................................................................................................. 180
4.3.5 The aside element .............................................................................................................. 183
4.3.6 The h1, h2, h3, h4, h5, and h6 elements .............................................................................. 185
4.3.7 The hgroup element ............................................................................................................ 187
4.3.8 The header element ............................................................................................................ 189
4.3.9 The footer element ............................................................................................................ 190
4.3.10 The address element ........................................................................................................ 193
4.3.11 Headings and sections....................................................................................................... 194
4.3.11.1 Creating an outline..................................................................................... 196
4.3.11.2 Sample outlines.......................................................................................... 200
4.3.11.3 Exposing outlines to users ......................................................................... 204
4.3.12 Usage summary................................................................................................................. 205
4.3.12.1 Article or section?....................................................................................... 206

4.4 Grouping content ........................................................................................................................................ 207


4.4.1 The p element...................................................................................................................... 207
4.4.2 The hr element.................................................................................................................... 209
4.4.3 The pre element .................................................................................................................. 211
4.4.4 The blockquote element..................................................................................................... 212
4.4.5 The ol element.................................................................................................................... 215
4.4.6 The ul element.................................................................................................................... 217
4.4.7 The menu element ................................................................................................................ 218
4.4.8 The li element.................................................................................................................... 219
4.4.9 The dl element.................................................................................................................... 221
4.4.10 The dt element.................................................................................................................. 225
4.4.11 The dd element.................................................................................................................. 225
4.4.12 The figure element .......................................................................................................... 226
4.4.13 The figcaption element................................................................................................... 229
4.4.14 The main element .............................................................................................................. 230
4.4.15 The div element ................................................................................................................ 231

4.5 Text-level semantics.................................................................................................................................... 232


4.5.1 The a element...................................................................................................................... 232
4.5.2 The em element.................................................................................................................... 235
4.5.3 The strong element ............................................................................................................ 236
4.5.4 The small element .............................................................................................................. 237
4.5.5 The s element...................................................................................................................... 239
4.5.6 The cite element ................................................................................................................ 239
4.5.7 The q element...................................................................................................................... 241
4.5.8 The dfn element .................................................................................................................. 242
4.5.9 The abbr element ................................................................................................................ 243
4.5.10 The ruby element .............................................................................................................. 245
4.5.11 The rt element.................................................................................................................. 251
4.5.12 The rp element.................................................................................................................. 251
4.5.13 The data element .............................................................................................................. 252
4.5.14 The time element .............................................................................................................. 253
4.5.15 The code element .............................................................................................................. 260
4.5.16 The var element ................................................................................................................ 261

5
4.5.17 The samp element .............................................................................................................. 262
4.5.18 The kbd element ................................................................................................................ 263
4.5.19 The sub and sup elements................................................................................................. 264
4.5.20 The i element.................................................................................................................... 265
4.5.21 The b element.................................................................................................................... 266
4.5.22 The u element.................................................................................................................... 267
4.5.23 The mark element .............................................................................................................. 268
4.5.24 The bdi element ................................................................................................................ 270
4.5.25 The bdo element ................................................................................................................ 271
4.5.26 The span element .............................................................................................................. 271
4.5.27 The br element.................................................................................................................. 272
4.5.28 The wbr element ................................................................................................................ 273
4.5.29 Usage summary................................................................................................................. 274

4.6 Links............................................................................................................................................................ 275


4.6.1 Introduction ......................................................................................................................... 275
4.6.2 Links created by a and area elements ................................................................................ 276
4.6.3 API for a and area elements ................................................................................................ 277
4.6.4 Following hyperlinks ............................................................................................................ 281
4.6.5 Downloading resources........................................................................................................ 282
4.6.5.1 Hyperlink auditing ........................................................................................ 284
4.6.6 Link types ............................................................................................................................ 285
4.6.6.1 Link type "alternate" ................................................................................. 287
4.6.6.2 Link type "author" ....................................................................................... 288
4.6.6.3 Link type "bookmark" ................................................................................... 289
4.6.6.4 Link type "canonical" ................................................................................. 289
4.6.6.5 Link type "dns-prefetch"............................................................................ 289
4.6.6.6 Link type "external" ................................................................................... 290
4.6.6.7 Link type "help" ........................................................................................... 290
4.6.6.8 Link type "icon" ........................................................................................... 290
4.6.6.9 Link type "license" ..................................................................................... 291
4.6.6.10 Link type "modulepreload" ........................................................................ 292
4.6.6.11 Link type "nofollow" ................................................................................. 294
4.6.6.12 Link type "noopener" ................................................................................. 294
4.6.6.13 Link type "noreferrer".............................................................................. 295
4.6.6.14 Link type "opener" ..................................................................................... 295
4.6.6.15 Link type "pingback" ................................................................................. 295
4.6.6.16 Link type "preconnect".............................................................................. 295
4.6.6.17 Link type "prefetch" ................................................................................. 296
4.6.6.18 Link type "preload" ................................................................................... 296
4.6.6.19 Link type "prerender" ............................................................................... 296
4.6.6.20 Link type "search" ..................................................................................... 296
4.6.6.21 Link type "stylesheet".............................................................................. 297
4.6.6.22 Link type "tag" ........................................................................................... 299
4.6.6.23 Sequential link types .................................................................................. 300
4.6.6.23.1 Link type "next" ................................................................. 300
4.6.6.23.2 Link type "prev" ................................................................. 300
4.6.6.24 Other link types.......................................................................................... 300

4.7 Edits ............................................................................................................................................................ 302


4.7.1 The ins element .................................................................................................................. 302
4.7.2 The del element .................................................................................................................. 303
4.7.3 Attributes common to ins and del elements ...................................................................... 304
4.7.4 Edits and paragraphs........................................................................................................... 305
4.7.5 Edits and lists ...................................................................................................................... 305
6
4.7.6 Edits and tables ................................................................................................................... 306

4.8 Embedded content ...................................................................................................................................... 307


4.8.1 The picture element .......................................................................................................... 307
4.8.2 The source element ............................................................................................................ 308
4.8.3 The img element .................................................................................................................. 310
4.8.4 Images ................................................................................................................................. 318
4.8.4.1 Introduction .................................................................................................. 318
4.8.4.1.1 Adaptive images ................................................................... 323
4.8.4.2 Attributes common to source, img, and link elements .............................. 325
4.8.4.2.1 Srcset attributes ................................................................... 325
4.8.4.2.2 Sizes attributes ..................................................................... 325
4.8.4.3 Processing model ......................................................................................... 326
4.8.4.3.1 When to obtain images ......................................................... 327
4.8.4.3.2 Reacting to DOM mutations .................................................. 327
4.8.4.3.3 The list of available images .................................................. 328
4.8.4.3.4 Decoding images .................................................................. 328
4.8.4.3.5 Updating the image data ...................................................... 329
4.8.4.3.6 Selecting an image source.................................................... 332
4.8.4.3.7 Updating the source set........................................................ 332
4.8.4.3.8 Parsing a srcset attribute ...................................................... 333
4.8.4.3.9 Parsing a sizes attribute........................................................ 335
4.8.4.3.10 Normalizing the source densities ........................................ 336
4.8.4.3.11 Reacting to environment changes ...................................... 336
4.8.4.4 Requirements for providing text to act as an alternative for images ........... 338
4.8.4.4.1 General guidelines ................................................................ 338
4.8.4.4.2 A link or button containing nothing but the image ............... 338
4.8.4.4.3 A phrase or paragraph with an alternative graphical
representation: charts, diagrams, graphs, maps, illustrations ............. 339
4.8.4.4.4 A short phrase or label with an alternative graphical
representation: icons, logos ................................................................. 340
4.8.4.4.5 Text that has been rendered to a graphic for typographical
effect ................................................................................................... 341
4.8.4.4.6 A graphical representation of some of the surrounding text. 342
4.8.4.4.7 Ancillary images ................................................................... 343
4.8.4.4.8 A purely decorative image that doesn't add any
information .......................................................................................... 344
4.8.4.4.9 A group of images that form a single larger picture with no
links ..................................................................................................... 345
4.8.4.4.10 A group of images that form a single larger picture with
links ..................................................................................................... 345
4.8.4.4.11 A key part of the content .................................................... 345
4.8.4.4.12 An image not intended for the user .................................... 349
4.8.4.4.13 An image in an e-mail or private document intended for a
specific person who is known to be able to view images ..................... 349
4.8.4.4.14 Guidance for markup generators ........................................ 349
4.8.4.4.15 Guidance for conformance checkers................................... 350
4.8.5 The iframe element ............................................................................................................ 350
4.8.6 The embed element .............................................................................................................. 358
4.8.7 The object element ............................................................................................................ 361
4.8.8 The param element .............................................................................................................. 367
4.8.9 The video element .............................................................................................................. 368
4.8.10 The audio element ............................................................................................................ 372
4.8.11 The track element ............................................................................................................ 373
4.8.12 Media elements ................................................................................................................. 376
4.8.12.1 Error codes ................................................................................................. 377
4.8.12.2 Location of the media resource .................................................................. 378
4.8.12.3 MIME types ................................................................................................. 379
4.8.12.4 Network states ........................................................................................... 380

7
4.8.12.5 Loading the media resource ....................................................................... 381
4.8.12.6 Offsets into the media resource ................................................................. 391
4.8.12.7 Ready states............................................................................................... 393
4.8.12.8 Playing the media resource ........................................................................ 396
4.8.12.9 Seeking ...................................................................................................... 403
4.8.12.10 Media resources with multiple media tracks ............................................ 405
4.8.12.10.1 AudioTrackList and VideoTrackList objects ................ 405
4.8.12.10.2 Selecting specific audio and video tracks declaratively .... 409
4.8.12.11 Timed text tracks ..................................................................................... 409
4.8.12.11.1 Text track model ............................................................... 409
4.8.12.11.2 Sourcing in-band text tracks ............................................. 412
4.8.12.11.3 Sourcing out-of-band text tracks....................................... 413
4.8.12.11.4 Guidelines for exposing cues in various formats as text track
cues ..................................................................................................... 416
4.8.12.11.5 Text track API .................................................................... 416
4.8.12.11.6 Event handlers for objects of the text track APIs .............. 422
4.8.12.11.7 Best practices for metadata text tracks............................ 422
4.8.12.12 Identifying a track kind through a URL ..................................................... 424
4.8.12.13 User interface........................................................................................... 424
4.8.12.14 Time ranges ............................................................................................. 425
4.8.12.15 The TrackEvent interface ........................................................................ 426
4.8.12.16 Events summary ...................................................................................... 427
4.8.12.17 Security and privacy considerations......................................................... 429
4.8.12.18 Best practices for authors using media elements .................................... 429
4.8.12.19 Best practices for implementers of media elements ................................ 429
4.8.13 The map element ................................................................................................................ 430
4.8.14 The area element .............................................................................................................. 431
4.8.15 Image maps ....................................................................................................................... 433
4.8.15.1 Authoring ................................................................................................... 433
4.8.15.2 Processing model ....................................................................................... 434
4.8.16 MathML .............................................................................................................................. 436
4.8.17 SVG.................................................................................................................................... 437
4.8.18 Dimension attributes ......................................................................................................... 437

4.9 Tabular data ................................................................................................................................................ 438


4.9.1 The table element .............................................................................................................. 438
4.9.1.1 Techniques for describing tables .................................................................. 442
4.9.1.2 Techniques for table design.......................................................................... 446
4.9.2 The caption element .......................................................................................................... 446
4.9.3 The colgroup element ........................................................................................................ 447
4.9.4 The col element .................................................................................................................. 448
4.9.5 The tbody element .............................................................................................................. 448
4.9.6 The thead element .............................................................................................................. 450
4.9.7 The tfoot element .............................................................................................................. 451
4.9.8 The tr element.................................................................................................................... 451
4.9.9 The td element.................................................................................................................... 453
4.9.10 The th element.................................................................................................................. 454
4.9.11 Attributes common to td and th elements ........................................................................ 456
4.9.12 Processing model............................................................................................................... 457
4.9.12.1 Forming a table .......................................................................................... 457
4.9.12.2 Forming relationships between data cells and header cells ....................... 461
4.9.13 Examples ........................................................................................................................... 462

4.10 Forms ........................................................................................................................................................ 465


4.10.1 Introduction ....................................................................................................................... 465
4.10.1.1 Writing a form's user interface ................................................................... 465

8
4.10.1.2 Implementing the server-side processing for a form .................................. 467
4.10.1.3 Configuring a form to communicate with a server ..................................... 468
4.10.1.4 Client-side form validation ......................................................................... 469
4.10.1.5 Enabling client-side automatic filling of form controls................................ 470
4.10.1.6 Improving the user experience on mobile devices ..................................... 470
4.10.1.7 The difference between the field type, the autofill field name, and the input
modality ................................................................................................................... 471
4.10.1.8 Date, time, and number formats ................................................................ 472
4.10.2 Categories ......................................................................................................................... 473
4.10.3 The form element .............................................................................................................. 473
4.10.4 The label element ............................................................................................................ 477
4.10.5 The input element ............................................................................................................ 479
4.10.5.1 States of the type attribute ....................................................................... 485
4.10.5.1.1 Hidden state (type=hidden) ............................................... 485
4.10.5.1.2 Text (type=text) state and Search state (type=search).... 486
4.10.5.1.3 Telephone state (type=tel) ................................................ 486
4.10.5.1.4 URL state (type=url).......................................................... 487
4.10.5.1.5 E-mail state (type=email) .................................................. 488
4.10.5.1.6 Password state (type=password)........................................ 490
4.10.5.1.7 Date state (type=date) ...................................................... 490
4.10.5.1.8 Month state (type=month) .................................................. 491
4.10.5.1.9 Week state (type=week) ..................................................... 492
4.10.5.1.10 Time state (type=time) .................................................... 493
4.10.5.1.11 Local Date and Time state (type=datetime-local)......... 494
4.10.5.1.12 Number state (type=number)............................................ 495
4.10.5.1.13 Range state (type=range) ................................................ 497
4.10.5.1.14 Color state (type=color) .................................................. 499
4.10.5.1.15 Checkbox state (type=checkbox) ..................................... 500
4.10.5.1.16 Radio Button state (type=radio)...................................... 500
4.10.5.1.17 File Upload state (type=file)........................................... 501
4.10.5.1.18 Submit Button state (type=submit) ................................. 504
4.10.5.1.19 Image Button state (type=image)..................................... 504
4.10.5.1.20 Reset Button state (type=reset)...................................... 506
4.10.5.1.21 Button state (type=button).............................................. 507
4.10.5.2 Implementation notes regarding localization of form controls ................... 507
4.10.5.3 Common input element attributes ............................................................ 508
4.10.5.3.1 The maxlength and minlength attributes .......................... 508
4.10.5.3.2 The size attribute .............................................................. 508
4.10.5.3.3 The readonly attribute....................................................... 508
4.10.5.3.4 The required attribute....................................................... 509
4.10.5.3.5 The multiple attribute....................................................... 510
4.10.5.3.6 The pattern attribute......................................................... 511
4.10.5.3.7 The min and max attributes ................................................. 512
4.10.5.3.8 The step attribute .............................................................. 513
4.10.5.3.9 The list attribute .............................................................. 514
4.10.5.3.10 The placeholder attribute ............................................... 516
4.10.5.4 Common input element APIs..................................................................... 517
4.10.5.5 Common event behaviors .......................................................................... 520
4.10.6 The button element .......................................................................................................... 521
4.10.7 The select element .......................................................................................................... 523
4.10.8 The datalist element ...................................................................................................... 529
4.10.9 The optgroup element ...................................................................................................... 530
4.10.10 The option element ........................................................................................................ 531
4.10.11 The textarea element .................................................................................................... 534
4.10.12 The output element ........................................................................................................ 539
4.10.13 The progress element .................................................................................................... 541
4.10.14 The meter element .......................................................................................................... 543
4.10.15 The fieldset element .................................................................................................... 547
9
4.10.16 The legend element ........................................................................................................ 550
4.10.17 Form control infrastructure .............................................................................................. 550
4.10.17.1 A form control's value .............................................................................. 550
4.10.17.2 Mutability ................................................................................................. 551
4.10.17.3 Association of controls and forms ............................................................ 551
4.10.18 Attributes common to form controls ................................................................................ 553
4.10.18.1 Naming form controls: the name attribute ................................................ 553
4.10.18.2 Submitting element directionality: the dirname attribute ........................ 553
4.10.18.3 Limiting user input length: the maxlength attribute ................................ 554
4.10.18.4 Setting minimum input length requirements: the minlength attribute.... 554
4.10.18.5 Enabling and disabling form controls: the disabled attribute ................. 555
4.10.18.6 Form submission ...................................................................................... 555
4.10.18.7 Autofill ...................................................................................................... 557
4.10.18.7.1 Autofilling form controls: the autocomplete attribute ...... 557
4.10.18.7.2 Processing model .............................................................. 563
4.10.19 APIs for the text control selections .................................................................................. 570
4.10.20 Constraints ...................................................................................................................... 574
4.10.20.1 Definitions ................................................................................................ 574
4.10.20.2 Constraint validation ................................................................................ 576
4.10.20.3 The constraint validation API.................................................................... 577
4.10.20.4 Security .................................................................................................... 580
4.10.21 Form submission.............................................................................................................. 580
4.10.21.1 Introduction .............................................................................................. 580
4.10.21.2 Implicit submission................................................................................... 581
4.10.21.3 Form submission algorithm ...................................................................... 581
4.10.21.4 Constructing the entry list........................................................................ 584
4.10.21.5 Selecting a form submission encoding ..................................................... 586
4.10.21.6 URL-encoded form data............................................................................ 587
4.10.21.7 Multipart form data .................................................................................. 587
4.10.21.8 Plain text form data.................................................................................. 587
4.10.21.9 The SubmitEvent interface ...................................................................... 588
4.10.21.10 The FormDataEvent interface ................................................................ 588
4.10.22 Resetting a form .............................................................................................................. 588

4.11 Interactive elements ................................................................................................................................. 589


4.11.1 The details element ........................................................................................................ 589
4.11.2 The summary element ........................................................................................................ 592
4.11.3 Commands......................................................................................................................... 592
4.11.3.1 Facets ......................................................................................................... 592
4.11.3.2 Using the a element to define a command ................................................ 593
4.11.3.3 Using the button element to define a command ....................................... 593
4.11.3.4 Using the input element to define a command ......................................... 593
4.11.3.5 Using the option element to define a command ....................................... 594
4.11.3.6 Using the accesskey attribute on a legend element to define a
command ................................................................................................................. 594
4.11.3.7 Using the accesskey attribute to define a command on other elements... 595
4.11.4 The dialog element .......................................................................................................... 595

4.12 Scripting.................................................................................................................................................... 598


4.12.1 The script element .......................................................................................................... 599
4.12.1.1 Processing model ....................................................................................... 604
4.12.1.2 Scripting languages.................................................................................... 608
4.12.1.3 Restrictions for contents of script elements ............................................ 609
4.12.1.4 Inline documentation for external scripts................................................... 611
4.12.1.5 Interaction of script elements and XSLT .................................................. 611
4.12.2 The noscript element ...................................................................................................... 612

10
4.12.3 The template element ...................................................................................................... 614
4.12.3.1 Interaction of template elements with XSLT and XPath ............................. 617
4.12.4 The slot element .............................................................................................................. 617
4.12.5 The canvas element .......................................................................................................... 618
4.12.5.1 The 2D rendering context........................................................................... 622
4.12.5.1.1 Implementation notes......................................................... 629
4.12.5.1.2 The canvas state................................................................. 630
4.12.5.1.3 Line styles........................................................................... 630
4.12.5.1.4 Text styles ........................................................................... 634
4.12.5.1.5 Building paths ..................................................................... 639
4.12.5.1.6 Path2D objects.................................................................... 643
4.12.5.1.7 Transformations .................................................................. 644
4.12.5.1.8 Image sources for 2D rendering contexts ........................... 646
4.12.5.1.9 Fill and stroke styles ........................................................... 647
4.12.5.1.10 Drawing rectangles to the bitmap .................................... 651
4.12.5.1.11 Drawing text to the bitmap............................................... 652
4.12.5.1.12 Drawing paths to the canvas ............................................ 654
4.12.5.1.13 Drawing focus rings and scrolling paths into view ............ 656
4.12.5.1.14 Drawing images ................................................................ 657
4.12.5.1.15 Pixel manipulation ............................................................ 659
4.12.5.1.16 Compositing...................................................................... 663
4.12.5.1.17 Image smoothing .............................................................. 664
4.12.5.1.18 Shadows ........................................................................... 664
4.12.5.1.19 Filters ................................................................................ 666
4.12.5.1.20 Working with externally-defined SVG filters...................... 666
4.12.5.1.21 Drawing model.................................................................. 666
4.12.5.1.22 Best practices ................................................................... 667
4.12.5.1.23 Examples .......................................................................... 668
4.12.5.2 The ImageBitmap rendering context .......................................................... 672
4.12.5.2.1 Introduction ........................................................................ 672
4.12.5.2.2 The ImageBitmapRenderingContext interface .................. 672
4.12.5.3 The OffscreenCanvas interface................................................................. 674
4.12.5.3.1 The offscreen 2D rendering context.................................... 677
4.12.5.4 Color spaces and color correction .............................................................. 679
4.12.5.5 Serializing bitmaps to a file ........................................................................ 680
4.12.5.6 Security with canvas elements .................................................................. 680

4.13 Custom elements ...................................................................................................................................... 681


4.13.1 Introduction ....................................................................................................................... 681
4.13.1.1 Creating an autonomous custom element ................................................. 681
4.13.1.2 Creating a form-associated custom element.............................................. 682
4.13.1.3 Creating a customized built-in element...................................................... 683
4.13.1.4 Drawbacks of autonomous custom elements............................................. 684
4.13.1.5 Upgrading elements after their creation .................................................... 686
4.13.2 Requirements for custom element constructors and reactions.......................................... 687
4.13.3 Core concepts .................................................................................................................... 687
4.13.4 The CustomElementRegistry interface............................................................................. 690
4.13.5 Upgrades ........................................................................................................................... 694
4.13.6 Custom element reactions ................................................................................................. 695
4.13.7 The ElementInternals interface ...................................................................................... 699

4.14 Common idioms without dedicated elements ........................................................................................... 702


4.14.1 Bread crumb navigation .................................................................................................... 702
4.14.2 Tag clouds .......................................................................................................................... 702
4.14.3 Conversations .................................................................................................................... 703
4.14.4 Footnotes ........................................................................................................................... 705

4.15 Disabled elements..................................................................................................................................... 707

4.16 Matching HTML elements using selectors and CSS ................................................................................... 708

11
4.16.1 Case-sensitivity of the CSS 'attr()' function ....................................................................... 708
4.16.2 Case-sensitivity of selectors .............................................................................................. 708
4.16.3 Pseudo-classes .................................................................................................................. 709

5 Microdata............................................................................................................................................................................ 713
5.1 Introduction................................................................................................................................................. 713
5.1.1 Overview.............................................................................................................................. 713
5.1.2 The basic syntax .................................................................................................................. 713
5.1.3 Typed items ......................................................................................................................... 716
5.1.4 Global identifiers for items .................................................................................................. 717
5.1.5 Selecting names when defining vocabularies ...................................................................... 717

5.2 Encoding microdata .................................................................................................................................... 718


5.2.1 The microdata model........................................................................................................... 718
5.2.2 Items.................................................................................................................................... 718
5.2.3 Names: the itemprop attribute ........................................................................................... 720
5.2.4 Values .................................................................................................................................. 722
5.2.5 Associating names with items ............................................................................................. 723
5.2.6 Microdata and other namespaces........................................................................................ 724

5.3 Sample microdata vocabularies .................................................................................................................. 724


5.3.1 vCard ................................................................................................................................... 725
5.3.1.1 Conversion to vCard ..................................................................................... 733
5.3.1.2 Examples...................................................................................................... 737
5.3.2 vEvent ................................................................................................................................. 738
5.3.2.1 Conversion to iCalendar ............................................................................... 743
5.3.2.2 Examples...................................................................................................... 744
5.3.3 Licensing works ................................................................................................................... 745
5.3.3.1 Examples...................................................................................................... 746

5.4 Converting HTML to other formats .............................................................................................................. 746


5.4.1 JSON..................................................................................................................................... 746

6 User interaction .................................................................................................................................................................. 749


6.1 The hidden attribute ................................................................................................................................... 749

6.2 Inert subtrees.............................................................................................................................................. 750

6.3 Activation .................................................................................................................................................... 750

6.4 Focus........................................................................................................................................................... 751


6.4.1 Introduction ......................................................................................................................... 751
6.4.2 Data model .......................................................................................................................... 752
6.4.3 The tabindex attribute........................................................................................................ 755
6.4.4 Processing model................................................................................................................. 758
6.4.5 Sequential focus navigation................................................................................................. 761
6.4.6 Focus management APIs...................................................................................................... 762
6.4.7 The autofocus attribute...................................................................................................... 764

6.5 Assigning keyboard shortcuts ..................................................................................................................... 766


6.5.1 Introduction ......................................................................................................................... 766
6.5.2 The accesskey attribute...................................................................................................... 767
6.5.3 Processing model................................................................................................................. 768

6.6 Editing ......................................................................................................................................................... 769


6.6.1 Making document regions editable: The contenteditable content attribute..................... 769
6.6.2 Making entire documents editable: the designMode IDL attribute....................................... 770
6.6.3 Best practices for in-page editors ........................................................................................ 770

12
6.6.4 Editing APIs.......................................................................................................................... 771
6.6.5 Spelling and grammar checking .......................................................................................... 771
6.6.6 Autocapitalization ................................................................................................................ 773
6.6.7 Input modalities: the inputmode attribute ........................................................................... 774
6.6.8 Input modalities: the enterkeyhint attribute ..................................................................... 775

6.7 Drag and drop ............................................................................................................................................. 775


6.7.1 Introduction ......................................................................................................................... 776
6.7.2 The drag data store ............................................................................................................. 777
6.7.3 The DataTransfer interface................................................................................................ 778
6.7.3.1 The DataTransferItemList interface ......................................................... 781
6.7.3.2 The DataTransferItem interface................................................................. 783
6.7.4 The DragEvent interface ..................................................................................................... 784
6.7.5 Processing model................................................................................................................. 785
6.7.6 Events summary .................................................................................................................. 790
6.7.7 The draggable attribute...................................................................................................... 791
6.7.8 Security risks in the drag-and-drop model........................................................................... 791

7 Loading Web pages ............................................................................................................................................................ 793


7.1 Browsing contexts ....................................................................................................................................... 793
7.1.1 Creating browsing contexts ................................................................................................. 793
7.1.2 Related browsing contexts................................................................................................... 795
7.1.2.1 Navigating related browsing contexts in the DOM ....................................... 797
7.1.3 Security ............................................................................................................................... 799
7.1.4 Groupings of browsing contexts .......................................................................................... 799
7.1.5 Browsing context names...................................................................................................... 800

7.2 Security infrastructure for Window, WindowProxy, and Location objects ................................................... 802
7.2.1 Integration with IDL ............................................................................................................. 802
7.2.2 Shared internal slot: [[CrossOriginPropertyDescriptorMap]] ................................................ 803
7.2.3 Shared abstract operations.................................................................................................. 803
7.2.3.1 CrossOriginProperties ( O ) ........................................................................... 803
7.2.3.2 CrossOriginPropertyFallback ( P ) ................................................................. 804
7.2.3.3 IsPlatformObjectSameOrigin ( O ) ................................................................ 804
7.2.3.4 CrossOriginGetOwnPropertyHelper ( O, P )................................................... 804
7.2.3.5 CrossOriginGet ( O, P, Receiver ).................................................................. 805
7.2.3.6 CrossOriginSet ( O, P, V, Receiver ) .............................................................. 805
7.2.3.7 CrossOriginOwnPropertyKeys ( O ) ............................................................... 805

7.3 The Window object ....................................................................................................................................... 806


7.3.1 APIs for creating and navigating browsing contexts by name ............................................. 807
7.3.2 Accessing other browsing contexts...................................................................................... 810
7.3.3 Named access on the Window object ................................................................................... 811
7.3.4 Discarding browsing contexts .............................................................................................. 812
7.3.5 Closing browsing contexts ................................................................................................... 812
7.3.6 Browser interface elements ................................................................................................. 813
7.3.7 Script settings for Window objects........................................................................................ 814

7.4 The WindowProxy exotic object ................................................................................................................... 815


7.4.1 [[GetPrototypeOf]] ( )........................................................................................................... 815
7.4.2 [[SetPrototypeOf]] ( V ) ........................................................................................................ 815
7.4.3 [[IsExtensible]] ( ) ................................................................................................................ 816
7.4.4 [[PreventExtensions]] ( ) ...................................................................................................... 816
7.4.5 [[GetOwnProperty]] ( P ) ...................................................................................................... 816
7.4.6 [[DefineOwnProperty]] ( P, Desc )........................................................................................ 816
13
7.4.7 [[Get]] ( P, Receiver )........................................................................................................... 817
7.4.8 [[Set]] ( P, V, Receiver ) ....................................................................................................... 817
7.4.9 [[Delete]] ( P )...................................................................................................................... 817
7.4.10 [[OwnPropertyKeys]] ( ) ..................................................................................................... 818

7.5 Origin .......................................................................................................................................................... 818


7.5.1 Relaxing the same-origin restriction .................................................................................... 820

7.6 Sandboxing ................................................................................................................................................. 821

7.7 Session history and navigation ................................................................................................................... 824


7.7.1 The session history of browsing contexts ............................................................................ 824
7.7.2 The History interface ......................................................................................................... 825
7.7.3 Implementation notes for session history ............................................................................ 831
7.7.4 The Location interface ....................................................................................................... 831
7.7.4.1 [[GetPrototypeOf]] ( ) ................................................................................... 838
7.7.4.2 [[SetPrototypeOf]] ( V ) ................................................................................ 838
7.7.4.3 [[IsExtensible]] ( )......................................................................................... 838
7.7.4.4 [[PreventExtensions]] ( ) .............................................................................. 838
7.7.4.5 [[GetOwnProperty]] ( P )............................................................................... 839
7.7.4.6 [[DefineOwnProperty]] ( P, Desc ) ................................................................ 839
7.7.4.7 [[Get]] ( P, Receiver ) ................................................................................... 839
7.7.4.8 [[Set]] ( P, V, Receiver )................................................................................ 839
7.7.4.9 [[Delete]] ( P ) .............................................................................................. 839
7.7.4.10 [[OwnPropertyKeys]] ( ) .............................................................................. 839

7.8 Browsing the Web ....................................................................................................................................... 840


7.8.1 Navigating across documents.............................................................................................. 840
7.8.2 Page load processing model for HTML files.......................................................................... 848
7.8.3 Page load processing model for XML files ............................................................................ 848
7.8.4 Page load processing model for text files ............................................................................ 849
7.8.5 Page load processing model for multipart/x-mixed-replace resources .......................... 850
7.8.6 Page load processing model for media ................................................................................ 850
7.8.7 Page load processing model for content that uses plugins .................................................. 851
7.8.8 Page load processing model for inline content that doesn't have a DOM ............................ 851
7.8.9 Navigating to a fragment..................................................................................................... 851
7.8.10 History traversal ................................................................................................................ 853
7.8.10.1 Persisted user state restoration.................................................................. 855
7.8.10.2 The PopStateEvent interface .................................................................... 855
7.8.10.3 The HashChangeEvent interface................................................................. 855
7.8.10.4 The PageTransitionEvent interface ......................................................... 856
7.8.11 Unloading documents ........................................................................................................ 856
7.8.11.1 The BeforeUnloadEvent interface............................................................. 858
7.8.12 Aborting a document load ................................................................................................. 859

7.9 Offline Web applications.............................................................................................................................. 859


7.9.1 Introduction ......................................................................................................................... 859
7.9.1.1 Supporting offline caching for legacy applications ....................................... 861
7.9.1.2 Events summary .......................................................................................... 861
7.9.2 Application caches ............................................................................................................... 862
7.9.3 The cache manifest syntax .................................................................................................. 864
7.9.3.1 Some sample manifests ............................................................................... 864
7.9.3.2 Writing cache manifests ............................................................................... 865
7.9.3.3 Parsing cache manifests............................................................................... 867
7.9.4 Downloading or updating an application cache ................................................................... 869
7.9.5 The application cache selection algorithm .......................................................................... 876
7.9.6 Changes to the networking model ....................................................................................... 877
14
7.9.7 Expiring application caches ................................................................................................. 878
7.9.8 Disk space ........................................................................................................................... 878
7.9.9 Security concerns with offline applications caches .............................................................. 878
7.9.10 Application cache API ........................................................................................................ 879
7.9.11 Browser state..................................................................................................................... 881

8 Web application APIs .......................................................................................................................................................... 883


8.1 Scripting...................................................................................................................................................... 883
8.1.1 Introduction ......................................................................................................................... 883
8.1.2 Enabling and disabling scripting .......................................................................................... 883
8.1.3 Processing model................................................................................................................. 883
8.1.3.1 Definitions .................................................................................................... 883
8.1.3.2 Fetching scripts ............................................................................................ 886
8.1.3.3 Creating scripts ............................................................................................ 892
8.1.3.4 Calling scripts............................................................................................... 894
8.1.3.5 Realms, settings objects, and global objects................................................ 895
8.1.3.5.1 Entry ..................................................................................... 898
8.1.3.5.2 Incumbent............................................................................. 898
8.1.3.5.3 Current.................................................................................. 901
8.1.3.5.4 Relevant................................................................................ 901
8.1.3.6 Killing scripts ................................................................................................ 901
8.1.3.7 Integration with the JavaScript job queue .................................................... 902
8.1.3.7.1 EnqueueJob(queueName, job, arguments) ........................... 902
8.1.3.8 Integration with the JavaScript module system ............................................ 904
8.1.3.8.1 HostResolveImportedModule(referencingScriptOrModule,
specifier).............................................................................................. 905
8.1.3.8.2 HostImportModuleDynamically(referencingScriptOrModule,
specifier, promiseCapability) ............................................................... 906
8.1.3.8.3 HostGetImportMetaProperties(moduleRecord) ..................... 906
8.1.3.9 Integration with the JavaScript agent formalism .......................................... 907
8.1.3.10 Integration with the JavaScript agent cluster formalism ............................ 907
8.1.3.11 Runtime script errors.................................................................................. 909
8.1.3.11.1 Runtime script errors in documents .................................... 910
8.1.3.11.2 The ErrorEvent interface................................................... 910
8.1.3.12 Unhandled promise rejections .................................................................... 910
8.1.3.12.1 HostPromiseRejectionTracker(promise, operation).............. 911
8.1.3.12.2 The PromiseRejectionEvent interface.............................. 911
8.1.3.13 HostEnsureCanCompileStrings(callerRealm, calleeRealm)......................... 912
8.1.4 Event loops .......................................................................................................................... 912
8.1.4.1 Definitions .................................................................................................... 912
8.1.4.2 Queuing tasks .............................................................................................. 914
8.1.4.3 Processing model ......................................................................................... 915
8.1.4.4 Generic task sources .................................................................................... 920
8.1.4.5 Dealing with the event loop from other specifications ................................. 920
8.1.5 Events.................................................................................................................................. 922
8.1.5.1 Event handlers ............................................................................................. 922
8.1.5.2 Event handlers on elements, Document objects, and Window objects........... 929
8.1.5.2.1 IDL definitions ....................................................................... 931
8.1.5.3 Event firing................................................................................................... 933

8.2 The WindowOrWorkerGlobalScope mixin .................................................................................................... 933

8.3 Base64 utility methods ............................................................................................................................... 934

8.4 Dynamic markup insertion .......................................................................................................................... 935


8.4.1 Opening the input stream.................................................................................................... 935
8.4.2 Closing the input stream...................................................................................................... 937
8.4.3 document.write() .............................................................................................................. 937
15
8.4.4 document.writeln() .......................................................................................................... 938

8.5 Timers ......................................................................................................................................................... 939

8.6 Microtask queuing ....................................................................................................................................... 942

8.7 User prompts............................................................................................................................................... 943


8.7.1 Simple dialogs ..................................................................................................................... 943
8.7.2 Printing ................................................................................................................................ 945

8.8 System state and capabilities ..................................................................................................................... 946


8.8.1 The Navigator object.......................................................................................................... 946
8.8.1.1 Client identification ...................................................................................... 946
8.8.1.2 Language preferences.................................................................................. 948
8.8.1.3 Custom scheme handlers: the registerProtocolHandler() method ........ 949
8.8.1.3.1 Security and privacy ............................................................. 951
8.8.1.4 Cookies......................................................................................................... 952
8.8.1.5 Plugins.......................................................................................................... 952

8.9 Images ........................................................................................................................................................ 957

8.10 Animation frames...................................................................................................................................... 963

9 Communication .................................................................................................................................................................. 965


9.1 The MessageEvent interface ....................................................................................................................... 965

9.2 Server-sent events ...................................................................................................................................... 966


9.2.1 Introduction ......................................................................................................................... 966
9.2.2 The EventSource interface.................................................................................................. 967
9.2.3 Processing model................................................................................................................. 969
9.2.4 Parsing an event stream ...................................................................................................... 970
9.2.5 Interpreting an event stream............................................................................................... 970
9.2.6 Authoring notes ................................................................................................................... 973
9.2.7 Connectionless push and other features.............................................................................. 973
9.2.8 Garbage collection............................................................................................................... 974
9.2.9 Implementation advice ........................................................................................................ 974

9.3 Web sockets ................................................................................................................................................ 975


9.3.1 Introduction ......................................................................................................................... 975
9.3.2 The WebSocket interface ..................................................................................................... 975
9.3.3 Feedback from the protocol ................................................................................................. 979
9.3.4 Ping and Pong frames .......................................................................................................... 981
9.3.5 The CloseEvent interface.................................................................................................... 981
9.3.6 Garbage collection............................................................................................................... 982

9.4 Cross-document messaging ........................................................................................................................ 983


9.4.1 Introduction ......................................................................................................................... 983
9.4.2 Security ............................................................................................................................... 983
9.4.2.1 Authors......................................................................................................... 983
9.4.2.2 User agents .................................................................................................. 984
9.4.3 Posting messages ................................................................................................................ 984

9.5 Channel messaging ..................................................................................................................................... 985


9.5.1 Introduction ......................................................................................................................... 985
9.5.1.1 Examples...................................................................................................... 986
9.5.1.2 Ports as the basis of an object-capability model on the Web ....................... 987
9.5.1.3 Ports as the basis of abstracting out service implementations .................... 988
9.5.2 Message channels ............................................................................................................... 988
9.5.3 Message ports ..................................................................................................................... 988
9.5.4 Broadcasting to many ports................................................................................................. 991

16
9.5.5 Ports and garbage collection ............................................................................................... 992

9.6 Broadcasting to other browsing contexts .................................................................................................... 992

10 Web workers ..................................................................................................................................................................... 995


10.1 Introduction............................................................................................................................................... 995
10.1.1 Scope................................................................................................................................. 995
10.1.2 Examples ........................................................................................................................... 995
10.1.2.1 A background number-crunching worker.................................................... 995
10.1.2.2 Using a JavaScript module as a worker ...................................................... 996
10.1.2.3 Shared workers introduction ...................................................................... 998
10.1.2.4 Shared state using a shared worker ......................................................... 1000
10.1.2.5 Delegation................................................................................................ 1004
10.1.2.6 Providing libraries..................................................................................... 1006
10.1.3 Tutorials ........................................................................................................................... 1009
10.1.3.1 Creating a dedicated worker .................................................................... 1009
10.1.3.2 Communicating with a dedicated worker ................................................. 1010
10.1.3.3 Shared workers ........................................................................................ 1010

10.2 Infrastructure .......................................................................................................................................... 1011


10.2.1 The global scope.............................................................................................................. 1011
10.2.1.1 The WorkerGlobalScope common interface ............................................ 1011
10.2.1.2 Dedicated workers and the DedicatedWorkerGlobalScope interface ..... 1013
10.2.1.3 Shared workers and the SharedWorkerGlobalScope interface................ 1014
10.2.2 The event loop ................................................................................................................. 1014
10.2.3 The worker's lifetime ....................................................................................................... 1014
10.2.4 Processing model............................................................................................................. 1015
10.2.5 Runtime script errors ....................................................................................................... 1017
10.2.6 Creating workers.............................................................................................................. 1018
10.2.6.1 The AbstractWorker mixin ...................................................................... 1018
10.2.6.2 Script settings for workers........................................................................ 1018
10.2.6.3 Dedicated workers and the Worker interface ........................................... 1019
10.2.6.4 Shared workers and the SharedWorker interface..................................... 1020
10.2.7 Concurrent hardware capabilities .................................................................................... 1022

10.3 APIs available to workers ........................................................................................................................ 1023


10.3.1 Importing scripts and libraries ......................................................................................... 1023
10.3.2 The WorkerNavigator interface ...................................................................................... 1023
10.3.3 The WorkerLocation interface ........................................................................................ 1023

11 Web storage ................................................................................................................................................................... 1025


11.1 Introduction............................................................................................................................................. 1025

11.2 The API .................................................................................................................................................... 1026


11.2.1 The Storage interface ..................................................................................................... 1026
11.2.2 The sessionStorage attribute ........................................................................................ 1027
11.2.3 The localStorage attribute ............................................................................................ 1028
11.2.4 The storage event .......................................................................................................... 1029
11.2.4.1 The StorageEvent interface .................................................................... 1029

11.3 Disk space............................................................................................................................................... 1030

11.4 Privacy .................................................................................................................................................... 1030


11.4.1 User tracking ................................................................................................................... 1030
11.4.2 Sensitivity of data ............................................................................................................ 1031

11.5 Security ................................................................................................................................................... 1031


11.5.1 DNS spoofing attacks....................................................................................................... 1031

17
11.5.2 Cross-directory attacks .................................................................................................... 1032
11.5.3 Implementation risks ....................................................................................................... 1032

12 The HTML syntax ............................................................................................................................................................ 1033


12.1 Writing HTML documents ........................................................................................................................ 1033
12.1.1 The DOCTYPE................................................................................................................... 1033
12.1.2 Elements.......................................................................................................................... 1034
12.1.2.1 Start tags ................................................................................................. 1035
12.1.2.2 End tags ................................................................................................... 1036
12.1.2.3 Attributes ................................................................................................. 1036
12.1.2.4 Optional tags............................................................................................ 1037
12.1.2.5 Restrictions on content models ................................................................ 1043
12.1.2.6 Restrictions on the contents of raw text and escapable raw text
elements ................................................................................................................ 1043
12.1.3 Text .................................................................................................................................. 1043
12.1.3.1 Newlines................................................................................................... 1043
12.1.4 Character references ....................................................................................................... 1043
12.1.5 CDATA sections ................................................................................................................ 1044
12.1.6 Comments ....................................................................................................................... 1044

12.2 Parsing HTML documents ........................................................................................................................ 1045


12.2.1 Overview of the parsing model ........................................................................................ 1046
12.2.2 Parse errors...................................................................................................................... 1047
12.2.3 The input byte stream ..................................................................................................... 1051
12.2.3.1 Parsing with a known character encoding ................................................ 1052
12.2.3.2 Determining the character encoding........................................................ 1052
12.2.3.3 Character encodings ................................................................................ 1057
12.2.3.4 Changing the encoding while parsing ...................................................... 1057
12.2.3.5 Preprocessing the input stream................................................................ 1057
12.2.4 Parse state ....................................................................................................................... 1058
12.2.4.1 The insertion mode .................................................................................. 1058
12.2.4.2 The stack of open elements ..................................................................... 1059
12.2.4.3 The list of active formatting elements...................................................... 1061
12.2.4.4 The element pointers ............................................................................... 1062
12.2.4.5 Other parsing state flags.......................................................................... 1062
12.2.5 Tokenization ..................................................................................................................... 1063
12.2.5.1 Data state ................................................................................................ 1064
12.2.5.2 RCDATA state............................................................................................ 1064
12.2.5.3 RAWTEXT state ......................................................................................... 1064
12.2.5.4 Script data state....................................................................................... 1064
12.2.5.5 PLAINTEXT state ....................................................................................... 1065
12.2.5.6 Tag open state.......................................................................................... 1065
12.2.5.7 End tag open state ................................................................................... 1065
12.2.5.8 Tag name state......................................................................................... 1066
12.2.5.9 RCDATA less-than sign state..................................................................... 1066
12.2.5.10 RCDATA end tag open state.................................................................... 1066
12.2.5.11 RCDATA end tag name state................................................................... 1067
12.2.5.12 RAWTEXT less-than sign state ................................................................ 1067
12.2.5.13 RAWTEXT end tag open state ................................................................. 1067
12.2.5.14 RAWTEXT end tag name state ................................................................ 1067
12.2.5.15 Script data less-than sign state .............................................................. 1068
12.2.5.16 Script data end tag open state ............................................................... 1068
12.2.5.17 Script data end tag name state.............................................................. 1068
12.2.5.18 Script data escape start state ................................................................ 1069
12.2.5.19 Script data escape start dash state........................................................ 1069
18
12.2.5.20 Script data escaped state....................................................................... 1069
12.2.5.21 Script data escaped dash state .............................................................. 1070
12.2.5.22 Script data escaped dash dash state ..................................................... 1070
12.2.5.23 Script data escaped less-than sign state................................................ 1070
12.2.5.24 Script data escaped end tag open state................................................. 1071
12.2.5.25 Script data escaped end tag name state................................................ 1071
12.2.5.26 Script data double escape start state .................................................... 1071
12.2.5.27 Script data double escaped state ........................................................... 1072
12.2.5.28 Script data double escaped dash state .................................................. 1072
12.2.5.29 Script data double escaped dash dash state.......................................... 1073
12.2.5.30 Script data double escaped less-than sign state .................................... 1073
12.2.5.31 Script data double escape end state ...................................................... 1073
12.2.5.32 Before attribute name state ................................................................... 1074
12.2.5.33 Attribute name state .............................................................................. 1074
12.2.5.34 After attribute name state...................................................................... 1075
12.2.5.35 Before attribute value state ................................................................... 1075
12.2.5.36 Attribute value (double-quoted) state .................................................... 1075
12.2.5.37 Attribute value (single-quoted) state ..................................................... 1076
12.2.5.38 Attribute value (unquoted) state ............................................................ 1076
12.2.5.39 After attribute value (quoted) state........................................................ 1077
12.2.5.40 Self-closing start tag state...................................................................... 1077
12.2.5.41 Bogus comment state ............................................................................ 1077
12.2.5.42 Markup declaration open state............................................................... 1078
12.2.5.43 Comment start state .............................................................................. 1078
12.2.5.44 Comment start dash state...................................................................... 1078
12.2.5.45 Comment state ...................................................................................... 1079
12.2.5.46 Comment less-than sign state................................................................ 1079
12.2.5.47 Comment less-than sign bang state....................................................... 1079
12.2.5.48 Comment less-than sign bang dash state .............................................. 1079
12.2.5.49 Comment less-than sign bang dash dash state...................................... 1079
12.2.5.50 Comment end dash state ....................................................................... 1080
12.2.5.51 Comment end state................................................................................ 1080
12.2.5.52 Comment end bang state....................................................................... 1080
12.2.5.53 DOCTYPE state ....................................................................................... 1081
12.2.5.54 Before DOCTYPE name state .................................................................. 1081
12.2.5.55 DOCTYPE name state ............................................................................. 1081
12.2.5.56 After DOCTYPE name state..................................................................... 1082
12.2.5.57 After DOCTYPE public keyword state ...................................................... 1082
12.2.5.58 Before DOCTYPE public identifier state .................................................. 1083
12.2.5.59 DOCTYPE public identifier (double-quoted) state ................................... 1083
12.2.5.60 DOCTYPE public identifier (single-quoted) state..................................... 1084
12.2.5.61 After DOCTYPE public identifier state ..................................................... 1084
12.2.5.62 Between DOCTYPE public and system identifiers state .......................... 1084
12.2.5.63 After DOCTYPE system keyword state .................................................... 1085
12.2.5.64 Before DOCTYPE system identifier state ................................................ 1085
12.2.5.65 DOCTYPE system identifier (double-quoted) state ................................. 1086
12.2.5.66 DOCTYPE system identifier (single-quoted) state................................... 1086
12.2.5.67 After DOCTYPE system identifier state ................................................... 1087
12.2.5.68 Bogus DOCTYPE state ............................................................................ 1087
12.2.5.69 CDATA section state ............................................................................... 1087
12.2.5.70 CDATA section bracket state .................................................................. 1088
12.2.5.71 CDATA section end state ........................................................................ 1088
12.2.5.72 Character reference state ...................................................................... 1088
12.2.5.73 Named character reference state........................................................... 1088
12.2.5.74 Ambiguous ampersand state ................................................................. 1089

19
12.2.5.75 Numeric character reference state......................................................... 1089
12.2.5.76 Hexadecimal character reference start state ......................................... 1089
12.2.5.77 Decimal character reference start state................................................. 1090
12.2.5.78 Hexadecimal character reference state ................................................. 1090
12.2.5.79 Decimal character reference state ......................................................... 1090
12.2.5.80 Numeric character reference end state.................................................. 1090
12.2.6 Tree construction ............................................................................................................. 1091
12.2.6.1 Creating and inserting nodes ................................................................... 1092
12.2.6.2 Parsing elements that contain only text ................................................... 1097
12.2.6.3 Closing elements that have implied end tags .......................................... 1098
12.2.6.4 The rules for parsing tokens in HTML content .......................................... 1098
12.2.6.4.1 The "initial" insertion mode .............................................. 1098
12.2.6.4.2 The "before html" insertion mode..................................... 1099
12.2.6.4.3 The "before head" insertion mode .................................... 1100
12.2.6.4.4 The "in head" insertion mode ........................................... 1101
12.2.6.4.5 The "in head noscript" insertion mode.............................. 1103
12.2.6.4.6 The "after head" insertion mode....................................... 1104
12.2.6.4.7 The "in body" insertion mode ........................................... 1105
12.2.6.4.8 The "text" insertion mode ................................................. 1115
12.2.6.4.9 The "in table" insertion mode ........................................... 1116
12.2.6.4.10 The "in table text" insertion mode .................................. 1118
12.2.6.4.11 The "in caption" insertion mode ..................................... 1118
12.2.6.4.12 The "in column group" insertion mode ........................... 1119
12.2.6.4.13 The "in table body" insertion mode ................................ 1120
12.2.6.4.14 The "in row" insertion mode ........................................... 1121
12.2.6.4.15 The "in cell" insertion mode............................................ 1122
12.2.6.4.16 The "in select" insertion mode ........................................ 1123
12.2.6.4.17 The "in select in table" insertion mode ........................... 1124
12.2.6.4.18 The "in template" insertion mode ................................... 1125
12.2.6.4.19 The "after body" insertion mode ..................................... 1126
12.2.6.4.20 The "in frameset" insertion mode ................................... 1126
12.2.6.4.21 The "after frameset" insertion mode .............................. 1127
12.2.6.4.22 The "after after body" insertion mode ............................ 1128
12.2.6.4.23 The "after after frameset" insertion mode ...................... 1128
12.2.6.5 The rules for parsing tokens in foreign content ........................................ 1128
12.2.7 The end............................................................................................................................ 1131
12.2.8 Coercing an HTML DOM into an infoset............................................................................ 1132
12.2.9 An introduction to error handling and strange cases in the parser .................................. 1133
12.2.9.1 Misnested tags: <b><i></b></i> .......................................................... 1133
12.2.9.2 Misnested tags: <b><p></b></p> ........................................................ 1134
12.2.9.3 Unexpected markup in tables................................................................... 1135
12.2.9.4 Scripts that modify the page as it is being parsed ................................... 1137
12.2.9.5 The execution of scripts that are moving across multiple documents...... 1138
12.2.9.6 Unclosed formatting elements ................................................................. 1138

12.3 Serializing HTML fragments..................................................................................................................... 1139

12.4 Parsing HTML fragments ......................................................................................................................... 1143

12.5 Named character references................................................................................................................... 1144

13 The XML syntax .............................................................................................................................................................. 1154


13.1 Writing documents in the XML syntax ..................................................................................................... 1154

13.2 Parsing XML documents .......................................................................................................................... 1154

13.3 Serializing XML fragments....................................................................................................................... 1156

13.4 Parsing XML fragments ........................................................................................................................... 1157

14 Rendering ....................................................................................................................................................................... 1158


14.1 Introduction............................................................................................................................................. 1158
20
14.2 The CSS user agent style sheet and presentational hints ....................................................................... 1158

14.3 Non-replaced elements ........................................................................................................................... 1159


14.3.1 Hidden elements.............................................................................................................. 1159
14.3.2 The page.......................................................................................................................... 1159
14.3.3 Flow content .................................................................................................................... 1160
14.3.4 Phrasing content.............................................................................................................. 1162
14.3.5 Bidirectional text ............................................................................................................. 1164
14.3.6 Quotes ............................................................................................................................. 1164
14.3.7 Sections and headings..................................................................................................... 1170
14.3.8 Lists ................................................................................................................................. 1171
14.3.9 Tables............................................................................................................................... 1172
14.3.10 Margin collapsing quirks ................................................................................................ 1176
14.3.11 Form controls ................................................................................................................. 1177
14.3.12 The hr element.............................................................................................................. 1178
14.3.13 The fieldset and legend elements ............................................................................. 1178

14.4 Replaced elements.................................................................................................................................. 1181


14.4.1 Embedded content .......................................................................................................... 1181
14.4.2 Images ............................................................................................................................. 1182
14.4.3 Attributes for embedded content and images ................................................................. 1183
14.4.4 Image maps ..................................................................................................................... 1184

14.5 Widgets ................................................................................................................................................... 1184


14.5.1 Introduction ..................................................................................................................... 1184
14.5.2 Button layout ................................................................................................................... 1185
14.5.3 The button element ........................................................................................................ 1185
14.5.4 The details and summary elements ............................................................................... 1185
14.5.5 The input element as a text entry widget ...................................................................... 1186
14.5.6 The input element as domain-specific widgets .............................................................. 1186
14.5.7 The input element as a range control ............................................................................ 1186
14.5.8 The input element as a color well................................................................................... 1187
14.5.9 The input element as a checkbox and radio button widgets .......................................... 1187
14.5.10 The input element as a file upload control ................................................................... 1187
14.5.11 The input element as a button ..................................................................................... 1187
14.5.12 The marquee element .................................................................................................... 1187
14.5.13 The meter element ........................................................................................................ 1189
14.5.14 The progress element .................................................................................................. 1189
14.5.15 The select element ...................................................................................................... 1190
14.5.16 The textarea element .................................................................................................. 1190

14.6 Frames and framesets............................................................................................................................. 1191

14.7 Interactive media .................................................................................................................................... 1193


14.7.1 Links, forms, and navigation............................................................................................ 1193
14.7.2 The title attribute ......................................................................................................... 1193
14.7.3 Editing hosts .................................................................................................................... 1193
14.7.4 Text rendered in native user interfaces ........................................................................... 1194

14.8 Print media.............................................................................................................................................. 1195

14.9 Unstyled XML documents ........................................................................................................................ 1195

15 Obsolete features ........................................................................................................................................................... 1197


15.1 Obsolete but conforming features........................................................................................................... 1197
15.1.1 Warnings for obsolete but conforming features ............................................................... 1197

21
15.2 Non-conforming features......................................................................................................................... 1198

15.3 Requirements for implementations ......................................................................................................... 1203


15.3.1 The marquee element ...................................................................................................... 1203
15.3.2 Frames ............................................................................................................................. 1205
15.3.3 Other elements, attributes and APIs ................................................................................ 1207

16 IANA considerations........................................................................................................................................................ 1217


16.1 text/html............................................................................................................................................... 1217

16.2 multipart/x-mixed-replace ................................................................................................................ 1218

16.3 application/xhtml+xml ........................................................................................................................ 1219

16.4 text/cache-manifest............................................................................................................................ 1220

16.5 text/ping............................................................................................................................................... 1221

16.6 application/microdata+json............................................................................................................... 1222

16.7 text/event-stream................................................................................................................................ 1223

16.8 `Ping-From`............................................................................................................................................ 1224

16.9 `Ping-To` ............................................................................................................................................... 1224

16.10 `Refresh` ............................................................................................................................................. 1224

16.11 `Last-Event-ID` .................................................................................................................................. 1225

16.12 web+ scheme prefix ............................................................................................................................... 1225

Index.................................................................................................................................................................................... 1227
Elements ......................................................................................................................................................... 1227

Element content categories ............................................................................................................................ 1233

Attributes ........................................................................................................................................................ 1234

Element Interfaces .......................................................................................................................................... 1241

All Interfaces ................................................................................................................................................... 1244

Events ............................................................................................................................................................. 1246

MIME Types...................................................................................................................................................... 1247

References........................................................................................................................................................................... 1250

Acknowledgments ............................................................................................................................................................... 1259

22
1 Introduction § p23

1.1 Where does this specification fit? § p23

This specification defines a big part of the Web platform, in lots of detail. Its place in the Web platform specification stack relative to
other specifications can be best summed up as follows:

CSS SVG MathML NPAPI


Geo Fetch CSP
JPEG GIF PNG

THIS SPECIFICATION

HTTP TLS MQ DOM Unicode Web IDL


MIME URL XML JavaScript Encodings

1.2 Is this HTML5? § p23

This section is non-normative.

In short: Yes.

23
In more length: the term "HTML5" is widely used as a buzzword to refer to modern web technologies, many of which (though by no
means all) are developed at the WHATWG. This document is one such; others are available from the WHATWG Standards overview.

1.3 Background § p24

This section is non-normative.

HTML is the World Wide Web's core markup language. Originally, HTML was primarily designed as a language for semantically
describing scientific documents. Its general design, however, has enabled it to be adapted, over the subsequent years, to describe a
number of other types of documents and even applications.

1.4 Audience § p24

This section is non-normative.

This specification is intended for authors of documents and scripts that use the features defined in this specification, implementers of
tools that operate on pages that use the features defined in this specification, and individuals wishing to establish the correctness of
documents or implementations with respect to the requirements of this specification.

This document is probably not suited to readers who do not already have at least a passing familiarity with Web technologies, as in
places it sacrifices clarity for precision, and brevity for completeness. More approachable tutorials and authoring guides can provide a
gentler introduction to the topic.

In particular, familiarity with the basics of DOM is necessary for a complete understanding of some of the more technical parts of this
specification. An understanding of Web IDL, HTTP, XML, Unicode, character encodings, JavaScript, and CSS will also be helpful in places
but is not essential.

1.5 Scope § p24

This section is non-normative.

This specification is limited to providing a semantic-level markup language and associated semantic-level scripting APIs for authoring
accessible pages on the Web ranging from static documents to dynamic applications.

The scope of this specification does not include providing mechanisms for media-specific customization of presentation (although
default rendering rules for Web browsers are included at the end of this specification, and several mechanisms for hooking into CSS are
provided as part of the language).

The scope of this specification is not to describe an entire operating system. In particular, hardware configuration software, image
manipulation tools, and applications that users would be expected to use with high-end workstations on a daily basis are out of scope.
In terms of applications, this specification is targeted specifically at applications that would be expected to be used by users on an
occasional basis, or regularly but from disparate locations, with low CPU requirements. Examples of such applications include online
purchasing systems, searching systems, games (especially multiplayer online games), public telephone books or address books,
communications software (e-mail clients, instant messaging clients, discussion software), document editing software, etc.

1.6 History § p24

This section is non-normative.

For its first five years (1990-1995), HTML went through a number of revisions and experienced a number of extensions, primarily
hosted first at CERN, and then at the IETF.

With the creation of the W3C, HTML's development changed venue again. A first abortive attempt at extending HTML in 1995 known as
24
HTML 3.0 then made way to a more pragmatic approach known as HTML 3.2, which was completed in 1997. HTML4 quickly followed
later that same year.

The following year, the W3C membership decided to stop evolving HTML and instead begin work on an XML-based equivalent, called
XHTML. This effort started with a reformulation of HTML4 in XML, known as XHTML 1.0, which added no new features except the new
serialization, and which was completed in 2000. After XHTML 1.0, the W3C's focus turned to making it easier for other working groups
to extend XHTML, under the banner of XHTML Modularization. In parallel with this, the W3C also worked on a new language that was
not compatible with the earlier HTML and XHTML languages, calling it XHTML2.

Around the time that HTML's evolution was stopped in 1998, parts of the API for HTML developed by browser vendors were specified
and published under the name DOM Level 1 (in 1998) and DOM Level 2 Core and DOM Level 2 HTML (starting in 2000 and culminating
in 2003). These efforts then petered out, with some DOM Level 3 specifications published in 2004 but the working group being closed
before all the Level 3 drafts were completed.

In 2003, the publication of XForms, a technology which was positioned as the next generation of Web forms, sparked a renewed
interest in evolving HTML itself, rather than finding replacements for it. This interest was borne from the realization that XML's
deployment as a Web technology was limited to entirely new technologies (like RSS and later Atom), rather than as a replacement for
existing deployed technologies (like HTML).

A proof of concept to show that it was possible to extend HTML4's forms to provide many of the features that XForms 1.0 introduced,
without requiring browsers to implement rendering engines that were incompatible with existing HTML Web pages, was the first result
of this renewed interest. At this early stage, while the draft was already publicly available, and input was already being solicited from
all sources, the specification was only under Opera Software's copyright.

The idea that HTML's evolution should be reopened was tested at a W3C workshop in 2004, where some of the principles that underlie
the HTML5 work (described below), as well as the aforementioned early draft proposal covering just forms-related features, were
presented to the W3C jointly by Mozilla and Opera. The proposal was rejected on the grounds that the proposal conflicted with the
previously chosen direction for the Web's evolution; the W3C staff and membership voted to continue developing XML-based
replacements instead.

Shortly thereafter, Apple, Mozilla, and Opera jointly announced their intent to continue working on the effort under the umbrella of a
new venue called the WHATWG. A public mailing list was created, and the draft was moved to the WHATWG site. The copyright was
subsequently amended to be jointly owned by all three vendors, and to allow reuse of the specification.

The WHATWG was based on several core principles, in particular that technologies need to be backwards compatible, that
specifications and implementations need to match even if this means changing the specification rather than the implementations, and
that specifications need to be detailed enough that implementations can achieve complete interoperability without reverse-
engineering each other.

The latter requirement in particular required that the scope of the HTML5 specification include what had previously been specified in
three separate documents: HTML4, XHTML1, and DOM2 HTML. It also meant including significantly more detail than had previously
been considered the norm.

In 2006, the W3C indicated an interest to participate in the development of HTML5 after all, and in 2007 formed a working group
chartered to work with the WHATWG on the development of the HTML5 specification. Apple, Mozilla, and Opera allowed the W3C to
publish the specification under the W3C copyright, while keeping a version with the less restrictive license on the WHATWG site.

For a number of years, both groups then worked together. In 2011, however, the groups came to the conclusion that they had different
goals: the W3C wanted to publish a "finished" version of "HTML5", while the WHATWG wanted to continue working on a Living Standard
for HTML, continuously maintaining the specification rather than freezing it in a state with known problems, and adding new features
as needed to evolve the platform.

In 2019, the WHATWG and W3C signed an agreement to collaborate on a single version of HTML going forward: this document.

1.7 Design notes § p25

This section is non-normative.

It must be admitted that many aspects of HTML appear at first glance to be nonsensical and inconsistent.

HTML, its supporting DOM APIs, as well as many of its supporting technologies, have been developed over a period of several decades
by a wide array of people with different priorities who, in many cases, did not know of each other's existence.
25
Features have thus arisen from many sources, and have not always been designed in especially consistent ways. Furthermore, because
of the unique characteristics of the Web, implementation bugs have often become de-facto, and now de-jure, standards, as content is
often unintentionally written in ways that rely on them before they can be fixed.

Despite all this, efforts have been made to adhere to certain design goals. These are described in the next few subsections.

1.7.1 Serializability of script execution § p26

This section is non-normative.

To avoid exposing Web authors to the complexities of multithreading, the HTML and DOM APIs are designed such that no script can
ever detect the simultaneous execution of other scripts. Even with workers p1019 , the intent is that the behavior of implementations can
be thought of as completely serializing the execution of all scripts in all browsing contexts p793 .

The exception to this general design principle is the JavaScript SharedArrayBuffer class. Using SharedArrayBuffer objects, it can in
fact be observed that scripts in other agents are executing simultaneously. Furthermore, due to the JavaScript memory model, there
are situations which not only are un-representable via serialized script execution, but also un-representable via serialized statement
execution among those scripts.

1.7.2 Compliance with other specifications § p26

This section is non-normative.

This specification interacts with and relies on a wide variety of other specifications. In certain circumstances, unfortunately, conflicting
needs have led to this specification violating the requirements of these other specifications. Whenever this has occurred, the
transgressions have each been noted as a "willful violation", and the reason for the violation has been noted.

1.7.3 Extensibility § p26

This section is non-normative.

HTML has a wide array of extensibility mechanisms that can be used for adding semantics in a safe manner:

• Authors can use the class p134 attribute to extend elements, effectively creating their own elements, while using the most
applicable existing "real" HTML element, so that browsers and other tools that don't know of the extension can still support it
somewhat well. This is the tack used by microformats, for example.

• Authors can include data for inline client-side scripts or server-side site-wide scripts to process using the data-*="" p143
attributes. These are guaranteed to never be touched by browsers, and allow scripts to include data on HTML elements that
scripts can then look for and process.

• Authors can use the <meta name="" content=""> p160 mechanism to include page-wide metadata.

• Authors can use the rel="" p276 mechanism to annotate links with specific meanings by registering extensions to the
predefined set of link types p300 . This is also used by microformats.

• Authors can embed raw data using the <script type=""> p599 mechanism with a custom type, for further handling by inline
or server-side scripts.

• Authors can create plugins p45 and invoke them using the embed p358 element. This is how Flash works.

• Authors can extend APIs using the JavaScript prototyping mechanism. This is widely used by script libraries, for instance.

• Authors can use the microdata feature (the itemscope="" p718 and itemprop="" p720 attributes) to embed nested name-value
pairs of data to be shared with other applications and sites.

26
1.8 HTML vs XML syntax § p27

This section is non-normative.

This specification defines an abstract language for describing documents and applications, and some APIs for interacting with in-
memory representations of resources that use this language.

The in-memory representation is known as "DOM HTML", or "the DOM" for short.

There are various concrete syntaxes that can be used to transmit resources that use this abstract language, two of which are defined
in this specification.

The first such concrete syntax is the HTML syntax. This is the format suggested for most authors. It is compatible with most legacy
Web browsers. If a document is transmitted with the text/html p1217 MIME type, then it will be processed as an HTML document by Web
browsers. This specification defines the latest HTML syntax, known simply as "HTML".

The second concrete syntax is XML. When a document is transmitted with an XML MIME type, such as application/xhtml+xml p1219 ,
then it is treated as an XML document by Web browsers, to be parsed by an XML processor. Authors are reminded that the processing
for XML and HTML differs; in particular, even minor syntax errors will prevent a document labeled as XML from being rendered fully,
whereas they would be ignored in the HTML syntax.

Note
The XML syntax for HTML was formerly referred to as "XHTML", but this specification does not use that term (among other reasons,
because no such term is used for the HTML syntaxes of MathML and SVG).

The DOM, the HTML syntax, and the XML syntax cannot all represent the same content. For example, namespaces cannot be
represented using the HTML syntax, but they are supported in the DOM and in the XML syntax. Similarly, documents that use the
noscript p612 feature can be represented using the HTML syntax, but cannot be represented with the DOM or in the XML syntax.
Comments that contain the string "-->" can only be represented in the DOM, not in the HTML and XML syntaxes.

1.9 Structure of this specification § p27

This section is non-normative.

This specification is divided into the following major sections:

Introduction p23
Non-normative materials providing a context for the HTML standard.

Common infrastructure p42


The conformance classes, algorithms, definitions, and the common underpinnings of the rest of the specification.

Semantics, structure, and APIs of HTML documents p112


Documents are built from elements. These elements form a tree using the DOM. This section defines the features of this DOM, as
well as introducing the features common to all elements, and the concepts used in defining elements.

The elements of HTML p149


Each element has a predefined meaning, which is explained in this section. Rules for authors on how to use the element, along with
user agent requirements for how to handle each element, are also given. This includes large signature features of HTML such as
video playback and subtitles, form controls and form submission, and a 2D graphics API known as the HTML canvas.

Microdata p713
This specification introduces a mechanism for adding machine-readable annotations to documents, so that tools can extract trees of
name-value pairs from the document. This section describes this mechanism and some algorithms that can be used to convert
HTML documents into other formats. This section also defines some sample Microdata vocabularies for contact information,
calendar events, and licensing works.

User interaction p749


HTML documents can provide a number of mechanisms for users to interact with and modify content, which are described in this
section, such as how focus works, and drag-and-drop.

27
Loading Web pages p793
HTML documents do not exist in a vacuum — this section defines many of the features that affect environments that deal with
multiple pages, such as Web browsers and offline caching of Web applications.

Web application APIs p883


This section introduces basic features for scripting of applications in HTML.

Web workers p995


This section defines an API for background threads in JavaScript.

The communication APIs p965


This section describes some mechanisms that applications written in HTML can use to communicate with other applications from
different domains running on the same client. It also introduces a server-push event stream mechanism known as Server Sent
Events or EventSource p967 , and a two-way full-duplex socket protocol for scripts known as Web Sockets.

Web storage p1025


This section defines a client-side storage mechanism based on name-value pairs.

The HTML syntax p1033


The XML syntax p1154
All of these features would be for naught if they couldn't be represented in a serialized form and sent to other people, and so these
sections define the syntaxes of HTML and XML, along with rules for how to parse content using those syntaxes.

Rendering p1158
This section defines the default rendering rules for Web browsers.

There are also some appendices, listing obsolete features p1197 and IANA considerations p1217 , and several indices.

1.9.1 How to read this specification § p28

This specification should be read like all other specifications. First, it should be read cover-to-cover, multiple times. Then, it should be
read backwards at least once. Then it should be read by picking random sections from the contents list and following all the cross-
references.

As described in the conformance requirements section below, this specification describes conformance criteria for a variety of
conformance classes. In particular, there are conformance requirements that apply to producers, for example authors and the
documents they create, and there are conformance requirements that apply to consumers, for example Web browsers. They can be
distinguished by what they are requiring: a requirement on a producer states what is allowed, while a requirement on a consumer
states how software is to act.

Example
For example, "the foo attribute's value must be a valid integer p67 " is a requirement on producers, as it lays out the allowed values;
in contrast, the requirement "the foo attribute's value must be parsed using the rules for parsing integers p67 " is a requirement on
consumers, as it describes how to process the content.

Requirements on producers have no bearing whatsoever on consumers.

Example
Continuing the above example, a requirement stating that a particular attribute's value is constrained to being a valid integer p67
emphatically does not imply anything about the requirements on consumers. It might be that the consumers are in fact required to
treat the attribute as an opaque string, completely unaffected by whether the value conforms to the requirements or not. It might
be (as in the previous example) that the consumers are required to parse the value using specific rules that define how invalid
(non-numeric in this case) values are to be processed.

1.9.2 Typographic conventions § p28

This is a definition, requirement, or explanation.

28
Note
This is a note.

Example
This is an example.

This is an open issue.

⚠Warning!
This is a warning.

IDL
[Exposed=Window]
interface Example {
// this is an IDL definition
};

For web developers (non-normative)


variable = object . method p29 ( [ optionalArgument ] )
This is a note to authors describing the usage of an interface.

CSS
/* this is a CSS fragment */

The defining instance of a term is marked up like this. Uses of that term are marked up like this p29 or like this p29 .

The defining instance of an element, attribute, or API is marked up like this. References to that element, attribute, or API are marked
up like this p29 .

Other code fragments are marked up like this.

Variables are marked up like this.

In an algorithm, steps in synchronous sections p918 are marked with ⌛.

In some cases, requirements are given in the form of lists with conditions and corresponding requirements. In such cases, the
requirements that apply to a condition are always the first set of requirements that follow the condition, even in the case of there being
multiple sets of conditions for those requirements. Such cases are presented as follows:

↪ This is a condition
↪ This is another condition
This is the requirement that applies to the conditions above.

↪ This is a third condition


This is the requirement that applies to the third condition.

1.10 Privacy concerns § p29

This section is non-normative.

Some features of HTML trade user convenience for a measure of user privacy.

In general, due to the Internet's architecture, a user can be distinguished from another by the user's IP address. IP addresses do not
perfectly match to a user; as a user moves from device to device, or from network to network, their IP address will change; similarly,
NAT routing, proxy servers, and shared computers enable packets that appear to all come from a single IP address to actually map to
multiple users. Technologies such as onion routing can be used to further anonymize requests so that requests from a single user at
one node on the Internet appear to come from many disparate parts of the network.

29
However, the IP address used for a user's requests is not the only mechanism by which a user's requests could be related to each
other. Cookies, for example, are designed specifically to enable this, and are the basis of most of the Web's session features that
enable you to log into a site with which you have an account.

There are other mechanisms that are more subtle. Certain characteristics of a user's system can be used to distinguish groups of users
from each other; by collecting enough such information, an individual user's browser's "digital fingerprint" can be computed, which can
be as good as, if not better than, an IP address in ascertaining which requests are from the same user.

Grouping requests in this manner, especially across multiple sites, can be used for both benign (and even arguably positive) purposes,
as well as for malevolent purposes. An example of a reasonably benign purpose would be determining whether a particular person
seems to prefer sites with dog illustrations as opposed to sites with cat illustrations (based on how often they visit the sites in
question) and then automatically using the preferred illustrations on subsequent visits to participating sites. Malevolent purposes,
however, could include governments combining information such as the person's home address (determined from the addresses they
use when getting driving directions on one site) with their apparent political affiliations (determined by examining the forum sites that
they participate in) to determine whether the person should be prevented from voting in an election.

Since the malevolent purposes can be remarkably evil, user agent implementers are encouraged to consider how to provide their users
with tools to minimize leaking information that could be used to fingerprint a user.

Unfortunately, as the first paragraph in this section implies, sometimes there is great benefit to be derived from exposing the very
information that can also be used for fingerprinting purposes, so it's not as easy as simply blocking all possible leaks. For instance, the
ability to log into a site to post under a specific identity requires that the user's requests be identifiable as all being from the same
user, more or less by definition. More subtly, though, information such as how wide text is, which is necessary for many effects that
involve drawing text onto a canvas (e.g. any effect that involves drawing a border around the text) also leaks information that can be
used to group a user's requests. (In this case, by potentially exposing, via a brute force search, which fonts a user has installed,
information which can vary considerably from user to user.)

Features in this specification which can be used to fingerprint the user are marked as this paragraph is.

Other features in the platform can be used for the same purpose, though, including, though not limited to:
p30
• The exact list of which features a user agents supports.

• The maximum allowed stack depth for recursion in script.

• Features that describe the user's environment, like Media Queries and the Screen object. [MQ] p1254 [CSSOMVIEW] p1251

• The user's time zone.

1.10.1 Cross-site communication § p30

The postMessage() p985 API provides a mechanism by which two sites can communicate directly. At first glance, this might appear to
open a new way by which the problems described above can occur. However, in practice, multiple mechanisms exist by which two sites
can communicate that predate this API: a site embedding another can send data via an iframe p350 element's dimensions; a site can
use a cross-site image request with a unique identifier known to the server to initiate a server-side data exchange; or indeed the
fingerprinting techniques described above can be used by two sites to uniquely identify a visitor such that information can then be
exchanged on the server side.

Fundamentally, users that do not trust a site to treat their information with respect have to avoid visiting that site at all.

1.11 A quick introduction to HTML § p30

This section is non-normative.

A basic HTML document looks like this:

<!DOCTYPE html>
<html lang="en">
<head>

30
<title>Sample page</title>
</head>
<body>
<h1>Sample page</h1>
<p>This is a <a href="demo.html">simple</a> sample.</p>
<!-- this is a comment -->
</body>
</html>

HTML documents consist of a tree of elements and text. Each element is denoted in the source by a start tag p1035 , such as "<body>",
and an end tag p1036 , such as "</body>". (Certain start tags and end tags can in certain cases be omitted p1037 and are implied by other
tags.)

Tags have to be nested such that elements are all completely within each other, without overlapping:

<p>This is <em>very <strong>wrong</em>!</strong></p>

<p>This <em>is <strong>correct</strong>.</em></p>

This specification defines a set of elements that can be used in HTML, along with rules about the ways in which the elements can be
nested.

Elements can have attributes, which control how the elements work. In the example below, there is a hyperlink p275 , formed using the
a p232 element and its href p276 attribute:

<a href="demo.html">simple</a>

Attributes p1036 are placed inside the start tag, and consist of a name p1036 and a value p1036 , separated by an "=" character. The attribute
value can remain unquoted p1036 if it doesn't contain ASCII whitespace or any of " ' ` = < or >. Otherwise, it has to be quoted using
either single or double quotes. The value, along with the "=" character, can be omitted altogether if the value is the empty string.

<!-- empty attributes -->


<input name=address disabled>
<input name=address disabled="">

<!-- attributes with a value -->


<input name=address maxlength=200>
<input name=address maxlength='200'>
<input name=address maxlength="200">

HTML user agents (e.g. Web browsers) then parse this markup, turning it into a DOM (Document Object Model) tree. A DOM tree is an
in-memory representation of a document.

DOM trees contain several kinds of nodes, in particular a DocumentType node, Element nodes, Text nodes, Comment nodes, and in
some cases ProcessingInstruction nodes.

The markup snippet at the top of this section p30 would be turned into the following DOM tree:

DOCTYPE: html
html p149 lang p137 ="en"
head p150
#text: ⏎␣␣
title p151
#text: Sample page
#text: ⏎␣
#text: ⏎␣
body p174
#text: ⏎␣␣
h1 p185
#text: Sample page
#text: ⏎␣␣

31
p p207
#text: This is a
a p232 href p276 ="demo.html"
#text: simple
#text: sample.
#text: ⏎␣␣
#comment: this is a comment
#text: ⏎␣⏎

The document element of this tree is the html p149 element, which is the element always found in that position in HTML documents. It
contains two elements, head p150 and body p174 , as well as a Text node between them.

There are many more Text nodes in the DOM tree than one would initially expect, because the source contains a number of spaces
(represented here by "␣") and line breaks ("⏎") that all end up as Text nodes in the DOM. However, for historical reasons not all of the
spaces and line breaks in the original markup appear in the DOM. In particular, all the whitespace before head p150 start tag ends up
being dropped silently, and all the whitespace after the body p174 end tag ends up placed at the end of the body p174 .

The head p150 element contains a title p151 element, which itself contains a Text node with the text "Sample page". Similarly, the
body p174 element contains an h1 p185 element, a p p207 element, and a comment.

This DOM tree can be manipulated from scripts in the page. Scripts (typically in JavaScript) are small programs that can be embedded
using the script p599 element or using event handler content attributes p924 . For example, here is a form with a script that sets the value
of the form's output p539 element to say "Hello World":

<form name="main">
Result: <output name="result"></output>
<script>
document.forms.main.elements.result.value = 'Hello World';
</script>
</form>

Each element in the DOM tree is represented by an object, and these objects have APIs so that they can be manipulated. For instance,
a link (e.g. the a p232 element in the tree above) can have its "href p276 " attribute changed in several ways:

var a = document.links[0]; // obtain the first link in the document


a.href = 'sample.html'; // change the destination URL of the link
a.protocol = 'https'; // change just the scheme part of the URL
a.setAttribute('href', 'https://example.com/'); // change the content attribute directly

Since DOM trees are used as the way to represent HTML documents when they are processed and presented by implementations
(especially interactive implementations like Web browsers), this specification is mostly phrased in terms of DOM trees, instead of the
markup described above.

HTML documents represent a media-independent description of interactive content. HTML documents might be rendered to a screen,
or through a speech synthesizer, or on a braille display. To influence exactly how such rendering takes place, authors can use a styling
language such as CSS.

In the following example, the page has been made yellow-on-blue using CSS.

<!DOCTYPE html>
<html lang="en">
<head>
<title>Sample styled page</title>
<style>
body { background: navy; color: yellow; }
</style>
</head>
<body>
<h1>Sample styled page</h1>

32
<p>This page is just a demo.</p>
</body>
</html>

For more details on how to use HTML, authors are encouraged to consult tutorials and guides. Some of the examples included in this
specification might also be of use, but the novice author is cautioned that this specification, by necessity, defines the language with a
level of detail that might be difficult to understand at first.

1.11.1 Writing secure applications with HTML § p33

This section is non-normative.

When HTML is used to create interactive sites, care needs to be taken to avoid introducing vulnerabilities through which attackers can
compromise the integrity of the site itself or of the site's users.

A comprehensive study of this matter is beyond the scope of this document, and authors are strongly encouraged to study the matter
in more detail. However, this section attempts to provide a quick introduction to some common pitfalls in HTML application
development.

The security model of the Web is based on the concept of "origins", and correspondingly many of the potential attacks on the Web
involve cross-origin actions. [ORIGIN] p1254

Not validating user input


Cross-site scripting (XSS)
SQL injection
When accepting untrusted input, e.g. user-generated content such as text comments, values in URL parameters, messages from
third-party sites, etc, it is imperative that the data be validated before use, and properly escaped when displayed. Failing to do this
can allow a hostile user to perform a variety of attacks, ranging from the potentially benign, such as providing bogus user
information like a negative age, to the serious, such as running scripts every time a user looks at a page that includes the
information, potentially propagating the attack in the process, to the catastrophic, such as deleting all data in the server.

When writing filters to validate user input, it is imperative that filters always be safelist-based, allowing known-safe constructs and
disallowing all other input. Blocklist-based filters that disallow known-bad inputs and allow everything else are not secure, as not
everything that is bad is yet known (for example, because it might be invented in the future).

Example
For example, suppose a page looked at its URL's query string to determine what to display, and the site then redirected the user
to that page to display a message, as in:

<ul>
<li><a href="message.cgi?say=Hello">Say Hello</a>
<li><a href="message.cgi?say=Welcome">Say Welcome</a>
<li><a href="message.cgi?say=Kittens">Say Kittens</a>
</ul>

If the message was just displayed to the user without escaping, a hostile attacker could then craft a URL that contained a script
element:

https://example.com/message.cgi?say=%3Cscript%3Ealert%28%27Oh%20no%21%27%29%3C/script%3E
If the attacker then convinced a victim user to visit this page, a script of the attacker's choosing would run on the page. Such a
script could do any number of hostile actions, limited only by what the site offers: if the site is an e-commerce shop, for
instance, such a script could cause the user to unknowingly make arbitrarily many unwanted purchases.

This is called a cross-site scripting attack.

There are many constructs that can be used to try to trick a site into executing code. Here are some that authors are encouraged to
consider when writing safelist filters:

• When allowing harmless-seeming elements like img p310 , it is important to safelist any provided attributes as well. If one
allowed all attributes then an attacker could, for instance, use the onload p930 attribute to run arbitrary script.
33
• When allowing URLs to be provided (e.g. for links), the scheme of each URL also needs to be explicitly safelisted, as there
are many schemes that can be abused. The most prominent example is "javascript: p845 ", but user agents can
implement (and indeed, have historically implemented) others.

• Allowing a base p152 element to be inserted means any script p599 elements in the page with relative links can be hijacked,
and similarly that any form submissions can get redirected to a hostile site.

Cross-site request forgery (CSRF)


If a site allows a user to make form submissions with user-specific side-effects, for example posting messages on a forum under the
user's name, making purchases, or applying for a passport, it is important to verify that the request was made by the user
intentionally, rather than by another site tricking the user into making the request unknowingly.

This problem exists because HTML forms can be submitted to other origins.

Sites can prevent such attacks by populating forms with user-specific hidden tokens, or by checking `Origin` headers on all
requests.

Clickjacking
A page that provides users with an interface to perform actions that the user might not wish to perform needs to be designed so as
to avoid the possibility that users can be tricked into activating the interface.

One way that a user could be so tricked is if a hostile site places the victim site in a small iframe p350 and then convinces the user to
click, for instance by having the user play a reaction game. Once the user is playing the game, the hostile site can quickly position
the iframe under the mouse cursor just as the user is about to click, thus tricking the user into clicking the victim site's interface.

To avoid this, sites that do not expect to be used in frames are encouraged to only enable their interface if they detect that they are
not in a frame (e.g. by comparing the window p807 object to the value of the top p797 attribute).

1.11.2 Common pitfalls to avoid when using the scripting APIs § p34

This section is non-normative.

Scripts in HTML have "run-to-completion" semantics, meaning that the browser will generally run the script uninterrupted before doing
anything else, such as firing further events or continuing to parse the document.

On the other hand, parsing of HTML files happens incrementally, meaning that the parser can pause at any point to let scripts run. This
is generally a good thing, but it does mean that authors need to be careful to avoid hooking event handlers after the events could have
possibly fired.

There are two techniques for doing this reliably: use event handler content attributes p924 , or create the element and add the event
handlers in the same script. The latter is safe because, as mentioned earlier, scripts are run to completion before further events can
fire.

Example
One way this could manifest itself is with img p310 elements and the load p1246 event. The event could fire as soon as the element has
been parsed, especially if the image has already been cached (which is common).

Here, the author uses the onload p930 handler on an img p310 element to catch the load p1246 event:

<img src="games.png" alt="Games" onload="gamesLogoHasLoaded(event)">

If the element is being added by script, then so long as the event handlers are added in the same script, the event will still not be
missed:

<script>
var img = new Image();
img.src = 'games.png';
img.alt = 'Games';
img.onload = gamesLogoHasLoaded;
// img.addEventListener('load', gamesLogoHasLoaded, false); // would work also

34
</script>

However, if the author first created the img p310 element and then in a separate script added the event listeners, there's a chance
that the load p1246 event would be fired in between, leading it to be missed:

<!-- Do not use this style, it has a race condition! -->


<img id="games" src="games.png" alt="Games">
<!-- the 'load' event might fire here while the parser is taking a
break, in which case you will not see it! -->
<script>
var img = document.getElementById('games');
img.onload = gamesLogoHasLoaded; // might never fire!
</script>

1.11.3 How to catch mistakes when writing HTML: validators and conformance checkers § p35

This section is non-normative.

Authors are encouraged to make use of conformance checkers (also known as validators) to catch common mistakes. The WHATWG
maintains a list of such tools at: https://whatwg.org/validator/

1.12 Conformance requirements for authors § p35

This section is non-normative.

Unlike previous versions of the HTML specification, this specification defines in some detail the required processing for invalid
documents as well as valid documents.

However, even though the processing of invalid content is in most cases well-defined, conformance requirements for documents are
still important: in practice, interoperability (the situation in which all implementations process particular content in a reliable and
identical or equivalent way) is not the only goal of document conformance requirements. This section details some of the more
common reasons for still distinguishing between a conforming document and one with errors.

1.12.1 Presentational markup § p35

This section is non-normative.

The majority of presentational features from previous versions of HTML are no longer allowed. Presentational markup in general has
been found to have a number of problems:

The use of presentational elements leads to poorer accessibility


While it is possible to use presentational markup in a way that provides users of assistive technologies (ATs) with an acceptable
experience (e.g. using ARIA), doing so is significantly more difficult than doing so when using semantically-appropriate markup.
Furthermore, even using such techniques doesn't help make pages accessible for non-AT non-graphical users, such as users of text-
mode browsers.

Using media-independent markup, on the other hand, provides an easy way for documents to be authored in such a way that they
work for more users (e.g. users of text browsers).

Higher cost of maintenance


It is significantly easier to maintain a site written in such a way that the markup is style-independent. For example, changing the
color of a site that uses <font color=""> throughout requires changes across the entire site, whereas a similar change to a site
based on CSS can be done by changing a single file.

35
Larger document sizes
Presentational markup tends to be much more redundant, and thus results in larger document sizes.

For those reasons, presentational markup has been removed from HTML in this version. This change should not come as a surprise;
HTML4 deprecated presentational markup many years ago and provided a mode (HTML4 Transitional) to help authors move away from
presentational markup; later, XHTML 1.1 went further and obsoleted those features altogether.

The only remaining presentational markup features in HTML are the style p142 attribute and the style p170 element. Use of the style p142
attribute is somewhat discouraged in production environments, but it can be useful for rapid prototyping (where its rules can be
directly moved into a separate style sheet later) and for providing specific styles in unusual cases where a separate style sheet would
be inconvenient. Similarly, the style p170 element can be useful in syndication or for page-specific styles, but in general an external
style sheet is likely to be more convenient when the styles apply to multiple pages.

It is also worth noting that some elements that were previously presentational have been redefined in this specification to be media-
independent: b p266 , i p265 , hr p209 , s p239 , small p237 , and u p267 .

1.12.2 Syntax errors § p36

This section is non-normative.

The syntax of HTML is constrained to avoid a wide variety of problems.

Unintuitive error-handling behavior


Certain invalid syntax constructs, when parsed, result in DOM trees that are highly unintuitive.

Example
For example, the following markup fragment results in a DOM with an hr p209 element that is an earlier sibling of the
corresponding table p438 element:

<table><hr>...

Errors with optional error recovery


To allow user agents to be used in controlled environments without having to implement the more bizarre and convoluted error
handling rules, user agents are permitted to fail whenever encountering a parse error p1047 .

Errors where the error-handling behavior is not compatible with streaming user agents
Some error-handling behavior, such as the behavior for the <table><hr>... example mentioned above, are incompatible with
streaming user agents (user agents that process HTML files in one pass, without storing state). To avoid interoperability problems
with such user agents, any syntax resulting in such behavior is considered invalid.

Errors that can result in infoset coercion


When a user agent based on XML is connected to an HTML parser, it is possible that certain invariants that XML enforces, such as
element or attribute names never contain multiple colons, will be violated by an HTML file. Handling this can require that the parser
coerce the HTML DOM into an XML-compatible infoset. Most syntax constructs that require such handling are considered invalid.
(Comments containing two consecutive hyphens, or ending with a hyphen, are exceptions that are allowed in the HTML syntax.)

Errors that result in disproportionately poor performance


Certain syntax constructs can result in disproportionately poor performance. To discourage the use of such constructs, they are
typically made non-conforming.

Example
For example, the following markup results in poor performance, since all the unclosed i p265 elements have to be reconstructed
in each paragraph, resulting in progressively more elements in each paragraph:

<p><i>She dreamt.
<p><i>She dreamt that she ate breakfast.
<p><i>Then lunch.
<p><i>And finally dinner.

36
The resulting DOM for this fragment would be:

p p207
i p265
#text: She dreamt.
p p207
i p265
i p265
#text: She dreamt that she ate breakfast.
p p207
i p265
i p265
i p265
#text: Then lunch.
p p207
i p265
i p265
i p265
i p265
#text: And finally dinner.

Errors involving fragile syntax constructs


There are syntax constructs that, for historical reasons, are relatively fragile. To help reduce the number of users who accidentally
run into such problems, they are made non-conforming.

Example
For example, the parsing of certain named character references in attributes happens even with the closing semicolon being
omitted. It is safe to include an ampersand followed by letters that do not form a named character reference, but if the letters
are changed to a string that does form a named character reference, they will be interpreted as that character instead.

In this fragment, the attribute's value is "?bill&ted":

<a href="?bill&ted">Bill and Ted</a>

In the following fragment, however, the attribute's value is actually "?art©", not the intended "?art&copy", because even
without the final semicolon, "&copy" is handled the same as "&copy;" and thus gets interpreted as "©":

<a href="?art&copy">Art and Copy</a>

To avoid this problem, all named character references are required to end with a semicolon, and uses of named character
references without a semicolon are flagged as errors.

Thus, the correct way to express the above cases is as follows:

<a href="?bill&ted">Bill and Ted</a> <!-- &ted is ok, since it's not a named character reference
-->

<a href="?art&amp;copy">Art and Copy</a> <!-- the & has to be escaped, since &copy is a named
character reference -->

Errors involving known interoperability problems in legacy user agents


Certain syntax constructs are known to cause especially subtle or serious problems in legacy user agents, and are therefore marked
as non-conforming to help authors avoid them.

Example
For example, this is why the U+0060 GRAVE ACCENT character (`) is not allowed in unquoted attributes. In certain legacy user
agents, it is sometimes treated as a quote character.

37
Example
Another example of this is the DOCTYPE, which is required to trigger no-quirks mode, because the behavior of legacy user
agents in quirks mode is often largely undocumented.

Errors that risk exposing authors to security attacks


Certain restrictions exist purely to avoid known security problems.

Example
For example, the restriction on using UTF-7 exists purely to avoid authors falling prey to a known cross-site-scripting attack
using UTF-7. [UTF7] p1257

Cases where the author's intent is unclear


Markup where the author's intent is very unclear is often made non-conforming. Correcting these errors early makes later
maintenance easier.

Example
For example, it is unclear whether the author intended the following to be an h1 p185 heading or an h2 p185 heading:

<h1>Contact details</h2>

Cases that are likely to be typos


When a user makes a simple typo, it is helpful if the error can be caught early, as this can save the author a lot of debugging time.
This specification therefore usually considers it an error to use element names, attribute names, and so forth, that do not match the
names defined in this specification.

Example
For example, if the author typed <capton> instead of <caption>, this would be flagged as an error and the author could correct
the typo immediately.

Errors that could interfere with new syntax in the future


In order to allow the language syntax to be extended in the future, certain otherwise harmless features are disallowed.

Example
For example, "attributes" in end tags are ignored currently, but they are invalid, in case a future change to the language makes
use of that syntax feature without conflicting with already-deployed (and valid!) content.

Some authors find it helpful to be in the practice of always quoting all attributes and always including all optional tags, preferring the
consistency derived from such custom over the minor benefits of terseness afforded by making use of the flexibility of the HTML
syntax. To aid such authors, conformance checkers can provide modes of operation wherein such conventions are enforced.

1.12.3 Restrictions on content models and on attribute values § p38

This section is non-normative.

Beyond the syntax of the language, this specification also places restrictions on how elements and attributes can be specified. These
restrictions are present for similar reasons:

Errors involving content with dubious semantics


To avoid misuse of elements with defined meanings, content models are defined that restrict how elements can be nested when
such nestings would be of dubious value.

Example
For example, this specification disallows nesting a section p177 element inside a kbd p263 element, since it is highly unlikely for an
author to indicate that an entire section should be keyed in.

38
Errors that involve a conflict in expressed semantics
Similarly, to draw the author's attention to mistakes in the use of elements, clear contradictions in the semantics expressed are also
considered conformance errors.

Example
In the fragments below, for example, the semantics are nonsensical: a separator cannot simultaneously be a cell, nor can a
radio button be a progress bar.

<hr role="cell">

<input type=radio role=progressbar>

Example
Another example is the restrictions on the content models of the ul p217 element, which only allows li p219 element children. Lists
by definition consist just of zero or more list items, so if a ul p217 element contains something other than an li p219 element, it's
not clear what was meant.

Cases where the default styles are likely to lead to confusion


Certain elements have default styles or behaviors that make certain combinations likely to lead to confusion. Where these have
equivalent alternatives without this problem, the confusing combinations are disallowed.

Example
For example, div p231 elements are rendered as block boxes, and span p271 elements as inline boxes. Putting a block box in an
inline box is unnecessarily confusing; since either nesting just div p231 elements, or nesting just span p271 elements, or nesting
span p271 elements inside div p231 elements all serve the same purpose as nesting a div p231 element in a span p271 element, but
only the latter involves a block box in an inline box, the latter combination is disallowed.

Example
Another example would be the way interactive content p130 cannot be nested. For example, a button p521 element cannot contain
a textarea p534 element. This is because the default behavior of such nesting interactive elements would be highly confusing to
users. Instead of nesting these elements, they can be placed side by side.

Errors that indicate a likely misunderstanding of the specification


Sometimes, something is disallowed because allowing it would likely cause author confusion.

Example
For example, setting the disabled p555 attribute to the value "false" is disallowed, because despite the appearance of meaning
that the element is enabled, it in fact means that the element is disabled (what matters for implementations is the presence of
the attribute, not its value).

Errors involving limits that have been imposed merely to simplify the language
Some conformance errors simplify the language that authors need to learn.

Example
For example, the area p431 element's shape p432 attribute, despite accepting both circ p432 and circle p432 values in practice as
synonyms, disallows the use of the circ p432 value, so as to simplify tutorials and other learning aids. There would be no benefit
to allowing both, but it would cause extra confusion when teaching the language.

Errors that involve peculiarities of the parser


Certain elements are parsed in somewhat eccentric ways (typically for historical reasons), and their content model restrictions are
intended to avoid exposing the author to these issues.

Example
For example, a form p473 element isn't allowed inside phrasing content p130 , because when parsed as HTML, a form p473 element's
start tag will imply a p p207 element's end tag. Thus, the following markup results in two paragraphs p132 , not one:

39
<p>Welcome. <form><label>Name:</label> <input></form>

It is parsed exactly like the following:

<p>Welcome. </p><form><label>Name:</label> <input></form>

Errors that would likely result in scripts failing in hard-to-debug ways


Some errors are intended to help prevent script problems that would be hard to debug.

Example
This is why, for instance, it is non-conforming to have two id p134 attributes with the same value. Duplicate IDs lead to the wrong
element being selected, with sometimes disastrous effects whose cause is hard to determine.

Errors that waste authoring time


Some constructs are disallowed because historically they have been the cause of a lot of wasted authoring time, and by
encouraging authors to avoid making them, authors can save time in future efforts.

Example
For example, a script p599 element's src p600 attribute causes the element's contents to be ignored. However, this isn't obvious,
especially if the element's contents appear to be executable script — which can lead to authors spending a lot of time trying to
debug the inline script without realizing that it is not executing. To reduce this problem, this specification makes it non-
conforming to have executable script in a script p599 element when the src p600 attribute is present. This means that authors
who are validating their documents are less likely to waste time with this kind of mistake.

Errors that involve areas that affect authors migrating between the HTML and XML syntaxes
Some authors like to write files that can be interpreted as both XML and HTML with similar results. Though this practice is
discouraged in general due to the myriad of subtle complications involved (especially when involving scripting, styling, or any kind
of automated serialization), this specification has a few restrictions intended to at least somewhat mitigate the difficulties. This
makes it easier for authors to use this as a transitionary step when migrating between the HTML and XML syntaxes.

Example
For example, there are somewhat complicated rules surrounding the lang p137 and xml:lang p137 attributes intended to keep the
two synchronized.

Example
Another example would be the restrictions on the values of xmlns attributes in the HTML serialization, which are intended to
ensure that elements in conforming documents end up in the same namespaces whether processed as HTML or XML.

Errors that involve areas reserved for future expansion


As with the restrictions on the syntax intended to allow for new syntax in future revisions of the language, some restrictions on the
content models of elements and values of attributes are intended to allow for future expansion of the HTML vocabulary.

Example
For example, limiting the values of the target p276 attribute that start with an U+005F LOW LINE character (_) to only specific
predefined values allows new predefined values to be introduced at a future time without conflicting with author-defined values.

Errors that indicate a mis-use of other specifications


Certain restrictions are intended to support the restrictions made by other specifications.

Example
For example, requiring that attributes that take media query lists use only valid media query lists reinforces the importance of
following the conformance rules of that specification.

40
1.13 Suggested reading § p41

This section is non-normative.

The following documents might be of interest to readers of this specification.

Character Model for the World Wide Web 1.0: Fundamentals [CHARMOD] p1250
This Architectural Specification provides authors of specifications, software developers, and content developers with a common
reference for interoperable text manipulation on the World Wide Web, building on the Universal Character Set, defined jointly by
the Unicode Standard and ISO/IEC 10646. Topics addressed include use of the terms 'character', 'encoding' and 'string', a
reference processing model, choice and identification of character encodings, character escaping, and string indexing.

Unicode Security Considerations [UTR36] p1257


Because Unicode contains such a large number of characters and incorporates the varied writing systems of the world, incorrect
usage can expose programs or systems to possible security attacks. This is especially important as more and more products are
internationalized. This document describes some of the security considerations that programmers, system analysts, standards
developers, and users should take into account, and provides specific recommendations to reduce the risk of problems.

Web Content Accessibility Guidelines (WCAG) 2.0 [WCAG] p1257


Web Content Accessibility Guidelines (WCAG) 2.0 covers a wide range of recommendations for making Web content more
accessible. Following these guidelines will make content accessible to a wider range of people with disabilities, including
blindness and low vision, deafness and hearing loss, learning disabilities, cognitive limitations, limited movement, speech
disabilities, photosensitivity and combinations of these. Following these guidelines will also often make your Web content more
usable to users in general.

Authoring Tool Accessibility Guidelines (ATAG) 2.0 [ATAG] p1250


This specification provides guidelines for designing Web content authoring tools that are more accessible for people with
disabilities. An authoring tool that conforms to these guidelines will promote accessibility by providing an accessible user
interface to authors with disabilities as well as by enabling, supporting, and promoting the production of accessible Web content
by all authors.

User Agent Accessibility Guidelines (UAAG) 2.0 [UAAG] p1256


This document provides guidelines for designing user agents that lower barriers to Web accessibility for people with disabilities.
User agents include browsers and other types of software that retrieve and render Web content. A user agent that conforms to
these guidelines will promote accessibility through its own user interface and through other internal facilities, including its
ability to communicate with other technologies (especially assistive technologies). Furthermore, all users, not just users with
disabilities, should find conforming user agents to be more usable.

41
2 Common infrastructure § p42

This specification depends on Infra. [INFRA] p1253

2.1 Terminology § p42

This specification refers to both HTML and XML attributes and IDL attributes, often in the same context. When it is not clear which is
being referred to, they are referred to as content attributes for HTML and XML attributes, and IDL attributes for those defined on
IDL interfaces. Similarly, the term "properties" is used for both JavaScript object properties and CSS properties. When these are
ambiguous they are qualified as object properties and CSS properties respectively.

Generally, when the specification states that a feature applies to the HTML syntax p1033 or the XML syntax p1154 , it also includes the other.
When a feature specifically only applies to one of the two languages, it is called out by explicitly stating that it does not apply to the
other format, as in "for HTML, ... (this does not apply to XML)".

This specification uses the term document to refer to any use of HTML, ranging from short static documents to long essays or reports
with rich multimedia, as well as to fully-fledged interactive applications. The term is used to refer both to Document p112 objects and
their descendant DOM trees, and to serialized byte streams using the HTML syntax p1033 or the XML syntax p1154 , depending on context.

In the context of the DOM structures, the terms HTML document and XML document are used as defined in DOM, and refer specifically
to two different modes that Document p112 objects can find themselves in. [DOM] p1252 (Such uses are always hyperlinked to their
definition.)

In the context of byte streams, the term HTML document refers to resources labeled as text/html p1217 , and the term XML document
refers to resources labeled with an XML MIME type.

For simplicity, terms such as shown, displayed, and visible might sometimes be used when referring to the way a document is
rendered to the user. These terms are not meant to imply a visual medium; they must be considered to apply to other media in
equivalent ways.

2.1.1 Parallelism § p42

To run steps in parallel means those steps are to be run, one after another, at the same time as other logic in the standard (e.g., at
the same time as the event loop p912 ). This standard does not define the precise mechanism by which this is achieved, be it time-
sharing cooperative multitasking, fibers, threads, processes, using different hyperthreads, cores, CPUs, machines, etc. By contrast, an
operation that is to run immediately must interrupt the currently running task, run itself, and then resume the previously running
task.

Note
For guidance on writing specifications that leverage parallelism, see Dealing with the event loop from other specifications p920 .

To avoid race conditions between different in parallel p42 algorithms that operate on the same data, a parallel queue p42 can be used.

A parallel queue represents a queue of algorithm steps that must be run in series.

A parallel queue p42 has an algorithm queue (a queue), initially empty.

To enqueue steps to a parallel queue p42 , enqueue the algorithm steps to the parallel queue p42 's algorithm queue p42 .

To start a new parallel queue, run the following steps:

1. Let parallelQueue be a new parallel queue p42 .

2. Run the following steps in parallel p42 :


42
1. While true:

1. Let steps be the result of dequeueing from parallelQueue's algorithm queue p42 .

2. If steps is not nothing, then run steps.

3. Assert: running steps did not throw an exception, as steps running in parallel p42 are not allowed to throw.

Note
Implementations are not expected to implement this as a continuously running loop. Algorithms in standards
are to be easy to understand and are not necessarily great for battery life or performance.

3. Return parallelQueue.

Note
Steps running in parallel p42 can themselves run other steps in in parallel p42 . E.g., inside a parallel queue p42 it can be useful to run a
series of steps in parallel with the queue.

Example
Imagine a standard defined nameList (a list), along with a method to add a name to nameList, unless nameList already contains
name, in which case it rejects.

The following solution suffers from race conditions:

1. Let p be a new promise.

2. Run the following steps in parallel p42 :

1. If nameList contains name, reject p with a TypeError and abort these steps.

2. Do some potentially lengthy work.

3. Append name to nameList.

4. Resolve p with undefined.

3. Return p.

Two invocations of the above could run simultaneously, meaning name isn't in nameList during step 2.1, but it might be added
before step 2.3 runs, meaning name ends up in nameList twice.

Parallel queues solve this. The standard would let nameListQueue be the result of starting a new parallel queue p42 , then:

1. Let p be a new promise.

2. Enqueue the following steps p42 to nameListQueue:

1. If nameList contains name, reject p with a TypeError and abort these steps.

2. Do some potentially lengthy work.

3. Append name to nameList.

4. Resolve p with undefined.

3. Return p.

The steps would now queue and the race is avoided.

2.1.2 Resources § p43

The specification uses the term supported when referring to whether a user agent has an implementation capable of decoding the
semantics of an external resource. A format or type is said to be supported if the implementation can process an external resource of
that format or type without critical aspects of the resource being ignored. Whether a specific resource is supported can depend on

43
what features of the resource's format are in use.

Example
For example, a PNG image would be considered to be in a supported format if its pixel data could be decoded and rendered, even
if, unbeknownst to the implementation, the image also contained animation data.

Example
An MPEG-4 video file would not be considered to be in a supported format if the compression format used was not supported, even
if the implementation could determine the dimensions of the movie from the file's metadata.

What some specifications, in particular the HTTP specifications, refer to as a representation is referred to in this specification as a
resource. [HTTP] p1253

A resource's critical subresources are those that the resource needs to have available to be correctly processed. Which resources
are considered critical or not is defined by the specification that defines the resource's format.

For CSS style sheets, we tentatively define here that their critical subresources are other style sheets imported via @import rules,
including those indirectly imported by other imported style sheets.

This definition is not fully interoperable; furthermore, some user agents seem to count resources like background images or web
fonts as critical subresources. Ideally, the CSS Working Group would define this; see w3c/csswg-drafts issue #1088 to track
progress on that front.

2.1.3 XML compatibility § p44

To ease migration from HTML to XML, UAs conforming to this specification will place elements in HTML in the http://www.w3.org/
1999/xhtml namespace, at least for the purposes of the DOM and CSS. The term "HTML elements" refers to any element in that
namespace, even in XML documents.

Except where otherwise stated, all elements defined or mentioned in this specification are in the HTML namespace
("http://www.w3.org/1999/xhtml"), and all attributes defined or mentioned in this specification have no namespace.

The term element type is used to refer to the set of elements that have a given local name and namespace. For example, button p521
elements are elements with the element type button p521 , meaning they have the local name "button" and (implicitly as defined
above) the HTML namespace.

Attribute names are said to be XML-compatible if they match the Name production defined in XML and they contain no U+003A
COLON characters (:). [XML] p1257

2.1.4 DOM trees § p44

When it is stated that some element or attribute is ignored, or treated as some other value, or handled as if it was something else,
this refers only to the processing of the node after it is in the DOM. A user agent must not mutate the DOM in such situations.

A content attribute is said to change value only if its new value is different than its previous value; setting an attribute to a value it
already has does not change it.

The term empty, when used for an attribute value, Text node, or string, means that the length of the text is zero (i.e., not even
containing controls or U+0020 SPACE).

A node A is inserted into a node B when the insertion steps are invoked with A as the argument and A's new parent is B. Similarly, a
node A is removed from a node B when the removing steps are invoked with A as the removedNode argument and B as the
oldParent argument.

A node is inserted into a document when the insertion steps are invoked with it as the argument and it is now in a document tree.
Analogously, a node is removed from a document when the removing steps are invoked with it as the argument and it is now no
longer in a document tree.
44
A node becomes connected when the insertion steps are invoked with it as the argument and it is now connected. Analogously, a
node becomes disconnected when the removing steps are invoked with it as the argument and it is now no longer connected.

A node is browsing-context connected when it is connected and its shadow-including root's browsing context p793 is non-null. A node
becomes browsing-context connected when the insertion steps are invoked with it as the argument and it is now browsing-context
connected p45 . A node becomes browsing-context disconnected either when the removing steps are invoked with it as the
argument and it is now no longer browsing-context connected p45 , or when its shadow-including root's browsing context p793 becomes
null.

2.1.5 Scripting § p45

The construction "a Foo object", where Foo is actually an interface, is sometimes used instead of the more accurate "an object
implementing the interface Foo".

An IDL attribute is said to be getting when its value is being retrieved (e.g. by author script), and is said to be setting when a new
value is assigned to it.

If a DOM object is said to be live, then the attributes and methods on that object must operate on the actual underlying data, not a
snapshot of the data.

2.1.6 Plugins § p45

The term plugin refers to a user-agent defined set of content handlers used by the user agent that can take part in the user agent's
rendering of a Document p112 object, but that neither act as child browsing contexts p795 of the Document p112 nor introduce any Node
objects to the Document p112 's DOM.

Typically such content handlers are provided by third parties, though a user agent can also designate built-in content handlers as
plugins.

A user agent must not consider the types text/plain and application/octet-stream as having a registered plugin p45 .

Example
One example of a plugin would be a PDF viewer that is instantiated in a browsing context p793 when the user navigates to a PDF file.
This would count as a plugin regardless of whether the party that implemented the PDF viewer component was the same as that
which implemented the user agent itself. However, a PDF viewer application that launches separate from the user agent (as
opposed to using the same interface) is not a plugin by this definition.

Note
This specification does not define a mechanism for interacting with plugins, as it is expected to be user-agent- and platform-
specific. Some UAs might opt to support a plugin mechanism such as the Netscape Plugin API; others might use remote content
converters or have built-in support for certain types. Indeed, this specification doesn't require user agents to support plugins at all.
[NPAPI] p1254

A plugin can be secured if it honors the semantics of the sandbox p354 attribute.

Example
For example, a secured plugin would prevent its contents from creating pop-up windows when the plugin is instantiated inside a
sandboxed iframe p350 .

⚠Warning!
Browsers should take extreme care when interacting with external content intended for plugins p45 . When third-
party software is run with the same privileges as the user agent itself, vulnerabilities in the third-party software
become as dangerous as those in the user agent.

Since different users having different sets of plugins p45 provides a fingerprinting vector that increases the chances of users being
uniquely identified, user agents are encouraged to support the exact same set of plugins p45 for each user.
45
2.1.7 Character encodings § p46

A character encoding, or just encoding where that is not ambiguous, is a defined way to convert between byte streams and Unicode
strings, as defined in Encoding. An encoding has an encoding name and one or more encoding labels, referred to as the encoding's
name and labels in the Encoding standard. [ENCODING] p1252

A UTF-16 encoding is UTF-16BE or UTF-16LE. [ENCODING] p1252

An ASCII-compatible encoding is any encoding that is not a UTF-16 encoding p46 . [ENCODING] p1252

Note
Since support for encodings that are not defined in Encoding is prohibited, UTF-16 encodings p46 are the only encodings that this
specification needs to treat as not being ASCII-compatible encodings p46 .

2.1.8 Conformance classes § p46

This specification describes the conformance criteria for user agents (relevant to implementers) and documents (relevant to authors
and authoring tool implementers).

Conforming documents are those that comply with all the conformance criteria for documents. For readability, some of these
conformance requirements are phrased as conformance requirements on authors; such requirements are implicitly requirements on
documents: by definition, all documents are assumed to have had an author. (In some cases, that author may itself be a user agent —
such user agents are subject to additional rules, as explained below.)

Example
For example, if a requirement states that "authors must not use the foobar element", it would imply that documents are not
allowed to contain elements named foobar.

Note
There is no implied relationship between document conformance requirements and implementation conformance requirements.
User agents are not free to handle non-conformant documents as they please; the processing model described in this specification
applies to implementations regardless of the conformity of the input documents.

User agents fall into several (overlapping) categories with different conformance requirements.

Web browsers and other interactive user agents


Web browsers that support the XML syntax p1154 must process elements and attributes from the HTML namespace found in XML
documents as described in this specification, so that users can interact with them, unless the semantics of those elements have
been overridden by other specifications.

Example
A conforming Web browser would, upon finding a script p599 element in an XML document, execute the script contained in that
element. However, if the element is found within a transformation expressed in XSLT (assuming the user agent also supports
XSLT), then the processor would instead treat the script p599 element as an opaque element that forms part of the transform.

Web browsers that support the HTML syntax p1033 must process documents labeled with an HTML MIME type as described in this
specification, so that users can interact with them.

User agents that support scripting must also be conforming implementations of the IDL fragments in this specification, as described
in Web IDL. [WEBIDL] p1257

Note
Unless explicitly stated, specifications that override the semantics of HTML elements do not override the requirements on DOM
objects representing those elements. For example, the script p599 element in the example above would still implement the
HTMLScriptElement p599 interface.

46
Non-interactive presentation user agents
User agents that process HTML and XML documents purely to render non-interactive versions of them must comply to the same
conformance criteria as Web browsers, except that they are exempt from requirements regarding user interaction.

Note
Typical examples of non-interactive presentation user agents are printers (static UAs) and overhead displays (dynamic UAs). It
is expected that most static non-interactive presentation user agents will also opt to lack scripting support p47 .

Example
A non-interactive but dynamic presentation UA would still execute scripts, allowing forms to be dynamically submitted, and so
forth. However, since the concept of "focus" is irrelevant when the user cannot interact with the document, the UA would not
need to support any of the focus-related DOM APIs.

Visual user agents that support the suggested default rendering


User agents, whether interactive or not, may be designated (possibly as a user option) as supporting the suggested default
rendering defined by this specification.

This is not required. In particular, even user agents that do implement the suggested default rendering are encouraged to offer
settings that override this default to improve the experience for the user, e.g. changing the color contrast, using different focus
styles, or otherwise making the experience more accessible and usable to the user.

User agents that are designated as supporting the suggested default rendering must, while so designated, implement the rules the
rendering section p1158 defines as the behavior that user agents are expected to implement.

User agents with no scripting support


Implementations that do not support scripting (or which have their scripting features disabled entirely) are exempt from supporting
the events and DOM interfaces mentioned in this specification. For the parts of this specification that are defined in terms of an
events model or in terms of the DOM, such user agents must still act as if events and the DOM were supported.

Note
Scripting can form an integral part of an application. Web browsers that do not support scripting, or that have scripting
disabled, might be unable to fully convey the author's intent.

Conformance checkers
Conformance checkers must verify that a document conforms to the applicable conformance criteria described in this specification.
Automated conformance checkers are exempt from detecting errors that require interpretation of the author's intent (for example,
while a document is non-conforming if the content of a blockquote p212 element is not a quote, conformance checkers running
without the input of human judgement do not have to check that blockquote p212 elements only contain quoted material).

Conformance checkers must check that the input document conforms when parsed without a browsing context p793 (meaning that no
scripts are run, and that the parser's scripting flag p1062 is disabled), and should also check that the input document conforms when
parsed with a browsing context p793 in which scripts execute, and that the scripts never cause non-conforming states to occur other
than transiently during script execution itself. (This is only a "SHOULD" and not a "MUST" requirement because it has been proven to
be impossible. [COMPUTABLE] p1250 )

The term "HTML validator" can be used to refer to a conformance checker that itself conforms to the applicable requirements of this
specification.

Note
XML DTDs cannot express all the conformance requirements of this specification. Therefore, a validating XML processor and a
DTD cannot constitute a conformance checker. Also, since neither of the two authoring formats defined in this specification are
applications of SGML, a validating SGML system cannot constitute a conformance checker either.

To put it another way, there are three types of conformance criteria:

1. Criteria that can be expressed in a DTD.

2. Criteria that cannot be expressed by a DTD, but can still be checked by a machine.

3. Criteria that can only be checked by a human.

47
A conformance checker must check for the first two. A simple DTD-based validator only checks for the first class of errors and is
therefore not a conforming conformance checker according to this specification.

Data mining tools


Applications and tools that process HTML and XML documents for reasons other than to either render the documents or check them
for conformance should act in accordance with the semantics of the documents that they process.

Example
A tool that generates document outlines p196 but increases the nesting level for each paragraph and does not increase the
nesting level for each section would not be conforming.

Authoring tools and markup generators


Authoring tools and markup generators must generate conforming documents p46 . Conformance criteria that apply to authors also
apply to authoring tools, where appropriate.

Authoring tools are exempt from the strict requirements of using elements only for their specified purpose, but only to the extent
that authoring tools are not yet able to determine author intent. However, authoring tools must not automatically misuse elements
or encourage their users to do so.

Example
For example, it is not conforming to use an address p193 element for arbitrary contact information; that element can only be used
for marking up contact information for its nearest article p175 or body p174 element ancestor. However, since an authoring tool is
likely unable to determine the difference, an authoring tool is exempt from that requirement. This does not mean, though, that
authoring tools can use address p193 elements for any block of italics text (for instance); it just means that the authoring tool
doesn't have to verify that when the user uses a tool for inserting contact information for an article p175 element, that the user
really is doing that and not inserting something else instead.

Note
In terms of conformance checking, an editor has to output documents that conform to the same extent that a conformance
checker will verify.

When an authoring tool is used to edit a non-conforming document, it may preserve the conformance errors in sections of the
document that were not edited during the editing session (i.e. an editing tool is allowed to round-trip erroneous content). However,
an authoring tool must not claim that the output is conformant if errors have been so preserved.

Authoring tools are expected to come in two broad varieties: tools that work from structure or semantic data, and tools that work on
a What-You-See-Is-What-You-Get media-specific editing basis (WYSIWYG).

The former is the preferred mechanism for tools that author HTML, since the structure in the source information can be used to
make informed choices regarding which HTML elements and attributes are most appropriate.

However, WYSIWYG tools are legitimate. WYSIWYG tools should use elements they know are appropriate, and should not use
elements that they do not know to be appropriate. This might in certain extreme cases mean limiting the use of flow elements to
just a few elements, like div p231 , b p266 , i p265 , and span p271 and making liberal use of the style p142 attribute.

All authoring tools, whether WYSIWYG or not, should make a best effort attempt at enabling users to create well-structured,
semantically rich, media-independent content.

User agents may impose implementation-specific limits on otherwise unconstrained inputs, e.g. to prevent denial of service attacks, to
guard against running out of memory, or to work around platform-specific limitations.

For compatibility with existing content and prior specifications, this specification describes two authoring formats: one based on
XML p1154 , and one using a custom format p1033 inspired by SGML (referred to as the HTML syntax p1033 ). Implementations must support
p30
at
least one of these two formats, although supporting both is encouraged.

Some conformance requirements are phrased as requirements on elements, attributes, methods or objects. Such requirements fall into
two categories: those describing content model restrictions, and those describing implementation behavior. Those in the former
category are requirements on documents and authoring tools. Those in the second category are requirements on user agents.
Similarly, some conformance requirements are phrased as requirements on authors; such requirements are to be interpreted as
conformance requirements on the documents that authors produce. (In other words, this specification does not distinguish between
48
conformance criteria on authors and conformance criteria on documents.)

2.1.9 Dependencies § p49

This specification relies on several other underlying specifications.

Infra
The following terms are defined in Infra: [INFRA] p1253

• The general iteration terms while, continue, and break.


• code point and its synonym character
• surrogate
• scalar value
• tuple
• noncharacter
• JavaScript string, code unit, and JavaScript string length
• scalar value string
• string length
• ASCII whitespace
• control
• ASCII digit
• ASCII upper hex digit
• ASCII lower hex digit
• ASCII hex digit
• ASCII upper alpha
• ASCII lower alpha
• ASCII alpha
• ASCII alphanumeric
• isomorphic decode
• ASCII lowercase
• ASCII uppercase
• ASCII case-insensitive
• strip newlines
• normalize newlines
• strip leading and trailing ASCII whitespace
• strip and collapse ASCII whitespace
• split a string on ASCII whitespace
• split a string on commas
• collect a sequence of code points and its associated position variable
• skip ASCII whitespace
• The ordered map data structure and the associated definitions for value, entry, exists, getting the value of an
entry, setting the value of an entry, removing an entry, getting the keys, and iterate
• The list data structure and the associated definitions for append, replace, remove, empty, contains, size, is empty,
iterate, and clone
• The stack data structure and the associated definitions for push and pop
• The queue data structure and the associated definitions for enqueue and dequeue
• The ordered set data structure and the associated definition for append
• The struct specification type and the associated definition for item
• The forgiving-base64 encode and forgiving-base64 decode algorithms
• HTML namespace
• MathML namespace
• SVG namespace
• XLink namespace
• XML namespace
• XMLNS namespace

Unicode and Encoding


The Unicode character set is used to represent textual data, and Encoding defines requirements around character encodings.
[UNICODE] p1256

Note
This specification introduces terminology p46 based on the terms defined in those specifications, as described earlier.

The following terms are used as defined in Encoding: [ENCODING] p1252

• Getting an encoding
• Get an output encoding
• The generic decode algorithm which takes a byte stream and an encoding and returns a character stream
• The UTF-8 decode algorithm which takes a byte stream and returns a character stream, additionally stripping one
leading UTF-8 Byte Order Mark (BOM), if any
• The UTF-8 decode without BOM algorithm which is identical to UTF-8 decode except that it does not strip one leading
UTF-8 Byte Order Mark (BOM)
• The encode algorithm which takes a character stream and an encoding and returns a byte stream
49
• The UTF-8 encode algorithm which takes a character stream and returns a byte stream

XML and related specifications


Implementations that support the XML syntax p1154 for HTML must support some version of XML, as well as its corresponding
namespaces specification, because that syntax uses an XML serialization with namespaces. [XML] p1257 [XMLNS] p1257

Data mining tools and other user agents that perform operations on content without running scripts, evaluating CSS or XPath
expressions, or otherwise exposing the resulting DOM to arbitrary content, may "support namespaces" by just asserting that their
DOM node analogues are in certain namespaces, without actually exposing the namespace strings.

Note
In the HTML syntax p1033 , namespace prefixes and namespace declarations do not have the same effect as in XML. For instance,
the colon has no special meaning in HTML element names.

The attribute with the tag name xml:space in the XML namespace is defined by Extensible Markup Language (XML). [XML] p1257

The Name production is defined in XML. [XML] p1257

This specification also references the <?xml-stylesheet?> processing instruction, defined in Associating Style Sheets with XML
documents. [XMLSSPI] p1257

This specification also non-normatively mentions the XSLTProcessor interface and its transformToFragment() and
transformToDocument() methods. [XSLTP] p1258

URLs
The following terms are defined in URL: [URL] p1256

• host
• public suffix
• same site
• domain
• IPv4 address
• IPv6 address
• URL
• Origin of URLs
• Absolute URL
• Relative URL
• registrable domain
• The URL parser and basic URL parser as well as these parser states:
◦ scheme start state
◦ host state
◦ hostname state
◦ port state
◦ path start state
◦ query state
◦ fragment state
• URL record, as well as its individual components:
◦ scheme
◦ username
◦ password
◦ host
◦ port
◦ path
◦ query
◦ fragment
◦ cannot-be-a-base-URL flag
◦ object
• valid URL string
• The cannot have a username/password/port concept
• The URL serializer
• The host parser
• The host serializer
• Host equals
• URL equals
• serialize an integer
• Default encode set
• UTF-8 percent encode
• String percent decode
• set the username
• set the password
• The application/x-www-form-urlencoded format
• The application/x-www-form-urlencoded serializer

50
A number of schemes and protocols are referenced by this specification also:

• The about: scheme [ABOUT] p1250


• The blob: scheme [FILEAPI] p1252
• The data: scheme [RFC2397] p1255
• The http: scheme [HTTP] p1253
• The https: scheme [HTTP] p1253
• The mailto: scheme [MAILTO] p1253
• The sms: scheme [SMS] p1256
• The urn: scheme [URN] p1256

Media fragment syntax is defined in Media Fragments URI. [MEDIAFRAG] p1254

HTTP and related specifications


The following terms are defined in the HTTP specifications: [HTTP] p1253

• `Accept` header
• `Accept-Language` header
• `Cache-Control` header
• `Content-Disposition` header
• `Content-Language` header
• `Last-Modified` header
• `Referer` header

The following terms are defined in HTTP State Management Mechanism: [COOKIES] p1250

• cookie-string
• receives a set-cookie-string
• `Cookie` header

The following term is defined in Web Linking: [WEBLINK] p1257

• `Link` header

The following terms are defined in MIME Sniffing: [MIMESNIFF] p1254

• MIME type
• valid MIME type string
• valid MIME type string with no parameters
• HTML MIME type
• JavaScript MIME type and JavaScript MIME type essence match
• JSON MIME type
• XML MIME type

Fetch
The following terms are defined in Fetch: [FETCH] p1252

• about:blank
• An HTTP(S) scheme
• A network scheme
• A fetch scheme
• HTTPS state value
• CORS protocol
• default `User-Agent` value
• extract a MIME type
• fetch
• HTTP-redirect fetch
• ok status
• navigation request
• network error
• `Origin` header
• process response
• set
• terminate
• the RequestCredentials enumeration
• the RequestDestination enumeration
• the fetch() method
• response and its associated:
◦ type
◦ url
◦ url list
◦ status
◦ header list
◦ body
◦ internal response
◦ CSP list
◦ HTTPS state
◦ location URL
51
• request and its associated:
◦ url
◦ method
◦ header list
◦ body
◦ client
◦ URL list
◦ current URL
◦ reserved client
◦ replaces client id
◦ initiator
◦ destination
◦ potential destination
◦ translating a potential destination
◦ script-like destinations
◦ priority
◦ origin
◦ referrer
◦ synchronous flag
◦ mode
◦ credentials mode
◦ use-URL-credentials flag
◦ unsafe-request flag
◦ cache mode
◦ redirect mode
◦ referrer policy
◦ cryptographic nonce metadata
◦ integrity metadata
◦ parser metadata
◦ reload-navigation flag
◦ history-navigation flag

The following terms are defined in Referrer Policy: [REFERRERPOLICY] p1255

• referrer policy
• The `Referrer-Policy` HTTP header
• The parse a referrer policy from a `Referrer-Policy` header algorithm
• The "no-referrer", "no-referrer-when-downgrade", "origin-when-cross-origin", and "unsafe-url" referrer policies

The following terms are defined in Mixed Content: [MIX] p1254

• a priori authenticated URL

Paint Timing
The following terms are defined in Paint Timing: [PAINTTIMING] p1254

• mark paint timing

Long Tasks
The following terms are defined in Long Tasks: [LONGTASKS] p1253

• report long tasks

Web IDL
The IDL fragments in this specification must be interpreted as required for conforming IDL fragments, as described in Web IDL.
[WEBIDL] p1257

The following terms are defined in Web IDL:

• extended attribute
• named constructor
• constructor operation
• overridden constructor steps
• internally create a new object implementing the interface
• array index property name
• supported property indices
• determine the value of an indexed property
• set the value of an existing indexed property
• set the value of a new indexed property
• support named properties
• supported property names
• determine the value of a named property
• set the value of an existing named property
• set the value of a new named property
• delete an existing named property
• perform a security check
• platform object
• legacy platform object
• primary interface
52
• interface object
• interface prototype object
• [[Realm]] field of a platform object
• callback context
• frozen array and creating a frozen array
• callback this value
• converting between Web IDL types and JS types
• invoking and constructing callback functions
• converting to a sequence of Unicode scalar values
• overload resolution algorithm
• exposed

The Web IDL also defines the following types that are used in Web IDL fragments in this specification:

• ArrayBuffer
• ArrayBufferView
• boolean
• DOMString
• double
• enumeration
• Error
• Function
• long
• object
• Uint8ClampedArray
• unrestricted double
• unsigned long
• USVString
• VoidFunction

The term throw in this specification is used as defined in Web IDL. The DOMException type and the following exception names are
defined by Web IDL and used by this specification:

• "IndexSizeError"
• "HierarchyRequestError"
• "InvalidCharacterError"
• "NotFoundError"
• "NotSupportedError"
• "InvalidStateError"
• "SyntaxError"
• "InvalidAccessError"
• "SecurityError"
• "NetworkError"
• "AbortError"
• "QuotaExceededError"
• "DataCloneError"
• "EncodingError"
• "NotAllowedError"

When this specification requires a user agent to create a Date object representing a particular time (which could be the special
value Not-a-Number), the milliseconds component of that time, if any, must be truncated to an integer, and the time value of the
newly created Date object must represent the resulting truncated time.

Example
For instance, given the time 23045 millionths of a second after 01:00 UTC on January 1st 2000, i.e. the time
2000-01-01T00:00:00.023045Z, then the Date object created representing that time would represent the same time as that
created representing the time 2000-01-01T00:00:00.023Z, 45 millionths earlier. If the given time is NaN, then the result is a
Date object that represents a time value NaN (indicating that the object does not represent a specific instant of time).

JavaScript
Some parts of the language described by this specification only support JavaScript as the underlying scripting language.
[JAVASCRIPT] p1253

Note
The term "JavaScript" is used to refer to ECMA-262, rather than the official term ECMAScript, since the term JavaScript is more
widely known. Similarly, the MIME type used to refer to JavaScript in this specification is text/javascript, since that is the
most commonly used type, despite it being an officially obsoleted type p26 according to RFC 4329. [RFC4329] p1255

The following terms are defined in the JavaScript specification and used in this specification:

• active function object


• agent and agent cluster
• automatic semicolon insertion
53
• candidate execution
• The current Realm Record
• early error
• invariants of the essential internal methods
• JavaScript execution context
• JavaScript execution context stack
• JavaScript realm
• EnvironmentRecord
• NewTarget
• running JavaScript execution context
• surrounding agent
• Well-Known Symbols, including @@hasInstance, @@isConcatSpreadable, @@toPrimitive, and @@toStringTag
• Well-Known Intrinsic Objects, including %ArrayPrototype%, %ErrorPrototype%, %EvalErrorPrototype%,
%JSONParse%, %ObjProto_valueOf%, %RangeErrorPrototype%, %ReferenceErrorPrototype%,
%SyntaxErrorPrototype%, %TypeErrorPrototype%, and %URIErrorPrototype%
• The FunctionBody production
• The Module production
• The Pattern production
• The Script production
• The Type notation
• The Completion Record specification type
• The List and Record specification types
• The Property Descriptor specification type
• The Script Record specification type
• The Cyclic Module Record specification type
• The Source Text Module Record specification type and its Evaluate and Link methods
• The ArrayCreate abstract operation
• The Call abstract operation
• The Construct abstract operation
• The CopyDataBlockBytes abstract operation
• The CreateByteDataBlock abstract operation
• The CreateDataProperty abstract operation
• The DetachArrayBuffer abstract operation
• The EnqueueJob abstract operation
• The EnumerableOwnProperties abstract operation
• The FinishDynamicImport abstract operation
• The FunctionCreate abstract operation
• The Get abstract operation
• The GetActiveScriptOrModule abstract operation
• The GetFunctionRealm abstract operation
• The HasOwnProperty abstract operation
• The HostEnsureCanCompileStrings abstract operation
• The HostImportModuleDynamically abstract operation
• The HostPromiseRejectionTracker abstract operation
• The HostResolveImportedModule abstract operation
• The InitializeHostDefinedRealm abstract operation
• The IsAccessorDescriptor abstract operation
• The IsCallable abstract operation
• The IsConstructor abstract operation
• The IsDataDescriptor abstract operation
• The IsDetachedBuffer abstract operation
• The IsSharedArrayBuffer abstract operation
• The NewObjectEnvironment abstract operation
• The NormalCompletion abstract operation
• The OrdinaryGetPrototypeOf abstract operation
• The OrdinarySetPrototypeOf abstract operation
• The OrdinaryIsExtensible abstract operation
• The OrdinaryPreventExtensions abstract operation
• The OrdinaryGetOwnProperty abstract operation
• The OrdinaryDefineOwnProperty abstract operation
• The OrdinaryGet abstract operation
• The OrdinarySet abstract operation
• The OrdinaryDelete abstract operation
• The OrdinaryOwnPropertyKeys abstract operation
• The ObjectCreate abstract operation
• The ParseModule abstract operation
• The ParseScript abstract operation
• The RunJobs abstract operation
• The SameValue abstract operation
• The ScriptEvaluation abstract operation
• The SetImmutablePrototype abstract operation
• The ToBoolean abstract operation
• The ToString abstract operation
• The ToUint32 abstract operation
• The TypedArrayCreate abstract operation
• The Abstract Equality Comparison algorithm
• The Strict Equality Comparison algorithm
• The Date class
• The SharedArrayBuffer class
• The TypeError class
• The RangeError class
• The eval() function
• The [[IsHTMLDDA]] internal slot
54
• import()
• The typeof operator
• The delete operator
• The TypedArray Constructors table

User agents that support JavaScript must also implement the import.meta proposal. The following term is defined there, and used in
this specification: [JSIMPORTMETA] p1253

• import.meta
• The HostGetImportMetaProperties abstract operation

Users agents that support JavaScript must also implement ECMAScript Internationalization API. [JSINTL] p1253

DOM
The Document Object Model (DOM) is a representation — a model — of a document and its content. The DOM is not just an API; the
conformance criteria of HTML implementations are defined, in this specification, in terms of operations on the DOM. [DOM] p1252

Implementations must support DOM and the events defined in UI Events, because this specification is defined in terms of the DOM,
and some of the features are defined as extensions to the DOM interfaces. [DOM] p1252 [UIEVENTS] p1256

In particular, the following features are defined in DOM: [DOM] p1252

• Attr interface
• Comment interface
• DOMImplementation interface
• Document interface
• DocumentOrShadowRoot interface
• DocumentFragment interface
• DocumentType interface
• ChildNode interface
• Element interface
• attachShadow() method.
• An element's shadow root
• The retargeting algorithm
• Node interface
• NodeList interface
• ProcessingInstruction interface
• ShadowRoot interface
• Text interface
• node document concept
• document type concept
• host concept
• The shadow root concept, and its delegates focus
• The shadow host concept
• HTMLCollection interface
• HTMLCollection.length attribute
• HTMLCollection.item() method
• HTMLCollection.namedItem() method
• The terms collection and represented by the collection
• DOMTokenList interface
• DOMTokenList.value attribute
• createDocument() method
• createHTMLDocument() method
• createElement() method
• createElementNS() method
• getElementById() method
• getElementsByClassName() method
• appendChild() method
• cloneNode() method
• importNode() method
• preventDefault() method
• id attribute
• textContent attribute
• The tree, shadow tree, and node tree concepts
• The tree order and shadow-including tree order concepts
• The child concept
• The root and shadow-including root concepts
• The inclusive ancestor, shadow-including descendant, shadow-including inclusive descendant, and shadow-
including inclusive ancestor concepts
• The first child and next sibling concepts
• The document element concept
• The in a document tree, in a document (legacy), and connected concepts
• The slot concept, and its name and assigned nodes
• The assigned slot concept.
• The find flattened slotables algorithm
• The assign a slot algorithm
• The pre-insert, insert, append, replace, replace all, string replace all, remove, and adopt algorithms for nodes
• The insertion steps, removing steps, adopting steps, and child text content change steps hooks for elements
• The change, append, remove, replace, and set value algorithms for attributes
55
• The attribute change steps hook for attributes
• The attribute list concept
• The data of a text node
• The child text content of a node
• The descendant text content of a node
• Event interface
• Event and derived interfaces constructor behavior
• EventTarget interface
• The activation behavior hook
• The legacy-pre-activation behavior hook
• The legacy-canceled-activation behavior hook
• The create an event algorithm
• The fire an event algorithm
• The canceled flag
• The dispatch algorithm
• EventInit dictionary type
• type attribute
• target attribute
• currentTarget attribute
• bubbles attribute
• cancelable attribute
• composed flag
• isTrusted attribute
• initEvent() method
• add an event listener
• addEventListener() method
• The remove an event listener and remove all event listeners algorithms
• EventListener callback interface
• The type of an event
• An event listener and its type and callback
• The encoding (herein the character encoding) and content type of a Document p112
• The distinction between XML documents and HTML documents
• The terms quirks mode, limited-quirks mode, and no-quirks mode
• The algorithm to clone a Node, and the concept of cloning steps used by that algorithm
• The concept of base URL change steps and the definition of what happens when an element is affected by a base
URL change
• The concept of an element's unique identifier (ID)
• The concept of an element's classes
• The term supported tokens
• The concept of a DOM range, and the terms start, end, and boundary point as applied to ranges.
• The create an element algorithm
• The element interface concept
• The concepts of custom element state, and of defined and custom elements
• An element's namespace, namespace prefix, local name, custom element definition, and is value
• MutationObserver interface and mutation observers in general

The following features are defined in UI Events: [UIEVENTS] p1256

• The MouseEvent interface


• The MouseEvent interface's relatedTarget attribute
• MouseEventInit dictionary type
• The FocusEvent interface
• The FocusEvent interface's relatedTarget attribute
• The UIEvent interface
• The UIEvent interface's view attribute
• auxclick event
• click event
• dblclick event
• mousedown event
• mouseenter event
• mouseleave event
• mousemove event
• mouseout event
• mouseover event
• mouseup event
• wheel event
• keydown event
• keypress event
• keyup event

The following features are defined in Touch Events: [TOUCH] p1256

• Touch interface
• Touch point concept
• touchend event

The following features are defined in Pointer Events: [POINTEREVENTS] p1254

• pointerup event

This specification sometimes uses the term name to refer to the event's type; as in, "an event named click" or "if the event name

56
is keypress". The terms "name" and "type" for events are synonymous.

The following features are defined in DOM Parsing and Serialization: [DOMPARSING] p1252

• DOMParser
• innerHTML
• outerHTML

The Selection interface is defined in the Selection API specification. [SELECTION] p1256

Note
User agents are encouraged to implement the features described in execCommand. [EXECCOMMAND] p1252

The following parts of Fullscreen API are referenced from this specification, in part to define the rendering of dialog p595 elements,
and also to define how the Fullscreen API interacts with HTML: [FULLSCREEN] p1252

• top layer (an ordered set) and its add operation


• requestFullscreen()
• run the fullscreen steps

High Resolution Time provides the current high resolution time and the DOMHighResTimeStamp typedef. [HRT] p1253

File API
This specification uses the following features defined in File API: [FILEAPI] p1252

• The Blob interface and its type attribute


• The File interface and its name and lastModified attributes
• The FileList interface
• The concept of a Blob's snapshot state
• The concept of read errors
• Blob URL Store

Indexed Database API


This specification uses cleanup Indexed Database transactions defined by Indexed Database API. [INDEXEDDB] p1253

Media Source Extensions


The following terms are defined in Media Source Extensions: [MEDIASOURCE] p1254

• MediaSource interface
• detaching from a media element

Media Capture and Streams


The following terms are defined in Media Capture and Streams: [MEDIASTREAM] p1254

• MediaStream interface

XMLHttpRequest
The following features and terms are defined in XMLHttpRequest: [XHR] p1257

• XMLHttpRequest interface
• XMLHttpRequest.responseXML attribute
• ProgressEvent interface
• ProgressEvent.lengthComputable attribute
• ProgressEvent.loaded attribute
• ProgressEvent.total attribute
• FormData interface
• FormDataEntryValue type
• The concept of entry
• create an entry

Battery Status
The following features are defined in Battery Status API: [BATTERY] p1250

• getBattery() method

Media Queries
Implementations must support Media Queries. The <media-condition> feature is defined therein. [MQ] p1254

CSS modules
While support for CSS as a whole is not required of implementations of this specification (though it is encouraged, at least for Web

57
browsers), some features are defined in terms of specific CSS requirements.

When this specification requires that something be parsed according to a particular CSS grammar, the relevant algorithm in
CSS Syntax must be followed, including error handling rules. [CSSSYNTAX] p1252

Example
For example, user agents are required to close all open constructs upon finding the end of a style sheet unexpectedly. Thus,
when parsing the string "rgb(0,0,0" (with a missing close-parenthesis) for a color value, the close parenthesis is implied by this
error handling rule, and a value is obtained (the color 'black'). However, the similar construct "rgb(0,0," (with both a missing
parenthesis and a missing "blue" value) cannot be parsed, as closing the open construct does not result in a viable value.

To parse a CSS <color> value, given a string input with an optional element element, run these steps:

1. Let color be the result of parsing input as a CSS <color>. [CSSCOLOR] p1251

2. If color is failure, then return failure.

3. If color is 'currentcolor', then:

1. If element is not given, then set color to opaque black.

2. Otherwise, set color to the computed value of the 'color' property of element.

4. Return color.

The following terms and features are defined in Cascading Style Sheets (CSS): [CSS] p1250

• viewport
• line box
• out-of-flow
• in-flow
• intrinsic dimensions
• content area
• content box
• border box
• margin box
• border edge
• margin edge
• collapsing margins
• containing block
• inline box
• block box
• The 'margin-top', 'margin-bottom', 'margin-left', and 'margin-right' properties
• The 'padding-top', 'padding-bottom', 'padding-left', and 'padding-right' properties
• The 'top', 'bottom', 'left', and 'right' properties
• The 'float' property
• The 'clear' property
• The 'width' property
• The 'height' property
• The 'line-height' property
• The 'vertical-align' property
• The 'content' property
• The 'inline-block' value of the 'display' property
• The 'visibility' property

CSS also defines the following border properties: [CSS] p1250

Border properties
Top Bottom Left Right
Width 'border-top-width' 'border-bottom-width' 'border-left-width' 'border-right-width'
Style 'border-top-style' 'border-bottom-style' 'border-left-style' 'border-right-style'
Color 'border-top-color' 'border-bottom-color' 'border-left-color' 'border-right-color'

The terms intrinsic width and intrinsic height refer to the width dimension and the height dimension, respectively, of intrinsic
dimensions.

The basic version of the 'display' property is defined in CSS, and the property is extended by other CSS modules. [CSS] p1250
[CSSRUBY] p1251 [CSSTABLE] p1252

The following terms and features are defined in CSS Logical Properties: [CSSLOGICAL] p1251

• The 'margin-block-start', 'margin-block-end', 'margin-inline-start', and 'margin-inline-end' properties


58
• The 'padding-block-start', 'padding-block-end', 'padding-inline-start', and 'padding-inline-end' properties
• The 'border-block-start-width' property
• The 'block-size' property
• The 'inline-size' property

The following terms and features are defined in CSS Color: [CSSCOLOR] p1251

• named color
• <color>
• The 'color' property
• The 'currentcolor' value
• opaque black
• transparent black

The term intrinsic aspect ratio is used as defined in CSS Image Values and Replaced Content to define the sizing of replaced
content. [CSSIMAGES] p1251

The term paint source is used as defined in CSS Image Values and Replaced Content to define the interaction of certain HTML
elements with the CSS 'element()' function. [CSSIMAGES] p1251

The term default object size and the 'object-fit' property are also defined in CSS Image Values and Replaced Content:
[CSSIMAGES] p1251

The following features are defined in CSS Backgrounds and Borders: [CSSBG] p1251

• The 'background-color' property


• The 'background-image' property
• The 'border-radius' property

The following features are defined in CSS Box Alignment: [CSSALIGN] p1251

• The 'align-content' property


• The 'align-items' property
• The 'align-self' property
• The 'justify-self' property
• The 'justify-content' property
• The 'justify-items' property

The following terms and features are defined in CSS Display: [CSSDISPLAY] p1251

• outer display type


• block-level
• block container
• formatting context
• block formatting context
• inline formatting context
• absolutely positioned
• replaced element
• CSS box

The following features are defined in CSS Flexible Box Layout: [CSSFLEXBOX] p1251

• The 'flex-direction' property


• The 'flex-wrap' property

The following features are defined in CSS Fonts: [CSSFONTS] p1251

• The 'font-family' property


• The 'font-weight' property
• The 'font-size' property
• The 'font' property

The following features are defined in CSS Grid Layout: [CSSGRID] p1251

• The 'grid-auto-columns' property


• The 'grid-auto-flow' property
• The 'grid-auto-rows' property
• The 'grid-column-gap' property
• The 'grid-row-gap' property
• The 'grid-template-areas' property
• The 'grid-template-columns' property
• The 'grid-template-rows' property

The following terms and features are defined in CSS Intrinsic & Extrinsic Sizing: [CSSSIZING] p1251

• fit-content inline size

59
The 'list-style-type' property is defined in CSS Lists and Counters. [CSSLISTS] p1251

The following features are defined in CSS Overflow. [CSSOVERFLOW] p1251

• The 'overflow' property and its 'hidden' value


• The 'text-overflow' property

The following features are defined in CSS Positioned Layout: [CSSPOSITION] p1251

• The 'position' property and its 'static' value

The following features are defined in CSS Multi-column Layout. [CSSMULTICOL] p1251

• The 'column-count' property


• The 'column-fill' property
• The 'column-gap' property
• The 'column-rule' property
• The 'column-width' property

The 'ruby-base' value of the 'display' property is defined in CSS Ruby Layout. [CSSRUBY] p1251

The following features are defined in CSS Table: [CSSTABLE] p1252

• The 'border-spacing' property


• The 'border-collapse' property
• The 'table-cell', 'table-row', 'table-caption', and 'table' values of the 'display' property

The following features are defined in CSS Text: [CSSTEXT] p1252

• The 'text-transform' property


• The 'white-space' property
• The 'text-align' property
• The 'letter-spacing' property

The following features are defined in CSS Writing Modes: [CSSWM] p1252

• The 'direction' property


• The 'unicode-bidi' property
• The block flow direction, block size, inline size, block-start, block-end, inline-start, inline-end, line-left, and
line-right concepts

The following features are defined in CSS Basic User Interface: [CSSUI] p1252

• The 'outline' property


• The 'cursor' property
• The 'appearance' property

The algorithm to update animations and send events is defined in Web Animations. [WEBANIMATIONS] p1257 .

Implementations that support scripting must support the CSS Object Model. The following features and terms are defined in the
CSSOM specifications: [CSSOM] p1251 [CSSOMVIEW] p1251

• Screen interface
• LinkStyle interface
• CSSStyleDeclaration interface
• cssText attribute of CSSStyleDeclaration
• StyleSheet interface
• create a CSS style sheet
• remove a CSS style sheet
• associated CSS style sheet
• CSS style sheets and their properties:
◦ type
◦ location
◦ parent CSS style sheet
◦ owner node
◦ owner CSS rule
◦ media
◦ title
◦ alternate flag
◦ disabled flag
◦ CSS rules
◦ origin-clean flag
• CSS style sheet set
• CSS style sheet set name
• preferred CSS style sheet set name
• change the preferred CSS style sheet set name
• Serializing a CSS value
• run the resize steps
60
• run the scroll steps
• evaluate media queries and report changes
• Scroll an element into view
• Scroll to the beginning of the document
• The resize event
• The scroll event
• set up browsing context features

The following features and terms are defined in CSS Syntax: [CSSSYNTAX] p1252

• conformant style sheet


• parse a comma-separated list of component values
• component value
• environment encoding
• <whitespace-token>

The following terms are defined in Selectors: [SELECTORS] p1256

• type selector
• attribute selector
• pseudo-class

The following features are defined in CSS Values and Units: [CSSVALUES] p1252

• <length>
• The 'em' unit
• The 'ex' unit
• The 'vw' unit
• The 'in' unit
• The 'px' unit
• The 'attr()' function
• The math functions

The term style attribute is defined in CSS Style Attributes. [CSSATTR] p1251

The following terms are defined in the CSS Cascading and Inheritance: [CSSCASCADE] p1251

• specified value
• computed value
• used value

The CanvasRenderingContext2D p623 object's use of fonts depends on the features described in the CSS Fonts and Font Loading
specifications, including in particular FontFace objects and the font source concept. [CSSFONTS] p1251 [CSSFONTLOAD] p1251

The following interfaces and terms are defined in Geometry Interfaces: [GEOMETRY] p1252

• DOMMatrix interface, and associated m11 element, m12 element, m21 element, m22 element, m41 element, and
m42 element
• DOMMatrix2DInit and DOMMatrixInit dictionaries
• The create a DOMMatrix from a dictionary and create a DOMMatrix from a 2D dictionary algorithms for
DOMMatrix2DInit or DOMMatrixInit

The following terms are defined in the CSS Scoping: [CSSSCOPING] p1251

• flat tree

Intersection Observer
The following term is defined in Intersection Observer: [INTERSECTIONOBSERVER] p1253

• run the update intersection observations steps

WebGL
The following interfaces are defined in the WebGL specifications: [WEBGL] p1257

• WebGLRenderingContext interface
• WebGL2RenderingContext interface
• WebGLContextAttributes dictionary

WebVTT
Implementations may support WebVTT as a text track format for subtitles, captions, metadata, etc., for media resources.
[WEBVTT] p1257

The following terms, used in this specification, are defined in WebVTT:

• WebVTT file
• WebVTT file using cue text
61
• WebVTT file using only nested cues
• WebVTT parser
• The rules for updating the display of WebVTT text tracks
• The WebVTT text track cue writing direction
• VTTCue interface

The WebSocket protocol


The following terms are defined in Fetch: [FETCH] p1252

• establish a WebSocket connection

The following terms are defined in The WebSocket protocol: [WSP] p1257

• the WebSocket connection is established


• extensions in use
• subprotocol in use
• a WebSocket message has been received
• send a WebSocket Message
• fail the WebSocket connection
• close the WebSocket connection
• start the WebSocket closing handshake
• the WebSocket closing handshake is started
• the WebSocket connection is closed (possibly cleanly)
• the WebSocket connection close code
• the WebSocket connection close reason
• Sec-WebSocket-Protocol field

ARIA
The role attribute is defined in Accessible Rich Internet Applications (ARIA), as are the following roles: [ARIA] p1250

• button
• presentation

In addition, the following aria-* content attributes are defined in ARIA: [ARIA] p1250

• aria-describedby
• aria-disabled
• aria-label

Finally, the following terms are defined ARIA: [ARIA] p1250

• accessible name

Content Security Policy


The following terms are defined in Content Security Policy: [CSP] p1250

• Content Security Policy


• Content Security Policy directive
• CSP list
• The Content Security Policy syntax
• enforce the policy
• The parse a serialized Content Security Policy algorithm
• The Initialize a global object's CSP list algorithm
• The Initialize a Document's CSP list algorithm
• The Should element's inline behavior be blocked by Content Security Policy? algorithm
• The Should navigation request of type from source in target be blocked by Content Security Policy? algorithm
• The Should navigation response to navigation request of type from source in target be blocked by Content
Security Policy? algorithm
• The report-uri directive
• The EnsureCSPDoesNotBlockStringCompilation abstract operation
• The Is base allowed for Document? algorithm
• The frame-ancestors directive
• The sandbox directive
• The Should element be blocked a priori by Content Security Policy? algorithm
• The contains a header-delivered Content Security Policy property.

Service Workers
The following terms are defined in Service Workers: [SW] p1256

• active worker
• client message queue
• control
• handle fetch
• match service worker registration
• service worker
• service worker client
• ServiceWorker interface
• ServiceWorkerContainer interface
62
• ServiceWorkerGlobalScope interface

Secure Contexts
The following algorithm is defined in Secure Contexts: [SECURE-CONTEXTS] p1256

• Is environment settings object a secure context?

Feature Policy
The following terms are defined in Feature Policy: [FEATUREPOLICY] p1252

• feature policy
• feature policy
• container policy
• serialized feature policy
• default allowlist
• The creating a feature policy algorithm
• The creating a feature policy from a response algorithm
• The Is feature enabled by policy for origin algorithm
• The Process feature policy attributes algorithm

Payment Request API


The following feature is defined in Payment Request API: [PAYMENTREQUEST] p1254

• PaymentRequest interface

MathML
While support for MathML as a whole is not required by this specification (though it is encouraged, at least for Web browsers),
certain features depend upon small parts of MathML being implemented. [MATHML] p1253

The following features are defined in Mathematical Markup Language (MathML):

• MathML annotation-xml element


• MathML math element
• MathML merror element
• MathML mi element
• MathML mn element
• MathML mo element
• MathML ms element
• MathML mtext element

SVG
While support for SVG as a whole is not required by this specification (though it is encouraged, at least for Web browsers), certain
features depend upon parts of SVG being implemented.

User agents that implement SVG must implement the SVG 2 specification, and not any earlier revisions.

The following features are defined in the SVG 2 specification: [SVG] p1256

• SVGElement interface
• SVGImageElement interface
• SVGScriptElement interface
• SVGSVGElement interface
• SVG a element
• SVG desc element
• SVG foreignObject element
• SVG image element
• SVG script element
• SVG svg element
• SVG title element
• SVG use element

Filter Effects
The following feature is defined in Filter Effects: [FILTERS] p1252

• <filter-function-list>

Worklets
The following feature is defined in Worklets: [WORKLETS] p1257

• WorkletGlobalScope
• A WorkletGlobalScope's owner document

Cooperative Scheduling of Background Tasks


The following features is defined in Cooperative Scheduling of Background Tasks: [REQUESTIDLECALLBACK] p1255
63
• requestIdleCallback()
• start an idle period algorithm

This specification does not require support of any particular network protocol, style sheet language, scripting language, or any of the
DOM specifications beyond those required in the list above. However, the language described by this specification is biased towards
CSS as the styling language, JavaScript as the scripting language, and HTTP as the network protocol, and several features assume that
those languages and protocols are in use.

A user agent that implements the HTTP protocol must implement HTTP State Management Mechanism (Cookies) as well. [HTTP] p1253
[COOKIES] p1250

Note
This specification might have certain additional requirements on character encodings, image formats, audio formats, and video
formats in the respective sections.

2.1.10 Extensibility § p64

Vendor-specific proprietary user agent extensions to this specification are strongly discouraged. Documents must not use such
extensions, as doing so reduces interoperability and fragments the user base, allowing only users of specific user agents to access the
content in question.

All extensions must be defined so that the use of extensions neither contradicts nor causes the non-conformance of functionality
defined in the specification.

Example
For example, while strongly discouraged from doing so, an implementation could add a new IDL attribute "typeTime" to a control
that returned the time it took the user to select the current value of a control (say). On the other hand, defining a new control that
appears in a form's elements p475 array would be in violation of the above requirement, as it would violate the definition of
elements p475 given in this specification.

When vendor-neutral extensions to this specification are needed, either this specification can be updated accordingly, or an extension
specification can be written that overrides the requirements in this specification. When someone applying this specification to their
activities decides that they will recognize the requirements of such an extension specification, it becomes an applicable
specification for the purposes of conformance requirements in this specification.

Note
Someone could write a specification that defines any arbitrary byte stream as conforming, and then claim that their random junk is
conforming. However, that does not mean that their random junk actually is conforming for everyone's purposes: if someone else
decides that that specification does not apply to their work, then they can quite legitimately say that the aforementioned random
junk is just that, junk, and not conforming at all. As far as conformance goes, what matters in a particular community is what that
community agrees is applicable.

User agents must treat elements and attributes that they do not understand as semantically neutral; leaving them in the DOM (for
DOM processors), and styling them according to CSS (for CSS processors), but not inferring any meaning from them.

When support for a feature is disabled (e.g. as an emergency measure to mitigate a security problem, or to aid in development, or for
performance reasons), user agents must act as if they had no support for the feature whatsoever, and as if the feature was not
mentioned in this specification. For example, if a particular feature is accessed via an attribute in a Web IDL interface, the attribute
itself would be omitted from the objects that implement that interface — leaving the attribute on the object but making it return null or
throw an exception is insufficient.

2.1.11 Interactions with XPath and XSLT § p64

Implementations of XPath 1.0 that operate on HTML documents parsed or created in the manners described in this specification (e.g.
64
as part of the document.evaluate() API) must act as if the following edit was applied to the XPath 1.0 specification.

First, remove this paragraph:

A QName in the node test is expanded into an expanded-name using the namespace declarations from the expression context.
This is the same way expansion is done for element type names in start and end-tags except that the default namespace declared
with xmlns is not used: if the QName does not have a prefix, then the namespace URI is null (this is the same way attribute names
are expanded). It is an error if the QName has a prefix for which there is no namespace declaration in the expression context.

Then, insert in its place the following:

A QName in the node test is expanded into an expanded-name using the namespace declarations from the expression context. If
the QName has a prefix, then there must be a namespace declaration for this prefix in the expression context, and the
corresponding namespace URI is the one that is associated with this prefix. It is an error if the QName has a prefix for which there
is no namespace declaration in the expression context.

If the QName has no prefix and the principal node type of the axis is element, then the default element namespace is used.
Otherwise if the QName has no prefix, the namespace URI is null. The default element namespace is a member of the context for
the XPath expression. The value of the default element namespace when executing an XPath expression through the DOM3 XPath
API is determined in the following way:

1. If the context node is from an HTML DOM, the default element namespace is "http://www.w3.org/1999/xhtml".

2. Otherwise, the default element namespace URI is null.

Note
This is equivalent to adding the default element namespace feature of XPath 2.0 to XPath 1.0, and using the HTML namespace
as the default element namespace for HTML documents. It is motivated by the desire to have implementations be compatible
with legacy HTML content while still supporting the changes that this specification introduces to HTML regarding the
namespace used for HTML elements, and by the desire to use XPath 1.0 rather than XPath 2.0.

Note
This change is a willful violation p26 of the XPath 1.0 specification, motivated by desire to have implementations be compatible with
legacy content while still supporting the changes that this specification introduces to HTML regarding which namespace is used for
HTML elements. [XPATH10] p1258

XSLT 1.0 processors outputting to a DOM when the output method is "html" (either explicitly or via the defaulting rule in XSLT 1.0) are
affected as follows:

If the transformation program outputs an element in no namespace, the processor must, prior to constructing the corresponding DOM
element node, change the namespace of the element to the HTML namespace, ASCII-lowercase the element's local name, and ASCII-
lowercase the names of any non-namespaced attributes on the element.

Note
This requirement is a willful violation p26 of the XSLT 1.0 specification, required because this specification changes the namespaces
and case-sensitivity rules of HTML in a manner that would otherwise be incompatible with DOM-based XSLT transformations.
(Processors that serialize the output are unaffected.) [XSLT10] p1258

This specification does not specify precisely how XSLT processing interacts with the HTML parser p1045 infrastructure (for example,
whether an XSLT processor acts as if it puts any elements into a stack of open elements p1059 ). However, XSLT processors must stop
parsing p1131 if they successfully complete, and must set the current document readiness p115 first to "interactive" and then to
"complete" if they are aborted.

This specification does not specify how XSLT interacts with the navigation p840 algorithm, how it fits in with the event loop p912 , nor how
error pages are to be handled (e.g. whether XSLT errors are to replace an incremental XSLT output, or are rendered inline, etc).

Note
There are also additional non-normative comments regarding the interaction of XSLT and HTML in the script element section p611 ,
65
and of XSLT, XPath, and HTML in the template element section p617 .

2.2 Case-sensitivity and string comparison § p66

Comparing two strings in a case-sensitive manner means comparing them exactly, code point for code point.

Except where otherwise stated, string comparisons must be performed in a case-sensitive p66 manner.

A string pattern is a prefix match for a string s when pattern is not longer than s and truncating s to pattern's length leaves the two
strings as matches of each other.

2.3 Policy-controlled features § p66

This document defines the following policy-controlled features:

• "autoplay", which has a default allowlist of 'self'. ⋰


MDN
• "document-domain", which has a default allowlist of *.

2.4 Common microsyntaxes § p66

There are various places in HTML that accept particular data types, such as dates or numbers. This section describes what the
conformance criteria for content in those formats is, and how to parse them.

Note
Implementors are strongly urged to carefully examine any third-party libraries they might consider using to implement the parsing
of syntaxes described below. For example, date libraries are likely to implement error handling behavior that differs from what is
required in this specification, since error-handling behavior is often not defined in specifications that describe date syntaxes similar
to those used in this specification, and thus implementations tend to vary greatly in how they handle errors.

2.4.1 Common parser idioms § p66

Some of the micro-parsers described below follow the pattern of having an input variable that holds the string being parsed, and
having a position variable pointing at the next character to parse in input.

2.4.2 Boolean attributes § p66

A number of attributes are boolean attributes. The presence of a boolean attribute on an element represents the true value, and the
absence of the attribute represents the false value.

If the attribute is present, its value must either be the empty string or a value that is an ASCII case-insensitive match for the attribute's
canonical name, with no leading or trailing whitespace.

Note
The values "true" and "false" are not allowed on boolean attributes. To represent a false value, the attribute has to be omitted
altogether.

Example

66
Here is an example of a checkbox that is checked and disabled. The checked p483 and disabled p555 attributes are the boolean
attributes.

<label><input type=checkbox checked name=cheese disabled> Cheese</label>

This could be equivalently written as this:

<label><input type=checkbox checked=checked name=cheese disabled=disabled> Cheese</label>

You can also mix styles; the following is still equivalent:

<label><input type='checkbox' checked name=cheese disabled=""> Cheese</label>

2.4.3 Keywords and enumerated attributes § p67

Some attributes are defined as taking one of a finite set of keywords. Such attributes are called enumerated attributes. The
keywords are each defined to map to a particular state (several keywords might map to the same state, in which case some of the
keywords are synonyms of each other; additionally, some of the keywords can be said to be non-conforming, and are only in the
specification for historical reasons). In addition, two default states can be given. The first is the invalid value default, the second is
the missing value default.

If an enumerated attribute is specified, the attribute's value must be an ASCII case-insensitive match for one of the given keywords
that are not said to be non-conforming, with no leading or trailing whitespace.

When the attribute is specified, if its value is an ASCII case-insensitive match for one of the given keywords then that keyword's state is
the state that the attribute represents. If the attribute value matches none of the given keywords, but the attribute has an invalid value
default p67 , then the attribute represents that state. Otherwise, there is no default, and invalid values mean that there is no state
represented.

When the attribute is not specified, if there is a missing value default p67 state defined, then that is the state represented by the
(missing) attribute. Otherwise, the absence of the attribute means that there is no state represented.

Note
The empty string can be a valid keyword.

2.4.4 Numbers § p67

2.4.4.1 Signed integers § p67

A string is a valid integer if it consists of one or more ASCII digits, optionally prefixed with a U+002D HYPHEN-MINUS character (-).

A valid integer p67 without a U+002D HYPHEN-MINUS (-) prefix represents the number that is represented in base ten by that string of
digits. A valid integer p67 with a U+002D HYPHEN-MINUS (-) prefix represents the number represented in base ten by the string of digits
that follows the U+002D HYPHEN-MINUS, subtracted from zero.

The rules for parsing integers are as given in the following algorithm. When invoked, the steps must be followed in the order given,
aborting at the first step that returns a value. This algorithm will return either an integer or an error.

1. Let input be the string being parsed.

2. Let position be a pointer into input, initially pointing at the start of the string.

3. Let sign have the value "positive".

4. Skip ASCII whitespace within input given position.

5. If position is past the end of input, return an error.

67
6. If the character indicated by position (the first character) is a U+002D HYPHEN-MINUS character (-):

1. Let sign be "negative".

2. Advance position to the next character.

3. If position is past the end of input, return an error.

Otherwise, if the character indicated by position (the first character) is a U+002B PLUS SIGN character (+):

1. Advance position to the next character. (The "+" is ignored, but it is not conforming.)

2. If position is past the end of input, return an error.

7. If the character indicated by position is not an ASCII digit, then return an error.

8. Collect a sequence of code points that are ASCII digits from input given position, and interpret the resulting sequence as a
base-ten integer. Let value be that integer.

9. If sign is "positive", return value, otherwise return the result of subtracting value from zero.

2.4.4.2 Non-negative integers § p68

A string is a valid non-negative integer if it consists of one or more ASCII digits.

A valid non-negative integer p68 represents the number that is represented in base ten by that string of digits.

The rules for parsing non-negative integers are as given in the following algorithm. When invoked, the steps must be followed in
the order given, aborting at the first step that returns a value. This algorithm will return either zero, a positive integer, or an error.

1. Let input be the string being parsed.

2. Let value be the result of parsing input using the rules for parsing integers p67 .

3. If value is an error, return an error.

4. If value is less than zero, return an error.

5. Return value.

2.4.4.3 Floating-point numbers § p68

A string is a valid floating-point number if it consists of:

1. Optionally, a U+002D HYPHEN-MINUS character (-).


2. One or both of the following, in the given order:
1. A series of one or more ASCII digits.
2. Both of the following, in the given order:
1. A single U+002E FULL STOP character (.).
2. A series of one or more ASCII digits.
3. Optionally:
1. Either a U+0065 LATIN SMALL LETTER E character (e) or a U+0045 LATIN CAPITAL LETTER E character (E).
2. Optionally, a U+002D HYPHEN-MINUS character (-) or U+002B PLUS SIGN character (+).
3. A series of one or more ASCII digits.

A valid floating-point number p68 represents the number obtained by multiplying the significand by ten raised to the power of the
exponent, where the significand is the first number, interpreted as base ten (including the decimal point and the number after the
decimal point, if any, and interpreting the significand as a negative number if the whole string starts with a U+002D HYPHEN-MINUS
character (-) and the number is not zero), and where the exponent is the number after the E, if any (interpreted as a negative number
if there is a U+002D HYPHEN-MINUS character (-) between the E and the number and the number is not zero, or else ignoring a
U+002B PLUS SIGN character (+) between the E and the number if there is one). If there is no E, then the exponent is treated as zero.

Note
The Infinity and Not-a-Number (NaN) values are not valid floating-point numbers p68 .

68
Note
The valid floating-point number p68 concept is typically only used to restrict what is allowed for authors, while the user agent
requirements use the rules for parsing floating-point number values p69 below (e.g., the max p541 attribute of the progress p541
element). However, in some cases the user agent requirements include checking if a string is a valid floating-point number p68 (e.g.,
the value sanitization algorithm p483 for the Number p495 state of the input p479 element, or the parse a srcset attribute p333 algorithm).

The best representation of the number n as a floating-point number is the string obtained from running ToString(n). The
abstract operation ToString is not uniquely determined. When there are multiple possible strings that could be obtained from ToString
for a particular value, the user agent must always return the same string for that value (though it may differ from the value used by
other user agents).

The rules for parsing floating-point number values are as given in the following algorithm. This algorithm must be aborted at the
first step that returns something. This algorithm will return either a number or an error.

1. Let input be the string being parsed.

2. Let position be a pointer into input, initially pointing at the start of the string.

3. Let value have the value 1.

4. Let divisor have the value 1.

5. Let exponent have the value 1.

6. Skip ASCII whitespace within input given position.

7. If position is past the end of input, return an error.

8. If the character indicated by position is a U+002D HYPHEN-MINUS character (-):

1. Change value and divisor to −1.

2. Advance position to the next character.

3. If position is past the end of input, return an error.

Otherwise, if the character indicated by position (the first character) is a U+002B PLUS SIGN character (+):

1. Advance position to the next character. (The "+" is ignored, but it is not conforming.)

2. If position is past the end of input, return an error.

9. If the character indicated by position is a U+002E FULL STOP (.), and that is not the last character in input, and the character
after the character indicated by position is an ASCII digit, then set value to zero and jump to the step labeled fraction.

10. If the character indicated by position is not an ASCII digit, then return an error.

11. Collect a sequence of code points that are ASCII digits from input given position, and interpret the resulting sequence as a
base-ten integer. Multiply value by that integer.

12. If position is past the end of input, jump to the step labeled conversion.

13. Fraction: If the character indicated by position is a U+002E FULL STOP (.), run these substeps:

1. Advance position to the next character.

2. If position is past the end of input, or if the character indicated by position is not an ASCII digit, U+0065 LATIN
SMALL LETTER E (e), or U+0045 LATIN CAPITAL LETTER E (E), then jump to the step labeled conversion.

3. If the character indicated by position is a U+0065 LATIN SMALL LETTER E character (e) or a U+0045 LATIN CAPITAL
LETTER E character (E), skip the remainder of these substeps.

4. Fraction loop: Multiply divisor by ten.

5. Add the value of the character indicated by position, interpreted as a base-ten digit (0..9) and divided by divisor, to
value.

6. Advance position to the next character.

7. If position is past the end of input, then jump to the step labeled conversion.

69
8. If the character indicated by position is an ASCII digit, jump back to the step labeled fraction loop in these
substeps.

14. If the character indicated by position is U+0065 (e) or a U+0045 (E), then:

1. Advance position to the next character.

2. If position is past the end of input, then jump to the step labeled conversion.

3. If the character indicated by position is a U+002D HYPHEN-MINUS character (-):

1. Change exponent to −1.

2. Advance position to the next character.

3. If position is past the end of input, then jump to the step labeled conversion.

Otherwise, if the character indicated by position is a U+002B PLUS SIGN character (+):

1. Advance position to the next character.

2. If position is past the end of input, then jump to the step labeled conversion.

4. If the character indicated by position is not an ASCII digit, then jump to the step labeled conversion.

5. Collect a sequence of code points that are ASCII digits from input given position, and interpret the resulting
sequence as a base-ten integer. Multiply exponent by that integer.

6. Multiply value by ten raised to the exponentth power.

15. Conversion: Let S be the set of finite IEEE 754 double-precision floating-point values except −0, but with two special values
added: 21024 and −21024.

16. Let rounded-value be the number in S that is closest to value, selecting the number with an even significand if there are two
equally close values. (The two special values 2 1024 and −21024 are considered to have even significands for this purpose.)

17. If rounded-value is 21024 or −21024, return an error.

18. Return rounded-value.

2.4.4.4 Percentages and lengths § p70

The rules for parsing dimension values are as given in the following algorithm. When invoked, the steps must be followed in the
order given, aborting at the first step that returns a value. This algorithm will return either a number greater than or equal to 0.0, or
failure; if a number is returned, then it is further categorized as either a percentage or a length.

1. Let input be the string being parsed.

2. Let position be a position variable for input, initially pointing at the start of input.

3. Skip ASCII whitespace within input given position.

4. If position is past the end of input or the code point at position within input is not an ASCII digit, then return failure.

5. Collect a sequence of code points that are ASCII digits from input given position, and interpret the resulting sequence as a
base-ten integer. Let value be that number.

6. If position is past the end of input, then return value as a length.

7. If the code point at position within input is U+002E (.), then:

1. Advance position by 1.

2. If position is past the end of input or the code point at position within input is not an ASCII digit, then return the
current dimension value p71 with value, input, and position.

3. Let divisor have the value 1.

4. While true:
70
1. Multiply divisor by ten.

2. Add the value of the code point at position within input, interpreted as a base-ten digit (0..9) and divided
by divisor, to value.

3. Advance position by 1.

4. If position is past the end of input, then return value as a length.

5. If the code point at position within input is not an ASCII digit, then break.

8. Return the current dimension value p71 with value, input, and position.

The current dimension value, given value, input, and position, is determined as follows:

1. If position is past the end of input, then return value as a length.

2. If the code point at position within input is U+0025 (%), then return value as a percentage.

3. Return value as a length.

2.4.4.5 Non-zero percentages and lengths § p71

The rules for parsing nonzero dimension values are as given in the following algorithm. When invoked, the steps must be
followed in the order given, aborting at the first step that returns a value. This algorithm will return either a number greater than 0.0,
or an error; if a number is returned, then it is further categorized as either a percentage or a length.

1. Let input be the string being parsed.

2. Let value be the result of parsing input using the rules for parsing dimension values p70 .

3. If value is an error, return an error.

4. If value is zero, return an error.

5. If value is a percentage, return value as a percentage.

6. Return value as a length.

2.4.4.6 Lists of floating-point numbers § p71

A valid list of floating-point numbers is a number of valid floating-point numbers p68 separated by U+002C COMMA characters, with
no other characters (e.g. no ASCII whitespace). In addition, there might be restrictions on the number of floating-point numbers that
can be given, or on the range of values allowed.

The rules for parsing a list of floating-point numbers are as follows:

1. Let input be the string being parsed.

2. Let position be a pointer into input, initially pointing at the start of the string.

3. Let numbers be an initially empty list of floating-point numbers. This list will be the result of this algorithm.

4. Collect a sequence of code points that are ASCII whitespace, U+002C COMMA, or U+003B SEMICOLON characters from input
given position. This skips past any leading delimiters.

5. While position is not past the end of input:

1. Collect a sequence of code points that are not ASCII whitespace, U+002C COMMA, U+003B SEMICOLON, ASCII
digits, U+002E FULL STOP, or U+002D HYPHEN-MINUS characters from input given position. This skips past leading
garbage.

2. Collect a sequence of code points that are not ASCII whitespace, U+002C COMMA, or U+003B SEMICOLON
characters from input given position, and let unparsed number be the result.

3. Let number be the result of parsing unparsed number using the rules for parsing floating-point number values p69 .
71
4. If number is an error, set number to zero.

5. Append number to numbers.

6. Collect a sequence of code points that are ASCII whitespace, U+002C COMMA, or U+003B SEMICOLON characters
from input given position. This skips past the delimiter.

6. Return numbers.

2.4.4.7 Lists of dimensions § p72

The rules for parsing a list of dimensions are as follows. These rules return a list of zero or more pairs consisting of a number and
a unit, the unit being one of percentage, relative, and absolute.

1. Let raw input be the string being parsed.

2. If the last character in raw input is a U+002C COMMA character (,), then remove that character from raw input.

3. Split the string raw input on commas. Let raw tokens be the resulting list of tokens.

4. Let result be an empty list of number/unit pairs.

5. For each token in raw tokens, run the following substeps:

1. Let input be the token.

2. Let position be a pointer into input, initially pointing at the start of the string.

3. Let value be the number 0.

4. Let unit be absolute.

5. If position is past the end of input, set unit to relative and jump to the last substep.

6. If the character at position is an ASCII digit, collect a sequence of code points that are ASCII digits from input given
position, interpret the resulting sequence as an integer in base ten, and increment value by that integer.

7. If the character at position is U+002E (.), then:

1. Collect a sequence of code points consisting of ASCII whitespace and ASCII digits from input given
position. Let s be the resulting sequence.

2. Remove all ASCII whitespace in s.

3. If s is not the empty string, then:

1. Let length be the number of characters in s (after the spaces were removed).

2. Let fraction be the result of interpreting s as a base-ten integer, and then dividing that number
by 10length.

3. Increment value by fraction.

8. Skip ASCII whitespace within input given position.

9. If the character at position is a U+0025 PERCENT SIGN character (%), then set unit to percentage.

Otherwise, if the character at position is a U+002A ASTERISK character (*), then set unit to relative.

10. Add an entry to result consisting of the number given by value and the unit given by unit.

6. Return the list result.

2.4.5 Dates and times § p72

In the algorithms below, the number of days in month month of year year is: 31 if month is 1, 3, 5, 7, 8, 10, or 12; 30 if month is
4, 6, 9, or 11; 29 if month is 2 and year is a number divisible by 400, or if year is a number divisible by 4 but not by 100; and 28
72
otherwise. This takes into account leap years in the Gregorian calendar. [GREGORIAN] p1253

When ASCII digits are used in the date and time syntaxes defined in this section, they express numbers in base ten.

Note
While the formats described here are intended to be subsets of the corresponding ISO8601 formats, this specification defines
parsing rules in much more detail than ISO8601. Implementors are therefore encouraged to carefully examine any date parsing
libraries before using them to implement the parsing rules described below; ISO8601 libraries might not parse dates and times in
exactly the same manner. [ISO8601] p1253

Where this specification refers to the proleptic Gregorian calendar, it means the modern Gregorian calendar, extrapolated
backwards to year 1. A date in the proleptic Gregorian calendar p73 , sometimes explicitly referred to as a proleptic-Gregorian date, is
one that is described using that calendar even if that calendar was not in use at the time (or place) in question. [GREGORIAN] p1253

Note
The use of the Gregorian calendar as the wire format in this specification is an arbitrary choice resulting from the cultural biases of
those involved in the decision. See also the section discussing date, time, and number formats p472 in forms (for authors),
implementation notes regarding localization of form controls p507 , and the time p253 element.

2.4.5.1 Months § p73

A month consists of a specific proleptic-Gregorian date p73 with no time-zone information and no date information beyond a year and a
month. [GREGORIAN] p1253

A string is a valid month string representing a year year and month month if it consists of the following components in the given
order:

1. Four or more ASCII digits, representing year, where year > 0

2. A U+002D HYPHEN-MINUS character (-)

3. Two ASCII digits, representing the month month, in the range 1 ≤ month ≤ 12

The rules to parse a month string are as follows. This will return either a year and month, or nothing. If at any point the algorithm
says that it "fails", this means that it is aborted at that point and returns nothing.

1. Let input be the string being parsed.

2. Let position be a pointer into input, initially pointing at the start of the string.

3. Parse a month component p73 to obtain year and month. If this returns nothing, then fail.

4. If position is not beyond the end of input, then fail.

5. Return year and month.

The rules to parse a month component, given an input string and a position, are as follows. This will return either a year and a
month, or nothing. If at any point the algorithm says that it "fails", this means that it is aborted at that point and returns nothing.

1. Collect a sequence of code points that are ASCII digits from input given position. If the collected sequence is not at least four
characters long, then fail. Otherwise, interpret the resulting sequence as a base-ten integer. Let that number be the year.

2. If year is not a number greater than zero, then fail.

3. If position is beyond the end of input or if the character at position is not a U+002D HYPHEN-MINUS character, then fail.
Otherwise, move position forwards one character.

4. Collect a sequence of code points that are ASCII digits from input given position. If the collected sequence is not exactly two
characters long, then fail. Otherwise, interpret the resulting sequence as a base-ten integer. Let that number be the month.

5. If month is not a number in the range 1 ≤ month ≤ 12, then fail.

6. Return year and month.

73
2.4.5.2 Dates § p74

A date consists of a specific proleptic-Gregorian date p73 with no time-zone information, consisting of a year, a month, and a day.
[GREGORIAN] p1253

A string is a valid date string representing a year year, month month, and day day if it consists of the following components in the
given order:

1. A valid month string p73 , representing year and month

2. A U+002D HYPHEN-MINUS character (-)

3. Two ASCII digits, representing day, in the range 1 ≤ day ≤ maxday where maxday is the number of days in the month month
and year year p72

The rules to parse a date string are as follows. This will return either a date, or nothing. If at any point the algorithm says that it
"fails", this means that it is aborted at that point and returns nothing.

1. Let input be the string being parsed.

2. Let position be a pointer into input, initially pointing at the start of the string.

3. Parse a date component p74 to obtain year, month, and day. If this returns nothing, then fail.

4. If position is not beyond the end of input, then fail.

5. Let date be the date with year year, month month, and day day.

6. Return date.

The rules to parse a date component, given an input string and a position, are as follows. This will return either a year, a month, and
a day, or nothing. If at any point the algorithm says that it "fails", this means that it is aborted at that point and returns nothing.

1. Parse a month component p73 to obtain year and month. If this returns nothing, then fail.

2. Let maxday be the number of days in month month of year year p72 .

3. If position is beyond the end of input or if the character at position is not a U+002D HYPHEN-MINUS character, then fail.
Otherwise, move position forwards one character.

4. Collect a sequence of code points that are ASCII digits from input given position. If the collected sequence is not exactly two
characters long, then fail. Otherwise, interpret the resulting sequence as a base-ten integer. Let that number be the day.

5. If day is not a number in the range 1 ≤ day ≤ maxday, then fail.

6. Return year, month, and day.

2.4.5.3 Yearless dates § p74

A yearless date consists of a Gregorian month and a day within that month, but with no associated year. [GREGORIAN] p1253

A string is a valid yearless date string representing a month month and a day day if it consists of the following components in the
given order:

1. Optionally, two U+002D HYPHEN-MINUS characters (-)

2. Two ASCII digits, representing the month month, in the range 1 ≤ month ≤ 12

3. A U+002D HYPHEN-MINUS character (-)

4. Two ASCII digits, representing day, in the range 1 ≤ day ≤ maxday where maxday is the number of days p72 in the month
month and any arbitrary leap year (e.g. 4 or 2000)

Note
In other words, if the month is "02", meaning February, then the day can be 29, as if the year was a leap year.

74
The rules to parse a yearless date string are as follows. This will return either a month and a day, or nothing. If at any point the
algorithm says that it "fails", this means that it is aborted at that point and returns nothing.

1. Let input be the string being parsed.

2. Let position be a pointer into input, initially pointing at the start of the string.

3. Parse a yearless date component p75 to obtain month and day. If this returns nothing, then fail.

4. If position is not beyond the end of input, then fail.

5. Return month and day.

The rules to parse a yearless date component, given an input string and a position, are as follows. This will return either a month
and a day, or nothing. If at any point the algorithm says that it "fails", this means that it is aborted at that point and returns nothing.

1. Collect a sequence of code points that are U+002D HYPHEN-MINUS characters (-) from input given position. If the collected
sequence is not exactly zero or two characters long, then fail.

2. Collect a sequence of code points that are ASCII digits from input given position. If the collected sequence is not exactly two
characters long, then fail. Otherwise, interpret the resulting sequence as a base-ten integer. Let that number be the month.

3. If month is not a number in the range 1 ≤ month ≤ 12, then fail.

4. Let maxday be the number of days p72 in month month of any arbitrary leap year (e.g. 4 or 2000).

5. If position is beyond the end of input or if the character at position is not a U+002D HYPHEN-MINUS character, then fail.
Otherwise, move position forwards one character.

6. Collect a sequence of code points that are ASCII digits from input given position. If the collected sequence is not exactly two
characters long, then fail. Otherwise, interpret the resulting sequence as a base-ten integer. Let that number be the day.

7. If day is not a number in the range 1 ≤ day ≤ maxday, then fail.

8. Return month and day.

2.4.5.4 Times § p75

A time consists of a specific time with no time-zone information, consisting of an hour, a minute, a second, and a fraction of a second.

A string is a valid time string representing an hour hour, a minute minute, and a second second if it consists of the following
components in the given order:

1. Two ASCII digits, representing hour, in the range 0 ≤ hour ≤ 23

2. A U+003A COLON character (:)

3. Two ASCII digits, representing minute, in the range 0 ≤ minute ≤ 59

4. If second is nonzero, or optionally if second is zero:


1. A U+003A COLON character (:)
2. Two ASCII digits, representing the integer part of second, in the range 0 ≤ s ≤ 59
3. If second is not an integer, or optionally if second is an integer:
1. A U+002E FULL STOP character (.)
2. One, two, or three ASCII digits, representing the fractional part of second

Note
The second component cannot be 60 or 61; leap seconds cannot be represented.

The rules to parse a time string are as follows. This will return either a time, or nothing. If at any point the algorithm says that it
"fails", this means that it is aborted at that point and returns nothing.

1. Let input be the string being parsed.

2. Let position be a pointer into input, initially pointing at the start of the string.

75
3. Parse a time component p76 to obtain hour, minute, and second. If this returns nothing, then fail.

4. If position is not beyond the end of input, then fail.

5. Let time be the time with hour hour, minute minute, and second second.

6. Return time.

The rules to parse a time component, given an input string and a position, are as follows. This will return either an hour, a minute,
and a second, or nothing. If at any point the algorithm says that it "fails", this means that it is aborted at that point and returns
nothing.

1. Collect a sequence of code points that are ASCII digits from input given position. If the collected sequence is not exactly two
characters long, then fail. Otherwise, interpret the resulting sequence as a base-ten integer. Let that number be the hour.

2. If hour is not a number in the range 0 ≤ hour ≤ 23, then fail.

3. If position is beyond the end of input or if the character at position is not a U+003A COLON character, then fail. Otherwise,
move position forwards one character.

4. Collect a sequence of code points that are ASCII digits from input given position. If the collected sequence is not exactly two
characters long, then fail. Otherwise, interpret the resulting sequence as a base-ten integer. Let that number be the minute.

5. If minute is not a number in the range 0 ≤ minute ≤ 59, then fail.

6. Let second be 0.

7. If position is not beyond the end of input and the character at position is U+003A (:), then:

1. Advance position to the next character in input.

2. If position is beyond the end of input, or at the last character in input, or if the next two characters in input starting
at position are not both ASCII digits, then fail.

3. Collect a sequence of code points that are either ASCII digits or U+002E FULL STOP characters from input given
position. If the collected sequence is three characters long, or if it is longer than three characters long and the third
character is not a U+002E FULL STOP character, or if it has more than one U+002E FULL STOP character, then fail.
Otherwise, interpret the resulting sequence as a base-ten number (possibly with a fractional part). Set second to
that number.

4. If second is not a number in the range 0 ≤ second < 60, then fail.

8. Return hour, minute, and second.

2.4.5.5 Local dates and times § p76

A local date and time consists of a specific proleptic-Gregorian date p73 , consisting of a year, a month, and a day, and a time,
consisting of an hour, a minute, a second, and a fraction of a second, but expressed without a time zone. [GREGORIAN] p1253

A string is a valid local date and time string representing a date and time if it consists of the following components in the given
order:

1. A valid date string p74 representing the date

2. A U+0054 LATIN CAPITAL LETTER T character (T) or a U+0020 SPACE character

3. A valid time string p75 representing the time

A string is a valid normalized local date and time string representing a date and time if it consists of the following components in
the given order:

1. A valid date string p74 representing the date

2. A U+0054 LATIN CAPITAL LETTER T character (T)

3. A valid time string p75 representing the time, expressed as the shortest possible string for the given time (e.g. omitting the
seconds component entirely if the given time is zero seconds past the minute)

76
The rules to parse a local date and time string are as follows. This will return either a date and time, or nothing. If at any point the
algorithm says that it "fails", this means that it is aborted at that point and returns nothing.

1. Let input be the string being parsed.

2. Let position be a pointer into input, initially pointing at the start of the string.

3. Parse a date component p74 to obtain year, month, and day. If this returns nothing, then fail.

4. If position is beyond the end of input or if the character at position is neither a U+0054 LATIN CAPITAL LETTER T character (T)
nor a U+0020 SPACE character, then fail. Otherwise, move position forwards one character.

5. Parse a time component p76 to obtain hour, minute, and second. If this returns nothing, then fail.

6. If position is not beyond the end of input, then fail.

7. Let date be the date with year year, month month, and day day.

8. Let time be the time with hour hour, minute minute, and second second.

9. Return date and time.

2.4.5.6 Time zones § p77

A time-zone offset consists of a signed number of hours and minutes.

A string is a valid time-zone offset string representing a time-zone offset if it consists of either:

• A U+005A LATIN CAPITAL LETTER Z character (Z), allowed only if the time zone is UTC

• Or, the following components, in the given order:

1. Either a U+002B PLUS SIGN character (+) or, if the time-zone offset is not zero, a U+002D HYPHEN-MINUS
character (-), representing the sign of the time-zone offset

2. Two ASCII digits, representing the hours component hour of the time-zone offset, in the range 0 ≤ hour ≤ 23

3. Optionally, a U+003A COLON character (:)

4. Two ASCII digits, representing the minutes component minute of the time-zone offset, in the range 0 ≤ minute ≤ 59

Note
This format allows for time-zone offsets from -23:59 to +23:59. Right now, in practice, the range of offsets of actual time zones is
-12:00 to +14:00, and the minutes component of offsets of actual time zones is always either 00, 30, or 45. There is no guarantee
that this will remain so forever, however, since time zones are used as political footballs and are thus subject to very whimsical
policy decisions.

Note
See also the usage notes and examples in the global date and time p78 section below for details on using time-zone offsets with
historical times that predate the formation of formal time zones.

The rules to parse a time-zone offset string are as follows. This will return either a time-zone offset, or nothing. If at any point the
algorithm says that it "fails", this means that it is aborted at that point and returns nothing.

1. Let input be the string being parsed.

2. Let position be a pointer into input, initially pointing at the start of the string.

3. Parse a time-zone offset component p77 to obtain timezonehours and timezoneminutes. If this returns nothing, then fail.

4. If position is not beyond the end of input, then fail.

5. Return the time-zone offset that is timezonehours hours and timezoneminutes minutes from UTC.

The rules to parse a time-zone offset component, given an input string and a position, are as follows. This will return either time-

77
zone hours and time-zone minutes, or nothing. If at any point the algorithm says that it "fails", this means that it is aborted at that
point and returns nothing.

1. If the character at position is a U+005A LATIN CAPITAL LETTER Z character (Z), then:

1. Let timezonehours be 0.

2. Let timezoneminutes be 0.

3. Advance position to the next character in input.

Otherwise, if the character at position is either a U+002B PLUS SIGN (+) or a U+002D HYPHEN-MINUS (-), then:

1. If the character at position is a U+002B PLUS SIGN (+), let sign be "positive". Otherwise, it's a U+002D HYPHEN-
MINUS (-); let sign be "negative".

2. Advance position to the next character in input.

3. Collect a sequence of code points that are ASCII digits from input given position. Let s be the collected sequence.

4. If s is exactly two characters long, then:

1. Interpret s as a base-ten integer. Let that number be the timezonehours.

2. If position is beyond the end of input or if the character at position is not a U+003A COLON character,
then fail. Otherwise, move position forwards one character.

3. Collect a sequence of code points that are ASCII digits from input given position. If the collected
sequence is not exactly two characters long, then fail. Otherwise, interpret the resulting sequence as a
base-ten integer. Let that number be the timezoneminutes.

If s is exactly four characters long, then:

1. Interpret the first two characters of s as a base-ten integer. Let that number be the timezonehours.

2. Interpret the last two characters of s as a base-ten integer. Let that number be the timezoneminutes.

Otherwise, fail.

5. If timezonehours is not a number in the range 0 ≤ timezonehours ≤ 23, then fail.

6. If sign is "negative", then negate timezonehours.

7. If timezoneminutes is not a number in the range 0 ≤ timezoneminutes ≤ 59, then fail.

8. If sign is "negative", then negate timezoneminutes.

Otherwise, fail.

2. Return timezonehours and timezoneminutes.

2.4.5.7 Global dates and times § p78

A global date and time consists of a specific proleptic-Gregorian date p73 , consisting of a year, a month, and a day, and a time,
consisting of an hour, a minute, a second, and a fraction of a second, expressed with a time-zone offset, consisting of a signed number
of hours and minutes. [GREGORIAN] p1253

A string is a valid global date and time string representing a date, time, and a time-zone offset if it consists of the following
components in the given order:

1. A valid date string p74 representing the date

2. A U+0054 LATIN CAPITAL LETTER T character (T) or a U+0020 SPACE character

3. A valid time string p75 representing the time

4. A valid time-zone offset string p77 representing the time-zone offset

Times in dates before the formation of UTC in the mid twentieth century must be expressed and interpreted in terms of UT1
78
(contemporary Earth solar time at the 0° longitude), not UTC (the approximation of UT1 that ticks in SI seconds). Time before the
formation of time zones must be expressed and interpreted as UT1 times with explicit time zones that approximate the contemporary
difference between the appropriate local time and the time observed at the location of Greenwich, London.

Example
The following are some examples of dates written as valid global date and time strings p78 .

"0037-12-13 00:00Z"
Midnight in areas using London time on the birthday of Nero (the Roman Emperor). See below for further discussion on which
date this actually corresponds to.

"1979-10-14T12:00:00.001-04:00"
One millisecond after noon on October 14th 1979, in the time zone in use on the east coast of the USA during daylight saving
time.

"8592-01-01T02:09+02:09"
Midnight UTC on the 1st of January, 8592. The time zone associated with that time is two hours and nine minutes ahead of UTC,
which is not currently a real time zone, but is nonetheless allowed.

Several things are notable about these dates:

• Years with fewer than four digits have to be zero-padded. The date "37-12-13" would not be a valid date.

• If the "T" is replaced by a space, it must be a single space character. The string "2001-12-21 12:00Z" (with two spaces
between the components) would not be parsed successfully.

• To unambiguously identify a moment in time prior to the introduction of the Gregorian calendar (insofar as moments in
time before the formation of UTC can be unambiguously identified), the date has to be first converted to the Gregorian
calendar from the calendar in use at the time (e.g. from the Julian calendar). The date of Nero's birth is the 15th of
December 37, in the Julian Calendar, which is the 13th of December 37 in the proleptic Gregorian calendar p73 .

• The time and time-zone offset components are not optional.

• Dates before the year one can't be represented as a datetime in this version of HTML.

• Times of specific events in ancient times are, at best, approximations, since time was not well coordinated or measured
until relatively recent decades.

• Time-zone offsets differ based on daylight saving time.

The rules to parse a global date and time string are as follows. This will return either a time in UTC, with associated time-zone
offset information for round-tripping or display purposes, or nothing. If at any point the algorithm says that it "fails", this means that it
is aborted at that point and returns nothing.

1. Let input be the string being parsed.

2. Let position be a pointer into input, initially pointing at the start of the string.

3. Parse a date component p74 to obtain year, month, and day. If this returns nothing, then fail.

4. If position is beyond the end of input or if the character at position is neither a U+0054 LATIN CAPITAL LETTER T character (T)
nor a U+0020 SPACE character, then fail. Otherwise, move position forwards one character.

5. Parse a time component p76 to obtain hour, minute, and second. If this returns nothing, then fail.

6. If position is beyond the end of input, then fail.

7. Parse a time-zone offset component p77 to obtain timezonehours and timezoneminutes. If this returns nothing, then fail.

8. If position is not beyond the end of input, then fail.

9. Let time be the moment in time at year year, month month, day day, hours hour, minute minute, second second, subtracting
timezonehours hours and timezoneminutes minutes. That moment in time is a moment in the UTC time zone.

10. Let timezone be timezonehours hours and timezoneminutes minutes from UTC.

11. Return time and timezone.

79
2.4.5.8 Weeks § p80

A week consists of a week-year number and a week number representing a seven-day period starting on a Monday. Each week-year in
this calendaring system has either 52 or 53 such seven-day periods, as defined below. The seven-day period starting on the Gregorian
date Monday December 29th 1969 (1969-12-29) is defined as week number 1 in week-year 1970. Consecutive weeks are numbered
sequentially. The week before the number 1 week in a week-year is the last week in the previous week-year, and vice versa.
[GREGORIAN] p1253

A week-year with a number year has 53 weeks if it corresponds to either a year year in the proleptic Gregorian calendar p73 that has a
Thursday as its first day (January 1st), or a year year in the proleptic Gregorian calendar p73 that has a Wednesday as its first day
(January 1st) and where year is a number divisible by 400, or a number divisible by 4 but not by 100. All other week-years have 52
weeks.

The week number of the last day of a week-year with 53 weeks is 53; the week number of the last day of a week-year with 52
weeks is 52.

Note
The week-year number of a particular day can be different than the number of the year that contains that day in the proleptic
Gregorian calendar p73 . The first week in a week-year y is the week that contains the first Thursday of the Gregorian year y.

Note
For modern purposes, a week p80 as defined here is equivalent to ISO weeks as defined in ISO 8601. [ISO8601] p1253

A string is a valid week string representing a week-year year and week week if it consists of the following components in the given
order:

1. Four or more ASCII digits, representing year, where year > 0

2. A U+002D HYPHEN-MINUS character (-)

3. A U+0057 LATIN CAPITAL LETTER W character (W)

4. Two ASCII digits, representing the week week, in the range 1 ≤ week ≤ maxweek, where maxweek is the week number of the
last day p80 of week-year year

The rules to parse a week string are as follows. This will return either a week-year number and week number, or nothing. If at any
point the algorithm says that it "fails", this means that it is aborted at that point and returns nothing.

1. Let input be the string being parsed.

2. Let position be a pointer into input, initially pointing at the start of the string.

3. Collect a sequence of code points that are ASCII digits from input given position. If the collected sequence is not at least four
characters long, then fail. Otherwise, interpret the resulting sequence as a base-ten integer. Let that number be the year.

4. If year is not a number greater than zero, then fail.

5. If position is beyond the end of input or if the character at position is not a U+002D HYPHEN-MINUS character, then fail.
Otherwise, move position forwards one character.

6. If position is beyond the end of input or if the character at position is not a U+0057 LATIN CAPITAL LETTER W character (W),
then fail. Otherwise, move position forwards one character.

7. Collect a sequence of code points that are ASCII digits from input given position. If the collected sequence is not exactly two
characters long, then fail. Otherwise, interpret the resulting sequence as a base-ten integer. Let that number be the week.

8. Let maxweek be the week number of the last day p80 of year year.

9. If week is not a number in the range 1 ≤ week ≤ maxweek, then fail.

10. If position is not beyond the end of input, then fail.

11. Return the week-year number year and the week number week.

80
2.4.5.9 Durations § p81

A duration consists of a number of seconds.

Note
Since months and seconds are not comparable (a month is not a precise number of seconds, but is instead a period whose exact
length depends on the precise day from which it is measured) a duration p81 as defined in this specification cannot include months
(or years, which are equivalent to twelve months). Only durations that describe a specific number of seconds can be described.

A string is a valid duration string representing a duration p81 t if it consists of either of the following:

• A literal U+0050 LATIN CAPITAL LETTER P character followed by one or more of the following subcomponents, in the order
given, where the number of days, hours, minutes, and seconds corresponds to the same number of seconds as in t:

1. One or more ASCII digits followed by a U+0044 LATIN CAPITAL LETTER D character, representing a number of days.

2. A U+0054 LATIN CAPITAL LETTER T character followed by one or more of the following subcomponents, in the order
given:

1. One or more ASCII digits followed by a U+0048 LATIN CAPITAL LETTER H character, representing a
number of hours.

2. One or more ASCII digits followed by a U+004D LATIN CAPITAL LETTER M character, representing a
number of minutes.

3. The following components:

1. One or more ASCII digits, representing a number of seconds.

2. Optionally, a U+002E FULL STOP character (.) followed by one, two, or three ASCII digits,
representing a fraction of a second.

3. A U+0053 LATIN CAPITAL LETTER S character.

Note
This, as with a number of other date- and time-related microsyntaxes defined in this specification, is based on one of the
formats defined in ISO 8601. [ISO8601] p1253

• One or more duration time components p81 , each with a different duration time component scale p81 , in any order; the sum of
the represented seconds being equal to the number of seconds in t.

A duration time component is a string consisting of the following components:

1. Zero or more ASCII whitespace.

2. One or more ASCII digits, representing a number of time units, scaled by the duration time component scale p81
specified (see below) to represent a number of seconds.

3. If the duration time component scale p81 specified is 1 (i.e. the units are seconds), then, optionally, a U+002E FULL
STOP character (.) followed by one, two, or three ASCII digits, representing a fraction of a second.

4. Zero or more ASCII whitespace.

5. One of the following characters, representing the duration time component scale of the time unit used in the
numeric part of the duration time component p81 :

U+0057 LATIN CAPITAL LETTER W character


U+0077 LATIN SMALL LETTER W character
Weeks. The scale is 604800.

U+0044 LATIN CAPITAL LETTER D character


U+0064 LATIN SMALL LETTER D character
Days. The scale is 86400.

U+0048 LATIN CAPITAL LETTER H character


U+0068 LATIN SMALL LETTER H character
Hours. The scale is 3600.
81
U+004D LATIN CAPITAL LETTER M character
U+006D LATIN SMALL LETTER M character
Minutes. The scale is 60.

U+0053 LATIN CAPITAL LETTER S character


U+0073 LATIN SMALL LETTER S character
Seconds. The scale is 1.

6. Zero or more ASCII whitespace.

Note
This is not based on any of the formats in ISO 8601. It is intended to be a more human-readable alternative to the ISO
8601 duration format.

The rules to parse a duration string are as follows. This will return either a duration p81 or nothing. If at any point the algorithm says
that it "fails", this means that it is aborted at that point and returns nothing.

1. Let input be the string being parsed.

2. Let position be a pointer into input, initially pointing at the start of the string.

3. Let months, seconds, and component count all be zero.

4. Let M-disambiguator be minutes.

Note
This flag's other value is months. It is used to disambiguate the "M" unit in ISO8601 durations, which use the same unit
for months and minutes. Months are not allowed, but are parsed for future compatibility and to avoid misinterpreting
ISO8601 durations that would be valid in other contexts.

5. Skip ASCII whitespace within input given position.

6. If position is past the end of input, then fail.

7. If the character in input pointed to by position is a U+0050 LATIN CAPITAL LETTER P character, then advance position to the
next character, set M-disambiguator to months, and skip ASCII whitespace within input given position.

8. While true:

1. Let units be undefined. It will be assigned one of the following values: years, months, weeks, days, hours, minutes,
and seconds.

2. Let next character be undefined. It is used to process characters from the input.

3. If position is past the end of input, then break.

4. If the character in input pointed to by position is a U+0054 LATIN CAPITAL LETTER T character, then advance
position to the next character, set M-disambiguator to minutes, skip ASCII whitespace within input given position,
and continue.

5. Set next character to the character in input pointed to by position.

6. If next character is a U+002E FULL STOP character (.), then let N equal zero. (Do not advance position. That is
taken care of below.)

Otherwise, if next character is an ASCII digit, then collect a sequence of code points that are ASCII digits from input
given position, interpret the resulting sequence as a base-ten integer, and let N be that number.

Otherwise next character is not part of a number; fail.

7. If position is past the end of input, then fail.

8. Set next character to the character in input pointed to by position, and this time advance position to the next
character. (If next character was a U+002E FULL STOP character (.) before, it will still be that character this time.)

9. If next character is U+002E (.), then:

1. Collect a sequence of code points that are ASCII digits from input given position. Let s be the resulting

82
sequence.

2. If s is the empty string, then fail.

3. Let length be the number of characters in s.

4. Let fraction be the result of interpreting s as a base-ten integer, and then dividing that number by
10length.

5. Increment N by fraction.

6. Skip ASCII whitespace within input given position.

7. If position is past the end of input, then fail.

8. Set next character to the character in input pointed to by position, and advance position to the next
character.

9. If next character is neither a U+0053 LATIN CAPITAL LETTER S character nor a U+0073 LATIN SMALL
LETTER S character, then fail.

10. Set units to seconds.

Otherwise:

1. If next character is ASCII whitespace, then skip ASCII whitespace within input given position, set next
character to the character in input pointed to by position, and advance position to the next character.

2. If next character is a U+0059 LATIN CAPITAL LETTER Y character, or a U+0079 LATIN SMALL LETTER Y
character, set units to years and set M-disambiguator to months.

If next character is a U+004D LATIN CAPITAL LETTER M character or a U+006D LATIN SMALL LETTER M
character, and M-disambiguator is months, then set units to months.

If next character is a U+0057 LATIN CAPITAL LETTER W character or a U+0077 LATIN SMALL LETTER W
character, set units to weeks and set M-disambiguator to minutes.

If next character is a U+0044 LATIN CAPITAL LETTER D character or a U+0064 LATIN SMALL LETTER D
character, set units to days and set M-disambiguator to minutes.

If next character is a U+0048 LATIN CAPITAL LETTER H character or a U+0068 LATIN SMALL LETTER H
character, set units to hours and set M-disambiguator to minutes.

If next character is a U+004D LATIN CAPITAL LETTER M character or a U+006D LATIN SMALL LETTER M
character, and M-disambiguator is minutes, then set units to minutes.

If next character is a U+0053 LATIN CAPITAL LETTER S character or a U+0073 LATIN SMALL LETTER S
character, set units to seconds and set M-disambiguator to minutes.

Otherwise if next character is none of the above characters, then fail.

10. Increment component count.

11. Let multiplier be 1.

12. If units is years, multiply multiplier by 12 and set units to months.

13. If units is months, add the product of N and multiplier to months.

Otherwise:

1. If units is weeks, multiply multiplier by 7 and set units to days.

2. If units is days, multiply multiplier by 24 and set units to hours.

3. If units is hours, multiply multiplier by 60 and set units to minutes.

4. If units is minutes, multiply multiplier by 60 and set units to seconds.

5. Forcibly, units is now seconds. Add the product of N and multiplier to seconds.

14. Skip ASCII whitespace within input given position.


83
9. If component count is zero, fail.

10. If months is not zero, fail.

11. Return the duration p81 consisting of seconds seconds.

2.4.5.10 Vaguer moments in time § p84

A string is a valid date string with optional time if it is also one of the following:

• A valid date string p74

• A valid global date and time string p78

The rules to parse a date or time string are as follows. The algorithm will return either a date p74 , a time p75 , a global date and
time p78 , or nothing. If at any point the algorithm says that it "fails", this means that it is aborted at that point and returns nothing.

1. Let input be the string being parsed.

2. Let position be a pointer into input, initially pointing at the start of the string.

3. Set start position to the same position as position.

4. Set the date present and time present flags to true.

5. Parse a date component p74 to obtain year, month, and day. If this fails, then set the date present flag to false.

6. If date present is true, and position is not beyond the end of input, and the character at position is either a U+0054 LATIN
CAPITAL LETTER T character (T) or a U+0020 SPACE character, then advance position to the next character in input.

Otherwise, if date present is true, and either position is beyond the end of input or the character at position is neither a
U+0054 LATIN CAPITAL LETTER T character (T) nor a U+0020 SPACE character, then set time present to false.

Otherwise, if date present is false, set position back to the same position as start position.

7. If the time present flag is true, then parse a time component p76 to obtain hour, minute, and second. If this returns nothing,
then fail.

8. If the date present and time present flags are both true, but position is beyond the end of input, then fail.

9. If the date present and time present flags are both true, parse a time-zone offset component p77 to obtain timezonehours and
timezoneminutes. If this returns nothing, then fail.

10. If position is not beyond the end of input, then fail.

11. If the date present flag is true and the time present flag is false, then let date be the date with year year, month month, and
day day, and return date.

Otherwise, if the time present flag is true and the date present flag is false, then let time be the time with hour hour, minute
minute, and second second, and return time.

Otherwise, let time be the moment in time at year year, month month, day day, hours hour, minute minute, second second,
subtracting timezonehours hours and timezoneminutes minutes, that moment in time being a moment in the UTC time zone;
let timezone be timezonehours hours and timezoneminutes minutes from UTC; and return time and timezone.

2.4.6 Colors § p84

A simple color consists of three 8-bit numbers in the range 0..255, representing the red, green, and blue components of the color
respectively, in the sRGB color space. [SRGB] p1256

A string is a valid simple color if it is exactly seven characters long, and the first character is a U+0023 NUMBER SIGN character (#),
and the remaining six characters are all ASCII hex digits, with the first two digits representing the red component, the middle two digits
representing the green component, and the last two digits representing the blue component, in hexadecimal.

84
A string is a valid lowercase simple color if it is a valid simple color p84 and doesn't use any characters in the range U+0041 LATIN
CAPITAL LETTER A to U+0046 LATIN CAPITAL LETTER F.

The rules for parsing simple color values are as given in the following algorithm. When invoked, the steps must be followed in the
order given, aborting at the first step that returns a value. This algorithm will return either a simple color p84 or an error.

1. Let input be the string being parsed.

2. If input is not exactly seven characters long, then return an error.

3. If the first character in input is not a U+0023 NUMBER SIGN character (#), then return an error.

4. If the last six characters of input are not all ASCII hex digits, then return an error.

5. Let result be a simple color p84 .

6. Interpret the second and third characters as a hexadecimal number and let the result be the red component of result.

7. Interpret the fourth and fifth characters as a hexadecimal number and let the result be the green component of result.

8. Interpret the sixth and seventh characters as a hexadecimal number and let the result be the blue component of result.

9. Return result.

The rules for serializing simple color values given a simple color p84 are as given in the following algorithm:

1. Let result be a string consisting of a single U+0023 NUMBER SIGN character (#).

2. Convert the red, green, and blue components in turn to two-digit hexadecimal numbers using ASCII lower hex digits, zero-
padding if necessary, and append these numbers to result, in the order red, green, blue.

3. Return result, which will be a valid lowercase simple color p85 .

Some obsolete legacy attributes parse colors in a more complicated manner, using the rules for parsing a legacy color value,
which are given in the following algorithm. When invoked, the steps must be followed in the order given, aborting at the first step that
returns a value. This algorithm will return either a simple color p84 or an error.

1. Let input be the string being parsed.

2. If input is the empty string, then return an error.

3. Strip leading and trailing ASCII whitespace from input.

4. If input is an ASCII case-insensitive match for the string "transparent", then return an error.

5. If input is an ASCII case-insensitive match for one of the named colors, then return the simple color p84 corresponding to that
keyword. [CSSCOLOR] p1251

Note
CSS2 System Colors are not recognized.

6. If input is four characters long, and the first character in input is U+0023 (#), and the last three characters of input are all
ASCII hex digits, then:

1. Let result be a simple color p84 .

2. Interpret the second character of input as a hexadecimal digit; let the red component of result be the resulting
number multiplied by 17.

3. Interpret the third character of input as a hexadecimal digit; let the green component of result be the resulting
number multiplied by 17.

4. Interpret the fourth character of input as a hexadecimal digit; let the blue component of result be the resulting
number multiplied by 17.

5. Return result.

7. Replace any characters in input that have a code point greater than U+FFFF (i.e., any characters that are not in the basic

85
multilingual plane) with the two-character string "00".

8. If input is longer than 128 characters, truncate input, leaving only the first 128 characters.

9. If the first character in input is a U+0023 NUMBER SIGN character (#), remove it.

10. Replace any character in input that is not an ASCII hex digit with the character U+0030 DIGIT ZERO (0).

11. While input's length is zero or not a multiple of three, append a U+0030 DIGIT ZERO (0) character to input.

12. Split input into three strings of equal length, to obtain three components. Let length be the length of those components (one
third the length of input).

13. If length is greater than 8, then remove the leading length-8 characters in each component, and let length be 8.

14. While length is greater than two and the first character in each component is a U+0030 DIGIT ZERO (0) character, remove
that character and reduce length by one.

15. If length is still greater than two, truncate each component, leaving only the first two characters in each.

16. Let result be a simple color p84 .

17. Interpret the first component as a hexadecimal number; let the red component of result be the resulting number.

18. Interpret the second component as a hexadecimal number; let the green component of result be the resulting number.

19. Interpret the third component as a hexadecimal number; let the blue component of result be the resulting number.

20. Return result.

Note
The 2D graphics context p621 has a separate color syntax that also handles opacity.

2.4.7 Space-separated tokens § p86

A set of space-separated tokens is a string containing zero or more words (known as tokens) separated by one or more ASCII
whitespace, where words consist of any string of one or more characters, none of which are ASCII whitespace.

A string containing a set of space-separated tokens p86 may have leading or trailing ASCII whitespace.

An unordered set of unique space-separated tokens is a set of space-separated tokens p86 where none of the tokens are
duplicated.

An ordered set of unique space-separated tokens is a set of space-separated tokens p86 where none of the tokens are duplicated
but where the order of the tokens is meaningful.

Sets of space-separated tokens p86 sometimes have a defined set of allowed values. When a set of allowed values is defined, the tokens
must all be from that list of allowed values; other values are non-conforming. If no such set of allowed values is provided, then all
values are conforming.

Note
How tokens in a set of space-separated tokens p86 are to be compared (e.g. case-sensitively or not) is defined on a per-set basis.

2.4.8 Comma-separated tokens § p86

A set of comma-separated tokens is a string containing zero or more tokens each separated from the next by a single U+002C
COMMA character (,), where tokens consist of any string of zero or more characters, neither beginning nor ending with ASCII
whitespace, nor containing any U+002C COMMA characters (,), and optionally surrounded by ASCII whitespace.

86
Example
For instance, the string " a ,b,,d d " consists of four tokens: "a", "b", the empty string, and "d d". Leading and trailing
whitespace around each token doesn't count as part of the token, and the empty string can be a token.

Sets of comma-separated tokens p86 sometimes have further restrictions on what consists a valid token. When such restrictions are
defined, the tokens must all fit within those restrictions; other values are non-conforming. If no such restrictions are specified, then all
values are conforming.

2.4.9 References § p87

A valid hash-name reference to an element of type type is a string consisting of a U+0023 NUMBER SIGN character (#) followed by
a string which exactly matches the value of the name attribute of an element with type type in the same tree.

The rules for parsing a hash-name reference to an element of type type, given a context node scope, are as follows:

1. If the string being parsed does not contain a U+0023 NUMBER SIGN character, or if the first such character in the string is
the last character in the string, then return null.

2. Let s be the string from the character immediately after the first U+0023 NUMBER SIGN character in the string being parsed
up to the end of that string.

3. Return the first element of type type in scope's tree, in tree order, that has an id p134 or name attribute whose value is s, or
null if there is no such element.

Note
Although id p134 attributes are accounted for when parsing, they are not used in determining whether a value is a valid
hash-name reference p87 . That is, a hash-name reference that refers to an element based on id p134 is a conformance error
(unless that element also has a name attribute with the same value).

2.4.10 Media queries § p87

A string is a valid media query list if it matches the <media-query-list> production of Media Queries. [MQ] p1254

A string matches the environment of the user if it is the empty string, a string consisting of only ASCII whitespace, or is a media
query list that matches the user's environment according to the definitions given in Media Queries. [MQ] p1254

2.5 URLs § p87

2.5.1 Terminology § p87

A string is a valid non-empty URL if it is a valid URL string but it is not the empty string.

A string is a valid URL potentially surrounded by spaces if, after stripping leading and trailing ASCII whitespace from it, it is a valid
URL string.

A string is a valid non-empty URL potentially surrounded by spaces if, after stripping leading and trailing ASCII whitespace from
it, it is a valid non-empty URL p87 .

This specification defines the URL about:legacy-compat as a reserved, though unresolvable, about: URL, for use in DOCTYPE p1033 s in
HTML documents when needed for compatibility with XML tools. [ABOUT] p1250

This specification defines the URL about:html-kind as a reserved, though unresolvable, about: URL, that is used as an identifier for
kinds of media tracks. [ABOUT] p1250

This specification defines the URL about:srcdoc as a reserved, though unresolvable, about: URL, that is used as the URL of iframe
srcdoc documents p351 . [ABOUT] p1250

87
The fallback base URL of a Document p112 object document is the URL record obtained by running these steps:

1. If document is an iframe srcdoc document p351 , then return the document base URL p88 of document's browsing context p793 's
browsing context container p795 's node document.

2. If document's URL is about:blank p51 , and document's browsing context p793 's creator base URL p794 is non-null, then return
that creator base URL p794 .

3. Return document's URL.

The document base URL of a Document p112 object is the absolute URL obtained by running these steps:

1. If there is no base p152 element that has an href p153 attribute in the Document p112 , then return the Document p112 's fallback base
URL p88 .

2. Otherwise, return the frozen base URL p153 of the first base p152 element in the Document p112 that has an href p153 attribute, in
tree order.

2.5.2 Parsing URLs § p88

Parsing a URL is the process of taking a string and obtaining the URL record that it represents. While this process is defined in URL, the
HTML standard defines a wrapper for convenience. [URL] p1256

Note
This wrapper is only useful when the character encoding for the URL parser has to match that of the document or environment
settings object for legacy reasons. When that is not the case the URL parser can be used directly.

To parse a URL url, relative to either a document or environment settings object, the user agent must use the following steps. Parsing
a URL either results in failure or a resulting URL string p88 and resulting URL record p88 .

1. Let encoding be document's character encoding, if document was given, and environment settings object's API URL
character encoding p885 otherwise.

2. Let baseURL be document's base URL p88 , if document was given, and environment settings object's API base URL p885
otherwise.

3. Let urlRecord be the result of applying the URL parser to url, with baseURL and encoding.

4. If urlRecord is failure, then return failure.

5. Let urlString be the result of applying the URL serializer to urlRecord.

6. Return urlString as the resulting URL string and urlRecord as the resulting URL record.

2.5.3 Dynamic changes to base URLs § p88

When a document's document base URL p88 changes, all elements in that document are affected by a base URL change p56 .

The following are base URL change steps p56 , which run when an element is affected by a base URL change p56 (as defined by DOM):

p275
↪ If the element creates a hyperlink
If the URL identified by the hyperlink is being shown to the user, or if any data derived from that URL is affecting the display,
then the href p276 attribute should be reparsed p88 relative to the element's node document and the UI updated appropriately.

Example
For example, the CSS :link p709 /:visited p709 pseudo-classes might have been affected.

If the hyperlink has a ping p276 attribute and its URL(s) are being shown to the user, then the ping p276 attribute's tokens should
be reparsed p88 relative to the element's node document and the UI updated appropriately.

88
p241
↪ If the element is a q , blockquote p212 , ins p302 , or del p303 element with a cite attribute
If the URL identified by the cite attribute is being shown to the user, or if any data derived from that URL is affecting the
display, then the URL should be reparsed p88 relative to the element's node document and the UI updated appropriately.

↪ Otherwise
The element is not directly affected.

Example
For instance, changing the base URL doesn't affect the image displayed by img p310 elements, although subsequent accesses
of the src p313 IDL attribute from script will return a new absolute URL that might no longer correspond to the image being
shown.

2.6 Fetching resources § p89

2.6.1 Terminology § p89

A response whose type is "basic", "cors", or "default" is CORS-same-origin. [FETCH] p1252

A response whose type is "opaque" or "opaqueredirect" is CORS-cross-origin.

A response's unsafe response is its internal response if it has one, and the response itself otherwise.

To create a potential-CORS request, given a url, destination, corsAttributeState, and an optional same-origin fallback flag, run
these steps:

1. Let mode be "no-cors" if corsAttributeState is No CORS p90 , and "cors" otherwise.

2. If same-origin fallback flag is set and mode is "no-cors", set mode to "same-origin".

3. Let credentialsMode be "include".

4. If corsAttributeState is Anonymous p90 , set credentialsMode to "same-origin".

5. Let request be a new request whose url is url, destination is destination, mode is mode, credentials mode is credentialsMode,
and whose use-URL-credentials flag is set.

2.6.2 Determining the type of a resource § p89

The Content-Type metadata of a resource must be obtained and interpreted in a manner consistent with the requirements of MIME
Sniffing. [MIMESNIFF] p1254

The computed MIME type of a resource must be found in a manner consistent with the requirements given in MIME Sniffing.
[MIMESNIFF] p1254

The rules for sniffing images specifically, the rules for distinguishing if a resource is text or binary, and the rules for
sniffing audio and video specifically are also defined in MIME Sniffing. These rules return a MIME type as their result.
[MIMESNIFF] p1254

⚠Warning!
It is imperative that the rules in MIME Sniffing be followed exactly. When a user agent uses different heuristics for
content type detection than the server expects, security problems can occur. For more details, see MIME Sniffing.
[MIMESNIFF] p1254

2.6.3 Extracting character encodings from meta p160 elements §


p89

The algorithm for extracting a character encoding from a meta element, given a string s, is as follows. It either returns a
89
character encoding or nothing.

1. Let position be a pointer into s, initially pointing at the start of the string.

2. Loop: Find the first seven characters in s after position that are an ASCII case-insensitive match for the word "charset". If no
such match is found, return nothing.

3. Skip any ASCII whitespace that immediately follow the word "charset" (there might not be any).

4. If the next character is not a U+003D EQUALS SIGN (=), then move position to point just before that next character, and
jump back to the step labeled loop.

5. Skip any ASCII whitespace that immediately follow the equals sign (there might not be any).

6. Process the next character as follows:

↪ If it is a U+0022 QUOTATION MARK character (") and there is a later U+0022 QUOTATION MARK character
(") in s
↪ If it is a U+0027 APOSTROPHE character (') and there is a later U+0027 APOSTROPHE character (') in s
Return the result of getting an encoding from the substring that is between this character and the next earliest
occurrence of this character.

↪ If it is an unmatched U+0022 QUOTATION MARK character (")


↪ If it is an unmatched U+0027 APOSTROPHE character (')
↪ If there is no next character
Return nothing.

↪ Otherwise
Return the result of getting an encoding from the substring that consists of this character up to but not including the
first ASCII whitespace or U+003B SEMICOLON character (;), or the end of s, whichever comes first.

Note
This algorithm is distinct from those in the HTTP specifications (for example, HTTP doesn't allow the use of single quotes and
requires supporting a backslash-escape mechanism that is not supported by this algorithm). While the algorithm is used in
contexts that, historically, were related to HTTP, the syntax as supported by implementations diverged some time ago. [HTTP] p1253


MDN

2.6.4 CORS settings attributes § p90

A CORS settings attribute is an enumerated attribute p67 . The following table lists the keywords and states for the attribute — the
keywords in the left column map to the states in the cell in the second column on the same row as the keyword.

Keyword State Brief description

anonymous Anonymous Requests for the element will have their mode set to "cors" and their credentials mode set to "same-origin".
use-credentials Use Credentials Requests for the element will have their mode set to "cors" and their credentials mode set to "include".

The empty string is also a valid keyword, and maps to the Anonymous p90 state. The attribute's invalid value default p67 is the
Anonymous p90 state. For the purposes of reflection p92 , the canonical case for the Anonymous p90 state is the anonymous p90 keyword. The
missing value default p67 , used when the attribute is omitted, is the No CORS state.

The majority of fetches governed by CORS settings attributes p90 will be done via the create a potential-CORS request p89 algorithm.

For module scripts p884 , certain CORS settings attributes p90 have been repurposed to have a slightly different meaning, wherein they
only impact the request's credentials mode (since the mode is always "cors"). To perform this translation, we define the module
script credentials mode for a given CORS settings attribute p90 to be determined by switching on the attribute's state:

p90
↪ No CORS
p90
↪ Anonymous
"same-origin"
p90
↪ Use Credentials
"include"

90
2.6.5 Referrer policy attributes § p91

A referrer policy attribute is an enumerated attribute p67 . Each referrer policy, including the empty string, is a keyword for this
attribute, mapping to a state of the same name.

The attribute's invalid value default p67 and missing value default p67 are both the empty string state.

The impact of these states on the processing model of various fetches is defined in more detail throughout this specification, in Fetch,
and in Referrer Policy. [FETCH] p1252 [REFERRERPOLICY] p1255

Note
Several signals can contribute to which processing model is used for a given fetch; a referrer policy attribute p91 is only one of
them. In general, the order in which these signals are processed are:

1. First, the presence of a noreferrer p295 link type;

2. Then, the value of a referrer policy attribute p91 ;

3. Then, the presence of any meta p160 element with name p161 attribute set to referrer p163 .

4. Finally, the `Referrer-Policy` HTTP header.

2.6.6 Nonce attributes § p91


⋰ to
A nonce content attribute represents a cryptographic nonce ("number used once") which can be used by Content Security Policy
p1250
MDN
determine whether or not a given fetch will be allowed to proceed. The value is text. [CSP]

Elements that have a nonce p91 content attribute ensure that the crytographic nonce is only exposed to script (and not to side-channels
like CSS attribute selectors) by extracting the value from the content attribute, moving it into an internal slot named
[[CryptographicNonce]], and exposing it to script via the HTMLOrSVGElement p123 interface mixin. Unless otherwise specified, the
slot's value is the empty string.

For web developers (non-normative)


element . nonce
Returns the value of the element's [[CryptographicNonce]] p91 internal slot.
Can be set, to update that slot's value.

The nonce IDL attribute must, on getting, return the value of this element's [[CryptographicNonce]] p91 ; and on setting, set this
element's [[CryptographicNonce]] p91 to the given value.

Note
Note how the setter for the nonce p91 IDL attribute does not update the corresponding content attribute. This, as well as the below
setting of the nonce p91 content attribute to the empty string when an element becomes browsing-context connected p45 , is meant
to prevent exfiltration of the nonce value through mechanisms that can easily read content attributes, such as selectors. Learn
more in issue #2369, where this behavior was introduced.

Whenever an element including HTMLOrSVGElement p123 has its nonce p91 attribute is set or changed, set this element's
[[CryptographicNonce]] p91 to the given value.

Whenever an element including HTMLOrSVGElement p123 becomes browsing-context connected p45 , the user agent must execute the
following steps on the element:

1. Let CSP list be element's shadow-including root's CSP list p113 .

2. If CSP list contains a header-delivered Content Security Policy, and element has a nonce p91 content attribute attr whose value
is not the empty string, then:

1. Set an attribute value for element using "nonce p91 " and the empty string.

91
Note
As each Document p112 's CSP list p113 is append-only, user agents can optimize away the contains a header-delivered Content Security
Policy check by, for example, holding a flag on the Document p112 , set during Document creation and initialization p845 .

The cloning steps for elements that include HTMLOrSVGElement p123 must set the [[CryptographicNonce]] p91 slot on the copy to the value
of the slot on the element being cloned.

2.7 Common DOM interfaces § p92

2.7.1 Reflecting content attributes in IDL attributes § p92

Some IDL attributes are defined to reflect a particular content attribute. This means that on getting, the IDL attribute returns the
current value of the content attribute, and on setting, the IDL attribute changes the value of the content attribute to the given value.

In general, on getting, if the content attribute is not present, the IDL attribute must act as if the content attribute's value is the empty
string; and on setting, if the content attribute is not present, it must first be added.

If a reflecting IDL attribute is a USVString attribute whose content attribute is defined to contain a URL, then on getting, if the content
attribute is absent, the IDL attribute must return the empty string. Otherwise, the IDL attribute must parse p88 the value of the content
attribute relative to the element's node document and if that is successful, return the resulting URL string p88 . If parsing fails, then the
value of the content attribute must be returned instead, converted to a USVString. On setting, the content attribute must be set to the
specified new value.

If a reflecting IDL attribute is a DOMString attribute whose content attribute is an enumerated attribute p67 , and the IDL attribute is
limited to only known values, then, on getting, the IDL attribute must return the conforming value associated with the state the
attribute is in (in its canonical case), if any, or the empty string if the attribute is in a state that has no associated keyword value or if
the attribute is not in a defined state (e.g. the attribute is missing and there is no missing value default p67 ). On setting, the content
attribute must be set to the specified new value.

If a reflecting IDL attribute is a nullable DOMString attribute whose content attribute is an enumerated attribute p67 , then, on getting, if
the corresponding content attribute is in its missing value default then the IDL attribute must return null, otherwise, the IDL attribute
must return the conforming value associated with the state the attribute is in (in its canonical case). On setting, if the new value is null,
the content attribute must be removed, and otherwise, the content attribute must be set to the specified new value.

If a reflecting IDL attribute is a DOMString or USVString attribute but doesn't fall into any of the above categories, then the getting and
setting must be done in a transparent, case-preserving manner.

If a reflecting IDL attribute is a boolean attribute, then on getting the IDL attribute must return true if the content attribute is set, and
false if it is absent. On setting, the content attribute must be removed if the IDL attribute is set to false, and must be set to the empty
string if the IDL attribute is set to true. (This corresponds to the rules for boolean content attributes p66 .)

If a reflecting IDL attribute has a signed integer type (long) then, on getting, the content attribute must be parsed according to the
rules for parsing signed integers p67 , and if that is successful, and the value is in the range of the IDL attribute's type, the resulting
value must be returned. If, on the other hand, it fails or returns an out of range value, or if the attribute is absent, then the default
value must be returned instead, or 0 if there is no default value. On setting, the given value must be converted to the shortest possible
string representing the number as a valid integer p67 and then that string must be used as the new content attribute value.

If a reflecting IDL attribute has a signed integer type (long) that is limited to only non-negative numbers then, on getting, the
content attribute must be parsed according to the rules for parsing non-negative integers p68 , and if that is successful, and the value is
in the range of the IDL attribute's type, the resulting value must be returned. If, on the other hand, it fails or returns an out of range
value, or if the attribute is absent, the default value must be returned instead, or −1 if there is no default value. On setting, if the value
is negative, the user agent must throw an "IndexSizeError" DOMException. Otherwise, the given value must be converted to the
shortest possible string representing the number as a valid non-negative integer p68 and then that string must be used as the new
content attribute value.

If a reflecting IDL attribute has an unsigned integer type (unsigned long) then, on getting, the content attribute must be parsed
according to the rules for parsing non-negative integers p68 , and if that is successful, and the value is in the range 0 to 2147483647
inclusive, the resulting value must be returned. If, on the other hand, it fails or returns an out of range value, or if the attribute is
absent, the default value must be returned instead, or 0 if there is no default value. On setting, first, if the new value is in the range 0
to 2147483647, then let n be the new value, otherwise let n be the default value, or 0 if there is no default value; then, n must be
converted to the shortest possible string representing the number as a valid non-negative integer p68 and that string must be used as
92
the new content attribute value.

If a reflecting IDL attribute has an unsigned integer type (unsigned long) that is limited to only non-negative numbers greater
than zero, then the behavior is similar to the previous case, but zero is not allowed. On getting, the content attribute must first be
parsed according to the rules for parsing non-negative integers p68 , and if that is successful, and the value is in the range 1 to
2147483647 inclusive, the resulting value must be returned. If, on the other hand, it fails or returns an out of range value, or if the
attribute is absent, the default value must be returned instead, or 1 if there is no default value. On setting, if the value is zero, the user
agent must throw an "IndexSizeError" DOMException. Otherwise, first, if the new value is in the range 1 to 2147483647, then let n be
the new value, otherwise let n be the default value, or 1 if there is no default value; then, n must be converted to the shortest possible
string representing the number as a valid non-negative integer p68 and that string must be used as the new content attribute value.

If a reflecting IDL attribute has an unsigned integer type (unsigned long) that is limited to only non-negative numbers greater
than zero with fallback, then the behavior is similar to the previous case, but disallowed values are converted to the default value.
On getting, the content attribute must first be parsed according to the rules for parsing non-negative integers p68 , and if that is
successful, and the value is in the range 1 to 2147483647 inclusive, the resulting value must be returned. If, on the other hand, it fails
or returns an out of range value, or if the attribute is absent, the default value must be returned instead. On setting, first, if the new
value is in the range 1 to 2147483647, then let n be the new value, otherwise let n be the default value; then, n must be converted to
the shortest possible string representing the number as a valid non-negative integer p68 and that string must be used as the new
content attribute value.

If a reflecting IDL attribute has an unsigned integer type (unsigned long) that is clamped to the range [min, max], then on getting,
the content attribute must first be parsed according to the rules for parsing non-negative integers p68 , and if that is successful, and the
value is between min and max inclusive, the resulting value must be returned. If it fails, the default value must be returned. If it
succeeds but the value is less than min, min must be returned. If it succeeds but the value is greater than max, max must be returned.
On setting, it behaves the same as setting a regular reflected unsigned integer.

If a reflecting IDL attribute has a floating-point number type (double or unrestricted double), then, on getting, the content attribute
must be parsed according to the rules for parsing floating-point number values p69 , and if that is successful, the resulting value must be
returned. If, on the other hand, it fails, or if the attribute is absent, the default value must be returned instead, or 0.0 if there is no
default value. On setting, the given value must be converted to the best representation of the number as a floating-point number p69
and then that string must be used as the new content attribute value.

If a reflecting IDL attribute has a floating-point number type (double or unrestricted double) that is limited to numbers greater
than zero, then the behavior is similar to the previous case, but zero and negative values are not allowed. On getting, the content
attribute must be parsed according to the rules for parsing floating-point number values p69 , and if that is successful and the value is
greater than 0.0, the resulting value must be returned. If, on the other hand, it fails or returns an out of range value, or if the attribute
is absent, the default value must be returned instead, or 0.0 if there is no default value. On setting, if the value is less than or equal to
zero, then the value must be ignored. Otherwise, the given value must be converted to the best representation of the number as a
floating-point number p69 and then that string must be used as the new content attribute value.

Note
The values Infinity and Not-a-Number (NaN) values throw an exception on setting, as defined in Web IDL. [WEBIDL] p1257

If a reflecting IDL attribute has the type DOMTokenList, then on getting it must return a DOMTokenList object whose associated
element is the element in question and whose associated attribute's local name is the name of the attribute in question.

2.7.2 Collections § p93

The HTMLFormControlsCollection p96 and HTMLOptionsCollection p97 interfaces are collections derived from the HTMLCollection
interface. The HTMLAllCollection p94 interface is a collection, but is not so derived.

2.7.2.1 The HTMLAllCollection p94 interface §


p93

The HTMLAllCollection p94 interface is used for the legacy document.all p1215 attribute. It operates similarly to HTMLCollection; the
main differences are that it allows a staggering variety of different (ab)uses of its methods to all end up returning something, and that
it can be called as a function as an alternative to property access.

93
Note
All HTMLAllCollection p94 objects are rooted at a Document p112 and have a filter that matches all elements, so the elements
represented by the collection of an HTMLAllCollection p94 object consist of all the descendant elements of the root Document p112 .

Objects that implement the HTMLAllCollection p94 interface are legacy platform objects with an additonal [[Call]] internal method
described in the section below p95 . They also have an [[IsHTMLDDA]] internal slot.

Note
Objects that implement the HTMLAllCollection p94 interface have several unusual behaviors, due of the fact that they have an
[[IsHTMLDDA]] internal slot:

• The ToBoolean abstract operation in JavaScript returns false when given objects implementing the HTMLAllCollection p94
interface.

• The Abstract Equality Comparison algorithm, when given objects implementing the HTMLAllCollection p94 interface,
returns true when compared to the undefined and null values. (Comparisons using the Strict Equality Comparison
algorithm, and Abstract Equality comparisons to other values such as strings or objects, are unaffected.)

• The typeof operator in JavaScript returns the string "undefined" when applied to objects implementing the
HTMLAllCollection p94 interface.

These special behaviors are motivated by a desire for compatibility with two classes of legacy content: one that uses the presence
of document.all p1215 as a way to detect legacy user agents, and one that only supports those legacy user agents and uses the
document.all p1215 object without testing for its presence first. [JAVASCRIPT] p1253

IDL
[Exposed=Window,
LegacyUnenumerableNamedProperties]
interface HTMLAllCollection {
readonly attribute unsigned long length;
getter Element (unsigned long index);
getter (HTMLCollection or Element)? namedItem(DOMString name);
(HTMLCollection or Element)? item(optional DOMString nameOrIndex);

// Note: HTMLAllCollection objects have a custom [[Call]] internal method and an [[IsHTMLDDA]]
internal slot.
};

For web developers (non-normative)


collection . length p95
Returns the number of elements in the collection.

element = collection . item p95 (index)


element = collection(index)
element = collection[index]
Returns the item with index index from the collection (determined by tree order).

element = collection . item p95 (name)


collection = collection . item p95 (name)
element = collection . namedItem p95 (name)
collection = collection . namedItem p95 (name)
element = collection(name)
collection = collection(name)
element = collection[name]
collection = collection[name]
Returns the item with ID or name name from the collection.
If there are multiple matching items, then an HTMLCollection object containing all those elements is returned.
Only button p521 , form p473 , iframe p350 , input p479 , map p430 , meta p160 , object p361 , select p523 , and textarea p534 elements can have a
name for the purpose of this method; their name is given by the value of their name attribute.

94
The object's supported property indices are as defined for HTMLCollection objects.

The supported property names consist of the non-empty values of all the id p134 attributes of all the elements represented by the
collection, and the non-empty values of all the name attributes of all the "all"-named elements p95 represented by the collection, in tree
order, ignoring later duplicates, with the id p134 of an element preceding its name if it contributes both, they differ from each other, and
neither is the duplicate of an earlier entry.

On getting, the length attribute must return the number of nodes represented by the collection.

The indexed property getter must return the result of getting the "all"-indexed element p95 from this HTMLAllCollection p94 given the
passed index.

The namedItem(name) method must return the result of getting the "all"-named element(s) p95 from this HTMLAllCollection p94 given
name.

The item(nameOrIndex) method must perform the following steps:

1. If nameOrIndex was not provided, return null.

2. Return the result of getting the "all"-indexed or named element(s) p95 from this HTMLAllCollection p94 , given nameOrIndex.

The following elements are "all"-named elements: a p232 , button p521 , embed p358 , form p473 , frame p1206 , frameset p1205 , iframe p350 , img p310 ,
input p479 , map p430 , meta p160 , object p361 , select p523 , and textarea p534

To get the "all"-indexed element from an HTMLAllCollection p94 collection given an index index, return the indexth element in
collection, or null if there is no such indexth element.

To get the "all"-named element(s) from an HTMLAllCollection p94 collection given a name name, perform the following steps:

1. If name is the empty string, return null.

2. Let subCollection be an HTMLCollection object rooted at the same Document p112 as collection, whose filter matches only
elements that are either:

◦ "all"-named elements p95 with a name attribute equal to name, or,

◦ elements with an ID equal to name.

3. If there is exactly one element in subCollection, then return that element.

4. Otherwise, if subCollection is empty, return null.

5. Otherwise, return subCollection.

To get the "all"-indexed or named element(s) from an HTMLAllCollection p94 collection given nameOrIndex:

1. If nameOrIndex, converted to a JavaScript String value, is an array index property name, return the result of getting the "all"-
indexed element p95 from this HTMLAllCollection p94 given the number represented by nameOrIndex.

2. Return the result of getting the "all"-named element(s) p95 from this HTMLAllCollection p94 given nameOrIndex.

2.7.2.1.1 [[Call]] ( thisArgument, argumentsList ) § p95

1. If argumentsList's size is zero, or if argumentsList[0] is undefined, return null.

2. Let nameOrIndex be the result of converting argumentsList[0] to a DOMString.

3. Let result be the result of getting the "all"-indexed or named element(s) p95 from this HTMLAllCollection p94 given
nameOrIndex.

4. Return the result of converting result to an ECMAScript value.

95
Note
The thisArgument is ignored, and thus code such as Function.prototype.call.call(document.all, null, "x") will still search
for elements. (document.all.call does not exist, since document.all does not inherit from Function.prototype.)

2.7.2.2 The HTMLFormControlsCollection p96 interface §


p96

The HTMLFormControlsCollection p96 interface is used for collections of listed elements p473 in form p473 elements.

IDL

[Exposed=Window] MDN
interface HTMLFormControlsCollection : HTMLCollection {
// inherits length and item()
getter (RadioNodeList or Element)? namedItem(DOMString name); // shadows inherited namedItem()
};

[Exposed=Window]
interface RadioNodeList : NodeList {
attribute DOMString value;
};

For web developers (non-normative)


collection . length
Returns the number of elements in the collection.

element = collection . item(index)


element = collection[index]
Returns the item with index index from the collection. The items are sorted in tree order.

element = collection . namedItem p96 (name)


radioNodeList = collection . namedItem p96 (name)
element = collection[name]
radioNodeList = collection[name]
Returns the item with ID or name p553 name from the collection.
If there are multiple matching items, then a RadioNodeList p96 object containing all those elements is returned.

radioNodeList . value [ = value ]


Returns the value of the first checked radio button represented by the object.
Can be set, to check the first radio button with the given value represented by the object.

The object's supported property indices are as defined for HTMLCollection objects.

The supported property names consist of the non-empty values of all the id p134 and name p553 attributes of all the elements represented
by the collection, in tree order, ignoring later duplicates, with the id p134 of an element preceding its name p553 if it contributes both, they
differ from each other, and neither is the duplicate of an earlier entry.

The namedItem(name) method must act according to the following algorithm: ⋰


MDN
1. If name is the empty string, return null and stop the algorithm.

2. If, at the time the method is called, there is exactly one node in the collection that has either an id p134 attribute or a name p553
attribute equal to name, then return that node and stop the algorithm.

3. Otherwise, if there are no nodes in the collection that have either an id p134 attribute or a name p553 attribute equal to name,
then return null and stop the algorithm.

4. Otherwise, create a new RadioNodeList p96 object representing a live p45 view of the HTMLFormControlsCollection p96 object,
further filtered so that the only nodes in the RadioNodeList p96 object are those that have either an id p134 attribute or a
name p553 attribute equal to name. The nodes in the RadioNodeList p96 object must be sorted in tree order.

5. Return that RadioNodeList p96 object.

96
Members of the RadioNodeList p96 interface inherited from the NodeList interface must behave as they would on a NodeList object.


The value IDL attribute on the RadioNodeList p96 object, on getting, must return the value returned by running the following steps:
MDN
1. Let element be the first element in tree order represented by the RadioNodeList p96 object that is an input p479 element
whose type p481 attribute is in the Radio Button p500 state and whose checkedness p550 is true. Otherwise, let it be null.

2. If element is null, return the empty string.

3. If element is an element with no value p483 attribute, return the string "on".

4. Otherwise, return the value of element's value p483 attribute.

On setting, the value p97 IDL attribute must run the following steps:

1. If the new value is the string "on": let element be the first element in tree order represented by the RadioNodeList p96 object
that is an input p479 element whose type p481 attribute is in the Radio Button p500 state and whose value p483 content attribute is
either absent, or present and equal to the new value, if any. If no such element exists, then instead let element be null.

Otherwise: let element be the first element in tree order represented by the RadioNodeList p96 object that is an input p479
element whose type p481 attribute is in the Radio Button p500 state and whose value p483 content attribute is present and equal
to the new value, if any. If no such element exists, then instead let element be null.

2. If element is not null, then set its checkedness p550 to true.

2.7.2.3 The HTMLOptionsCollection p97 interface §


p97

The HTMLOptionsCollection p97 interface is used for collections of option p531 elements. It is always rooted on a select p523 element
and has attributes and methods that manipulate that element's descendants.

IDL
[Exposed=Window]
interface HTMLOptionsCollection : HTMLCollection {
// inherits item(), namedItem()
[CEReactions] attribute unsigned long length; // shadows inherited length
[CEReactions] setter void (unsigned long index, HTMLOptionElement? option);
[CEReactions] void add((HTMLOptionElement or HTMLOptGroupElement) element, optional (HTMLElement or
long)? before = null);
[CEReactions] void remove(long index);
attribute long selectedIndex;
};

For web developers (non-normative)


collection . length p98 [ = value ]
Returns the number of elements in the collection.
When set to a smaller number, truncates the number of option p531 elements in the corresponding container.
When set to a greater number, adds new blank option p531 elements to that container.

element = collection . item(index)


element = collection[index]
Returns the item with index index from the collection. The items are sorted in tree order.

collection[index] = element
When index is a greater number than the number of items in the collection, adds new blank option p531 elements in the
corresponding container.
When set to null, removes the item at index index from the collection.
When set to an option p531 element, adds or replaces it at index index from the collection.

element = collection . namedItem(name)


element = collection[name]
Returns the item with ID or name p1199 name from the collection.

97
If there are multiple matching items, then the first is returned.

collection . add p98 (element [, before ] )


Inserts element before the node given by before.
The before argument can be a number, in which case element is inserted before the item with that number, or an element from
the collection, in which case element is inserted before that element.
If before is omitted, null, or a number out of range, then element will be added at the end of the list.
This method will throw a "HierarchyRequestError" DOMException if element is an ancestor of the element into which it is to be
inserted.

collection . remove p99 (index)


Removes the item with index index from the collection.

collection . selectedIndex p99 [ = value ]


Returns the index of the first selected item, if any, or −1 if there is no selected item.
Can be set, to change the selection.

The object's supported property indices are as defined for HTMLCollection objects.

On getting, the length attribute must return the number of nodes represented by the collection.

On setting, the behavior depends on whether the new value is equal to, greater than, or less than the number of nodes represented by
the collection at that time. If the number is the same, then setting the attribute must do nothing. If the new value is greater, then n
new option p531 elements with no attributes and no child nodes must be appended to the select p523 element on which the
HTMLOptionsCollection p97 is rooted, where n is the difference between the two numbers (new value minus old value). Mutation
events must be fired as if a DocumentFragment containing the new option p531 elements had been inserted. If the new value is lower,
then the last n nodes in the collection must be removed from their parent nodes, where n is the difference between the two numbers
(old value minus new value).

Note
Setting length p98 never removes or adds any optgroup p530 elements, and never adds new children to existing optgroup p530
elements (though it can remove children from them).

The supported property names consist of the non-empty values of all the id p134 and name p1199 attributes of all the elements represented
by the collection, in tree order, ignoring later duplicates, with the id p134 of an element preceding its name p1199 if it contributes both, they
differ from each other, and neither is the duplicate of an earlier entry.

When the user agent is to set the value of a new indexed property or set the value of an existing indexed property for a given property
index index to a new value value, it must run the following algorithm:

1. If value is null, invoke the steps for the remove p99 method with index as the argument, and return.

2. Let length be the number of nodes represented by the collection.

3. Let n be index minus length.

4. If n is greater than zero, then append a DocumentFragment consisting of n-1 new option p531 elements with no attributes and
no child nodes to the select p523 element on which the HTMLOptionsCollection p97 is rooted.

5. If n is greater than or equal to zero, append value to the select p523 element. Otherwise, replace the indexth element in the
collection by value.

The add(element, before) method must act according to the following algorithm:

1. If element is an ancestor of the select p523 element on which the HTMLOptionsCollection p97 is rooted, then throw a
"HierarchyRequestError" DOMException.

2. If before is an element, but that element isn't a descendant of the select p523 element on which the
HTMLOptionsCollection p97 is rooted, then throw a "NotFoundError" DOMException.

3. If element and before are the same element, then return.

98
4. If before is a node, then let reference be that node. Otherwise, if before is an integer, and there is a beforeth node in the
collection, let reference be that node. Otherwise, let reference be null.

5. If reference is not null, let parent be the parent node of reference. Otherwise, let parent be the select p523 element on which
the HTMLOptionsCollection p97 is rooted.

6. Pre-insert element into parent node before reference.

The remove(index) method must act according to the following algorithm:

1. If the number of nodes represented by the collection is zero, return.

2. If index is not a number greater than or equal to 0 and less than the number of nodes represented by the collection, return.

3. Let element be the indexth element in the collection.

4. Remove element from its parent node.

The selectedIndex IDL attribute must act like the identically named attribute on the select p523 element on which the
HTMLOptionsCollection p97 is rooted


MDN

2.7.3 The DOMStringList p99 interface §


p99

The DOMStringList p99 interface is a non-fashionable retro way of representing a list of strings.

IDL
[Exposed=(Window,Worker)]
interface DOMStringList {
readonly attribute unsigned long length;
getter DOMString? item(unsigned long index);
boolean contains(DOMString string);
};

⚠Warning!
New APIs must use sequence<DOMString> or equivalent rather than DOMStringList p99 .

For web developers (non-normative)


strings . length p99
Returns the number of strings in strings.

strings[index]
strings . item p99 (index)
Returns the string with index index from strings.

strings . contains p99 (string)


Returns true if strings contains string, and false otherwise.

Each DOMStringList p99 object has an associated list.

The supported property indices for a DOMStringList p99 object are the numbers zero to the associated list's size minus one. If its
associated list is empty, it has no supported property indices.

The length attribute's getter must return this DOMStringList p99 object's associated list's size.

The item(index) method, when invoked, must return the indexth item in this DOMStringList p99 object's associated list, or null if index
plus one is greater than this DOMStringList p99 object's associated list's size.

The contains(string) method, when invoked, must return true if this DOMStringList p99 object's associated list contains string, and
false otherwise.

99
2.8 Safe passing of structured data § p10
0

This section uses the terminology and typographic conventions from the JavaScript specification. [JAVASCRIPT] p1253

2.8.1 Serializable objects § p10


0

Serializable objects p100 support being serialized, and later deserialized, in a way that is independent of any given JavaScript Realm. This
allows them to be stored on disk and later restored, or cloned across agent and even agent cluster boundaries.

Not all objects are serializable objects p100 , and not all aspects of objects that are serializable objects p100 are necessarily preserved when
they are serialized.

Platform objects can be serializable objects p100 if their primary interface is decorated with the [Serializable] IDL extended attribute.
Such interfaces must also define the following algorithms:

serialization steps, taking a platform object value, a Record serialized, and a boolean forStorage
A set of steps that serializes the data in value into fields of serialized. The resulting data serialized into serialized must be
independent of any JavaScript Realm.

These steps may throw an exception if serialization is not possible.

These steps may perform a sub-serialization p104 to serialize nested data structures. They should not call StructuredSerialize p105
directly, as doing so will omit the important memory argument.

The introduction of these steps should omit mention of the forStorage argument if it is not relevant to the algorithm.

deserialization steps, taking a Record serialized and a platform object value


A set of steps that deserializes the data in serialized, using it to set up value as appropriate. value will be a newly-created instance
of the platform object type in question, with none of its internal data set up; setting that up is the job of these steps.

These steps may throw an exception if deserialization is not possible.

These steps may perform a sub-deserialization p108 to deserialize nested data structures. They should not call
StructuredDeserialize p106 directly, as doing so will omit the important targetRealm and memory arguments.

It is up to the definition of individual platform objects to determine what data is serialized and deserialized by these steps. Typically the
steps are very symmetric.

The [Serializable] p100 extended attribute must take no arguments, and must only appear on an interface. It must not appear more
than once on an interface.

For a given platform object, only the object's primary interface is considered during the (de)serialization process. Thus, if inheritance is
involved in defining the interface, each [Serializable] p100 -annotated interface in the inheritance chain needs to define standalone
serialization steps p100 and deserialization steps p100 , including taking into account any important data that might come from inherited
interfaces.

Example
Let's say we were defining a platform object Person, which had associated with it two pieces of associated data:

• a name value, which is a string;


• and a best friend value, which is either another Person instance or null

We could then define Person instances to be serializable objects p100 by annotating the Person interface with the
[Serializable] p100 extended attribute, and defining the following accompanying algorithms:

serialization steps p100

1. Set serialized.[[Name]] to value's associated name value.

2. Let serializedBestFriend be the sub-serialization p104 of value's associated best friend value.

3. Set serialized.[[BestFriend]] to serializedBestFriend.

100
deserialization steps p100

1. Set value's associated name value to serialized.[[Name]].

2. Let deserializedBestFriend be the sub-deserialization p108 of serialized.[[BestFriend]].

3. Set value's associated best friend value to deserializedBestFriend.

Objects defined in the JavaScript specification are handled by the StructuredSerialize p105 abstract operation directly.

Note
Originally, this specification defined the concept of "cloneable objects", which could be cloned from one JavaScript Realm to
another. However, to better specify the behavior of certain more complex situations, the model was updated to make the
serialization and deserialization explicit.


MDN

2.8.2 Transferable objects § p10


1

p101
Transferable objects support being transferred across agents. Transferring is effectively recreating the object while sharing a
reference to the underlying data and then detaching the object being transferred. This is useful to transfer ownership of expensive
resources. Not all objects are transferable objects p101 and not all aspects of objects that are transferable objects p101 are necessarily
preserved when transferred.

Note
Transferring is an irreversible and non-idempotent operation. Once an object has been transferred, it cannot be transferred, or
indeed used, again.

Platform objects can be transferable objects p101 if their primary interface is decorated with the [Transferable] IDL extended attribute.
Such interfaces must also define the following algorithms:

transfer steps, taking a platform object value and a Record dataHolder


A set of steps that transfers the data in value into fields of dataHolder. The resulting data held in dataHolder must be independent
of any JavaScript Realm.

These steps may throw an exception if transferral is not possible.

transfer-receiving steps, taking a Record dataHolder and a platform object value


A set of steps that receives the data in dataHolder, using it to set up value as appropriate. value will be a newly-created instance of
the platform object type in question, with none of its internal data set up; setting that up is the job of these steps.

These steps may throw an exception if it is not possible to receive the transfer.

It is up to the definition of individual platform objects to determine what data is transferred by these steps. Typically the steps are very
symmetric.

The [Transferable] p101 extended attribute must take no arguments, and must only appear on an interface. It must not appear more
than once on an interface.

For a given platform object, only the object's primary interface is considered during the transferring process. Thus, if inheritance is
involved in defining the interface, each [Transferable] p101 -annotated interface in the inheritance chain needs to define standalone
transfer steps p101 and transfer-receiving steps p101 , including taking into account any important data that might come from inherited
interfaces.

Platform objects that are transferable objects p101 have a [[Detached]] internal slot. This is used to ensure that once a platform object
has been transferred, it cannot be transferred again.

Objects defined in the JavaScript specification are handled by the StructuredSerializeWithTransfer p108 abstract operation directly.

101
2.8.3 StructuredSerializeInternal ( value, forStorage [ , memory ] ) § p10
2

p102
The StructuredSerializeInternal abstract operation takes as input a JavaScript value value and serializes it to a Realm-independent
form, represented here as a Record. This serialized form has all the information necessary to later deserialize into a new JavaScript
value in a different Realm.

This process can throw an exception, for example when trying to serialize un-serializable objects.

1. If memory was not supplied, let memory be an empty map.

Note
The purpose of the memory map is to avoid serializing objects twice. This ends up preserving cycles and the identity of
duplicate objects in graphs.

2. If memory[value] exists, then return memory[value].

3. Let deep be false.

4. If Type(value) is Undefined, Null, Boolean, Number, BigInt, or String, then return { [[Type]]: "primitive", [[Value]]: value }.

5. If Type(value) is Symbol, then throw a "DataCloneError" DOMException.

6. Let serialized be an uninitialized value.

7. If value has a [[BooleanData]] internal slot, then set serialized to { [[Type]]: "Boolean", [[BooleanData]]:
value.[[BooleanData]] }.

8. Otherwise, if value has a [[NumberData]] internal slot, then set serialized to { [[Type]]: "Number", [[NumberData]]:
value.[[NumberData]] }.

9. Otherwise, if value has a [[BigIntData]] internal slot, then set serialized to { [[Type]]: "BigInt", [[BigIntData]]:
value.[[BigIntData]] }.

10. Otherwise, if value has a [[StringData]] internal slot, then set serialized to { [[Type]]: "String", [[StringData]]:
value.[[StringData]] }.

11. Otherwise, if value has a [[DateValue]] internal slot, then set serialized to { [[Type]]: "Date", [[DateValue]]:
value.[[DateValue]] }.

12. Otherwise, if value has a [[RegExpMatcher]] internal slot, then set serialized to { [[Type]]: "RegExp", [[RegExpMatcher]]:
value.[[RegExpMatcher]], [[OriginalSource]]: value.[[OriginalSource]], [[OriginalFlags]]: value.[[OriginalFlags]] }.

13. Otherwise, if value has an [[ArrayBufferData]] internal slot, then:

1. Let size be value.[[ArrayBufferByteLength]].

2. If ! IsSharedArrayBuffer(value) is true, then:

1. If forStorage is true, then throw a "DataCloneError" DOMException.

2. Set serialized to { [[Type]]: "SharedArrayBuffer", [[ArrayBufferData]]: value.[[ArrayBufferData]],


[[ArrayBufferByteLength]]: size, [[AgentCluster]]: the current Realm Record's corresponding agent cluster
}.

3. Otherwise:

1. If ! IsDetachedBuffer(value) is true, then throw a "DataCloneError" DOMException.

2. Let dataCopy be ? CreateByteDataBlock(size).

Note
This can throw a RangeError exception upon allocation failure.

3. Perform ! CopyDataBlockBytes(dataCopy, 0, value.[[ArrayBufferData]], 0, size).

4. Set serialized to { [[Type]]: "ArrayBuffer", [[ArrayBufferData]]: dataCopy, [[ArrayBufferByteLength]]: size


}.

14. Otherwise, if value has a [[ViewedArrayBuffer]] internal slot, then:

102
1. Let buffer be the value of value's [[ViewedArrayBuffer]] internal slot.

2. Let bufferSerialized be ? StructuredSerializeInternal p102 (buffer, forStorage, memory).

3. Assert: bufferSerialized.[[Type]] is "ArrayBuffer".

4. If value has a [[DataView]] internal slot, then set serialized to { [[Type]]: "ArrayBufferView", [[Constructor]]:
"DataView", [[ArrayBufferSerialized]]: bufferSerialized, [[ByteLength]]: value.[[ByteLength]], [[ByteOffset]]:
value.[[ByteOffset]] }.

5. Otherwise:

1. Assert: value has a [[TypedArrayName]] internal slot.

2. Set serialized to { [[Type]]: "ArrayBufferView", [[Constructor]]: value.[[TypedArrayName]],


[[ArrayBufferSerialized]]: bufferSerialized, [[ByteLength]]: value.[[ByteLength]], [[ByteOffset]]:
value.[[ByteOffset]], [[ArrayLength]]: value.[[ArrayLength]] }.

15. Otherwise, if value has [[MapData]] internal slot, then:

1. Set serialized to { [[Type]]: "Map", [[MapData]]: a new empty List }.

2. Set deep to true.

16. Otherwise, if value has [[SetData]] internal slot, then:

1. Set serialized to { [[Type]]: "Set", [[SetData]]: a new empty List }.

2. Set deep to true.

17. Otherwise, if value has an [[ErrorData]] internal slot and value is not a platform object, then:

1. Let prototype be "Error".

2. Let valueProto be ! value.[[GetPrototypeOf]]().

3. If valueProto is %EvalErrorPrototype% p54 , then set prototype to "EvalError".

4. If valueProto is %RangeErrorPrototype% p54 , then set prototype to "RangeError".

5. If valueProto is %ReferenceErrorPrototype% p54 , then set prototype to "ReferenceError".

6. If valueProto is %SyntaxErrorPrototype% p54 , then set prototype to "SyntaxError".

7. If valueProto is %TypeErrorPrototype% p54 , then set prototype to "TypeError".

8. If valueProto is %URIErrorPrototype% p54 , then set prototype to "URIError".

9. Let valueMessageDesc be ? value.[[GetOwnProperty]]("message").

10. Let message be undefined if IsDataDescriptor(valueMessageDesc) is false, and ?


ToString(valueMessageDesc.[[Value]]) otherwise.

11. Set serialized to { [[Type]]: "Error", [[Prototype]]: prototype, [[Message]]: message }.

12. User agents should attach a serialized representation of any interesting accompanying data which are not yet
specified, notably the stack property, to serialized.

Note
See the Error Stacks proposal for in-progress work on specifying this data. [JSERRORSTACKS] p1253

18. Otherwise, if value is an Array exotic object, then:

1. Let valueLenDescriptor be ? OrdinaryGetOwnProperty(value, "length").

2. Let valueLen be valueLenDescriptor.[[Value]].

3. Set serialized to { [[Type]]: "Array", [[Length]]: valueLen, [[Properties]]: a new empty List }.

4. Set deep to true.

19. Otherwise, if value is a platform object that is a serializable object p100 :


103
1. If value has a [[Detached]] p101 internal slot whose value is true, then throw a "DataCloneError" DOMException.

2. Let typeString be the identifier of the primary interface of value.

3. Set serialized to { [[Type]]: typeString }.

4. Set deep to true.

20. Otherwise, if value is a platform object, then throw a "DataCloneError" DOMException.

21. Otherwise, if IsCallable(value) is true, then throw a "DataCloneError" DOMException.

22. Otherwise, if value has any internal slot other than [[Prototype]] or [[Extensible]], then throw a "DataCloneError"
DOMException.

Example
For instance, a [[PromiseState]] or [[WeakMapData]] internal slot.

23. Otherwise, if value is an exotic object, then throw a "DataCloneError" DOMException.

Example
For instance, a proxy object.

24. Otherwise:

1. Set serialized to { [[Type]]: "Object", [[Properties]]: a new empty List }.

2. Set deep to true.

25. Set memory[value] to serialized.

26. If deep is true, then:

1. If value has a [[MapData]] internal slot, then:

1. Let copiedList be a new empty List.

2. For each Record { [[Key]], [[Value]] } entry of value.[[MapData]]:

1. Let copiedEntry be a new Record { [[Key]]: entry.[[Key]], [[Value]]: entry.[[Value]] }.

2. If copiedEntry.[[Key]] is not the special value empty, append copiedEntry to copiedList.

3. For each Record { [[Key]], [[Value]] } entry of copiedList:

1. Let serializedKey be ? StructuredSerializeInternal p102 (entry.[[Key]], forStorage, memory).

2. Let serializedValue be ? StructuredSerializeInternal p102 (entry.[[Value]], forStorage, memory).

3. Append { [[Key]]: serializedKey, [[Value]]: serializedValue } to serialized.[[MapData]].

2. Otherwise, if value has a [[SetData]] internal slot, then:

1. Let copiedList be a new empty List.

2. For each entry of value.[[SetData]]:

1. If entry is not the special value empty, append entry to copiedList.

3. For each entry of copiedList:

1. Let serializedEntry be ? StructuredSerializeInternal p102 (entry, forStorage, memory).

2. Append serializedEntry to serialized.[[SetData]].

3. Otherwise, if value is a platform object that is a serializable object p100 , then perform the serialization steps p100 for
value's primary interface, given value, serialized, and forStorage.

The serialization steps p100 may need to perform a sub-serialization. This is an operation which takes as input a
value subValue, and returns StructuredSerializeInternal p102 (subValue, forStorage, memory). (In other words, a sub-
serialization p104 is a specialization of StructuredSerializeInternal p102 to be consistent within this invocation.)

104
4. Otherwise:

1. Let enumerableKeys be a new empty List.

2. For each key in ! value.[[OwnPropertyKeys]]():

1. If Type(key) is String, then:

1. Let valueDesc be ! value.[[GetOwnProperty]](key).

2. If valueDesc.[[Enumerable]] is true, then append key to enumerableKeys.

3. For each key in enumerableKeys:

1. If ! HasOwnProperty(value, key) is true, then:

1. Let inputValue be ? value.[[Get]](key, value).

2. Let outputValue be ? StructuredSerializeInternal p102 (inputValue, forStorage, memory).

3. Append { [[Key]]: key, [[Value]]: outputValue } to serialized.[[Properties]].

Note
The key collection performed above is very similar to the JavaScript specification's EnumerableOwnProperties
operation, but crucially it uses the deterministic ordering provided by the [[OwnPropertyKeys]] internal
method, instead of reordering the keys in an unspecified manner as EnumerableOwnProperties does.
[JAVASCRIPT] p1253

27. Return serialized.

Example
It's important to realize that the Records produced by StructuredSerializeInternal p102 might contain "pointers" to other records that
create circular references. For example, when we pass the following JavaScript object into StructuredSerializeInternal p102 :

const o = {};
o.myself = o;

it produces the following result:

{
[[Type]]: "Object",
[[Properties]]: «
{
[[Key]]: "myself",
[[Value]]: <a pointer to this whole structure>
}
»
}

2.8.4 StructuredSerialize ( value ) § p10


5

1. Return ? StructuredSerializeInternal p102 (value, false).

2.8.5 StructuredSerializeForStorage ( value ) § p10


5

p102
1. Return ? StructuredSerializeInternal (value, true).

105
2.8.6 StructuredDeserialize ( serialized, targetRealm [ , memory ] ) § p10
6

p106
The StructuredDeserialize abstract operation takes as input a Record serialized, which was previously produced by
StructuredSerialize p105 or StructuredSerializeForStorage p105 , and deserializes it into a new JavaScript value, created in targetRealm.

This process can throw an exception, for example when trying to allocate memory for the new objects (especially ArrayBuffer
objects).

1. If memory was not supplied, let memory be an empty map.

Note
The purpose of the memory map is to avoid deserializing objects twice. This ends up preserving cycles and the identity
of duplicate objects in graphs.

2. If memory[serialized] exists, then return memory[serialized].

3. Let deep be false.

4. Let value be an uninitialized value.

5. If serialized.[[Type]] is "primitive", then set value to serialized.[[Value]].

6. Otherwise, if serialized.[[Type]] is "Boolean", then set value to a new Boolean object in targetRealm whose [[BooleanData]]
internal slot value is serialized.[[BooleanData]].

7. Otherwise, if serialized.[[Type]] is "Number", then set value to a new Number object in targetRealm whose [[NumberData]]
internal slot value is serialized.[[NumberData]].

8. Otherwise, if serialized.[[Type]] is "BigInt", then set value to a new BigInt object in targetRealm whose [[BigIntData]] internal
slot value is serialized.[[BigIntData]].

9. Otherwise, if serialized.[[Type]] is "String", then set value to a new String object in targetRealm whose [[StringData]] internal
slot value is serialized.[[StringData]].

10. Otherwise, if serialized.[[Type]] is "Date", then set value to a new Date object in targetRealm whose [[DateValue]] internal
slot value is serialized.[[DateValue]].

11. Otherwise, if serialized.[[Type]] is "RegExp", then set value to a new RegExp object in targetRealm whose [[RegExpMatcher]]
internal slot value is serialized.[[RegExpMatcher]], whose [[OriginalSource]] internal slot value is serialized.[[OriginalSource]],
and whose [[OriginalFlags]] internal slot value is serialized.[[OriginalFlags]].

12. Otherwise, if serialized.[[Type]] is "SharedArrayBuffer", then:

1. If targetRealm's corresponding agent cluster is not serialized.[[AgentCluster]], then then throw a


"DataCloneError" DOMException.

2. Otherwise, set value to a new SharedArrayBuffer object in targetRealm whose [[ArrayBufferData]] internal slot
value is serialized.[[ArrayBufferData]] and whose [[ArrayBufferByteLength]] internal slot value is
serialized.[[ArrayBufferByteLength]].

13. Otherwise, if serialized.[[Type]] is "ArrayBuffer", then set value to a new ArrayBuffer object in targetRealm whose
[[ArrayBufferData]] internal slot value is serialized.[[ArrayBufferData]], and whose [[ArrayBufferByteLength]] internal slot
value is serialized.[[ArrayBufferByteLength]].

If this throws an exception, catch it, and then throw a "DataCloneError" DOMException.

Note
This step might throw an exception if there is not enough memory available to create such an ArrayBuffer object.

14. Otherwise, if serialized.[[Type]] is "ArrayBufferView", then:

1. Let deserializedArrayBuffer be ? StructuredDeserialize p106 (serialized.[[ArrayBufferSerialized]], targetRealm,


memory).

2. If serialized.[[Constructor]] is "DataView", then set value to a new DataView object in targetRealm whose
[[ViewedArrayBuffer]] internal slot value is deserializedArrayBuffer, whose [[ByteLength]] internal slot value is
serialized.[[ByteLength]], and whose [[ByteOffset]] internal slot value is serialized.[[ByteOffset]].

106
3. Otherwise, set value to a new typed array object in targetRealm, using the constructor given by
serialized.[[Constructor]], whose [[ViewedArrayBuffer]] internal slot value is deserializedArrayBuffer, whose
[[TypedArrayName]] internal slot value is serialized.[[Constructor]], whose [[ByteLength]] internal slot value is
serialized.[[ByteLength]], whose [[ByteOffset]] internal slot value is serialized.[[ByteOffset]], and whose
[[ArrayLength]] internal slot value is serialized.[[ArrayLength]].

15. Otherwise, if serialized.[[Type]] is "Map", then:

1. Set value to a new Map object in targetRealm whose [[MapData]] internal slot value is a new empty List.

2. Set deep to true.

16. Otherwise, if serialized.[[Type]] is "Set", then:

1. Set value to a new Set object in targetRealm whose [[SetData]] internal slot value is a new empty List.

2. Set deep to true.

17. Otherwise, if serialized.[[Type]] is "Array", then:

1. Let outputProto be targetRealm.[[Intrinsics]].[[%ArrayPrototype%]].

2. Set value to ! ArrayCreate(serialized.[[Length]], outputProto).

3. Set deep to true.

18. Otherwise, if serialized.[[Type]] is "Object", then:

1. Set value to a new Object in targetRealm.

2. Set deep to true.

19. Otherwise, if serialized.[[Type]] is "Error", then:

1. Let prototype be %ErrorPrototype%.

2. If serialized.[[Prototype]] is "EvalError", then set prototype to %EvalErrorPrototype% p54 .

3. If serialized.[[Prototype]] is "RangeError", then set prototype to %RangeErrorPrototype% p54 .

4. If serialized.[[Prototype]] is "ReferenceError", then set prototype to %ReferenceErrorPrototype% p54 .

5. If serialized.[[Prototype]] is "SyntaxError", then set prototype to %SyntaxErrorPrototype% p54 .

6. If serialized.[[Prototype]] is "TypeError", then set prototype to %TypeErrorPrototype% p54 .

7. If serialized.[[Prototype]] is "URIError", then set prototype to %URIErrorPrototype% p54 .

8. Let message be serialized.[[Message]].

9. Set value to ! ObjectCreate(prototype, « [[ErrorData]] »).

10. Let messageDesc be PropertyDescriptor{ [[Value]]: message, [[Writable]]: true, [[Enumerable]]: false,
[[Configurable]]: true }.

11. If message is not undefined, then perform ! OrdinaryDefineOwnProperty(value, "message", messageDesc).

12. Any interesting accompanying data attached to serialized should be deserialized and attached to value.

20. Otherwise:

1. Let interfaceName be serialized.[[Type]].

2. If the interface identified by interfaceName is not exposed in targetRealm, then throw a "DataCloneError"
DOMException.

3. Set value to a new instance of the interface identified by interfaceName, created in targetRealm.

4. Set deep to true.

21. Set memory[serialized] to value.

22. If deep is true, then:


107
1. If serialized.[[Type]] is "Map", then:

1. For each Record { [[Key]], [[Value]] } entry of serialized.[[MapData]]:

1. Let deserializedKey be ? StructuredDeserialize p106 (entry.[[Key]], targetRealm, memory).

2. Let deserializedValue be ? StructuredDeserialize p106 (entry.[[Value]], targetRealm, memory).

3. Append { [[Key]]: deserializedKey, [[Value]]: deserializedValue } to value.[[MapData]].

2. Otherwise, if serialized.[[Type]] is "Set", then:

1. For each entry of serialized.[[SetData]]:

1. Let deserializedEntry be ? StructuredDeserialize p106 (entry, targetRealm, memory).

2. Append deserializedEntry to value.[[SetData]].

3. Otherwise, if serialized.[[Type]] is "Array" or "Object", then:

1. For each Record { [[Key]], [[Value]] } entry of serialized.[[Properties]]:

1. Let deserializedValue be ? StructuredDeserialize p106 (entry.[[Value]], targetRealm, memory).

2. Let result be ! CreateDataProperty(value, entry.[[Key]], deserializedValue).

3. Assert: result is true.

4. Otherwise:

1. Perform the appropriate deserialization steps p100 for the interface identified by serialized.[[Type]], given
serialized and value.

The deserialization steps p100 may need to perform a sub-deserialization. This is an operation which
takes as input a previously-serialized Record subSerialized, and returns
StructuredDeserialize p106 (subSerialized, targetRealm, memory). (In other words, a sub-deserialization p108
is a specialization of StructuredDeserialize p106 to be consistent within this invocation.)

23. Return value.

2.8.7 StructuredSerializeWithTransfer ( value, transferList ) § p10


8

1. Let memory be an empty map.

Note
In addition to how it is used normally by StructuredSerializeInternal p102 , in this algorithm memory is also used to ensure
that StructuredSerializeInternal p102 ignores items in transferList, and let us do our own handling instead.

2. For each transferable of transferList:

1. If transferable has neither an [[ArrayBufferData]] internal slot nor a [[Detached]] p101 internal slot, then throw a
"DataCloneError" DOMException.

2. If transferable has an [[ArrayBufferData]] internal slot and ! IsSharedArrayBuffer(transferable) is true, then throw a
"DataCloneError" DOMException.

3. If memory[transferable] exists, then throw a "DataCloneError" DOMException.

4. Set memory[transferable] to { [[Type]]: an uninitialized value }.

Note
transferable is not transferred yet as transferring has side effects and StructuredSerializeInternal p102 needs to
be able to throw first.

3. Let serialized be ? StructuredSerializeInternal p102 (value, false, memory).

108
4. Let transferDataHolders be a new empty List.

5. For each transferable of transferList:

1. If transferable has an [[ArrayBufferData]] internal slot and ! IsDetachedBuffer(transferable) is true, then throw a
"DataCloneError" DOMException.

2. If transferable has a [[Detached]] p101 internal slot and transferable.[[Detached]] p101 is true, then throw a
"DataCloneError" DOMException.

3. Let dataHolder be memory[transferable].

4. If transferable has an [[ArrayBufferData]] internal slot, then:

1. Set dataHolder.[[Type]] to "ArrayBuffer".

2. Set dataHolder.[[ArrayBufferData]] to transferable.[[ArrayBufferData]].

3. Set dataHolder.[[ArrayBufferByteLength]] to transferable.[[ArrayBufferByteLength]].

4. Perform ? DetachArrayBuffer(transferable).

Note
Specifications can use the [[ArrayBufferDetachKey]] internal slot to prevent ArrayBuffers from
being detached. This is used in WebAssembly JavaScript Interface, for example. [WASMJS] p1257

5. Otherwise:

1. Assert: transferable is a platform object that is a transferable object p101 .

2. Let interfaceName be the identifier of the primary interface of transferable.

3. Set dataHolder.[[Type]] to interfaceName.

4. Perform the appropriate transfer steps p101 for the interface identified by interfaceName, given
transferable and dataHolder.

5. Set transferable.[[Detached]] p101 to true.

6. Append dataHolder to transferDataHolders.

6. Return { [[Serialized]]: serialized, [[TransferDataHolders]]: transferDataHolders }.

2.8.8 StructuredDeserializeWithTransfer ( serializeWithTransferResult, targetRealm ) § p10


9

1. Let memory be an empty map.

Note
Analogous to StructuredSerializeWithTransfer p108 , in addition to how it is used normally by StructuredDeserialize p106 , in
this algorithm memory is also used to ensure that StructuredDeserialize p106 ignores items in
serializeWithTransferResult.[[TransferDataHolders]], and let us do our own handling instead.

2. Let transferredValues be a new empty List.

3. For each transferDataHolder of serializeWithTransferResult.[[TransferDataHolders]]:

1. Let value be an uninitialized value.

2. If transferDataHolder.[[Type]] is "ArrayBuffer", then set value to a new ArrayBuffer object in targetRealm whose
[[ArrayBufferData]] internal slot value is transferDataHolder.[[ArrayBufferData]], and whose
[[ArrayBufferByteLength]] internal slot value is transferDataHolder.[[ArrayBufferByteLength]].

Note
In cases where the original memory occupied by [[ArrayBufferData]] is accessible during the deserialization,
this step is unlikely to throw an exception, as no new memory needs to be allocated: the memory occupied by
109
[[ArrayBufferData]] is instead just getting transferred into the new ArrayBuffer. This could be true, for example,
when both the source and target Realms are in the same process.

3. Otherwise:

1. Let interfaceName be transferDataHolder.[[Type]].

2. If the interface identified by interfaceName is not exposed in targetRealm, then throw a


"DataCloneError" DOMException.

3. Set value to a new instance of the interface identified by interfaceName, created in targetRealm.

4. Perform the appropriate transfer-receiving steps p101 for the interface identified by interfaceName given
transferDataHolder and value.

4. Set memory[transferDataHolder] to value.

5. Append value to transferredValues.

4. Let deserialized be ? StructuredDeserialize p106 (serializeWithTransferResult.[[Serialized]], targetRealm, memory).

5. Return { [[Deserialized]]: deserialized, [[TransferredValues]]: transferredValues }.

2.8.9 Performing serialization and transferring from other specifications § p11


0

Other specifications may use the abstract operations defined here. The following provides some guidance on when each abstract
operation is typically useful, with examples.

StructuredSerializeWithTransfer p108
StructuredDeserializeWithTransfer p109
Cloning a value to another JavaScript Realm, with a transfer list, but where the target Realm is not known ahead of time. In this case
the serialization step can be performed immediately, with the deserialization step delayed until the target Realm becomes known.

Example
messagePort.postMessage() p991 uses this pair of abstract operations, as the destination Realm is not known until the
MessagePort p989 has been shipped p989 .

StructuredSerialize p105
StructuredSerializeForStorage p105
StructuredDeserialize p106
Creating a JavaScript Realm-independent snapshot of a given value which can be saved for an indefinite amount of time, and then
reified back into a JavaScript value later, possibly multiple times.

StructuredSerializeForStorage p105 can be used for situations where the serialization is anticipated to be stored in a persistent
manner, instead of passed between Realms. It throws when attempting to serialize SharedArrayBuffer objects, since storing
shared memory does not make sense. Similarly, it can throw or possibly have different behavior when given a platform object with
custom serialization steps p100 when the forStorage argument is true.

Example
history.pushState() p828 and history.replaceState() p828 use StructuredSerializeForStorage p105 on author-supplied state
objects, storing them as serialized state p824 in the appropriate session history entry p824 . Then, StructuredDeserialize p106 is used
so that the history.state p826 property can return a clone of the originally-supplied state object.

Example
broadcastChannel.postMessage() p993 uses StructuredSerialize p105 on its input, then uses StructuredDeserialize p106 multiple
times on the result to produce a fresh clone for each destination being broadcast to. Note that transferring does not make sense
in multi-destination situations.

110
Example
Any API for persisting JavaScript values to the filesystem would also use StructuredSerializeForStorage p105 on its input and
StructuredDeserialize p106 on its output.

In general, call sites may pass in Web IDL values instead of JavaScript values; this is to be understood to perform an implicit conversion
to the JavaScript value before invoking these algorithms.

Note
This specification used to define a "structured clone" algorithm, and more recently a StructuredClone abstract operation. However,
in practice all known uses of it were better served by separate serialization and deserialization steps, so it was removed.

Call sites that are not invoked as a result of author code synchronously calling into a user agent method must take care to properly
prepare to run script p895 and prepare to run a callback p898 before invoking StructuredSerialize p105 , StructuredSerializeForStorage p105 , or
StructuredSerializeWithTransfer p108 abstract operations, if they are being performed on arbitrary objects. This is necessary because the
serialization process can invoke author-defined accessors as part of its final deep-serialization steps, and these accessors could call
into operations that rely on the entry p896 and incumbent p896 concepts being properly set up.

Example
window.postMessage() p985 performs StructuredSerializeWithTransfer p108 on its arguments, but is careful to do so immediately,
inside the synchronous portion of its algorithm. Thus it is able to use the algorithms without needing to prepare to run script p895
and prepare to run a callback p898 .

Example
In contrast, a hypothetical API that used StructuredSerialize p105 to serialize some author-supplied object periodically, directly from a
task p913 on the event loop p912 , would need to ensure it performs the appropriate preparations beforehand. As of this time, we know
of no such APIs on the platform; usually it is simpler to perform the serialization ahead of time, as a synchronous consequence of
author code.

111
3 Semantics, structure, and APIs of HTML documents § p11
2

3.1 Documents § p11

Every XML and HTML document in an HTML UA is represented by a Document p112 object. [DOM] p1252

The Document p112 object's URL is defined in DOM. It is initially set when the Document p112 object is created, but can change during the
lifetime of the Document p112 object; for example, it changes when the user navigates p840 to a fragment p851 on the page and when the
pushState() p828 method is called with a new URL. [DOM] p1252

⚠Warning!
Interactive user agents typically expose the Document p112 object's URL in their user interface. This is the primary
mechanism by which a user can tell if a site is attempting to impersonate another.

When a Document p112 is created by a script p883 using the createDocument() or createHTMLDocument() the Document p112 is both ready
for post-load tasks p1131 and completely loaded p1131 immediately.

The document's referrer is a string (representing a URL) that can be set when the Document p112 is created. If it is not explicitly set,
then its value is the empty string.


MDN

3.1.1 The Document p112 object §


p11

DOM defines a Document interface, which this specification extends significantly.

IDL
enum DocumentReadyState { "loading", "interactive", "complete" };
typedef (HTMLScriptElement or SVGScriptElement) HTMLOrSVGScriptElement;

[OverrideBuiltins]
partial interface Document {
// resource metadata management
[PutForwards=href, Unforgeable] readonly attribute Location? location;
attribute USVString domain;
readonly attribute USVString referrer;
attribute USVString cookie;
readonly attribute DOMString lastModified;
readonly attribute DocumentReadyState readyState;

// DOM tree accessors


getter object (DOMString name);
[CEReactions] attribute DOMString title;
[CEReactions] attribute DOMString dir;
[CEReactions] attribute HTMLElement? body;
readonly attribute HTMLHeadElement? head;
[SameObject] readonly attribute HTMLCollection images;
[SameObject] readonly attribute HTMLCollection embeds;
[SameObject] readonly attribute HTMLCollection plugins;
[SameObject] readonly attribute HTMLCollection links;
[SameObject] readonly attribute HTMLCollection forms;
[SameObject] readonly attribute HTMLCollection scripts;
NodeList getElementsByName(DOMString elementName);
readonly attribute HTMLOrSVGScriptElement? currentScript; // classic scripts in a document tree only

// dynamic markup insertion


[CEReactions] Document open(optional DOMString unused1, optional DOMString unused2); // both
arguments are ignored

112
WindowProxy? open(USVString url, DOMString name, DOMString features);
[CEReactions] void close();
[CEReactions] void write(DOMString... text);
[CEReactions] void writeln(DOMString... text);

// user interaction
readonly attribute WindowProxy? defaultView;
boolean hasFocus();
[CEReactions] attribute DOMString designMode;
[CEReactions] boolean execCommand(DOMString commandId, optional boolean showUI = false, optional
DOMString value = "");
boolean queryCommandEnabled(DOMString commandId);
boolean queryCommandIndeterm(DOMString commandId);
boolean queryCommandState(DOMString commandId);
boolean queryCommandSupported(DOMString commandId);
DOMString queryCommandValue(DOMString commandId);

// special event handler IDL attributes that only apply to Document objects
[LenientThis] attribute EventHandler onreadystatechange;

// also has obsolete members


};
Document includes GlobalEventHandlers;
Document includes DocumentAndElementEventHandlers;

The Document p112 has an HTTPS state (an HTTPS state value), initially "none", which represents the security properties of the network
channel used to deliver the Document p112 's data.

The Document p112 has a referrer policy (a referrer policy), initially the empty string, which represents the default referrer policy used
by fetches initiated by the Document p112 .

The Document p112 has a CSP list, which is a CSP list containing all of the Content Security Policy objects active for the document. The
list is empty unless otherwise specified.

The Document p112 has a feature policy, which is a feature policy, which is initially empty.

The Document p112 has a module map, which is a module map p904 , initially empty.

3.1.2 The DocumentOrShadowRoot p113 interface §


p11

DOM defines the DocumentOrShadowRoot mixin, which this specification extends.

IDL
partial interface mixin DocumentOrShadowRoot {
readonly attribute Element? activeElement;
};

3.1.3 Resource metadata management § p11


3

For web developers (non-normative)


document . referrer p113
Returns the URL of the Document p112 from which the user navigated to this one, unless it was blocked or there was no such
document, in which case it returns the empty string.
The noreferrer p295 link type can be used to block the referrer.

The referrer attribute must return the document's referrer p112 .

113
For web developers (non-normative)
document . cookie p114 [ = value ]
Returns the HTTP cookies that apply to the Document p112 . If there are no cookies or cookies can't be applied to this resource, the
empty string will be returned.
Can be set, to add a new cookie to the element's set of HTTP cookies.
If the contents are sandboxed into a unique origin p821 (e.g. in an iframe p350 with the sandbox p354 attribute), a "SecurityError"
DOMException will be thrown on getting and setting.

The cookie attribute represents the cookies of the resource identified by the document's URL.

A Document p112 object that falls into one of the following conditions is a cookie-averse Document object:

• A Document p112 object whose browsing context p793 is null.

• A Document p112 whose URL's scheme is not a network scheme.

On getting, if the document is a cookie-averse Document object p114 , then the user agent must return the empty string. Otherwise, if the
Document p112 's origin p818 is an opaque origin p818 , the user agent must throw a "SecurityError" DOMException. Otherwise, the user
agent must return the cookie-string p51 for the document's URL for a "non-HTTP" API, decoded using UTF-8 decode without BOM.
[COOKIES] p1250

On setting, if the document is a cookie-averse Document object p114 , then the user agent must do nothing. Otherwise, if the p30

Document p112 's origin p818 is an opaque origin p818 , the user agent must throw a "SecurityError" DOMException. Otherwise, the user
agent must act as it would when receiving a set-cookie-string p51 for the document's URL via a "non-HTTP" API, consisting of the new
value encoded as UTF-8. [COOKIES] p1250 [ENCODING] p1252

Note
Since the cookie p114 attribute is accessible across frames, the path restrictions on cookies are only a tool to help manage which
cookies are sent to which parts of the site, and are not in any way a security feature.

⚠Warning!
The cookie p114 attribute's getter and setter synchronously access shared state. Since there is no locking mechanism,
other browsing contexts in a multiprocess user agent can modify cookies while scripts are running. A site could, for
instance, try to read a cookie, increment its value, then write it back out, using the new value of the cookie as a
unique identifier for the session; if the site does this twice in two different browser windows at the same time, it
might end up using the same "unique" identifier for both sessions, with potentially disastrous effects.

For web developers (non-normative)


document . lastModified p114
Returns the date of the last modification to the document, as reported by the server, in the form "MM/DD/YYYY hh:mm:ss", in the
user's local time zone.
If the last modification date is not known, the current time is returned instead.

The lastModified attribute, on getting, must return the date and time of the Document p112 's source file's last modification, in the
user's local time zone, in the following format:

1. The month component of the date.

2. A U+002F SOLIDUS character (/).

3. The day component of the date.

4. A U+002F SOLIDUS character (/).

5. The year component of the date.

6. A U+0020 SPACE character.

7. The hours component of the time.

8. A U+003A COLON character (:).


114
9. The minutes component of the time.

10. A U+003A COLON character (:).

11. The seconds component of the time.

All the numeric components above, other than the year, must be given as two ASCII digits representing the number in base ten, zero-
padded if necessary. The year must be given as the shortest possible string of four or more ASCII digits representing the number in
base ten, zero-padded if necessary.

The Document p112 's source file's last modification date and time must be derived from relevant features of the networking protocols
used, e.g. from the value of the HTTP `Last-Modified` header of the document, or from metadata in the file system for local files. If
the last modification date and time are not known, the attribute must return the current date and time in the above format.

For web developers (non-normative)


document . readyState p115
Returns "loading" while the Document p112 is loading, "interactive" once it is finished parsing but still loading subresources,
and "complete" once it has loaded.
The readystatechange p1247 event fires on the Document p112 object when this value changes.
The DOMContentLoaded p1246 event fires after the transition to "interactive" but before the transition to "complete", at the
point where all subresources apart from async p600 script p599 elements have loaded.

Each document has a current document readiness. When a Document p112 object is created, it must have its current document ⋰
MDN
readiness p115 set to the string "loading" if the document is associated with an HTML parser p1045 , an XML parser p1154 , or an XSLT
processor, and to the string "complete" otherwise. Various algorithms during page loading affect this value. When the value is set, the
user agent must fire an event named readystatechange p1247 at the Document p112 object.

A Document p112 is said to have an active parser if it is associated with an HTML parser p1045 or an XML parser p1154 that has not yet been
stopped p1131 or aborted p1131 .

The readyState IDL attribute must, on getting, return the current document readiness p115 .

3.1.4 DOM tree accessors § p11


5

The html element of a document is its document element, if it's an html p149 element, and null otherwise.

For web developers (non-normative)


document . head p115
Returns the head element p115 .

The head element of a document is the first head p150 element that is a child of the html element p115 , if there is one, or null otherwise.

The head attribute, on getting, must return the head element p115 of the document (a head p150 element or null). ⋰
MDN ⋰ Support:
Chrome fo
Chrome
iOS Safari
For web developers (non-normative) Firefox
Samsung
document . title p115 [ = value ] UC Browse
p115 Android
Returns the document's title, as given by the title element for HTML and as given by the SVG title element for SVG. Safari
IE
Can be set, to update the document's title. If there is no appropriate element to update, the new value is ignored. Edge
Opera Min
Opera
p151
The title element of a document is the first title element in the document (in tree order), if there is one, or null otherwise. Android B
Sou

The title attribute must, on getting, run the following algorithm:

1. If the document element is an SVG svg element, then let value be the child text content of the first SVG title element that
is a child of the document element.

115
2. Otherwise, let value be the child text content of the title element p115 , or the empty string if the title element p115 is null.

3. Strip and collapse ASCII whitespace in value.

4. Return value.

On setting, the steps corresponding to the first matching condition in the following list must be run:

↪ If the document element is an SVG svg element

1. If there is an SVG title element that is a child of the document element, let element be the first such element.

2. Otherwise:

1. Let element be the result of creating an element given the document element's node document, title, and
the SVG namespace.

2. Insert element as the first child of the document element.

3. String replace all with the given value within element.

↪ If the document element is in the HTML namespace

1. If the title element p115 is null and the head element p115 is null, then return.

2. If the title element p115 is non-null, let element be the title element p115 .

3. Otherwise:

1. Let element be the result of creating an element given the document element's node document, title p151 ,
and the HTML namespace.

2. Append element to the head element p115 .

4. String replace all with the given value within element.

↪ Otherwise
Do nothing.

For web developers (non-normative)


document . body p116 [ = value ]
Returns the body element p116 .
Can be set, to replace the body element p116 .
If the new value is not a body p174 or frameset p1205 element, this will throw a "HierarchyRequestError" DOMException.

The body element of a document is the first of the html element p115 's children that is either a body p174 element or a frameset p1205
element, or null if there is no such element.


The body attribute, on getting, must return the body element p116 of the document (either a body p174 element, a frameset p1205 element,
MDN
or null). On setting, the following algorithm must be run:

1. If the new value is not a body p174 or frameset p1205 element, then throw a "HierarchyRequestError" DOMException.

2. Otherwise, if the new value is the same as the body element p116 , return.

3. Otherwise, if the body element p116 is not null, then replace the body element p116 with the new value within the body
element p116 's parent and return.

4. Otherwise, if there is no document element, throw a "HierarchyRequestError" DOMException.

5. Otherwise, the body element p116 is null, but there's a document element. Append the new value to the document element.

Note
The value returned by the body p116 getter is not always the one passed to the setter.

116
Example
In this example, the setter successfully inserts a body p174 element (though this is non-conforming since SVG does not allow a
body p174 as child of SVG svg). However the getter will return null because the document element is not html p149 .

<svg xmlns="http://www.w3.org/2000/svg">
<script>
document.body = document.createElementNS("http://www.w3.org/1999/xhtml", "body");
console.assert(document.body === null);
</script>
</svg>

For web developers (non-normative)


document . images p117
Returns an HTMLCollection of the img p310 elements in the Document p112 .

document . embeds p117


document . plugins p117
Return an HTMLCollection of the embed p358 elements in the Document p112 .

document . links p117


Returns an HTMLCollection of the a p232 and area p431 elements in the Document p112 that have href p276 attributes.

document . forms p117


Return an HTMLCollection of the form p473 elements in the Document p112 .

document . scripts p117


Return an HTMLCollection of the script p599 elements in the Document p112 .


The images attribute must return an HTMLCollection rooted at the Document p112 node, whose filter matches only img p310 elements.
MDN
The embeds attribute must return an HTMLCollection rooted at the Document p112
node, whose filter matches only embed p358 ⋰
elements.
MDN
The plugins attribute must return the same object as that returned by the embeds p117
attribute. ⋰
MDN
The links attribute must return an HTMLCollection rooted at the Document p112 node, whose filter matches only a p232 elements ⋰
with
MDN
href p276 attributes and area p431 elements with href p276 attributes.


The forms attribute must return an HTMLCollection rooted at the Document p112 node, whose filter matches only form p473 elements.
MDN
The scripts attribute must return an HTMLCollection rooted at the Document p112 node, whose filter matches only script p599 ⋰
MDN
elements.

For web developers (non-normative)


collection = document . getElementsByName p117 (name)
Returns a NodeList of elements in the Document p112 that have a name attribute with the value name.

The getElementsByName(name) method takes a string name, and must return a live p45 NodeList containing all the HTML elements ⋰ p44
p66
MDN
in that document that have a name attribute whose value is equal to the name argument (in a case-sensitive manner), in tree order.
When the method is invoked on a Document p112 object again with the same argument, the user agent may return the same as the
object returned by the earlier call. In other cases, a new NodeList object must be returned.

For web developers (non-normative)


document . currentScript p118
Returns the script p599 element, or the SVG script element, that is currently executing, as long as the element represents a
classic script p884 . In the case of reentrant script execution, returns the one that most recently started executing amongst those
that have not yet finished executing.
Returns null if the Document p112 is not currently executing a script p599 or SVG script element (e.g., because the running script
is an event handler, or a timeout), or if the currently executing script p599 or SVG script element represents a module
117
script p884 .


The currentScript attribute, on getting, must return the value to which it was most recently set. When the Document p112 is created,
p118
MDN
the currentScript must be initialized to null.
⋰ Support:
currentscript
Chrome fo
Note Chrome
iOS Safari
p599
This API has fallen out of favor in the implementer and standards community, as it globally exposes script or SVG script Firefox

elements. As such, it is not available in newer contexts, such as when running module scripts p884 or when running scripts in a Samsung
UC Browse
shadow tree. We are looking into creating a new solution for identifying the running script in such contexts, which does not make it Android
Safari
globally available: see issue #1013. IE
Edge
Opera Min
Opera
Android B
The Document p112 interface supports named properties. The supported property names of a Document p112 object document at any Sou
moment consist of the following, in tree order according to the element that contributed them, ignoring later duplicates, and with
values from id p134 attributes coming before values from name attributes when the same element contributes both:

• the value of the name content attribute for all exposed p118 embed p358 , form p473 , iframe p350 , img p310 , and exposed p118 object p361
elements that have a non-empty name content attribute and are in a document tree with document as their root;

• the value of the id p134 content attribute for all exposed p118 object p361 elements that have a non-empty id p134 content
attribute and are in a document tree with document as their root; and

• the value of the id p134 content attribute for all img p310 elements that have both a non-empty id p134 content attribute and a
non-empty name content attribute, and are in a document tree with document as their root.

To determine the value of a named property name for a Document p112 , the user agent must return the value obtained using the
following steps:

1. Let elements be the list of named elements p118 with the name name that are in a document tree with the Document p112 as
their root.

Note
There will be at least one such element, by definition.

2. If elements has only one element, and that element is an iframe p350 element, and that iframe p350 element's nested browsing
context p795 is not null, then return the WindowProxy p815 object of the element's nested browsing context p795 .

3. Otherwise, if elements has only one element, return that element.

4. Otherwise return an HTMLCollection rooted at the Document p112 node, whose filter matches only named elements p118 with
the name name.

Named elements with the name name, for the purposes of the above algorithm, are those that are either:

• Exposed p118 embed p358 , form p473 , iframe p350 , img p310 , or exposed p118 object p361 elements that have a name content attribute
whose value is name, or

• Exposed p118 object p361 elements that have an id p134 content attribute whose value is name, or

• img p310 elements that have an id p134 content attribute whose value is name, and that have a non-empty name content
attribute present also.

An embed p358 or object p361 element is said to be exposed if it has no exposed p118 object p361 ancestor, and, for object p361 elements, is
additionally either not showing its fallback content p130 or has no object p361 or embed p358 descendants.

Note
The dir p141 attribute on the Document p112 interface is defined along with the dir p139 content attribute.

118
3.2 Elements § p11
9

3.2.1 Semantics § p11


9

Elements, attributes, and attribute values in HTML are defined (by this specification) to have certain meanings (semantics). For
example, the ol p215 element represents an ordered list, and the lang p137 attribute represents the language of the content.

These definitions allow HTML processors, such as Web browsers or search engines, to present and use documents and applications in a
wide variety of contexts that the author might not have considered.

Example
As a simple example, consider a Web page written by an author who only considered desktop computer Web browsers:

<!DOCTYPE HTML>
<html lang="en">
<head>
<title>My Page</title>
</head>
<body>
<h1>Welcome to my page</h1>
<p>I like cars and lorries and have a big Jeep!</p>
<h2>Where I live</h2>
<p>I live in a small hut on a mountain!</p>
</body>
</html>

Because HTML conveys meaning, rather than presentation, the same page can also be used by a small browser on a mobile phone,
without any change to the page. Instead of headings being in large letters as on the desktop, for example, the browser on the
mobile phone might use the same size text for the whole page, but with the headings in bold.

But it goes further than just differences in screen size: the same page could equally be used by a blind user using a browser based
around speech synthesis, which instead of displaying the page on a screen, reads the page to the user, e.g. using headphones.
Instead of large text for the headings, the speech browser might use a different volume or a slower voice.

That's not all, either. Since the browsers know which parts of the page are the headings, they can create a document outline that
the user can use to quickly navigate around the document, using keys for "jump to next heading" or "jump to previous heading".
Such features are especially common with speech browsers, where users would otherwise find quickly navigating a page quite
difficult.

Even beyond browsers, software can make use of this information. Search engines can use the headings to more effectively index
a page, or to provide quick links to subsections of the page from their results. Tools can use the headings to create a table of
contents (that is in fact how this very specification's table of contents is generated).

This example has focused on headings, but the same principle applies to all of the semantics in HTML.

Authors must not use elements, attributes, or attribute values for purposes other than their appropriate intended semantic purpose, as
doing so prevents software from correctly processing the page.

Example
For example, the following snippet, intended to represent the heading of a corporate site, is non-conforming because the second
line is not intended to be a heading of a subsection, but merely a subheading or subtitle (a subordinate heading for the same
section).

<body>
<h1>ACME Corporation</h1>
<h2>The leaders in arbitrary fast delivery since 1920</h2>
...

The hgroup p187 element is intended for these kinds of situations:

<body>

119
<hgroup>
<h1>ACME Corporation</h1>
<h2>The leaders in arbitrary fast delivery since 1920</h2>
</hgroup>
...

Example
The document in this next example is similarly non-conforming, despite being syntactically correct, because the data placed in the
cells is clearly not tabular data, and the cite p239 element mis-used:

<!DOCTYPE HTML>
<html lang="en-GB">
<head> <title> Demonstration </title> </head>
<body>
<table>
<tr> <td> My favourite animal is the cat. </td> </tr>
<tr>
<td>
—<a href="https://example.org/~ernest/"><cite>Ernest</cite></a>,
in an essay from 1992
</td>
</tr>
</table>
</body>
</html>

This would make software that relies on these semantics fail: for example, a speech browser that allowed a blind user to navigate
tables in the document would report the quote above as a table, confusing the user; similarly, a tool that extracted titles of works
from pages would extract "Ernest" as the title of a work, even though it's actually a person's name, not a title.

A corrected version of this document might be:

<!DOCTYPE HTML>
<html lang="en-GB">
<head> <title> Demonstration </title> </head>
<body>
<blockquote>
<p> My favourite animal is the cat. </p>
</blockquote>
<p>
—<a href="https://example.org/~ernest/">Ernest</a>,
in an essay from 1992
</p>
</body>
</html>

Authors must not use elements, attributes, or attribute values that are not permitted by this specification or other applicable
specifications p64 , as doing so makes it significantly harder for the language to be extended in the future.

Example
In the next example, there is a non-conforming attribute value ("carpet") and a non-conforming attribute ("texture"), which is not
permitted by this specification:

<label>Carpet: <input type="carpet" name="c" texture="deep pile"></label>

Here would be an alternative and correct way to mark this up:

120
<label>Carpet: <input type="text" class="carpet" name="c" data-texture="deep pile"></label>

DOM nodes whose node document's browsing context p793 is null are exempt from all document conformance requirements other than
the HTML syntax p1033 requirements and XML syntax p1154 requirements.

Example
In particular, the template p614 element's template contents p615 's node document's browsing context p793 is null. For example, the
content model p126 requirements and attribute value microsyntax requirements do not apply to a template p614 element's template
contents p615 . In this example an img p310 element has attribute values that are placeholders that would be invalid outside a
template p614 element.

<template>
<article>
<img src="{{src}}" alt="{{alt}}">
<h1></h1>
</article>
</template>

However, if the above markup were to omit the </h1> end tag, that would be a violation of the HTML syntax p1033 , and would thus
be flagged as an error by conformance checkers.

Through scripting and using other mechanisms, the values of attributes, text, and indeed the entire structure of the document may
change dynamically while a user agent is processing it. The semantics of a document at an instant in time are those represented by
the state of the document at that instant in time, and the semantics of a document can therefore change over time. User agents must
update their presentation of the document as this occurs.

Example
HTML has a progress p541 element that describes a progress bar. If its "value" attribute is dynamically updated by a script, the UA
would update the rendering to show the progress changing.

3.2.2 Elements in the DOM § p12


1

The nodes representing HTML elements p44 in the DOM must implement, and expose to scripts, the interfaces listed for them in the
relevant sections of this specification. This includes HTML elements p44 in XML documents, even when those documents are in another
context (e.g. inside an XSLT transform).

Elements in the DOM represent things; that is, they have intrinsic meaning, also known as semantics.

Example
For example, an ol p215 element represents an ordered list.

Elements can be referenced (referred to) in some way, either explicitly or implicitly. One way that an element in the DOM can be
explicitly referenced is by giving an id p134 attribute to the element, and then creating a hyperlink p275 with that id p134 attribute's value
as the fragment p851 for the hyperlink p275 's href p276 attribute value. Hyperlinks are not necessary for a reference, however; any manner
of referring to the element in question will suffice.

Example
Consider the following figure p226 element, which is given an id p134 attribute:

<figure id="module-script-graph">
<img src="module-script-graph.svg"
alt="Module A depends on module B, which depends
on modules C and D.">
<figcaption>Figure 27: a simple module graph</figcaption>

121
</figure>

A hyperlink p275 -based reference p121 could be created using the a p232 element, like so:

As we can see in <a href="#module-script-graph">figure 27</a>, ...

However, there are many other ways of referencing p121 the figure p226 element, such as:

• "As depicted in the figure of modules A, B, C, and D..."

• "In Figure 27..." (without a hyperlink)

• "From the contents of the 'simple module graph' figure..."

• "In the figure below..." (but this is discouraged p227 )

The basic interface, from which all the HTML elements p44 ' interfaces inherit, and which must be used by elements that have no
additional requirements, is the HTMLElement p122 interface.

IDL

[Exposed=Window] MDN
interface HTMLElement : Element {
[HTMLConstructor] constructor();

// metadata attributes
[CEReactions] attribute DOMString title;
[CEReactions] attribute DOMString lang;
[CEReactions] attribute boolean translate;
[CEReactions] attribute DOMString dir;

// user interaction
[CEReactions] attribute boolean hidden;
void click();
[CEReactions] attribute DOMString accessKey;
readonly attribute DOMString accessKeyLabel;
[CEReactions] attribute boolean draggable;
[CEReactions] attribute boolean spellcheck;
[CEReactions] attribute DOMString autocapitalize;

[CEReactions] attribute [TreatNullAs=EmptyString] DOMString innerText;

ElementInternals attachInternals();
};

HTMLElement includes GlobalEventHandlers;


HTMLElement includes DocumentAndElementEventHandlers;
HTMLElement includes ElementContentEditable;
HTMLElement includes HTMLOrSVGElement;

[Exposed=Window]
interface HTMLUnknownElement : HTMLElement {
// Note: intentionally no [HTMLConstructor]
};

The HTMLElement p122 interface holds methods and attributes related to a number of disparate features, and the members of this
interface are therefore described in various different sections of this specification.

The element interface for an element with name name in the HTML namespace is determined as follows:

122
1. If name is applet p1198 , bgsound p1198 , blink p1199 , isindex p1198 , keygen p1198 , multicol p1199 , nextid p1198 , or spacer p1199 , then
return HTMLUnknownElement p122 .

2. If name is acronym p1198 , basefont p1199 , big p1199 , center p1199 , nobr p1199 , noembed p1198 , noframes p1198 , plaintext p1198 , rb p1198 ,
rtc p1198 , strike p1199 , or tt p1199 , then return HTMLElement p122 .

3. If name is listing p1198 or xmp p1199 , then return HTMLPreElement p211 .

4. Otherwise, if this specification defines an interface appropriate for the element type p44 corresponding to the local name
name, then return that interface.

5. If other applicable specifications p64 define an appropriate interface for name, then return the interface they define.

6. If name is a valid custom element name p689 , then return HTMLElement p122 .

7. Return HTMLUnknownElement p122 .

Note
The use of HTMLElement p122 instead of HTMLUnknownElement p122 in the case of valid custom element names p689 is done to ensure
that any potential future upgrades p694 only cause a linear transition of the element's prototype chain, from HTMLElement p122 to a
subclass, instead of a lateral one, from HTMLUnknownElement p122 to an unrelated subclass.

Features shared between HTML and SVG elements use the HTMLOrSVGElement p123 interface mixin: [SVG] p1256

IDL
interface mixin HTMLOrSVGElement {
[SameObject] readonly attribute DOMStringMap dataset;
attribute DOMString nonce; // intentionally no [CEReactions]

[CEReactions] attribute boolean autofocus;


[CEReactions] attribute long tabIndex;
void focus(optional FocusOptions options = {});
void blur();
};

3.2.3 HTML element constructors § p12


3

p681
To support the custom elements feature, all HTML elements have special constructor behavior. This is indicated via the
[HTMLConstructor] IDL extended attribute. It indicates that the interface object for the given interface will have a specific behavior
when called, as defined in detail below.

The [HTMLConstructor] p123 extended attribute must take no arguments, and must only appear on constructor operations. It must
appear only once on a constructor operation, and the interface must contain only the single, annotated constructor operation, and no
others. The annotated constructor operation must be declared to take no arguments.

Interfaces declared with constructor operations that are annotated with the [HTMLConstructor] p123 extended attribute have the
following overridden constructor steps:

1. Let registry be the current global object p901 's CustomElementRegistry p690 object.

2. If NewTarget is equal to the active function object, then throw a TypeError.

Example
This can occur when a custom element is defined using an element interface as its constructor:

customElements.define("bad-1", HTMLButtonElement);
new HTMLButtonElement(); // (1)
document.createElement("bad-1"); // (2)

In this case, during the execution of HTMLButtonElement p522 (either explicitly, as in (1), or implicitly, as in (2)), both the
active function object and NewTarget are HTMLButtonElement p522 . If this check was not present, it would be possible to

123
create an instance of HTMLButtonElement p522 whose local name was bad-1.

3. Let definition be the entry in registry with constructor p689 equal to NewTarget. If there is no such definition, then throw a
TypeError.

Note
Since there can be no entry in registry with a constructor p689 of undefined, this step also prevents HTML element
constructors from being called as functions (since in that case NewTarget will be undefined).

4. Let is value be null.

5. If definition's local name p689 is equal to definition's name p689 (i.e., definition is for an autonomous custom element p688 ), then:

1. If the active function object is not HTMLElement p122 , then throw a TypeError.

Example
This can occur when a custom element is defined to not extend any local names, but inherits from a
non-HTMLElement p122 class:

customElements.define("bad-2", class Bad2 extends HTMLParagraphElement {});

In this case, during the (implicit) super() call that occurs when constructing an instance of Bad2, the active
function object is HTMLParagraphElement p207 , not HTMLElement p122 .

6. Otherwise (i.e., if definition is for a customized built-in element p688 ):

1. Let valid local names be the list of local names for elements defined in this specification or in other applicable
specifications p64 that use the active function object as their element interface.

2. If valid local names does not contain definition's local name p689 , then throw a TypeError.

Example
This can occur when a custom element is defined to extend a given local name but inherits from the wrong
class:

customElements.define("bad-3", class Bad3 extends HTMLQuoteElement {}, { extends:


"p" });

In this case, during the (implicit) super() call that occurs when constructing an instance of Bad3, valid local
names is the list containing q p241 and blockquote p212 , but definition's local name p689 is p p207 , which is not in that
list.

3. Set is value to definition's name p689 .

7. If definition's construction stack p690 is empty, then:

1. Let element be the result of internally creating a new object implementing the interface to which the active
function object corresponds, given the current Realm Record and NewTarget.

2. Set element's node document to the current global object p901 's associated Document p807 .

3. Set element's namespace to the HTML namespace.

4. Set element's namespace prefix to null.

5. Set element's local name to definition's local name p689 .

6. Set element's custom element state to "custom".

7. Set element's custom element definition to definition.

8. Set element's is value to is value.

9. Return element.
124
Note
This occurs when author script constructs a new custom element directly, e.g. via new MyCustomElement().

8. Let prototype be Get(NewTarget, "prototype"). Rethrow any exceptions.

9. If Type(prototype) is not Object, then:

1. Let realm be GetFunctionRealm(NewTarget).

2. Set prototype to the interface prototype object of realm whose interface is the same as the interface of the active
function object.

Note
The realm of the active function object might not be realm, so we are using the more general concept of "the same
interface" across realms; we are not looking for equality of interface objects. This fallback behavior, including using the
realm of NewTarget and looking up the appropriate prototype there, is designed to match analogous behavior for the
JavaScript built-ins and Web IDL's internally create a new object implementing the interface algorithm.

10. Let element be the last entry in definition's construction stack p690 .

11. If element is an already constructed marker p690 , then throw an "InvalidStateError" DOMException.

Example
This can occur when the author code inside the custom element constructor p687 non-conformantly p687 creates another
instance of the class being constructed, before calling super():

let doSillyThing = false;

class DontDoThis extends HTMLElement {


constructor() {
if (doSillyThing) {
doSillyThing = false;
new DontDoThis();
// Now the construction stack will contain an already constructed marker.
}

// This will then fail with an "InvalidStateError" DOMException:


super();
}
}

Example
This can also occur when author code inside the custom element constructor p687 non-conformantly p687 calls super()
twice, since per the JavaScript specification, this actually executes the superclass constructor (i.e. this algorithm) twice,
before throwing an error:

class DontDoThisEither extends HTMLElement {


constructor() {
super();

// This will throw, but not until it has already called into the HTMLElement
constructor
super();
}
}

12. Perform element.[[SetPrototypeOf]](prototype). Rethrow any exceptions.

13. Replace the last entry in definition's construction stack p690 with an already constructed marker p690 .

14. Return element.

125
Note
This step is normally reached when upgrading p694 a custom element; the existing element is returned, so that the
super() call inside the custom element constructor p687 assigns that existing element to this.

In addition to the constructor behavior implied by [HTMLConstructor] p123 , some elements also have named constructors (which are
really factory functions with a modified prototype property).

Example
Named constructors for HTML elements can also be used in an extends clause when defining a custom element constructor p687 :

class AutoEmbiggenedImage extends Image {


constructor(width, height) {
super(width * 10, height * 10);
}
}

customElements.define("auto-embiggened", AutoEmbiggenedImage, { extends: "img" });

const image = new AutoEmbiggenedImage(15, 20);


console.assert(image.width === 150);
console.assert(image.height === 200);

3.2.4 Element definitions § p12


6

Each element in this specification has a definition that includes the following information:

Categories
A list of categories p128 to which the element belongs. These are used when defining the content models p127 for each element.

Contexts in which this element can be used


A non-normative description of where the element can be used. This information is redundant with the content models of elements
that allow this one as a child, and is provided only as a convenience.

Note
For simplicity, only the most specific expectations are listed. For example, an element that is both flow content p129 and phrasing
content p130 can be used anywhere that either flow content p129 or phrasing content p130 is expected, but since anywhere that flow
content p129 is expected, phrasing content p130 is also expected (since all phrasing content p130 is flow content p129 ), only "where
phrasing content p130 is expected" will be listed.

Content model
A normative description of what content must be included as children and descendants of the element.

Tag omission in text/html


A non-normative description of whether, in the text/html p1217 syntax, the start p1035 and end p1036 tags can be omitted. This
information is redundant with the normative requirements given in the optional tags p1037 section, and is provided in the element
definitions only as a convenience.

Content attributes
A normative list of attributes that may be specified on the element (except where otherwise disallowed), along with non-normative
descriptions of those attributes. (The content to the left of the dash is normative, the content to the right of the dash is not.)

DOM interface
A normative definition of a DOM interface that such elements must implement.

This is then followed by a description of what the element represents p121 , along with any additional normative conformance criteria
that may apply to authors and implementations. Examples are sometimes also included.

126
3.2.4.1 Attributes § p12
7

An attribute value is a string. Except where otherwise specified, attribute values on HTML elements p44 may be any string value,
including the empty string, and there is no restriction on what text can be specified in such attribute values.

3.2.5 Content models § p12


7

Each element defined in this specification has a content model: a description of the element's expected contents p127 . An HTML
element p44 must have contents that match the requirements described in the element's content model. The contents of an element
are its children in the DOM.

ASCII whitespace is always allowed between elements. User agents represent these characters between elements in the source
markup as Text nodes in the DOM. Empty Text nodes and Text nodes consisting of just sequences of those characters are considered
inter-element whitespace.

Inter-element whitespace p127 , comment nodes, and processing instruction nodes must be ignored when establishing whether an
element's contents match the element's content model or not, and must be ignored when following algorithms that define document
and element semantics.

Note
Thus, an element A is said to be preceded or followed by a second element B if A and B have the same parent node and there are
no other element nodes or Text nodes (other than inter-element whitespace p127 ) between them. Similarly, a node is the only child
of an element if that element contains no other nodes other than inter-element whitespace p127 , comment nodes, and processing
instruction nodes.

Authors must not use HTML elements p44 anywhere except where they are explicitly allowed, as defined for each element, or as
explicitly required by other specifications. For XML compound documents, these contexts could be inside elements from other
namespaces, if those elements are defined as providing the relevant contexts.

Example
The Atom Syndication Format defines a content element. When its type attribute has the value xhtml, The Atom Syndication
Format requires that it contain a single HTML div p231 element. Thus, a div p231 element is allowed in that context, even though this
is not explicitly normatively stated by this specification. [ATOM] p1250

In addition, HTML elements p44 may be orphan nodes (i.e. without a parent node).

Example
For example, creating a td p453 element and storing it in a global variable in a script is conforming, even though td p453 elements are
otherwise only supposed to be used inside tr p451 elements.

var data = {
name: "Banana",
cell: document.createElement('td'),
};

3.2.5.1 The "nothing" content model § p12


7

When an element's content model is nothing, the element must contain no Text nodes (other than inter-element whitespace p127 ) and
no element nodes.

Note
Most HTML elements whose content model is "nothing" are also, for convenience, void elements p1034 (elements that have no end
tag p1036 in the HTML syntax p1033 ). However, these are entirely separate concepts.

127
3.2.5.2 Kinds of content § p12
8

Each element in HTML falls into zero or more categories that group elements with similar characteristics together. The following broad
categories are used in this specification:

• Metadata content p128


• Flow content p129
• Sectioning content p129
• Heading content p129
• Phrasing content p130
• Embedded content p130
• Interactive content p130

Note
Some elements also fall into other categories, which are defined in other parts of this specification.

These categories are related as follows:

Flow

Phrasing Heading
Interactive
Embedded

Sectioning

Metadata

Sectioning content, heading content, phrasing content, embedded content, and interactive content are all types of flow content.
Metadata is sometimes flow content. Metadata and interactive content are sometimes phrasing content. Embedded content is also a
type of phrasing content, and sometimes is interactive content.

Other categories are also used for specific purposes, e.g. form controls are specified using a number of categories to define common
requirements. Some elements have unique requirements and do not fit into any particular category.

3.2.5.2.1 Metadata content § p12


8

Metadata content is content that sets up the presentation or behavior of the rest of the content, or that sets up the relationship of
the document with other documents, or that conveys other "out of band" information.

⇒ base p152 , link p154 , meta p160 , noscript p612 , script p599 , style p170 , template p614 , title p151

Elements from other namespaces whose semantics are primarily metadata-related (e.g. RDF) are also metadata content p128 .

Example
Thus, in the XML serialization, one can use RDF, like this:

<html xmlns="http://www.w3.org/1999/xhtml"
xmlns:r="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xml:lang="en">
<head>
<title>Hedral's Home Page</title>

128
<r:RDF>
<Person xmlns="http://www.w3.org/2000/10/swap/pim/contact#"
r:about="https://hedral.example.com/#">
<fullName>Cat Hedral</fullName>
<mailbox r:resource="mailto:[email protected]"/>
<personalTitle>Sir</personalTitle>
</Person>
</r:RDF>
</head>
<body>
<h1>My home page</h1>
<p>I like playing with string, I guess. Sister says squirrels are fun
too so sometimes I follow her to play with them.</p>
</body>
</html>

This isn't possible in the HTML serialization, however.

3.2.5.2.2 Flow content § p12


9

Most elements that are used in the body of documents and applications are categorized as flow content.

⇒ a p232 , abbr p243 , address p193 , area p431 (if it is a descendant of a map p430 element), article p175 , aside p183 , audio p372 , b p266 ,
bdi p270 , bdo p271 , blockquote p212 , br p272 , button p521 , canvas p618 , cite p239 , code p260 , data p252 , datalist p529 , del p303 ,
details p589 , dfn p242 , dialog p595 , div p231 , dl p221 , em p235 , embed p358 , fieldset p547 , figure p226 , footer p190 , form p473 , h1 p185 , h2 p185 ,
h3 p185 , h4 p185 , h5 p185 , h6 p185 , header p189 , hgroup p187 , hr p209 , i p265 , iframe p350 , img p310 , input p479 , ins p302 , kbd p263 , label p477 ,
link p154 (if it is allowed in the body p155 ), main p230 (if it is a hierarchically correct main element p230 ), map p430 , mark p268 , MathML
math, menu p218 , meta p160 (if the itemprop p720 attribute is present), meter p543 , nav p180 , noscript p612 , object p361 , ol p215 ,
output p539 , p p207 , picture p307 , pre p211 , progress p541 , q p241 , ruby p245 , s p239 , samp p262 , script p599 , section p177 , select p523 ,
slot p617 , small p237 , span p271 , strong p236 , sub p264 , sup p264 , SVG svg, table p438 , template p614 , textarea p534 , time p253 , u p267 ,
ul p217 , var p261 , video p368 , wbr p273 , autonomous custom elements p688 , text p130

3.2.5.2.3 Sectioning content § p12


9

Sectioning content is content that defines the scope of headings p129 and footers p190 .

⇒ article p175 , aside p183 , nav p180 , section p177

Each sectioning content p129 element potentially has a heading and an outline p196 . See the section on headings and sections p194 for
further details.

Note
There are also certain elements that are sectioning roots p194 . These are distinct from sectioning content p129 , but they can also have
an outline p196 .

3.2.5.2.4 Heading content § p12


9

Heading content defines the header of a section (whether explicitly marked up using sectioning content p129 elements, or implied by
the heading content itself).

⇒ h1 p185 , h2 p185 , h3 p185 , h4 p185 , h5 p185 , h6 p185 , hgroup p187

129
3.2.5.2.5 Phrasing content § p13
0

Phrasing content is the text of the document, as well as elements that mark up that text at the intra-paragraph level. Runs of
phrasing content p130 form paragraphs p132 .

⇒ a p232 , abbr p243 , area p431 (if it is a descendant of a map p430 element), audio p372 , b p266 , bdi p270 , bdo p271 , br p272 , button p521 ,
canvas p618 , cite p239 , code p260 , data p252 , datalist p529 , del p303 , dfn p242 , em p235 , embed p358 , i p265 , iframe p350 , img p310 , input p479 ,
ins p302 , kbd p263 , label p477 , link p154 (if it is allowed in the body p155 ), map p430 , mark p268 , MathML math, meta p160 (if the
itemprop p720 attribute is present), meter p543 , noscript p612 , object p361 , output p539 , picture p307 , progress p541 , q p241 , ruby p245 ,
s p239 , samp p262 , script p599 , select p523 , slot p617 , small p237 , span p271 , strong p236 , sub p264 , sup p264 , SVG svg, template p614 ,
textarea p534 , time p253 , u p267 , var p261 , video p368 , wbr p273 , autonomous custom elements p688 , text p130

Note
Most elements that are categorized as phrasing content can only contain elements that are themselves categorized as phrasing
content, not any flow content.

Text, in the context of content models, means either nothing, or Text nodes. Text p130 is sometimes used as a content model on its
own, but is also phrasing content p130 , and can be inter-element whitespace p127 (if the Text nodes are empty or contain just ASCII
whitespace).

Text nodes and attribute values must consist of scalar values, excluding noncharacters, and controls other than ASCII whitespace. This
specification includes extra constraints on the exact value of Text nodes and attribute values depending on their precise context.

3.2.5.2.6 Embedded content § p13


0

Embedded content is content that imports another resource into the document, or content from another vocabulary that is inserted
into the document.

⇒ audio p372 , canvas p618 , embed p358 , iframe p350 , img p310 , MathML math, object p361 , picture p307 , SVG svg, video p368

Elements that are from namespaces other than the HTML namespace and that convey content but not metadata, are embedded
content p130 for the purposes of the content models defined in this specification. (For example, MathML, or SVG.)

Some embedded content elements can have fallback content: content that is to be used when the external resource cannot be used
(e.g. because it is of an unsupported format). The element definitions state what the fallback is, if any.

3.2.5.2.7 Interactive content § p13


0

Interactive content is content that is specifically intended for user interaction.

⇒ a p232 (if the href p276 attribute is present), audio p372 (if the controls p424 attribute is present), button p521 , details p589 ,
embed p358 , iframe p350 , img p310 (if the usemap p433 attribute is present), input p479 (if the type p481 attribute is not in the
Hidden p485 state), label p477 , object p361 (if the usemap p433 attribute is present), select p523 , textarea p534 , video p368 (if the
controls p424 attribute is present)

The tabindex p755 attribute can also make any element into interactive content p130 .

3.2.5.2.8 Palpable content § p13


0

As a general rule, elements whose content model allows any flow content p129 or phrasing content p130 should have at least one node in
its contents p127 that is palpable content and that does not have the hidden p749 attribute specified.

Note
Palpable content p130 makes an element non-empty by providing either some descendant non-empty text p130 , or else something
users can hear (audio p372 elements) or view (video p368 or img p310 or canvas p618 elements) or otherwise interact with (for example,
interactive form controls).

This requirement is not a hard requirement, however, as there are many cases where an element can be empty legitimately, for
130
example when it is used as a placeholder which will later be filled in by a script, or when the element is part of a template and would
on most pages be filled in but on some pages is not relevant.

Conformance checkers are encouraged to provide a mechanism for authors to find elements that fail to fulfill this requirement, as an
authoring aid.

The following elements are palpable content:

⇒ a p232 , abbr p243 , address p193 , article p175 , aside p183 , audio p372 (if the controls p424 attribute is present), b p266 , bdi p270 ,
bdo p271 , blockquote p212 , button p521 , canvas p618 , cite p239 , code p260 , data p252 , details p589 , dfn p242 , div p231 , dl p221 (if the
element's children include at least one name-value group), em p235 , embed p358 , fieldset p547 , figure p226 , footer p190 , form p473 ,
h1 p185 , h2 p185 , h3 p185 , h4 p185 , h5 p185 , h6 p185 , header p189 , hgroup p187 , i p265 , iframe p350 , img p310 , input p479 (if the type p481 attribute
is not in the Hidden p485 state), ins p302 , kbd p263 , label p477 , main p230 , map p430 , mark p268 , MathML math, menu p218 (if the element's
children include at least one li p219 element), meter p543 , nav p180 , object p361 , ol p215 (if the element's children include at least
one li p219 element), output p539 , p p207 , pre p211 , progress p541 , q p241 , ruby p245 , s p239 , samp p262 , section p177 , select p523 , small p237 ,
span p271 , strong p236 , sub p264 , sup p264 , SVG svg, table p438 , textarea p534 , time p253 , u p267 , ul p217 (if the element's children include
at least one li p219 element), var p261 , video p368 , autonomous custom elements p688 , text p130 that is not inter-element
whitespace p127

3.2.5.2.9 Script-supporting elements § p13


1

Script-supporting elements are those that do not represent p121 anything themselves (i.e. they are not rendered), but are used to
support scripts, e.g. to provide functionality for the user.

The following elements are script-supporting elements:

⇒ script p599 , template p614

3.2.5.3 Transparent content models § p13


1

Some elements are described as transparent; they have "transparent" in the description of their content model. The content model of
a transparent p131 element is derived from the content model of its parent element: the elements required in the part of the content
model that is "transparent" are the same elements as required in the part of the content model of the parent of the transparent
element in which the transparent element finds itself.

Example
For instance, an ins p302 element inside a ruby p245 element cannot contain an rt p251 element, because the part of the ruby p245
element's content model that allows ins p302 elements is the part that allows phrasing content p130 , and the rt p251 element is not
phrasing content p130 .

Note
In some cases, where transparent elements are nested in each other, the process has to be applied iteratively.

Example
Consider the following markup fragment:

<p><object><param><ins><map><a href="/">Apples</a></map></ins></object></p>

To check whether "Apples" is allowed inside the a p232 element, the content models are examined. The a p232 element's content
model is transparent, as is the map p430 element's, as is the ins p302 element's, as is the part of the object p361 element's in which the
ins p302 element is found. The object p361 element is found in the p p207 element, whose content model is phrasing content p130 . Thus,
"Apples" is allowed, as text is phrasing content.

When a transparent element has no parent, then the part of its content model that is "transparent" must instead be treated as
accepting any flow content p129 .

131
3.2.5.4 Paragraphs § p13
2

Note
The term paragraph p132 as defined in this section is used for more than just the definition of the p p207 element. The paragraph p132
concept defined here is used to describe how to interpret documents. The p p207 element is merely one of several ways of marking
up a paragraph p132 .

A paragraph is typically a run of phrasing content p130 that forms a block of text with one or more sentences that discuss a particular
topic, as in typography, but can also be used for more general thematic grouping. For instance, an address is also a paragraph, as is a
part of a form, a byline, or a stanza in a poem.

Example
In the following example, there are two paragraphs in a section. There is also a heading, which contains phrasing content that is
not a paragraph. Note how the comments and inter-element whitespace p127 do not form paragraphs.

<section>
<h1>Example of paragraphs</h1>
This is the <em>first</em> paragraph in this example.
<p>This is the second.</p>
<!-- This is not a paragraph. -->
</section>

Paragraphs in flow content p129 are defined relative to what the document looks like without the a p232 , ins p302 , del p303 , and map p430
elements complicating matters, since those elements, with their hybrid content models, can straddle paragraph boundaries, as shown
in the first two examples below.

Note
Generally, having elements straddle paragraph boundaries is best avoided. Maintaining such markup can be difficult.

Example
The following example takes the markup from the earlier example and puts ins p302 and del p303 elements around some of the
markup to show that the text was changed (though in this case, the changes admittedly don't make much sense). Notice how this
example has exactly the same paragraphs as the previous one, despite the ins p302 and del p303 elements — the ins p302 element
straddles the heading and the first paragraph, and the del p303 element straddles the boundary between the two paragraphs.

<section>
<ins><h1>Example of paragraphs</h1>
This is the <em>first</em> paragraph in</ins> this example<del>.
<p>This is the second.</p></del>
<!-- This is not a paragraph. -->
</section>

Let view be a view of the DOM that replaces all a p232 , ins p302 , del p303 , and map p430 elements in the document with their contents p127 .
Then, in view, for each run of sibling phrasing content p130 nodes uninterrupted by other types of content, in an element that accepts
content other than phrasing content p130 as well as phrasing content p130 , let first be the first node of the run, and let last be the last
node of the run. For each such run that consists of at least one node that is neither embedded content p130 nor inter-element
whitespace p127 , a paragraph exists in the original DOM from immediately before first to immediately after last. (Paragraphs can thus
span across a p232 , ins p302 , del p303 , and map p430 elements.)

Conformance checkers may warn authors of cases where they have paragraphs that overlap each other (this can happen with
object p361 , video p368 , audio p372 , and canvas p618 elements, and indirectly through elements in other namespaces that allow HTML to be
further embedded therein, like SVG svg or MathML math).

A paragraph p132 is also formed explicitly by p p207 elements.

Note
The p p207 element can be used to wrap individual paragraphs when there would otherwise not be any content other than phrasing
content to separate the paragraphs from each other.

132
Example
In the following example, the link spans half of the first paragraph, all of the heading separating the two paragraphs, and half of
the second paragraph. It straddles the paragraphs and the heading.

<header>
Welcome!
<a href="about.html">
This is home of...
<h1>The Falcons!</h1>
The Lockheed Martin multirole jet fighter aircraft!
</a>
This page discusses the F-16 Fighting Falcon's innermost secrets.
</header>

Here is another way of marking this up, this time showing the paragraphs explicitly, and splitting the one link element into three:

<header>
<p>Welcome! <a href="about.html">This is home of...</a></p>
<h1><a href="about.html">The Falcons!</a></h1>
<p><a href="about.html">The Lockheed Martin multirole jet
fighter aircraft!</a> This page discusses the F-16 Fighting
Falcon's innermost secrets.</p>
</header>

Example
It is possible for paragraphs to overlap when using certain elements that define fallback content. For example, in the following
section:

<section>
<h1>My Cats</h1>
You can play with my cat simulator.
<object data="cats.sim">
To see the cat simulator, use one of the following links:
<ul>
<li><a href="cats.sim">Download simulator file</a>
<li><a href="https://sims.example.com/watch?v=LYds5xY4INU">Use online simulator</a>
</ul>
Alternatively, upgrade to the Mellblom Browser.
</object>
I'm quite proud of it.
</section>

There are five paragraphs:

1. The paragraph that says "You can play with my cat simulator. object I'm quite proud of it.", where object is the object p361
element.
2. The paragraph that says "To see the cat simulator, use one of the following links:".
3. The paragraph that says "Download simulator file".
4. The paragraph that says "Use online simulator".
5. The paragraph that says "Alternatively, upgrade to the Mellblom Browser.".

The first paragraph is overlapped by the other four. A user agent that supports the "cats.sim" resource will only show the first one,
but a user agent that shows the fallback will confusingly show the first sentence of the first paragraph as if it was in the same
paragraph as the second one, and will show the last paragraph as if it was at the start of the second sentence of the first
paragraph.

To avoid this confusion, explicit p p207 elements can be used. For example:

<section>
<h1>My Cats</h1>
<p>You can play with my cat simulator.</p>
<object data="cats.sim">

133
<p>To see the cat simulator, use one of the following links:</p>
<ul>
<li><a href="cats.sim">Download simulator file</a>
<li><a href="https://sims.example.com/watch?v=LYds5xY4INU">Use online simulator</a>
</ul>
<p>Alternatively, upgrade to the Mellblom Browser.</p>
</object>
<p>I'm quite proud of it.</p>
</section>


MDN

3.2.6 Global attributes § p13


4

The following attributes are common to and may be specified on all HTML elements p44 (even those not defined in this specification):

• accesskey p767
• autocapitalize p773
• autofocus p764
• contenteditable p769
• dir p139
• draggable p791
• enterkeyhint p775
• hidden p749
• inputmode p774
• is p688
• itemid p719
• itemprop p720
• itemref p719
• itemscope p718
• itemtype p718
• lang p137
• nonce p91
• spellcheck p771
• style p142
• tabindex p755
• title p137
• translate p138

These attributes are only defined by this specification as attributes for HTML elements p44 . When this specification refers to elements
having these attributes, elements from namespaces that are not defined as having these attributes must not be considered as being
elements with these attributes.

Example
For example, in the following XML fragment, the "bogus" element does not have a dir p139 attribute as defined in this specification,
despite having an attribute with the literal name "dir". Thus, the directionality p140 of the inner-most span p271 element is 'rtl p140 ',
inherited from the div p231 element indirectly through the "bogus" element.

<div xmlns="http://www.w3.org/1999/xhtml" dir="rtl">


<bogus xmlns="https://example.net/ns" dir="ltr">
<span xmlns="http://www.w3.org/1999/xhtml">
</span>
</bogus>
</div>

DOM standard defines the user agent requirements for the class, id, and slot attributes for any element in any namespace. ⋰
MDN
[DOM] p1252

The class p134 , id p134 , and slot p134 attributes may be specified on all HTML elements p44 .

When specified on HTML elements p44 , the class p134 attribute must have a value that is a set of space-separated tokens p86 representing
the various classes that the element belongs to.
134
Note
Assigning classes to an element affects class matching in selectors in CSS, the getElementsByClassName() method in the DOM,
and other such features.

There are no additional restrictions on the tokens authors can use in the class p134 attribute, but authors are encouraged to use
values that describe the nature of the content, rather than values that describe the desired presentation of the content.

When specified on HTML elements p44 , the id p134 attribute value must be unique amongst all the IDs in the element's tree and must
contain at least one character. The value must not contain any ASCII whitespace.

Note
The id p134 attribute specifies its element's unique identifier (ID).

There are no other restrictions on what form an ID can take; in particular, IDs can consist of just digits, start with a digit, start with
an underscore, consist of just punctuation, etc.

An element's unique identifier can be used for a variety of purposes, most notably as a way to link to specific parts of a document
using fragments, as a way to target an element when scripting, and as a way to style a specific element from CSS.

Identifiers are opaque strings. Particular meanings should not be derived from the value of the id p134 attribute.

There are no conformance requirements for the slot p134 attribute specific to HTML elements p44 .

Note
The slot p134 attribute is used to assign a slot to an element: an element with a slot p134 attribute is assigned to the slot created by
the slot p617 element whose name p617 attribute's value matches that slot p134 attribute's value — but only if that slot p617 element
finds itself in the shadow tree whose root's host has the corresponding slot p134 attribute value.

To enable assistive technology products to expose a more fine-grained interface than is otherwise possible with HTML elements and
attributes, a set of annotations for assistive technology products p148 can be specified (the ARIA role p62 and aria-* p62 attributes).
[ARIA] p1250

The following event handler content attributes p924 may be specified on any HTML element p44 :

• onabort p929
• onauxclick p929
• onblur p930 *
• oncancel p929
• oncanplay p929
• oncanplaythrough p929
• onchange p929
• onclick p929
• onclose p929
• oncontextmenu p929
• oncopy p931
• oncuechange p929
• oncut p931
• ondblclick p929
• ondrag p929
• ondragend p929
• ondragenter p929
• ondragexit p929
• ondragleave p929
• ondragover p929
• ondragstart p929
• ondrop p929
• ondurationchange p929
• onemptied p929
• onended p929
• onerror p930 *
• onfocus p930 *
• onformdata p930
• oninput p930
• oninvalid p930

135
• onkeydown p930
• onkeypress p930
• onkeyup p930
• onload p930 *
• onloadeddata p930
• onloadedmetadata p930
• onloadstart p930
• onmousedown p930
• onmouseenter p930
• onmouseleave p930
• onmousemove p930
• onmouseout p930
• onmouseover p930
• onmouseup p930
• onpaste p931
• onpause p930
• onplay p930
• onplaying p930
• onprogress p930
• onratechange p930
• onreset p930
• onresize p930 *
• onscroll p930 *
• onsecuritypolicyviolation p930
• onseeked p930
• onseeking p930
• onselect p930
• onslotchange p930
• onstalled p930
• onsubmit p930
• onsuspend p930
• ontimeupdate p930
• ontoggle p930
• onvolumechange p930
• onwaiting p930
• onwheel p930

Note
The attributes marked with an asterisk have a different meaning when specified on body p174 elements as those elements expose
event handlers p922 of the Window p806 object with the same names.

Note
While these attributes apply to all elements, they are not useful on all elements. For example, only media elements p376 will ever
receive a volumechange p428 event fired by the user agent.

Custom data attributes p143 (e.g. data-foldername or data-msgid) can be specified on any HTML element p44 , to store custom data,
state, annotations, and similar, specific to the page.

In HTML documents, elements in the HTML namespace may have an xmlns attribute specified, if, and only if, it has the exact value
"http://www.w3.org/1999/xhtml". This does not apply to XML documents.

Note
In HTML, the xmlns attribute has absolutely no effect. It is basically a talisman. It is allowed merely to make migration to and from
XML mildly easier. When parsed by an HTML parser p1045 , the attribute ends up in no namespace, not the "http://www.w3.org/
2000/xmlns/" namespace like namespace declaration attributes in XML do.

Note
In XML, an xmlns attribute is part of the namespace declaration mechanism, and an element cannot actually have an xmlns
attribute in no namespace specified.

XML also allows the use of the xml:space p50 attribute in the XML namespace on any element in an XML document. This attribute has
no effect on HTML elements p44 , as the default behavior in HTML is to preserve whitespace. [XML] p1257

136
Note
There is no way to serialize the xml:space p50 attribute on HTML elements p44 in the text/html p1217 syntax.


MDN

3.2.6.1 The title p137 attribute §


p13

p121
The title attribute represents advisory information for the element, such as would be appropriate for a tooltip. On a link, this could
be the title or a description of the target resource; on an image, it could be the image credit or a description of the image; on a
paragraph, it could be a footnote or commentary on the text; on a citation, it could be further information about the source; on
interactive content p130 , it could be a label for, or instructions for, use of the element; and so forth. The value is text.

Note
Relying on the title p137 attribute is currently discouraged as many user agents do not expose the attribute in an accessible
manner as required by this specification (e.g., requiring a pointing device such as a mouse to cause a tooltip to appear, which
excludes keyboard-only users and touch-only users, such as anyone with a modern phone or tablet).

If this attribute is omitted from an element, then it implies that the title p137 attribute of the nearest ancestor HTML element p44 with a
title p137 attribute set is also relevant to this element. Setting the attribute overrides this, explicitly stating that the advisory
information of any ancestors is not relevant to this element. Setting the attribute to the empty string indicates that the element has no
advisory information.

If the title p137 attribute's value contains U+000A LINE FEED (LF) characters, the content is split into multiple lines. Each U+000A LINE
FEED (LF) character represents a line break.

Example
Caution is advised with respect to the use of newlines in title p137 attributes.

For instance, the following snippet actually defines an abbreviation's expansion with a line break in it:

<p>My logs show that there was some interest in <abbr title="Hypertext
Transport Protocol">HTTP</abbr> today.</p>

Some elements, such as link p154 , abbr p243 , and input p479 , define additional semantics for the title p137 attribute beyond the semantics
described above.

The advisory information of an element is the value that the following algorithm returns, with the algorithm being aborted once a
value is returned. When the algorithm returns the empty string, then there is no advisory information.

1. If the element has a title p137 attribute, then return its value.

2. If the element has a parent element, then return the parent element's advisory information p137 .

3. Return the empty string.

User agents should inform the user when elements have advisory information p137 , otherwise the information would not be discoverable.

The title IDL attribute must reflect p92 the title p137 content attribute. ⋰
MDN

MDN

3.2.6.2 The lang p137 and xml:lang p137 attributes §


p13

The lang attribute (in no namespace) specifies the primary language for the element's contents and for any of the element's attributes
that contain text. Its value must be a valid BCP 47 language tag, or the empty string. Setting the attribute to the empty string indicates
that the primary language is unknown. [BCP47] p1250

The lang attribute in the XML namespace is defined in XML. [XML] p1257

If these attributes are omitted from an element, then the language of this element is the same as the language of its parent element, if
any.
137
The lang p137 attribute in no namespace may be used on any HTML element p44 .

The lang attribute in the XML namespace p137 may be used on HTML elements p44 in XML documents, as well as elements in other
namespaces if the relevant specifications allow it (in particular, MathML and SVG allow lang attributes in the XML namespace p137 to be
specified on their elements). If both the lang p137 attribute in no namespace and the lang attribute in the XML namespace p137 are
specified on the same element, they must have exactly the same value when compared in an ASCII case-insensitive manner.

Authors must not use the lang attribute in the XML namespace p137 on HTML elements p44 in HTML documents. To ease migration to and
from XML, authors may specify an attribute in no namespace with no prefix and with the literal localname "xml:lang" on HTML
elements p44 in HTML documents, but such attributes must only be specified if a lang p137 attribute in no namespace is also specified,
and both attributes must have the same value when compared in an ASCII case-insensitive manner.

Note
The attribute in no namespace with no prefix and with the literal localname "xml:lang" has no effect on language processing.

To determine the language of a node, user agents must look at the nearest ancestor element (including the element itself if the node
is an element) that has a lang attribute in the XML namespace p137 set or is an HTML element p44 and has a lang p137 in no namespace
attribute set. That attribute specifies the language of the node (regardless of its value).

If both the lang p137 attribute in no namespace and the lang attribute in the XML namespace p137 are set on an element, user agents
must use the lang attribute in the XML namespace p137 , and the lang p137 attribute in no namespace must be ignored p44 for the
purposes of determining the element's language.

If node's inclusive ancestors do not have either attribute set, but there is a pragma-set default language p166 set, then that is the
language of the node. If there is no pragma-set default language p166 set, then language information from a higher-level protocol (such
as HTTP), if any, must be used as the final fallback language instead. In the absence of any such language information, and in cases
where the higher-level protocol reports multiple languages, the language of the node is unknown, and the corresponding language tag
is the empty string.

If the resulting value is not a recognized language tag, then it must be treated as an unknown language having the given language
tag, distinct from all other languages. For the purposes of round-tripping or communicating with other services that expect language
tags, user agents should pass unknown language tags through unmodified, and tagged as being BCP 47 language tags, so that
subsequent services do not interpret the data as another type of language description. [BCP47] p1250

Example
Thus, for instance, an element with lang="xyzzy" would be matched by the selector :lang(xyzzy) (e.g. in CSS), but it would not
be matched by :lang(abcde), even though both are equally invalid. Similarly, if a Web browser and screen reader working in
unison communicated about the language of the element, the browser would tell the screen reader that the language was "xyzzy",
even if it knew it was invalid, just in case the screen reader actually supported a language with that tag after all. Even if the screen
reader supported both BCP 47 and another syntax for encoding language names, and in that other syntax the string "xyzzy" was a
way to denote the Belarusian language, it would be incorrect for the screen reader to then start treating text as Belarusian,
because "xyzzy" is not how Belarusian is described in BCP 47 codes (BCP 47 uses the code "be" for Belarusian).

If the resulting value is the empty string, then it must be interpreted as meaning that the language of the node is explicitly unknown.

User agents may use the element's language to determine proper processing or rendering (e.g. in the selection of appropriate fonts or
pronunciations, for dictionary selection, or for the user interfaces of form controls such as date pickers).

The lang IDL attribute must reflect p92 the lang p137 content attribute in no namespace.

3.2.6.3 The translate p138 attribute §


p13


The translate attribute is an enumerated attribute p67 that is used to specify whether an element's attribute values and the values
MDNof
its Text node children are to be translated when the page is localized, or whether to leave them unchanged.

The attribute's keywords are the empty string, yes, and no. The empty string and the yes keyword map to the yes state. The no
keyword maps to the no state. In addition, there is a third state, the inherit state, which is the missing value default p67 and the invalid
138
value default p67 .

Each element (even non-HTML elements) has a translation mode, which is in either the translate-enabled p139 state or the no-
translate p139 state. If an HTML element p44 's translate p138 attribute is in the yes state, then the element's translation mode p139 is in the
translate-enabled p139 state; otherwise, if the element's translate p138 attribute is in the no state, then the element's translation
mode p139 is in the no-translate p139 state. Otherwise, either the element's translate p138 attribute is in the inherit state, or the element
is not an HTML element p44 and thus does not have a translate p138 attribute; in either case, the element's translation mode p139 is in the
same state as its parent element's, if any, or in the translate-enabled p139 state, if the element is a document element.

When an element is in the translate-enabled state, the element's translatable attributes p139 and the values of its Text node children
are to be translated when the page is localized.

When an element is in the no-translate state, the element's attribute values and the values of its Text node children are to be left as-
is when the page is localized, e.g. because the element contains a person's name or a name of a computer program.

The following attributes are translatable attributes:

• abbr p455 on th p454 elements


• alt on area p432 , img p311 , and input p505 elements
• content p161 on meta p160 elements, if the name p161 attribute specifies a metadata name whose value is known to be
translatable
• download p276 on a p232 and area p431 elements
• label on optgroup p531 , option p532 , and track p375 elements
• lang p137 on HTML elements p44 ; must be "translated" to match the language used in the translation
• placeholder on input p516 and textarea p537 elements
• srcdoc p351 on iframe p350 elements; must be parsed and recursively processed
• style p142 on HTML elements p44 ; must be parsed and recursively processed (e.g. for the values of 'content' properties)
• title p137 on all HTML elements p44
• value p483 on input p479 elements with a type p481 attribute in the Button p507 state or the Reset Button p506 state

Other specifications may define other attributes that are also translatable attributes p139 . For example, ARIA would define the aria-
label attribute as translatable.

The translate IDL attribute must, on getting, return true if the element's translation mode p139 is translate-enabled p139 , and false
otherwise. On setting, it must set the content attribute's value to "yes" if the new value is true, and set the content attribute's value to
"no" otherwise.

Example
In this example, everything in the document is to be translated when the page is localized, except the sample keyboard input and
sample program output:

<!DOCTYPE HTML>
<html lang=en> <!-- default on the document element is translate=yes -->
<head>
<title>The Bee Game</title> <!-- implied translate=yes inherited from ancestors -->
</head>
<body>
<p>The Bee Game is a text adventure game in English.</p>
<p>When the game launches, the first thing you should do is type
<kbd translate=no>eat honey</kbd>. The game will respond with:</p>
<pre><samp translate=no>Yum yum! That was some good honey!</samp></pre>
</body>
</html>


MDN
3.2.6.4 The dir attribute § p13

p139
The dir attribute specifies the element's text directionality. The attribute is an enumerated attribute p67 with the following keywords
and states:

The ltr keyword, which maps to the ltr state


Indicates that the contents of the element are explicitly directionally isolated left-to-right text.

139
The rtl keyword, which maps to the rtl state
Indicates that the contents of the element are explicitly directionally isolated right-to-left text.

The auto keyword, which maps to the auto state


Indicates that the contents of the element are explicitly directionally isolated text, but that the direction is to be determined
programmatically using the contents of the element (as described below).

Note
The heuristic used by this state is very crude (it just looks at the first character with a strong directionality, in a manner
analogous to the Paragraph Level determination in the bidirectional algorithm). Authors are urged to only use this value as a
last resort when the direction of the text is truly unknown and no better server-side heuristic can be applied. [BIDI] p1250

Note
For textarea p534 and pre p211 elements, the heuristic is applied on a per-paragraph level.

The attribute has no invalid value default p67 and no missing value default p67 .

The directionality of an element (any element, not just an HTML element p44 ) is either 'ltr' or 'rtl', and is determined as per the first
appropriate set of steps from the following list:

p139
↪ If the element's dir attribute is in the ltr p139 state
p139
↪ If the element is a document element and the dir attribute is not in a defined state (i.e. it is not present or has
an invalid value)
p479
↪ If the element is an input element whose type p481 attribute is in the Telephone p486 state, and the dir p139 attribute
is not in a defined state (i.e. it is not present or has an invalid value)
The directionality p140 of the element is 'ltr p140 '.

p139
↪ If the element's dir attribute is in the rtl p140 state
The directionality p140 of the element is 'rtl p140 '.

p479
↪ If the element is an input element whose type p481 attribute is in the Text p486 , Search p486 , Telephone p486 , URL p487 , or
E-mail p488 state, and the dir p139 attribute is in the auto p140 state
p534
↪ If the element is a textarea element and the dir p139 attribute is in the auto p140 state
If the element's value p550 contains a character of bidirectional character type AL or R, and there is no character of bidirectional
character type L anywhere before it in the element's value p550 , then the directionality p140 of the element is 'rtl p140 '. [BIDI] p1250

Otherwise, if the element's value p550 is not the empty string, or if the element is a document element, the directionality p140 of
the element is 'ltr p140 '.

Otherwise, the directionality p140 of the element is the same as the element's parent element's directionality p140 .

p139
↪ If the element's dir attribute is in the auto p140 state
p270
↪ If the element is a bdi element and the dir p139 attribute is not in a defined state (i.e. it is not present or has an
invalid value)
Find the first character in tree order that matches the following criteria:

• The character is from a Text node that is a descendant of the element whose directionality p140 is being determined.

• The character is of bidirectional character type L, AL, or R. [BIDI] p1250

• The character is not in a Text node that has an ancestor element that is a descendant of the element whose
directionality p140 is being determined and that is either:

◦ A bdi p270 element.


◦ A script p599 element.
◦ A style p170 element.
◦ A textarea p534 element.
◦ An element with a dir p139 attribute in a defined state.

If such a character is found and it is of bidirectional character type AL or R, the directionality p140 of the element is 'rtl p140 '.

140
If such a character is found and it is of bidirectional character type L, the directionality p140 of the element is 'ltr p140 '.

Otherwise, if the element is a document element, the directionality p140 of the element is 'ltr p140 '.

Otherwise, the directionality p140 of the element is the same as the element's parent element's directionality p140 .

p139
↪ If the element has a parent element and the dir attribute is not in a defined state (i.e. it is not present or has an
invalid value)
The directionality p140 of the element is the same as the element's parent element's directionality p140 .

Note
Since the dir p139 attribute is only defined for HTML elements p44 , it cannot be present on elements from other namespaces. Thus,
elements from other namespaces always just inherit their directionality p140 from their parent element, or, if they don't have one,
default to 'ltr p140 '.

Note
This attribute has rendering requirements involving the bidirectional algorithm p148 .

The directionality of an attribute of an HTML element p44 , which is used when the text of that attribute is to be included in the
rendering in some manner, is determined as per the first appropriate set of steps from the following list:

p141
↪ If the attribute is a directionality-capable attribute and the element's dir p139 attribute is in the auto p140 state
Find the first character (in logical order) of the attribute's value that is of bidirectional character type L, AL, or R. [BIDI] p1250

If such a character is found and it is of bidirectional character type AL or R, the directionality of the attribute p141 is 'rtl p140 '.

Otherwise, the directionality of the attribute p141 is 'ltr p140 '.

↪ Otherwise
The directionality of the attribute p141 is the same as the element's directionality p140 .

The following attributes are directionality-capable attributes:

• abbr p455 on th p454 elements


• alt on area p432 , img p311 , and input p505 elements
• content p161 on meta p160 elements, if the name p161 attribute specifies a metadata name whose value is primarily intended to be
human-readable rather than machine-readable
• label on optgroup p531 , option p532 , and track p375 elements
• placeholder on input p516 and textarea p537 elements
• title p137 on all HTML elements p44

For web developers (non-normative)


document . dir p141 [ = value ]
Returns the html element p115 's dir p139 attribute's value, if any.
Can be set, to either "ltr", "rtl", or "auto" to replace the html element p115 's dir p139 attribute's value.
If there is no html element p115 , returns the empty string and ignores new values.

⋰.
The dir IDL attribute on an element must reflect p92 the dir p139 content attribute of that element, limited to only known values p92
MDN
⋰ to
The dir IDL attribute on Document p112 objects must reflect p92 the dir p139 content attribute of the html element p115 , if any, limited
MDN
only known values p92 . If there is no such element, then the attribute must return the empty string and do nothing on setting.

Note
Authors are strongly encouraged to use the dir p139 attribute to indicate text direction rather than using CSS, since that way their
documents will continue to render correctly even in the absence of CSS (e.g. as interpreted by search engines).

Example

141
This markup fragment is of an IM conversation.

<p dir=auto class="u1"><b><bdi>Student</bdi>:</b> How do you write "What's your name?" in


Arabic?</p>
<p dir=auto class="u2"><b><bdi>Teacher</bdi>:</b> ‫<ما اسمك؟‬/p>
<p dir=auto class="u1"><b><bdi>Student</bdi>:</b> Thanks.</p>
<p dir=auto class="u2"><b><bdi>Teacher</bdi>:</b> That's written "‫را‬
ً ‫"شك‬.</p>
<p dir=auto class="u2"><b><bdi>Teacher</bdi>:</b> Do you know how to write "Please"?</p>
<p dir=auto class="u1"><b><bdi>Student</bdi>:</b> "‫"من فضلك‬, right?</p>

Given a suitable style sheet and the default alignment styles for the p p207 element, namely to align the text to the start edge of the
paragraph, the resulting rendering could be as follows:

As noted earlier, the auto p140 value is not a panacea. The final paragraph in this example is misinterpreted as being right-to-left
text, since it begins with an Arabic character, which causes the "right?" to be to the left of the Arabic text.


MDN
3.2.6.5 The style attribute § p14
2

p44
All HTML elements may have the style p142 content attribute set. This is a style attribute as defined by CSS Style Attributes.
[CSSATTR] p1251

In user agents that support CSS, the attribute's value must be parsed when the attribute is added or has its value changed, according
to the rules given for style attributes. [CSSATTR] p1251

However, if the Should element's inline behavior be blocked by Content Security Policy? algorithm returns "Blocked" when executed
upon the attribute's element, "style attribute", and the attribute's value, then the style rules defined in the attribute's value must
not be applied to the element. [CSP] p1250

Documents that use style p142 attributes on any of their elements must still be comprehensible and usable if those attributes were
removed.

Note
In particular, using the style p142 attribute to hide and show content, or to convey meaning that is otherwise not included in the
document, is non-conforming. (To hide and show content, use the hidden p749 attribute.)

For web developers (non-normative)


element . style p142
Returns a CSSStyleDeclaration object for the element's style p142 attribute.

The style IDL attribute is defined in CSS Object Model (CSSOM). [CSSOM] p1251

Example
In the following example, the words that refer to colors are marked up using the span p271 element and the style p142 attribute to
make those words show up in the relevant colors in visual media.

142
<p>My sweat suit is <span style="color: green; background:
transparent">green</span> and my eyes are <span style="color: blue;
background: transparent">blue</span>.</p>


MDN
p143 p14
3.2.6.6 Embedding custom non-visible data with the data-* attributes § ⋰ Support:
3
Chrome fo
Chrome
A custom data attribute is an attribute in no namespace whose name starts with the string "data-", has at least one character after iOS Safari
the hyphen, is XML-compatible p44 , and contains no ASCII upper alphas. Firefox
Samsung
UC Browse
Android
Note Safari

All attribute names on HTML elements p44 in HTML documents get ASCII-lowercased automatically, so the restriction on ASCII IE
Edge
uppercase letters doesn't affect such documents. Opera Min
Opera
Android B

Custom data attributes p143 are intended to store custom data, state, annotations, and similar, private to the page or application, for Sou

which there are no more appropriate attributes or elements.

These attributes are not intended for use by software that is not known to the administrators of the site that uses the attributes. For
generic extensions that are to be used by multiple independent tools, either this specification should be extended to provide the
feature explicitly, or a technology like microdata p713 should be used (with a standardized vocabulary).

Example
For instance, a site about music could annotate list items representing tracks in an album with custom data attributes containing
the length of each track. This information could then be used by the site itself to allow the user to sort the list by track length, or to
filter the list for tracks of certain lengths.

<ol>
<li data-length="2m11s">Beyond The Sea</li>
...
</ol>

It would be inappropriate, however, for the user to use generic software not associated with that music site to search for tracks of a
certain length by looking at this data.

This is because these attributes are intended for use by the site's own scripts, and are not a generic extension mechanism for
publicly-usable metadata.

Example
Similarly, a page author could write markup that provides information for a translation tool that they are intending to use:

<p>The third <span data-mytrans-de="Anspruch">claim</span> covers the case of <span


translate="no">HTML</span> markup.</p>

In this example, the "data-mytrans-de" attribute gives specific text for the MyTrans product to use when translating the phrase
"claim" to German. However, the standard translate p138 attribute is used to tell it that in all languages, "HTML" is to remain
unchanged. When a standard attribute is available, there is no need for a custom data attribute p143 to be used.

Example
In this example, custom data attributes are used to store the result of a feature detection for PaymentRequest, which could be
used in CSS to style a checkout page differently.

<script>
if ('PaymentRequest' in window) {
document.documentElement.dataset.hasPaymentRequest = '';
}

143
</script>

Here, the data-has-payment-request attribute is effectively being used as a boolean attribute p66 ; it is enough to check the
presence of the attribute. However, if the author so wishes, it could later be populated with some value, maybe to indicate limited
functionality of the feature.

Every HTML element p44 may have any number of custom data attributes p143 specified, with any value.

Authors should carefully design such extensions so that when the attributes are ignored and any associated CSS dropped, the page is
still usable.

User agents must not derive any implementation behavior from these attributes or values. Specifications intended for user agents
must not define these attributes to have any meaningful values.

JavaScript libraries may use the custom data attributes p143 , as they are considered to be part of the page on which they are used.
Authors of libraries that are reused by many authors are encouraged to include their name in the attribute names, to reduce the risk of
clashes. Where it makes sense, library authors are also encouraged to make the exact name used in the attribute names customizable,
so that libraries whose authors unknowingly picked the same name can be used on the same page, and so that multiple versions of a
particular library can be used on the same page even when those versions are not mutually compatible.

Example
For example, a library called "DoQuery" could use attribute names like data-doquery-range, and a library called "jJo" could use
attributes names like data-jjo-range. The jJo library could also provide an API to set which prefix to use (e.g.
J.setDataPrefix('j2'), making the attributes have names like data-j2-range).

For web developers (non-normative)


element . dataset p144
Returns a DOMStringMap p144 object for the element's data-* p143 attributes.
Hyphenated names become camel-cased. For example, data-foo-bar="" becomes element.dataset.fooBar.

⋰ p144
The dataset IDL attribute provides convenient accessors for all the data-* p143 attributes on an element. On getting, the dataset
p144
MDN
IDL attribute must return a DOMStringMap whose associated element is this element.

The DOMStringMap p144 interface is used for the dataset p144 attribute. Each DOMStringMap p144 has an associated element.

IDL
[Exposed=Window,
OverrideBuiltins]
interface DOMStringMap {
getter DOMString (DOMString name);
[CEReactions] setter void (DOMString name, DOMString value);
[CEReactions] deleter void (DOMString name);
};

To get a DOMStringMap's name-value pairs, run the following algorithm:

1. Let list be an empty list of name-value pairs.

2. For each content attribute on the DOMStringMap p144 's associated element p144 whose first five characters are the string
"data-" and whose remaining characters (if any) do not include any ASCII upper alphas, in the order that those attributes are
listed in the element's attribute list, add a name-value pair to list whose name is the attribute's name with the first five
characters removed and whose value is the attribute's value.

3. For each name in list, for each U+002D HYPHEN-MINUS character (-) in the name that is followed by an ASCII lower alpha,
remove the U+002D HYPHEN-MINUS character (-) and replace the character that followed it by the same character converted
to ASCII uppercase.

4. Return list.

The supported property names on a DOMStringMap p144 object at any instant are the names of each pair returned from getting the
144
DOMStringMap's name-value pairs p144 at that instant, in the order returned.

To determine the value of a named property name for a DOMStringMap p144 , return the value component of the name-value pair whose
name component is name in the list returned from getting the DOMStringMap's name-value pairs p144 .

To set the value of a new named property or set the value of an existing named property for a DOMStringMap p144 , given a property
name name and a new value value, run the following steps:

1. If name contains a U+002D HYPHEN-MINUS character (-) followed by an ASCII lower alpha, then throw a "SyntaxError"
DOMException.

2. For each ASCII upper alpha in name, insert a U+002D HYPHEN-MINUS character (-) before the character and replace the
character with the same character converted to ASCII lowercase.

3. Insert the string data- at the front of name.

4. If name does not match the XML Name production, throw an "InvalidCharacterError" DOMException.

5. Set an attribute value for the DOMStringMap p144 's associated element p144 using name and value.

To delete an existing named property name for a DOMStringMap p144 , run the following steps:

1. For each ASCII upper alpha in name, insert a U+002D HYPHEN-MINUS character (-) before the character and replace the
character with the same character converted to ASCII lowercase.

2. Insert the string data- at the front of name.

3. Remove an attribute by name given name and the DOMStringMap p144 's associated element p144 .

Note
This algorithm will only get invoked by Web IDL for names that are given by the earlier algorithm for getting the DOMStringMap's
name-value pairs p144 . [WEBIDL] p1257

Example
If a Web page wanted an element to represent a space ship, e.g. as part of a game, it would have to use the class p134 attribute
along with data-* p143 attributes:

<div class="spaceship" data-ship-id="92432"


data-weapons="laser 2" data-shields="50%"
data-x="30" data-y="10" data-z="90">
<button class="fire"
onclick="spaceships[this.parentNode.dataset.shipId].fire()">
Fire
</button>
</div>

Notice how the hyphenated attribute name becomes camel-cased in the API.

Example
Given the following fragment and elements with similar constructions:

<img class="tower" id="tower5" data-x="12" data-y="5"


data-ai="robotarget" data-hp="46" data-ability="flames"
src="towers/rocket.png" alt="Rocket Tower">

...one could imagine a function splashDamage() that takes some arguments, the first of which is the element to process:

function splashDamage(node, x, y, damage) {


if (node.classList.contains('tower') && // checking the 'class' attribute
node.dataset.x == x && // reading the 'data-x' attribute
node.dataset.y == y) { // reading the 'data-y' attribute
var hp = parseInt(node.dataset.hp); // reading the 'data-hp' attribute

145
hp = hp - damage;
if (hp < 0) {
hp = 0;
node.dataset.ai = 'dead'; // setting the 'data-ai' attribute
delete node.dataset.ability; // removing the 'data-ability' attribute
}
node.dataset.hp = hp; // setting the 'data-hp' attribute
}
}


MDN

3.2.7 The innerText p146 IDL attribute §


p14

6
⋰ Support:
Chrome fo
Chrome
For web developers (non-normative) iOS Safari

p146 Firefox
element . innerText [ = value ] Samsung
UC Browse
Returns the element's text content "as rendered". Android
Safari
Can be set, to replace the element's children with the given value, but with line breaks converted to br p272 elements. IE
Edge
Opera Min
Opera
On getting, the innerText attribute must follow these steps:
Android B
Sou
p1158
1. If this element is not being rendered , or if the user agent is a non-CSS user agent, then return this element's descendant
text content.

Note
This step can produce surprising results, as when the innerText p146 attribute is accessed on an element not being
rendered p1158 , its text contents are returned, but when accessed on an element that is being rendered p1158 , all of its
children that are not being rendered p1158 have their text contents ignored.

2. Let results be a new empty list.

3. For each child node node of this element:

1. Let current be the list resulting in running the inner text collection steps p146 with node. Each item in results will
either be a JavaScript string or a positive integer (a required line break count).

Note
Intuitively, a required line break count item means that a certain number of line breaks appear at that point,
but they can be collapsed with the line breaks induced by adjacent required line break count items,
reminiscent to CSS margin-collapsing.

2. For each item item in current, append item to results.

4. Remove any items from results that are the empty string.

5. Remove any runs of consecutive required line break count items at the start or end of results.

6. Replace each remaining run of consecutive required line break count items with a string consisting of as many U+000A LINE
FEED (LF) characters as the maximum of the values in the required line break count items.

7. Return the concatenation of the string items in results.

The inner text collection steps, given a node node, are as follows:

1. Let items be the result of running the inner text collection steps p146 with each child node of node in tree order, and then
concatenating the results to a single list.

2. If node's computed value of 'visibility' is not 'visible', then return items.

3. If node is not being rendered p1158 , then return items. For the purpose of this step, the following elements must act as
described if the computed value of the 'display' property is not 'none':

146
◦ select p523 elements have an associated non-replaced inline CSS box whose child boxes include only those of
optgroup p530 and option p531 element child nodes;
◦ optgroup p530 elements have an associated non-replaced block-level CSS box whose child boxes include only those
of option p531 element child nodes; and
◦ option p531 element have an associated non-replaced block-level CSS box whose child boxes are as normal for non-
replaced block-level CSS boxes.

Note
items can be non-empty due to 'display:contents'.

4. If node is a Text node, then for each CSS text box produced by node, in content order, compute the text of the box after
application of the CSS 'white-space' processing rules and 'text-transform' rules, set items to the list of the resulting strings,
and return items. The CSS 'white-space' processing rules are slightly modified: collapsible spaces at the end of lines are
always collapsed, but they are only removed if the line is the last line of the block, or it ends with a br p272 element. Soft
hyphens should be preserved. [CSSTEXT] p1252

5. If node is a br p272 element, then append a string containing a single U+000A LINE FEED (LF) character to items.

6. If node's computed value of 'display' is 'table-cell', and node's CSS box is not the last 'table-cell' box of its enclosing 'table-
row' box, then append a string containing a single U+0009 CHARACTER TABULATION (tab) character to items.

7. If node's computed value of 'display' is 'table-row', and node's CSS box is not the last 'table-row' box of the nearest ancestor
'table' box, then append a string containing a single U+000A LINE FEED (LF) character to items.

8. If node is a p p207 element, then append 2 (a required line break count) at the beginning and end of items.

9. If node's used value of 'display' is block-level or 'table-caption', then append 1 (a required line break count) at the beginning
and end of items. [CSSDISPLAY] p1251

Note
Floats and absolutely-positioned elements fall into this category.

10. Return items.

Note
Note that descendant nodes of most replaced elements (e.g., textarea p534 , input p479 , and video p368 — but not button p521 ) are not
rendered by CSS, strictly speaking, and therefore have no CSS boxes for the purposes of this algorithm.

This algorithm is amenable to being generalized to work on ranges. Then we can use it as the basis for Selection's stringifier and
maybe expose it directly on ranges. See Bugzilla bug 10583.

On setting, the innerText p146 attribute must follow these steps:

1. Let document be this element's node document.

2. Let fragment be a new DocumentFragment object whose node document is document.

3. Let input be the given value.

4. Let position be a pointer into input, initially pointing at the start of the string.

5. Let text be the empty string.

6. While position is not past the end of input:

1. Collect a sequence of code points that are not U+000A LINE FEED (LF) or U+000D CARRIAGE RETURN (CR)
characters from input given position. Set text to the collected characters.

2. If text is not the empty string, then append a new Text node whose data is text and node document is document
to fragment.

3. While position is not past the end of input, and the character at position is either a U+000A LINE FEED (LF) or
U+000D CARRIAGE RETURN (CR) character:

1. If the character at position is a U+000D CARRIAGE RETURN (CR) character and the next character is a
U+000A LINE FEED (LF) character, then advance position to the next character in input.

147
2. Advance position to the next character in input.

3. Append the result of creating an element given document, br p272 , and the HTML namespace to fragment.

7. Replace all with fragment within this element.

3.2.8 Requirements relating to the bidirectional algorithm § p14


8

3.2.8.1 Authoring conformance criteria for bidirectional-algorithm formatting characters § p14


8

p130 p44 p127


Text content in HTML elements with Text nodes in their contents , and text in attributes of HTML elements p44 that allow free-
form text, may contain characters in the ranges U+202A to U+202E and U+2066 to U+2069 (the bidirectional-algorithm formatting
characters). [BIDI] p1250

Note
Authors are encouraged to use the dir p139 attribute, the bdo p271 element, and the bdi p270 element, rather than maintaining the
bidirectional-algorithm formatting characters manually. The bidirectional-algorithm formatting characters interact poorly with CSS.

3.2.8.2 User agent conformance criteria § p14


8

User agents must implement the Unicode bidirectional algorithm to determine the proper ordering of characters when rendering
documents and parts of documents. [BIDI] p1250

The mapping of HTML to the Unicode bidirectional algorithm must be done in one of three ways. Either the user agent must implement
CSS, including in particular the CSS 'unicode-bidi', 'direction', and 'content' properties, and must have, in its user agent style sheet, the
rules using those properties given in this specification's rendering p1158 section, or, alternatively, the user agent must act as if it
implemented just the aforementioned properties and had a user agent style sheet that included all the aforementioned rules, but
without letting style sheets specified in documents override them, or, alternatively, the user agent must implement another styling
language with equivalent semantics. [CSSGC] p1251

The following elements and attributes have requirements defined by the rendering p1158 section that, due to the requirements in this
section, are requirements on all user agents (not just those that support the suggested default rendering p47 ):

• dir p139 attribute


• bdi p270 element
• bdo p271 element
• br p272 element
• pre p211 element
• textarea p534 element
• wbr p273 element

3.2.9 Requirements related to ARIA and to platform accessibility APIs § p14


8

User agent requirements for implementing Accessibility API semantics on HTML elements p44 are defined in HTML Accessibility API
Mappings. [HTMLAAM] p1253

Conformance checker requirements for checking use of ARIA role p62 and aria-* p62 attributes on HTML elements p44 are defined in ARIA
in HTML. [ARIAHTML] p1250

148
4 The elements of HTML § p14
9

4.1 The document element § p14


MDN

4.1.1 The html element § p14


9

Categories p126 : ⋰
MDN
None.

Contexts in which this element can be used p126 :


As document's document element.
Wherever a subdocument fragment is allowed in a compound document.

Content model p126 :


A head p150 element followed by a body p174 element.

Tag omission in text/html p126 :


An html p149 element's start tag p1035 can be omitted if the first thing inside the html p149 element is not a comment p1044 .
An html p149 element's end tag p1036 can be omitted if the html p149 element is not immediately followed by a comment p1044 .

Content attributes p126 :


Global attributes p134
manifest p149 — Application cache manifest p862

DOM interface p126 :

IDL
[Exposed=Window]
interface HTMLHtmlElement : HTMLElement {
[HTMLConstructor] constructor();

// also has obsolete members


};

The html p149 element represents p121 the root of an HTML document.

Authors are encouraged to specify a lang p137 attribute on the root html p149 element, giving the document's language. This aids speech
synthesis tools to determine what pronunciations to use, translation tools to determine what rules to use, and so forth.

The manifest attribute gives the address of the document's application cache p862 manifest p862 , if there is one. If the attribute is
present, the attribute's value must be a valid non-empty URL potentially surrounded by spaces p87 .

The manifest p149 attribute is part of the legacy "offline Web applications p859 " feature, which is in the process of being removed
from the Web platform. (This is a long process that takes many years.) Using the manifest p149 attribute at this time is highly
discouraged. Use service workers instead. [SW] p1256

The manifest p149 attribute only has an effect p876 during the early stages of document load. Changing the attribute dynamically thus
has no effect (and thus, no DOM API is provided for this attribute).

Note
For the purposes of application cache selection p876 , later base p152 elements cannot affect the parsing of URLs p88 in manifest p149
attributes, as the attributes are processed before those elements are seen.

Note
The window.applicationCache p880 IDL attribute provides scripted access to the offline application cache p862 mechanism.

149
Example
The html p149 element in the following example declares that the document's language is English.

<!DOCTYPE html>
<html lang="en">
<head>
<title>Swapping Songs</title>
</head>
<body>
<h1>Swapping Songs</h1>
<p>Tonight I swapped some of the songs I wrote with some friends, who
gave me some of the songs they wrote. I love sharing my music.</p>
</body>
</html>

4.2 Document metadata § p15


0


MDN

4.2.1 The head element § p15


0

Categories p126 : ⋰
MDN
None.

Contexts in which this element can be used p126 :


As the first element in an html p149 element.

Content model p126 :


If the document is an iframe srcdoc document p351 or if title information is available from a higher-level protocol: Zero or more
elements of metadata content p128 , of which no more than one is a title p151 element and no more than one is a base p152
element.
Otherwise: One or more elements of metadata content p128 , of which exactly one is a title p151 element and no more than one is
a base p152 element.

Tag omission in text/html p126 :


A head p150 element's start tag p1035 can be omitted if the element is empty, or if the first thing inside the head p150 element is an
element.
A head p150 element's end tag p1036 can be omitted if the head p150 element is not immediately followed by ASCII whitespace or a
comment p1044 .

Content attributes p126 :


Global attributes p134

DOM interface p126 :

IDL
[Exposed=Window]
interface HTMLHeadElement : HTMLElement {
[HTMLConstructor] constructor();
};

The head p150 element represents p121 a collection of metadata for the Document p112 .

Example
The collection of metadata in a head p150 element can be large or small. Here is an example of a very short one:

<!doctype html>
<html lang=en>
<head>

150
<title>A document with a short head</title>
</head>
<body>
...

Here is an example of a longer one:

<!DOCTYPE HTML>
<HTML LANG="EN">
<HEAD>
<META CHARSET="UTF-8">
<BASE HREF="https://www.example.com/">
<TITLE>An application with a long head</TITLE>
<LINK REL="STYLESHEET" HREF="default.css">
<LINK REL="STYLESHEET ALTERNATE" HREF="big.css" TITLE="Big Text">
<SCRIPT SRC="support.js"></SCRIPT>
<META NAME="APPLICATION-NAME" CONTENT="Long headed application">
</HEAD>
<BODY>
...

Note
The title p151 element is a required child in most situations, but when a higher-level protocol provides title information, e.g. in the
Subject line of an e-mail when HTML is used as an e-mail authoring format, the title p151 element can be omitted.


MDN

4.2.2 The title element § p15


1

Categories p126
: ⋰
MDN
p128
Metadata content .

Contexts in which this element can be used p126 :


In a head p150 element containing no other title p151 elements.

Content model p126 :


Text p130 that is not inter-element whitespace p127 .

Tag omission in text/html p126 :


Neither tag is omissible.

Content attributes p126 :


Global attributes p134

DOM interface p126 :

IDL
[Exposed=Window]
interface HTMLTitleElement : HTMLElement {
[HTMLConstructor] constructor();

[CEReactions] attribute DOMString text;


};

The title p151 element represents p121 the document's title or name. Authors should use titles that identify their documents even when
they are used out of context, for example in a user's history or bookmarks, or in search results. The document's title is often different
from its first heading, since the first heading does not have to stand alone when taken out of context.

There must be no more than one title p151 element per document.

151
Note
If it's reasonable for the Document p112 to have no title, then the title p151 element is probably not required. See the head p150
element's content model for a description of when the element is required.

For web developers (non-normative)


title . text p152 [ = value ]
Returns the child text content of the element.
Can be set, to replace the element's children with the given value.

The text attribute's getter must return this title p151 element's child text content.

The text p152 attribute's setter must string replace all with the given value within this title p151 element.

Example
Here are some examples of appropriate titles, contrasted with the top-level headings that might be used on those same pages.

<title>Introduction to The Mating Rituals of Bees</title>


...
<h1>Introduction</h1>
<p>This companion guide to the highly successful
<cite>Introduction to Medieval Bee-Keeping</cite> book is...

The next page might be a part of the same site. Note how the title describes the subject matter unambiguously, while the first
heading assumes the reader knows what the context is and therefore won't wonder if the dances are Salsa or Waltz:

<title>Dances used during bee mating rituals</title>


...
<h1>The Dances</h1>

The string to use as the document's title is given by the document.title p115 IDL attribute.

User agents should use the document's title when referring to the document in their user interface. When the contents of a title p151
element are used in this way, the directionality p140 of that title p151 element should be used to set the directionality of the document's
title in the user interface.


MDN

4.2.3 The base element § p15


2

Categories p126
: ⋰
MDN
p128
Metadata content .

Contexts in which this element can be used p126 :


In a head p150 element containing no other base p152 elements.

Content model p126 :


Nothing p127 .

Tag omission in text/html p126 :


No end tag p1036 .

Content attributes p126 :


Global attributes p134
href p153 — Document base URL p88
target p153 — Default browsing context p793 for hyperlink p275 navigation p840 and form submission p580

DOM interface p126 :

IDL
[Exposed=Window]
interface HTMLBaseElement : HTMLElement {

152
[HTMLConstructor] constructor();

[CEReactions] attribute USVString href;


[CEReactions] attribute DOMString target;
};

The base p152 element allows authors to specify the document base URL p88 for the purposes of parsing URLs p88 , and the name of the
default browsing context p793 for the purposes of following hyperlinks p282 . The element does not represent p121 any content beyond this
information.

There must be no more than one base p152 element per document.

A base p152 element must have either an href p153 attribute, a target p153 attribute, or both.

The href content attribute, if specified, must contain a valid URL potentially surrounded by spaces p87 .

A base p152 element, if it has an href p153 attribute, must come before any other elements in the tree that have attributes defined as
taking URLs, except the html p149 element (its manifest p149 attribute isn't affected by base p152 elements).

Note
If there are multiple base p152 elements with href p153 attributes, all but the first are ignored.

The target attribute, if specified, must contain a valid browsing context name or keyword p800 , which specifies which browsing
context p793 is to be used as the default when hyperlinks p275 and forms p473 in the Document p112 cause navigation p840 .

A base p152 element, if it has a target p153 attribute, must come before any elements in the tree that represent hyperlinks p275 .

Note
If there are multiple base p152 elements with target p153 attributes, all but the first are ignored.

To get an element's target, given an a p232 , area p431 , or form p473 element element, run these steps:

1. If element has a target attribute, then return that attribute's value.

2. If element's node document contains a base p152 element with a target p153 attribute, then return the value of the target p153
attribute of the first such base p152 element.

3. Return the empty string.

A base p152 element that is the first base p152 element with an href p153 content attribute in a document tree has a frozen base URL. The
frozen base URL p153 must be immediately p42 set p153 for an element whenever any of the following situations occur:

• The base p152 element becomes the first base p152 element in tree order with an href p153 content attribute in its Document p112 .
• The base p152 element is the first base p152 element in tree order with an href p153 content attribute in its Document p112 , and its
href p153 content attribute is changed.

To set the frozen base URL for an element element:

1. Let document be element's node document.

2. Let urlRecord be the result of parsing the value of element's href p153 content attribute with document's fallback base URL p88 ,
and document's character encoding. (Thus, the base p152 element isn't affected by itself.)

3. Set element's frozen base URL p153 to document's fallback base URL p88 , if urlRecord is failure or running Is base allowed for
Document? on the resulting URL record p88 and document returns "Blocked", and to urlRecord otherwise.

The href IDL attribute, on getting, must return the result of running the following algorithm:

1. Let document be element's node document.

2. Let url be the value of the href p153 attribute of this element, if it has one, and the empty string otherwise.

153
3. Let urlRecord be the result of parsing url with document's fallback base URL p88 , and document's character encoding. (Thus,
the base p152 element isn't affected by other base p152 elements or itself.)

4. If urlRecord is failure, return url.

5. Return the serialization of urlRecord.

The href p153 IDL attribute, on setting, must set the href p153 content attribute to the given new value.

The target IDL attribute must reflect p92 the content attribute of the same name.

Example
In this example, a base p152 element is used to set the document base URL p88 :

<!DOCTYPE html>
<html lang="en">
<head>
<title>This is an example for the &lt;base&gt; element</title>
<base href="https://www.example.com/news/index.html">
</head>
<body>
<p>Visit the <a href="archives.html">archives</a>.</p>
</body>
</html>

The link in the above example would be a link to "https://www.example.com/news/archives.html".


MDN

4.2.4 The link element § p15


4

Categories p126 : ⋰
MDN
Metadata content p128 .
If the element is allowed in the body p155 : flow content p129 .
If the element is allowed in the body p155 : phrasing content p130 .

Contexts in which this element can be used p126 :


Where metadata content p128 is expected.
In a noscript p612 element that is a child of a head p150 element.
If the element is allowed in the body p155 : where phrasing content p130 is expected.

Content model p126 :


Nothing p127 .

Tag omission in text/html p126 :


No end tag p1036 .

Content attributes p126 :


Global attributes p134
href p155 — Address of the hyperlink p275
crossorigin p155 — How the element handles crossorigin requests
rel p155 — Relationship between the document containing the hyperlink p275 and the destination resource
media p156 — Applicable media
integrity p156 — Integrity metadata used in Subresource Integrity checks [SRI] p1256
hreflang p156 — Language of the linked resource
type p156 — Hint for the type of the referenced resource
referrerpolicy p156 — Referrer policy for fetches initiated by the element
sizes p156 — Sizes of the icons (for rel p155 ="icon p290 ")
imagesrcset p156 — Images to use in different situations (e.g., high-resolution displays, small monitors, etc.)
imagesizes p156 — Image sizes for different page layouts
as p157 — Potential destination for a preload request (for rel p155 ="preload p296 " and rel p155 ="modulepreload p292 ")
color p157 — Color to use when customizing a site's icon (for rel p155 ="mask-icon")
Also, the title p156 attribute has special semantics p156 on this element: Title of the link; CSS style sheet set name.
154
DOM interface p126 :

IDL
[Exposed=Window]
interface HTMLLinkElement : HTMLElement {
[HTMLConstructor] constructor();

[CEReactions] attribute USVString href;


[CEReactions] attribute DOMString? crossOrigin;
[CEReactions] attribute DOMString rel;
[CEReactions] attribute DOMString as; // (default "")
[SameObject, PutForwards=value] readonly attribute DOMTokenList relList;
[CEReactions] attribute DOMString media;
[CEReactions] attribute DOMString integrity;
[CEReactions] attribute DOMString hreflang;
[CEReactions] attribute DOMString type;
[SameObject, PutForwards=value] readonly attribute DOMTokenList sizes;
[CEReactions] attribute USVString imageSrcset;
[CEReactions] attribute DOMString imageSizes;
[CEReactions] attribute DOMString referrerPolicy;

// also has obsolete members


};
HTMLLinkElement includes LinkStyle;

The link p154 element allows authors to link their document to other resources.

The destination of the link(s) is given by the href attribute, which must be present and must contain a valid non-empty URL potentially
surrounded by spaces p87 . If the href p155 attribute is absent, then the element does not define a link.

The crossorigin attribute is a CORS settings attribute p90 . It is intended for use with external resource links p275 .

⋰ is a
The types of link indicated (the relationships) are given by the value of the rel attribute, which, if present, must have a value that
MDN
unordered set of unique space-separated tokens p86 . The allowed keywords and their meanings p285 are defined in a later section. If the
p155
rel attribute is absent, has no keywords, or if none of the keywords used are allowed according to the definitions in this
specification, then the element does not create any links.

rel p155 's supported tokens are the keywords defined in HTML link types p285 which are allowed on link p154 elements, impact the
processing model, and are supported by the user agent. The possible supported tokens are alternate p287 , dns-prefetch p289 , icon p290 ,
modulepreload p292 , next p300 , pingback p295 , preconnect p295 , prefetch p296 , preload p296 , prerender p296 , search p296 , and stylesheet p297 .
rel p155 's supported tokens must only include the tokens from this list that the user agent implements the processing model for.

Note
Theoretically a user agent could support the processing model for the canonical p289 keyword — if it were a search engine that
executed JavaScript. But in practice that's quite unlikely. So in most cases, canonical p289 ought not be included in rel p155 's
supported tokens.

A link p154 element must have either a rel p155 attribute or an itemprop p720 attribute, but not both.

If a link p154 element has an itemprop p720 attribute, or has a rel p155 attribute that contains only keywords that are body-ok p286 , then the
element is said to be allowed in the body. This means that the element can be used where phrasing content p130 is expected.

Note
If the rel p155 attribute is used, the element can only sometimes be used in the body p174 of the page. When used with the
itemprop p720 attribute, the element can be used both in the head p150 element and in the body p174 of the page, subject to the
constraints of the microdata model.

Two categories of links can be created using the link p154 element: Links to external resources p275 and hyperlinks p275 . The link types
section p285 defines whether a particular link type is an external resource or a hyperlink. One link p154 element can create multiple links
(of which some might be external resource links p275 and some might be hyperlinks p275 ); exactly which and how many links are created
depends on the keywords given in the rel p155 attribute. User agents must process the links on a per-link basis, not a per-element basis.

155
Note
Each link created for a link p154 element is handled separately. For instance, if there are two link p154 elements with
rel="stylesheet", they each count as a separate external resource, and each is affected by its own attributes independently.
Similarly, if a single link p154 element has a rel p155 attribute with the value next stylesheet, it creates both a hyperlink p275 (for
the next p300 keyword) and an external resource link p275 (for the stylesheet p297 keyword), and they are affected by other attributes
(such as media p156 or title p156 ) differently.

Example
For example, the following link p154 element creates two hyperlinks p275 (to the same page):

<link rel="author license" href="/about">

The two links created by this element are one whose semantic is that the target page has information about the current page's
author, and one whose semantic is that the target page has information regarding the license under which the current page is
provided.

Note
Hyperlinks p275 created with the link p154 element and its rel p155 attribute apply to the whole document. This contrasts with the
rel p276 attribute of a p232 and area p431 elements, which indicates the type of a link whose context is given by the link's location
within the document.

The exact behavior for links to external resources p275 depends on the exact relationship, as defined for the relevant link type p285 .

The media attribute says which media the resource applies to. The value must be a valid media query list p87 .

The integrity attribute represents the integrity metadata for requests which this element is responsible for. The value is text. The
attribute must only be specified on link p154 elements that have a rel p155 attribute that contains the stylesheet p297 , preload p296 , or
modulepreload p292 keyword. [SRI] p1256

The hreflang attribute on the link p154 element has the same semantics as the hreflang attribute on the a element p276 .

The type attribute gives the MIME type of the linked resource. It is purely advisory. The value must be a valid MIME type string.

For external resource links p275 , the type p156 attribute is used as a hint to user agents so that they can avoid fetching resources they do
not support.

The referrerpolicy attribute is a referrer policy attribute p91 . It is intended for use with external resource links p275 , where it helps set
the referrer policy used when fetching and processing the linked resource p159 . [REFERRERPOLICY] p1255 .

The title attribute gives the title of the link. With one exception, it is purely advisory. The value is text. The exception is for style
sheet links that are in a document tree, for which the title p156 attribute defines CSS style sheet sets.

Note
The title p156 attribute on link p154 elements differs from the global title p137 attribute of most other elements in that a link
without a title does not inherit the title of the parent element: it merely has no title.

The imagesrcset attribute may be present, and is a srcset attribute p325 .

The imagesrcset p156 and href p155 attributes (if width descriptors p325 are not used) together contribute the image sources p327 to the
source set p327 .

If the imagesrcset p156 attribute is present and has any image candidate strings p325 using a width descriptor p325 , the imagesizes
attribute must also be present, and is a sizes attribute p325 . The imagesizes p156 attribute contributes the source size p327 to the source
set p327 .

The sizes attribute gives the sizes of icons for visual media. Its value, if present, is merely advisory. User agents may use the value to
decide which icon(s) to use if multiple icons are available. If specified, the attribute must have a value that is an unordered set of
unique space-separated tokens p86 which are ASCII case-insensitive. Each value must be either an ASCII case-insensitive match for the
string "any p290 ", or a value that consists of two valid non-negative integers p68 that do not have a leading U+0030 DIGIT ZERO (0)

156
character and that are separated by a single U+0078 LATIN SMALL LETTER X or U+0058 LATIN CAPITAL LETTER X character. The
attribute must not be specified on link p154 elements that do not have a rel p155 attribute that specifies the icon p290 keyword or the
apple-touch-icon keyword.

Note
The apple-touch-icon keyword is a registered extension to the predefined set of link types p300 , but user agents are not required
to support it in any way.

The as attribute specifies the potential destination for a preload request for the resource given by the href p155 attribute. It is an
enumerated attribute p67 . Each potential destination is a keyword for this attribute, mapping to a state of the same name. The attribute
must be specified on link p154 elements that have a rel p155 attribute that contains the preload p296 keyword. It may be specified on
link p154 elements that have a rel p155 attribute that contains the modulepreload p292 keyword; in such cases it must have a value which
is a script-like destination. For other link p154 elements, it must not be specified.

The processing model for how the as p157 attribute is used is given in an individual link type's fetch and process the linked resource p159
algorithm.

Note
The attribute does not have a missing value default p67 or invalid value default p67 , meaning that invalid or missing values for the
attribute map to no state. This is accounted for in the processing model. For preload p296 links, both conditions are an error; for
modulepreload p292 links, a missing value will be treated as "script".

The color attribute is used with the mask-icon link type. The attribute must not be specified on link p154 elements that do not have a
rel p155 attribute that contains the mask-icon keyword. The value must be a string that matches the CSS <color> production, defining
a suggested color that user agents can use to customize the display of the icon that the user sees when they pin your site.

Note
This specification does not have any user agent requirements for the color p157 attribute.

Note
The mask-icon keyword is a registered extension to the predefined set of link types p300 , but user agents are not required to
support it in any way.

The IDL attributes href, hreflang, integrity, media, rel, sizes, and type each must reflect p92 the respective content attributes of
the same name.

Note
There is no reflecting IDL attribute for the color p157 attribute, but this might be added later.

The as IDL attribute must reflect p92 the as p157 content attribute, limited to only known values p92 .

The crossOrigin IDL attribute must reflect p92 the crossorigin p155 content attribute, limited to only known values p92 .

The referrerPolicy IDL attribute must reflect p92 the referrerpolicy p156 content attribute, limited to only known values p92 .

The imageSrcset IDL attribute must reflect p92 the imagesrcset p156 content attribute.

The imageSizes IDL attribute must reflect p92 the imagesizes p156 content attribute.

The relList IDL attribute must reflect p92 the rel p155 content attribute. ⋰
MDN

4.2.4.1 Processing the media p156 attribute §


p15

p275 p156
If the link is a hyperlink then the media attribute is purely advisory, and describes for which media the document in question

157
was designed.

However, if the link is an external resource link p275 , then the media p156 attribute is prescriptive. The user agent must apply the external
resource when the media p156 attribute's value matches the environment p87 and the other relevant conditions apply, and must not apply
it otherwise.

The default, if the media p156 attribute is omitted, is "all", meaning that by default links apply to all media.

Note
The external resource might have further restrictions defined within that limit its applicability. For example, a CSS style sheet
might have some @media blocks. This specification does not override such further restrictions or requirements.

4.2.4.2 Processing the type p156 attribute §


p15

p156
If the type attribute is present, then the user agent must assume that the resource is of the given type (even if that is not a valid
MIME type string, e.g. the empty string). If the attribute is omitted, but the external resource link p275 type has a default type defined,
then the user agent must assume that the resource is of that type. If the UA does not support the given MIME type for the given link
relationship, then the UA should not fetch and process the linked resource p159 ; if the UA does support the given MIME type for the given
link relationship, then the UA should fetch and process the linked resource p159 at the appropriate time as specified for the external
resource link p275 's particular type. If the attribute is omitted, and the external resource link p275 type does not have a default type
defined, but the user agent would fetch and process the linked resource p159 if the type was known and supported, then the user agent
should fetch and process the linked resource p159 under the assumption that it will be supported.

User agents must not consider the type p156 attribute authoritative — upon fetching the resource, user agents must not use the type p156
attribute to determine its actual type. Only the actual type (as defined in the next paragraph) is used to determine whether to apply
the resource, not the aforementioned assumed type.

If the external resource link p275 type defines rules for processing the resource's Content-Type metadata p89 , then those rules apply.
Otherwise, if the resource is expected to be an image, user agents may apply the image sniffing rules, with the official type being the
type determined from the resource's Content-Type metadata p89 , and use the resulting computed type of the resource as if it was the
actual type. Otherwise, if neither of these conditions apply or if the user agent opts not to apply the image sniffing rules, then the user
agent must use the resource's Content-Type metadata p89 to determine the type of the resource. If there is no type metadata, but the
external resource link p275 type has a default type defined, then the user agent must assume that the resource is of that type.

Note
The stylesheet p297 link type defines rules for processing the resource's Content-Type metadata p89 .

Once the user agent has established the type of the resource, the user agent must apply the resource if it is of a supported type and
the other relevant conditions apply, and must ignore the resource otherwise.

Example
If a document contains style sheet links labeled as follows:

<link rel="stylesheet" href="A" type="text/plain">


<link rel="stylesheet" href="B" type="text/css">
<link rel="stylesheet" href="C">

...then a compliant UA that supported only CSS style sheets would fetch the B and C files, and skip the A file (since text/plain is
not the MIME type for CSS style sheets).

For files B and C, it would then check the actual types returned by the server. For those that are sent as text/css p1248 , it would
apply the styles, but for those labeled as text/plain, or any other type, it would not.

If one of the two files was returned without a Content-Type p89 metadata, or with a syntactically incorrect type like Content-
Type: "null", then the default type for stylesheet p297 links would kick in. Since that default type is text/css p1248 , the style sheet
would nonetheless be applied.

158
4.2.4.3 Fetching and processing a resource from a link p154 element §
p15

p275
All external resource links have a fetch and process the linked resource algorithm, which takes a link p154 element el. They also
have linked resource fetch setup steps which take a link p154 element el and request request. Individual link types may provide
their own fetch and process the linked resource p159 algorithm, but unless explicitly stated, they use the default fetch and process the
linked resource p159 algorithm. Similarly, individual link types may provide their own linked resource fetch setup steps p159 , but unless
explicitly stated, these steps just return true.

The default fetch and process the linked resource, given a link p154 element el, is as follows:

1. If el's href p155 attribute's value is the empty string, then return.

2. Parse p88 the URL given by el's href p155 attribute, relative to el's node document. If that fails, then return. Otherwise, let url be
the resulting URL record p88 .

3. Let corsAttributeState be the current state of the el's crossorigin p155 content attribute.

4. Let request be the result of creating a potential-CORS request p89 given url, the empty string, and corsAttributeState.

5. Set request's synchronous flag.

6. Set request's client to el's node document's relevant settings object p901 .

7. Set request's cryptographic nonce metadata to the current value of el's [[CryptographicNonce]] p91 internal slot.

8. Set request's integrity metadata to the current value of el's integrity p156 content attribute.

9. Set request's referrer policy to the current state of the el's referrerpolicy p156 attribute.

10. Run the linked resource fetch setup steps p159 , given el and request. If the result is false, then return.

11. Run the following steps in parallel p42 :

1. Let response be the result of fetching request.

2. Let success be true.

3. If response is a network error or its status is not an ok status, set success to false.

Note
Note that content-specific errors, e.g., CSS parse errors or PNG decoding errors, do not affect success.

4. If success is true, wait for the link resource p275 's critical subresources p44 to finish loading.

The specification that defines a link type's critical subresources p44 (e.g., CSS) is expected to describe how
these subresources are fetched and processed. However, since this is not currently explicit, this specification
describes waiting for a link resource p275 's critical subresources p44 to be fetched and processed, with the
expectation that this will be done correctly.

5. Queue a task p914 on the networking task source p920 to process the linked resource p159 given el, success, and
response.

User agents may opt to only try to fetch and process p159 such resources when they are needed, instead of pro-actively fetching all the
external resources p275 that are not applied.

Similar to the fetch and process the linked resource p159 algorithm, all external resource links p275 have a process the linked resource
algorithm which takes a link p154 element el, boolean success, and response response. Unless an individual link type provides its own
process the linked resource p159 algorithm, the default process the linked resource algorithm, given a link p154 element el, and
boolean success (ignoring response) is used:

1. If success is true, fire an event named load p1246 at el.

2. Otherwise, fire an event named error p1246 at el.

Unless otherwise specified for a given rel p155 keyword, the element must delay the load event p1131 of the element's node document
until all the attempts to fetch and process the linked resource p159 and its critical subresources p44 are complete. (Resources that the
user agent has not yet attempted to fetch and process, e.g., because it is waiting for the resource to be needed, do not delay the load

159
event p1131 .)

4.2.4.4 Processing `Link` headers § p16


0

HTTP `Link` headers, if supported, must be assumed to come before any links in the document, in the order that they were given in
the HTTP message. These headers are to be processed according to the rules given in the relevant specifications. [HTTP] p1253
[WEBLINK] p1257

Note
Registration of relation types in HTTP `Link` headers is distinct from HTML link types p285 , and thus their semantics can be different
from same-named HTML types.

The processing of `Link` headers, in particular their influence on a Document p112 's script-blocking style sheet counter p173 , is not
defined. See issue #4224 for discussion on integrating this into the spec.

4.2.4.5 Providing users with a means to follow hyperlinks created using the link p154 element §
p16

p282
Interactive user agents may provide users with a means to follow the hyperlinks created using the link p154 element, somewhere
within their user interface. The exact interface is not defined by this specification, but it could include the following information
(obtained from the element's attributes, again as defined below), in some form or another (possibly simplified), for each hyperlink p275
created with each link p154 element in the document:

• The relationship between this document and the resource (given by the rel p155 attribute)

• The title of the resource (given by the title p156 attribute).

• The address of the resource (given by the href p155 attribute).

• The language of the resource (given by the hreflang p156 attribute).

• The optimum media for the resource (given by the media p156 attribute).

User agents could also include other information, such as the type of the resource (as given by the type p156 attribute).

The activation behavior of link p154 elements that create hyperlinks p275 is to follow the hyperlink p282 created by the link p154 element.


MDN

4.2.5 The meta element § p16


0

Categories p126 : ⋰
MDN
Metadata content p128 .
If the itemprop p720 attribute is present: flow content p129 .
If the itemprop p720 attribute is present: phrasing content p130 .

Contexts in which this element can be used p126 :


If the charset p161 attribute is present, or if the element's http-equiv p165 attribute is in the Encoding declaration state p166 : in a
head p150 element.
If the http-equiv p165 attribute is present but not in the Encoding declaration state p166 : in a head p150 element.
If the http-equiv p165 attribute is present but not in the Encoding declaration state p166 : in a noscript p612 element that is a child
of a head p150 element.
If the name p161 attribute is present: where metadata content p128 is expected.
If the itemprop p720 attribute is present: where metadata content p128 is expected.
If the itemprop p720 attribute is present: where phrasing content p130 is expected.

Content model p126 :


Nothing p127 .

160
Tag omission in text/html p126 :
No end tag p1036 .

Content attributes p126 :


Global attributes p134
name p161 — Metadata name
http-equiv p165 — Pragma directive
content p161 — Value of the element
charset p161 — Character encoding declaration p169

DOM interface p126 :

IDL
[Exposed=Window]
interface HTMLMetaElement : HTMLElement {
[HTMLConstructor] constructor();

[CEReactions] attribute DOMString name;


[CEReactions] attribute DOMString httpEquiv;
[CEReactions] attribute DOMString content;

// also has obsolete members


};

The meta p160 element represents p121 various kinds of metadata that cannot be expressed using the title p151 , base p152 , link p154 ,
style p170 , and script p599 elements.

The meta p160 element can represent document-level metadata with the name p161 attribute, pragma directives with the http-equiv p165
attribute, and the file's character encoding declaration p169 when an HTML document is serialized to string form (e.g. for transmission
over the network or for disk storage) with the charset p161 attribute.

Exactly one of the name p161 , http-equiv p165 , charset p161 , and itemprop p720 attributes must be specified.

If either name p1