Living Standard — Last Updated 30 May 2023
innerText
and outerText
propertiesEvery XML and HTML document in an HTML UA is represented by a Document
object. [DOM]
The Document
object's DOM. It is initially set when
the Document
object is created, but can change during the lifetime of the
Document
object; for example, it changes when the user navigates to a fragment on the page
and when the pushState()
method is called with a new
URL. [DOM]
Interactive user agents typically expose the Document
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.
The Document
object's DOM. It is initially set when the
Document
object is created, and can change during the lifetime of the
Document
only upon setting document.domain
. A Document
's origin can differ from the origin of its URL;
for example when a child navigable is created, its active document's origin is inherited from its parent's active document's origin, even though its active document's URL is
about:blank
. [DOM]
When a Document
is created by a script using
the or
methods, the
Document
is ready for post-load tasks immediately.
The document's referrer is a string (representing a URL) that
can be set when the Document
is created. If it is not explicitly set, then its value
is the empty string.
Document
objectSupport in all current engines.
DOM defines a Each Each Each Each Each Each DOM defines the Support in all current engines. Returns the URL of the The The Returns the HTTP cookies that apply to the 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 (e.g. in an Support in all current engines. The A
On setting, if the document is a cookie-averse Since the The Support in all current engines. Returns the date of the last modification to the document, as reported by the server, in the
form " If the last modification date is not known, the current time is returned instead. The 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 Returns " The The Support in all current engines. Each For The To update the current document readiness for If document's current document readiness equals
readinessValue, then return. Set document's current document readiness to
readinessValue. If document is associated with an HTML parser, then: Let now be the current high resolution time given
document's relevant global object. If readinessValue is " Otherwise, if readinessValue is " Fire an event named A A A A The document load timing info struct has the following items: The document unload timing info struct has the following items: Each A A document's render-blocking element set is non-empty, or
document allows adding render-blocking elements. The current high resolution time given document's relevant
global object has not exceeded an implementation-defined timeout value. An element el is render-blocking if el's
node document document is render-blocked, and el
is in document's render-blocking element set. To block rendering on an element el: Let document be el's node document. If document allows adding render-blocking elements, then
append el to document's
render-blocking element set. To unblock rendering on an element el: Let document be el's node document. Remove el from document's
render-blocking element set. Whenever a render-blocking element el
becomes browsing-context disconnected, or el's
blocking attribute's value is changed so that el is no longer
potentially render-blocking, then unblock rendering on
el. The
element of the current document.">Document/head Support in all current engines. Returns the The The Returns the document's title, as given by the Can be set, to update the document's title. If there is no appropriate element to update, the
new value is ignored. The Support in all current engines. The If the document element is an SVG Otherwise, let value be the child text content of the
Strip and collapse ASCII whitespace in value. Return value. On setting, the steps corresponding to the first matching condition in the following list must
be run: If there is an SVG Otherwise: Let element be the result of creating an
element given the document element's node document, Insert element as the first child of the document
element. String replace all with the given value within element. If the If the Otherwise: Let element be the result of creating an
element given the document element's node document,
Append element to the
String replace all with the given value within element. Do nothing. Support in all current engines. Returns the body element. Can be set, to replace the body element. If the new value is not a The body element of a document is the first of the The The value returned by the In this example, the setter successfully inserts a Support in all current engines. Support in all current engines. Support in all current engines. Support in all current engines. Returns an Support in all current engines. Support in all current engines. The The The The The The Support in all current engines. Returns a The Support in all current engines. Returns the Returns null if the The This API has fallen out of favor in the implementer and standards community, as
it globally exposes The the value of the the value of the the value of the To determine the value of a named property
name for a Let elements be the list of named
elements with the name name that are in a document tree with the
There will be at least one such element, since the algorithm would otherwise not
have been invoked by Web IDL. If elements has only one element, and that element is an Otherwise, if elements has only one element, return that element. Otherwise return an Named elements with the name name, for the purposes of the above algorithm, are those that are either: An The Elements, attributes, and attribute values in HTML are defined (by this specification) to have
certain meanings (semantics). For example, the 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. As a simple example, consider a web page written by an author who only considered desktop
computer web browsers: 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. 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). The 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 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: Authors must not use elements, attributes, or attribute values that are not permitted by this
specification or other applicable specifications, as doing so makes it significantly
harder for the language to be extended in the future. 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: Here would be an alternative and correct way to mark this up: DOM nodes whose node document's browsing context is null are exempt from all document
conformance requirements other than the HTML syntax requirements and XML syntax requirements. In particular, the However, if the above markup were to omit the 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. HTML has a The nodes representing HTML elements 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 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. For example, an 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 Consider the following A hyperlink-based reference could be created
using the However, there are many other ways of referencing the
"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) The basic interface, from which all the HTML elements' interfaces inherit, and which must be used by elements that have no additional requirements, is
the Support in all current engines. Support in all current engines. The The element interface for an element with name name in the
HTML namespace is determined as follows: If name is If name is If name is Otherwise, if this specification defines an interface appropriate for the element
type corresponding to the local name name, then return that interface. If other applicable specifications define an appropriate interface for
name, then return the interface they define. If name is a valid custom element name, then return
Return The use of Features shared between HTML and SVG elements use the An example of an element that is neither an HTML nor SVG element is one created as
follows: To support the custom elements feature, all HTML elements have
special constructor behavior. This is indicated via the The Interfaces declared with constructor operations that are annotated with the Let registry be the current global object's
If NewTarget is equal to the active function
object, then throw a This can occur when a custom element is defined using an element interface as
its constructor: In this case, during the execution of Let definition be the entry in registry with constructor equal to
NewTarget. If there is no such definition, then throw a Since there can be no entry in registry with a constructor of undefined, this
step also prevents HTML element constructors from being called as functions (since in that case
NewTarget will be undefined). Let is value be null. If definition's local
name is equal to definition's name (i.e., definition is for
an autonomous custom element), then: If the active function object is not This can occur when a custom element is defined to not extend any local names, but
inherits from a non- In this case, during the (implicit) Otherwise (i.e., if definition is for a customized built-in
element): Let valid local names be the list of local names for elements defined in this
specification or in other applicable specifications that use the active
function object as their element interface. If valid local names does not contain definition's local name, then throw a
This can occur when a custom element is defined to extend a given local name but inherits
from the wrong class: In this case, during the (implicit) Set is value to definition's name. If definition's construction stack is
empty, then: 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 and NewTarget. Set element's node document to the current global
object's associated
Set element's namespace to
the HTML namespace. Set element's namespace
prefix to null. Set element's local name to
definition's local
name. Set element's custom element state to " Set element's custom
element definition to definition. Set element's Return element. This occurs when author script constructs a new custom element directly, e.g.
via If Type(prototype) is not Object, then: Let realm be ? GetFunctionRealm(NewTarget). Set prototype to the interface prototype object of
realm whose interface is the same as the interface of the active function
object. 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. Let element be the last entry in definition's construction stack. If element is an already
constructed marker, then throw an " This can occur when the author code inside the custom element
constructor non-conformantly creates another
instance of the class being constructed, before calling This can also occur when author code inside the custom element constructor non-conformantly calls Perform ? element.[[SetPrototypeOf]](prototype). Replace the last entry in definition's construction stack with an
already constructed
marker. Return element. This step is normally reached when upgrading a custom element; the existing element is
returned, so that the In addition to the constructor behavior implied by Named constructors for HTML elements can also be used in an Each element in this specification has a definition that includes the following
information: A list of categories to which the element belongs.
These are used when defining the content models for each element. 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. For simplicity, only the most specific expectations are listed. For example, all phrasing content is flow content. Thus, elements
that are phrasing content will only be listed as "where phrasing
content is expected", since this is the more-specific expectation. Anywhere that expects
flow content also expects phrasing content, and thus also meets this
expectation. A normative description of what content must be included as children and descendants of
the element. A non-normative description of whether, in the 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.) For authors: Conformance requirements for use of ARIA For implementers: User agent requirements for implementing accessibility API semantics
are defined in HTML Accessibility API Mappings. [HTMLAAM] A normative definition of a DOM interface that such elements must implement. This is then followed by a description of what the element represents, along with
any additional normative conformance criteria that may apply to authors and implementations. Examples are sometimes also included. An attribute value is a string. Except where otherwise specified,
attribute values on HTML elements may be any string value, including the empty
string, and there is no restriction on what text can be specified in such attribute values. Each element defined in this specification has a content model: a description of the element's
expected contents. An HTML
element 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 Inter-element whitespace, 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. 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 Authors must not use HTML elements 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. The Atom Syndication Format defines a In addition, HTML elements may be orphan nodes (i.e. without a parent node). For example, creating a When an element's content model is nothing, the
element must contain no Most HTML elements whose content model is "nothing" are also, for convenience,
void elements (elements that have no end tag in
the HTML syntax). However, these are entirely separate concepts. 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: Some elements also fall into other categories, which are defined in other parts of
this specification. These categories are related as follows: 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. 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. Elements from other namespaces whose semantics are primarily metadata-related (e.g. RDF) are
also metadata content. Thus, in the XML serialization, one can use RDF, like this: This isn't possible in the HTML serialization, however. Most elements that are used in the body of documents and applications are categorized as
flow content. Sectioning content is content that defines the scope of Heading content defines the heading of a section (whether explicitly marked
up using sectioning content elements, or implied by the heading content itself). 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 form paragraphs. 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 Embedded content is content that imports
another resource into the document, or content from another vocabulary that
is inserted into the document. Elements that are from namespaces other than the HTML namespace and that convey
content but not metadata, are embedded content 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. Interactive content is content that is specifically intended for user
interaction. As a general rule, elements whose content model allows any flow content or
phrasing content should have at least one node in its contents that is palpable content and
that does not have the attribute specified. Palpable content makes an element non-empty by providing either
some descendant non-empty text, or else something users can
hear ( This requirement is not a hard requirement, however, as there are many cases where an element
can be empty legitimately, for example when it is used as a placeholder which will later be filled
in by a script, or when the element is part of a template and would on most pages be filled in but
on some pages is not relevant. 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: Script-supporting elements are those that do not represent 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: Some elements are described as transparent; they have "transparent" in the
description of their content model. The content model of a transparent 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. For instance, an In some cases, where transparent elements are nested in each other, the process
has to be applied iteratively. Consider the following markup fragment: To check whether "Apples" is allowed inside the 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. The term paragraph as defined in this section is used for more than
just the definition of the A paragraph is typically a run of phrasing content 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. 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 do not form paragraphs. Paragraphs in flow content are defined relative to what the document looks like
without the Generally, having elements straddle paragraph boundaries is best avoided.
Maintaining such markup can be difficult. The following example takes the markup from the earlier example and puts Let view be a view of the DOM that replaces all Conformance checkers may warn authors of cases where they have paragraphs that overlap each
other (this can happen with A paragraph is also formed explicitly by The 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. Here is another way of marking this up, this time showing the paragraphs explicitly, and
splitting the one link element into three: It is possible for paragraphs to overlap when using certain elements that define fallback
content. For example, in the following section: There are five paragraphs: 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 The following attributes are common to and may be specified on all HTML
elements (even those not defined in this specification): These attributes are only defined by this specification as attributes for HTML
elements. 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. For example, in the following XML fragment, the " Support in all current engines. DOM defines the user agent requirements for the The When specified on HTML elements, the Assigning classes to an element affects class matching in selectors in CSS, the There are no additional restrictions on the tokens authors can use in the When specified on HTML elements, the The 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
There are no conformance requirements for the The 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 can be specified (the ARIA The following event handler content attributes may be specified on any HTML element: The attributes marked with an asterisk have a different meaning when specified on
While these attributes apply to all elements, they are not useful on all elements.
For example, only media elements will ever receive a Custom data attributes (e.g. In HTML documents, elements in the HTML namespace may have an In HTML, the In XML, an XML also allows the use of the There is no way to serialize the Support in all current engines. The Relying on the If this attribute is omitted from an element, then it implies that the If the Caution is advised with respect to the use of newlines in For instance, the following snippet actually defines an abbreviation's expansion with a
line break in it: Some elements, such as 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. If the element has a If the element has a parent element, then return the parent element's advisory
information. Return the empty string. User agents should inform the user when elements have advisory information,
otherwise the information would not be discoverable. Support in all current engines. The Support in all current engines. The The 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. The The Authors must not use the The attribute in no namespace with no prefix and with the literal localname " 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 If both the If node's inclusive ancestors do not have either
attribute set, but there is a pragma-set default language set, then that is the
language of the node. If there is no pragma-set default language 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] Thus, for instance, an element with 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). Support in all current engines. The Support in all current engines. The The attribute's keywords are the empty string, Each element (even non-HTML elements) has a translation mode, which is in either the
translate-enabled state or the no-translate state. If an HTML element's When an element is in the translate-enabled state, the element's translatable
attributes and the values of its When an element is in the no-translate state, the element's attribute values and the
values of its The following attributes are translatable attributes: Other specifications may define other attributes that are also translatable
attributes. For example, ARIA would define the The 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: Support in all current engines. The Indicates that the contents of the element are explicitly directionally isolated
left-to-right text. Indicates that the contents of the element are explicitly directionally isolated
right-to-left text. 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). 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] For The attribute has no invalid value default and no missing value default. The directionality of an element (any element, not just an HTML element) is either 'ltr' or 'rtl', and is determined as per the first appropriate set of steps from
the following list: The directionality of the element is 'ltr'. The directionality of the element is 'rtl'. If the element's value 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, then
the directionality of the element is 'rtl'. [BIDI] Otherwise, if the element's value is not the empty
string, or if the element is a document element, the directionality of
the element is 'ltr'. Otherwise, the directionality of the element is the same as the element's parent
element's directionality. Find the first character in tree order that matches the following criteria: The character is from a The character is of bidirectional character type L, AL, or R. [BIDI] The character is not in a If such a character is found and it is of bidirectional character type AL or R, the
directionality of the element is 'rtl'. If such a character is found and it is of bidirectional character type L, the
directionality of the element is 'ltr'. Otherwise, if the element is a document element, the directionality
of the element is 'ltr'. Otherwise, the directionality of the element is the same as the element's parent
element's directionality. The directionality of the element is the same as the element's parent
element's directionality. Since the This attribute has rendering requirements involving the
bidirectional algorithm. The directionality of an attribute of an
HTML element, 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: Find the first character (in logical order) of the attribute's value that is of bidirectional
character type L, AL, or R. [BIDI] If such a character is found and it is of bidirectional character type AL or R, the
directionality of the attribute is 'rtl'. Otherwise, the directionality of the attribute is 'ltr'. The following attributes are directionality-capable attributes: Returns the Can be set, to either " If there is no Support in all current engines. The Support in all current engines. The Authors are strongly encouraged to use the This markup fragment is of an IM conversation. Given a suitable style sheet and the default alignment styles for the As noted earlier, the Support in all current engines. All HTML elements may have the 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] However, if the Should element's inline behavior be blocked by Content Security
Policy? algorithm returns " Documents that use In particular, using the Returns a The In the following example, the words that refer to colors are marked up using the
Support in all current engines. A custom data attribute is an attribute in no namespace whose name starts with the
string " All attribute names on HTML elements in HTML documents
get ASCII-lowercased automatically, so the restriction on ASCII uppercase letters doesn't affect
such documents. Custom data attributes are intended to store custom
data, state, annotations, and similar, private to the page or application, for 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 should be used (with a standardized vocabulary). 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. 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. Similarly, a page author could write markup that provides information for a translation tool
that they are intending to use: In this example, the " In this example, custom data attributes are used to store the result of a feature detection
for Here, the Every HTML element may have any number of custom data attributes 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, 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. For example, a library called "DoQuery" could use attribute names like Support in all current engines. Support in all current engines. Returns a Hyphenated names become camel-cased. For example, The The To get a Let list be an empty list of name-value pairs. For each content attribute on the 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. Return list. The supported property names on a To determine the value of a named property
name for a To set the value of a new named property or
set the value of an existing named property for a If name contains a U+002D HYPHEN-MINUS character (-) followed by an ASCII
lower alpha, then throw a " Insert the string If name does not match the XML To delete an existing named property
name for a 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. Insert the string Remove an attribute by name given
name and the This algorithm will only get invoked by Web IDL for names that
are given by the earlier algorithm for getting the
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 Notice how the hyphenated attribute name becomes camel-cased in the API. Given the following fragment and elements with similar constructions: ...one could imagine a function Support in all current engines. Returns the element's text content "as rendered". Can be set, to replace the element's children with the given value, but with line breaks
converted to Returns the element's text content "as rendered". Can be set, to replace the element with the given value, but with line breaks converted to
Support in all current engines. The If this is not being rendered or if the user agent is a non-CSS
user agent, then return this's descendant text content. This step can produce surprising results, as when the Let results be a new empty list. For each child node node of this: Let current be the list resulting in running the
rendered text collection steps with node. Each item in
results will either be a string or a positive integer (a required
line break count). 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. For each item item in current, append item to
results. Remove any items from results that are the
empty string. Remove any runs of consecutive required line break
count items at the start or end of results. Replace each remaining run of consecutive required
line break count items with a string consisting of as many U+000A LF code points as the
maximum of the values in the required line break count items. Return the concatenation of the string items in results. The rendered text collection steps, given a node node,
are as follows: Let items be the result of running the rendered text collection
steps with each child node of node in tree order, and then
concatenating the results to a single list. If node's computed value of 'visibility' is not
'visible', then return items. If node is not being rendered, 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': items can be non-empty due to 'display:contents'. If node is a If node is a 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 TAB code point to
items. 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 LF code point to
items. If node is a 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] Floats and absolutely-positioned elements fall into this category. Return items. Note that descendant nodes of most replaced elements (e.g., This algorithm is amenable to being generalized to work on ranges. Then we can use it as the basis for The Let fragment be the rendered text fragment for the given value
given this's node document. Replace all with fragment within
this. The If this's parent is null, then throw a
" Let previous be this's previous sibling. Let fragment be the rendered text fragment for the given value
given this's node document. If fragment has no children, then
append a new If next is non-null and next's previous sibling is a
If previous is a The rendered text fragment for a string input given a
Let fragment be a new Let position be a position variable for input,
initially pointing at the start of input. Let text be the empty string. While position is not past the end of input: Collect a sequence of code points that are not U+000A LF or U+000D CR from
input given position, and set text to the result. If text is not the empty string, then append a new While position is not past the end of input, and the code point at
position is either U+000A LF or U+000D CR: If the code point at position is U+000D CR and the next code point is
U+000A LF, then advance position to the next code point in
input. Advance position to the next code point in input. Append the result of creating an element given document, Return fragment. To merge with the next text node given a Let next be node's next sibling. If next is not a Replace data with node, node's data's length, 0, and next's data. If next's parent is non-null, then remove next. The parent check is necessary as the previous step might have triggered mutation
events. Text content in HTML elements with Authors are encouraged to use the User agents must implement the Unicode bidirectional algorithm to determine the proper ordering
of characters when rendering documents and parts of documents. [BIDI] 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 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] The following elements and attributes have requirements defined by the rendering section that, due to the requirements in this section, are
requirements on all user agents (not just those that support the suggested
default rendering): User agent requirements for implementing Accessibility API semantics on HTML
elements are defined in HTML Accessibility API Mappings. In addition to the
rules there, for a custom element element, the default ARIA role
semantics are determined as follows: [HTMLAAM] Let map be element's internal content attribute
map. If map[" Return no role. Similarly, for a custom element element, the default ARIA state and
property semantics, for a state or property named stateOrProperty, are determined as
follows: If element's attached internals is non-null: If element's attached internals's stateOrProperty-associated element exists, then return it. If element's attached internals's stateOrProperty-associated elements exist, then return
them. If element's internal content attribute
map[stateOrProperty] exists, then return
it. Return the default value for stateOrProperty. The "default semantics" referred to here are sometimes also called "native",
"implicit", or "host language" semantics in ARIA. [ARIA] One implication of these definitions is that the default semantics can change over
time. This allows custom elements the same expressivity as built-in elements; e.g., compare to how
the default ARIA role semantics of an For an example of this in action, see the
custom elements section. Conformance checker requirements for checking use of ARIA
Document
has a policy container (a policy container), initially a new policy
container, which contains policies which apply to the Document
.Document
has a permissions policy, which
is a permissions policy, which is initially
empty.Document
has a module map,
which is a module map, initially empty.Document
has a cross-origin opener
policy, which is a cross-origin opener policy, initially a new cross-origin
opener policy.Document
has an is initial about:blank
, which is a
boolean, initially false.Document
has a navigation
id, which is a navigation ID or null, initially null.3.1.2 The
DocumentOrShadowRoot
interface
3.1.3 Resource metadata management
document.referrer
Opera3+Edge79+
Edge (Legacy)12+Internet Explorer4+
Firefox Android?Safari iOS?Chrome Android?WebView Android?Samsung Internet?Opera Android10.1+Document
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.noreferrer
link type can be used to block the
referrer.referrer
attribute must return the document's referrer.
document.cookie [ = value ]
Document
. If there are no cookies or
cookies can't be applied to this resource, the empty string will be returned.iframe
with the sandbox
attribute), a
"SecurityError
"
Opera3+Edge79+
Edge (Legacy)12+Internet Explorer4+
Firefox Android?Safari iOS?Chrome Android?WebView Android?Samsung Internet?Opera Android10.1+cookie
attribute represents the cookies of the resource identified by the document's URL.Document
object that falls into one of the following conditions is a
cookie-averse Document
object:Document
object whose browsing
context is null.Document
whose URL's scheme is not an HTTP(S) scheme.
On getting, if the document is a cookie-averse
Document
object, then the
user agent must return the empty string. Otherwise, if the Document
's origin is an opaque
origin, the user agent must throw a "SecurityError
"
cookie-string
for the document's URL for a "non-HTTP" API, decoded
using UTF-8 decode without BOM. [COOKIES]
Document
object, then
the user agent must do nothing. Otherwise, if the Document
's origin is an opaque
origin, the user agent must throw a "SecurityError
"
receiving a set-cookie-string for the document's
URL via a "non-HTTP" API, consisting of the new value
encoded as UTF-8. [COOKIES] [ENCODING]
cookie
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.cookie
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.
document.lastModified
Opera12.1+Edge79+
Edge (Legacy)12+Internet Explorer4+
Firefox Android?Safari iOS?Chrome Android?WebView Android?Samsung Internet?Opera Android12.1+MM/DD/YYYY hh:mm:ss
", in the user's local time zone.lastModified
attribute, on getting, must return
the date and time of the Document
's source file's last modification, in the user's
local time zone, in the following format:Document
'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.3.1.4 Reporting document loading status
document.readyState
loading
" while the Document
is loading, "interactive
" once it is finished parsing but still loading subresources, and
"complete
" once it has loaded.readystatechange
event fires on the
Document
object when this value changes.DOMContentLoaded
event fires after the transition to
"interactive
" but before the transition to "complete
", at the point where all subresources apart from async
script
elements have loaded.
Opera11+Edge79+
Edge (Legacy)12+Internet Explorer11
Firefox Android?Safari iOS?Chrome Android?WebView Android?Samsung Internet?Opera Android11+Document
has a current document readiness, a string, initially
"complete
".Document
objects created via the create and initialize a Document
object
algorithm, this will be immediately reset to "loading
" before any script
can observe the value of document.readyState
. This
default applies to other cases such as initial
about:blank
Document
s or Document
s without a
browsing context.readyState
getter steps are to return
this's current document readiness.Document
document to readinessValue:complete
", and
document's load timing info's DOM complete time is 0, then
set document's load timing info's DOM complete time to
now.interactive
", and
document's load timing info's DOM interactive time is 0,
then set document's load timing info's DOM interactive
time to now.readystatechange
at document.
Document
is said to have an active parser if it is associated with an
HTML parser or an XML parser that has not yet been stopped or aborted.
Document
has a document load timing info load timing info.Document
has a document unload timing info previous document unload timing.Document
has a boolean was created via cross-origin redirects,
initially false.DOMHighResTimeStamp
valuesDOMHighResTimeStamp
values3.1.5 Render-blocking mechanism
Document
has a render-blocking element set, a set of
elements, initially the empty set.Document
document allows adding render-blocking elements
if document's content type is
"text/html
" and the body element of document is null.Document
document is render-blocked if both of the
following are true:3.1.6 DOM tree accessors
html
element of a document is its document element,
if it's an html
element, and null otherwise.
document.head
Opera11+Edge79+
Edge (Legacy)12+Internet Explorer9+
Firefox Android?Safari iOS4+Chrome Android?WebView Android37+Samsung Internet?Opera Android11+head
element.head
element of a document is the first head
element
that is a child of the html
element, if there is one, or null
otherwise.head
attribute,
on getting, must return the head
element of the document (a
head
element or null).
document.title [ = value ]
title
element for
HTML and as given by the SVG title
element for SVG.title
element of a document is the first title
element
in the document (in tree order), if there is one, or null otherwise.
Opera12.1+Edge79+
Edge (Legacy)12+Internet Explorer4+
Firefox Android?Safari iOS?Chrome Android?WebView Android?Samsung Internet?Opera Android12.1+title
attribute must, on getting, run the following
algorithm:svg
element, then
let value be the child text content of the first SVG
title
element that is a child of the document element.title
element, or the empty string if the title
element is null.svg
elementtitle
element that is a child of the
document element, let element be the first such element.title
, and the SVG namespace.title
element is null and the head
element is null, then return.title
element is non-null, let element be
the title
element.title
, and the HTML namespace.head
element.
document.body [ = value ]
Opera9.6+Edge79+
Edge (Legacy)12+Internet Explorer4+
Firefox Android?Safari iOS?Chrome Android?WebView Android?Samsung Internet?Opera Android10.1+body
or frameset
element, this will throw
a "HierarchyRequestError
"
html
element's children that is either a body
element or a frameset
element, or null if there is no such element.body
attribute,
on getting, must return the body element of the document (either a body
element, a frameset
element, or null). On setting, the following algorithm must be
run:body
or frameset
element, then throw a
"HierarchyRequestError
" the body element, return.
HierarchyRequestError
" the body element is null, but there's a
document element. Append the new value to
the document element.
body
getter is
not always the one passed to the setter.body
element (though this is
non-conforming since SVG does not allow a body
as child of SVG
svg
). However the getter will return null because the document element is not
html
.
document.images
Opera12.1+Edge79+
Edge (Legacy)12+Internet Explorer4+
Firefox Android?Safari iOS?Chrome Android?WebView Android?Samsung Internet?Opera Android12.1+document.embeds
Opera51+Edge79+
Edge (Legacy)12+Internet Explorer4+
Firefox Android?Safari iOS?Chrome Android?WebView Android?Samsung Internet?Opera Android47+document.plugins
Opera51+Edge79+
Edge (Legacy)12+Internet Explorer4+
Firefox Android?Safari iOS10.3+Chrome Android?WebView Android?Samsung Internet?Opera Android47+document.links
Opera12.1+Edge79+
Edge (Legacy)12+Internet Explorer4+
Firefox Android?Safari iOS?Chrome Android?WebView Android?Samsung Internet?Opera Android12.1+a
and area
elements
in the Document
that have href
attributes.document.forms
Opera12.1+Edge79+
Edge (Legacy)12+Internet Explorer4+
Firefox Android?Safari iOS?Chrome Android?WebView Android?Samsung Internet?Opera Android12.1+document.scripts
Opera12.1+Edge79+
Edge (Legacy)12+Internet Explorer4+
Firefox Android?Safari iOS1+Chrome Android?WebView Android?Samsung Internet?Opera Android12.1+images
attribute must return an Document
node,
whose filter matches only img
elements.embeds
attribute must return an Document
node,
whose filter matches only embed
elements.plugins
attribute must return the same object as that returned by the embeds
attribute.links
attribute must return an Document
node,
whose filter matches only a
elements with href
attributes and area
elements with href
attributes.forms
attribute must return an Document
node,
whose filter matches only form
elements.scripts
attribute must return an Document
node,
whose filter matches only script
elements.
collection = document.getElementsByName(name)
Opera5+Edge79+
Edge (Legacy)12+Internet Explorer5+
Firefox Android?Safari iOS?Chrome Android?WebView Android?Samsung Internet?Opera Android10.1+Document
that have a name
attribute with the value name.getElementsByName(elementName)
method
steps are to return a live HTML
elements in that document that have a
name
attribute whose value is
identical to the elementName argument, in tree order. When the
method is invoked on a Document
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
document.currentScript
Opera?Edge79+
Edge (Legacy)12+Internet ExplorerNo
Firefox Android?Safari iOS?Chrome Android?WebView Android?Samsung Internet?Opera Android?script
element, or the SVG script
element,
that is currently executing, as long as the element represents a classic script. In
the case of reentrant script execution, returns the one that most recently started executing
amongst those that have not yet finished executing.Document
is not currently executing a script
or
SVG script
element (e.g., because the running script is an event
handler, or a timeout), or if the currently executing script
or SVG
script
element represents a module script.currentScript
attribute, on getting, must return
the value to which it was most recently set. When the Document
is created, the currentScript
must be initialized to null.script
or SVG script
elements. As such,
it is not available in newer contexts, such as when running module
scripts or when running scripts in a shadow tree. We are looking into creating
a new solution for identifying the running script in such contexts, which does not make it
globally available: see issue #1013.
Document
interface supports named properties. The supported property names of a
Document
object document at any moment consist of the following, in
tree order according to the element that contributed them, ignoring later duplicates,
and with values from id
attributes coming before values from name
attributes when the same element contributes both:name
content attribute for all
exposed embed
, form
, iframe
,
img
, and exposed object
elements that have a non-empty
name
content attribute and are in a document tree with
document as their root;id
content attribute for all
exposed object
elements that have a non-empty
id
content attribute and are in a document tree with
document as their root; andid
content attribute for all
img
elements that have both a non-empty id
content
attribute and a non-empty name
content attribute, and are in a
document tree with document as their root.Document
, the user agent must return the value obtained using
the following steps:Document
as their root.iframe
element, and that iframe
element's content navigable is not null, then
return the active WindowProxy
of the element's
content navigable.Document
node,
whose filter matches only named elements with
the name name.embed
, form
, iframe
,
img
, or exposed object
elements that have a name
content attribute whose value is name, orobject
elements that have an id
content attribute whose value is name, orimg
elements that have an id
content attribute
whose value is name, and that have a non-empty name
content attribute present also.embed
or object
element is said to be exposed if it has
no exposed object
ancestor, and, for object
elements, is
additionally either not showing its fallback content or has no object
or
embed
descendants.
dir
attribute on the
Document
interface is defined along with the dir
content attribute.3.2 Elements
3.2.1 Semantics
ol
element represents an ordered list,
and the lang
attribute represents the language of the content.hgroup
element can be used for these kinds of situations:cite
element mis-used:template
element's template contents's node
document's browsing context is null. For
example, the content model requirements and
attribute value microsyntax requirements do not apply to a template
element's
template contents. In this example an img
element has attribute values
that are placeholders that would be invalid outside a template
element.</h1>
end tag, that
would be a violation of the HTML syntax, and would thus be flagged as an
error by conformance checkers.progress
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
ol
element represents an ordered list.id
attribute to the element, and then creating a
hyperlink with that id
attribute's value as the fragment for the hyperlink's href
attribute value. Hyperlinks are not necessary for a
reference, however; any manner of referring to the element in question will suffice.figure
element, which is given an id
attribute:a
element, like so:As we can see in
figure
element, such as:HTMLElement
interface.
Opera8+Edge79+
Edge (Legacy)12+Internet Explorer5.5+
Firefox Android?Safari iOS?Chrome Android?WebView Android1+Samsung Internet?Opera Android10.1+
Opera12.1+Edge79+
Edge (Legacy)12+Internet Explorer9+
Firefox Android?Safari iOS?Chrome Android?WebView Android?Samsung Internet?Opera Android12.1+[
HTMLElement
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.
applet
, bgsound
, blink
,
isindex
, keygen
, multicol
, nextid
, or
spacer
, then return HTMLUnknownElement
.acronym
, basefont
, big
,
center
, nobr
, noembed
, noframes
,
plaintext
, rb
, rtc
, strike
, or
tt
, then return HTMLElement
.listing
or xmp
, then return
HTMLPreElement
.HTMLElement
.HTMLUnknownElement
.HTMLElement
instead of HTMLUnknownElement
in
the case of valid custom element names is done to
ensure that any potential future upgrades only cause
a linear transition of the element's prototype chain, from HTMLElement
to a subclass,
instead of a lateral one, from HTMLUnknownElement
to an unrelated subclass.HTMLOrSVGElement
interface
mixin: [SVG]const el = document.createElementNS("some namespace", "example");
console.assert(el.constructor === Element);
3.2.3 HTML element constructors
[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.[HTMLConstructor]
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.[HTMLConstructor]
extended attribute have the following
overridden constructor steps:CustomElementRegistry
object.TypeError
.customElements
HTMLButtonElement
(either explicitly, as
in (1), or implicitly, as in (2)), both the active function object and
NewTarget are HTMLButtonElement
. If this check was not present, it
would be possible to create an instance of HTMLButtonElement
whose local name was
bad-1
.TypeError
.HTMLElement
, then throw a
TypeError
.HTMLElement
class:customElements
super()
call that occurs when
constructing an instance of Bad2
, the active function
object is HTMLParagraphElement
, not HTMLElement
.TypeError
.customElements
super()
call that occurs when
constructing an instance of Bad3
, valid local names is the
list containing q
and blockquote
, but definition's local name is p
,
which is not in that list.Document
.custom
".is
value to is value.new MyCustomElement()
.InvalidStateError
"
super()
:super()
twice, since per the JavaScript specification, this actually executes the superclass
constructor (i.e. this algorithm) twice, before throwing an error:
super()
call inside the custom element
constructor assigns that existing element to this.
[HTMLConstructor]
, some elements also have named constructors (which are really factory functions with a modified prototype
property).
extends
clause when defining a custom element constructor:3.2.4 Element definitions
text/html
syntax, the
start and end tags can
be omitted. This information is redundant with the normative requirements given in the optional tags section, and is provided in the element
definitions only as a convenience.role
and aria-*
attributes
are defined in ARIA in HTML. [ARIA] [ARIAHTML]3.2.4.1 Attributes
3.2.5 Content models
inter-element whitespace.
inter-element whitespace) between them. Similarly, a node is the only child of
an element if that element contains no other nodes other than inter-element
whitespace, comment nodes, and processing instruction nodes.
content
element. When its type
attribute has the value
xhtml
, The Atom Syndication Format requires that it contain a
single HTML div
element. Thus, a div
element is allowed in that context,
even though this is not explicitly normatively stated by this specification. [ATOM]td
element and storing it in a global variable in a
script is conforming, even though td
elements are otherwise only supposed to be used
inside tr
elements.3.2.5.1 The "nothing" content model
inter-element whitespace)
and no element nodes.
3.2.5.2 Kinds of content
3.2.5.2.1 Metadata content
3.2.5.2.2 Flow content
a
abbr
address
area
(if it is a descendant of a map
element)article
aside
audio
b
bdi
bdo
blockquote
br
button
canvas
cite
code
data
datalist
del
details
dfn
dialog
div
dl
em
embed
fieldset
figure
footer
form
h1
h2
h3
h4
h5
h6
header
hgroup
hr
i
iframe
img
input
ins
kbd
label
link
(if it is allowed in the body)main
(if it is a hierarchically correct main
element)map
mark
math
menu
meta
(if the itemprop
attribute is present)meter
nav
noscript
object
ol
output
p
picture
pre
progress
q
ruby
s
samp
script
search
section
select
slot
small
span
strong
sub
sup
svg
table
template
textarea
time
u
ul
var
video
wbr
3.2.5.2.3 Sectioning content
header
and footer
elements.3.2.5.2.4 Heading content
3.2.5.2.5 Phrasing content
a
abbr
area
(if it is a descendant of a map
element)audio
b
bdi
bdo
br
button
canvas
cite
code
data
datalist
del
dfn
em
embed
i
iframe
img
input
ins
kbd
label
link
(if it is allowed in the body)map
mark
math
meta
(if the itemprop
attribute is present)meter
noscript
object
output
picture
progress
q
ruby
s
samp
script
select
slot
small
span
strong
sub
sup
svg
template
textarea
time
u
var
video
wbr
Text is sometimes used as a content
model on its own, but is also phrasing content, and can be inter-element
whitespace (if the
ASCII
whitespace).
scalar
values, excluding noncharacters, and controls other than ASCII whitespace.
This specification includes extra constraints on the exact value of
3.2.5.2.6 Embedded content
3.2.5.2.7 Interactive content
a
(if the href
attribute is present)audio
(if the controls
attribute is present)button
details
embed
iframe
img
(if the usemap
attribute is present)input
(if the type
attribute is not in the state)label
select
textarea
video
(if the controls
attribute is present)3.2.5.2.8 Palpable content
audio
elements) or view (video
, img
, or
canvas
elements) or otherwise interact with (for example, interactive form
controls).a
abbr
address
article
aside
audio
(if the controls
attribute is present)b
bdi
bdo
blockquote
button
canvas
cite
code
data
del
details
dfn
div
dl
(if the element's children include at least one name-value group)em
embed
fieldset
figure
footer
form
h1
h2
h3
h4
h5
h6
header
hgroup
i
iframe
img
input
(if the type
attribute is not in the state)ins
kbd
label
main
map
mark
math
menu
(if the element's children include at least one li
element)meter
nav
object
ol
(if the element's children include at least one li
element)output
p
picture
pre
progress
q
ruby
s
samp
search
section
select
small
span
strong
sub
sup
svg
table
textarea
time
u
ul
(if the element's children include at least one li
element)var
video
3.2.5.2.9 Script-supporting elements
3.2.5.3 Transparent content models
ins
element inside a ruby
element cannot contain an
rt
element, because the part of the ruby
element's content model that
allows ins
elements is the part that allows phrasing content, and the
rt
element is not phrasing content.a
element, the content models are
examined. The a
element's content model is transparent, as is the map
element's, as is the ins
element's, as is the part of the object
element's in which the ins
element is found. The object
element is
found in the p
element, whose content model is phrasing content. Thus,
"Apples" is allowed, as text is phrasing content.3.2.5.4 Paragraphs
p
element. The paragraph concept defined here
is used to describe how to interpret documents. The p
element is merely one of
several ways of marking up a paragraph.a
, ins
, del
, and map
elements
complicating matters, since those elements, with their hybrid content models, can straddle
paragraph boundaries, as shown in the first two examples below.ins
and
del
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
and del
elements
— the ins
element straddles the heading and the first paragraph, and the
del
element straddles the boundary between the two paragraphs.a
,
ins
, del
, and map
elements in the document with their contents. Then, in view, for each run
of sibling phrasing content nodes uninterrupted by other types of content, in an
element that accepts content other than phrasing content as well as phrasing
content, 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 nor inter-element whitespace, a
paragraph exists in the original DOM from immediately before first to
immediately after last. (Paragraphs can thus span across a
,
ins
, del
, and map
elements.)object
, video
, audio
, and
canvas
elements, and indirectly through elements in other namespaces that allow HTML
to be further embedded therein, like SVG svg
or MathML
math
).p
elements.p
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.object
element.p
elements can be used. For example:3.2.6 Global attributes
accesskey
autocapitalize
autofocus
contenteditable
dir
draggable
enterkeyhint
inert
inputmode
is
itemid
itemprop
itemref
itemscope
itemtype
lang
nonce
popover
spellcheck
style
tabindex
title
translate
bogus
" element does not
have a dir
attribute as defined in this specification, despite
having an attribute with the literal name "dir
". Thus, the
directionality of the inner-most span
element is 'rtl', inherited from the div
element indirectly through
the "bogus
" element.
Opera?Edge79+
Edge (Legacy)NoInternet Explorer?
Firefox Android?Safari iOS?Chrome Android?WebView Android?Samsung Internet?Opera Android?class
, id
, and slot
attributes for any element in any namespace. [DOM]class
, id
, and slot
attributes may be specified on all HTML elements.class
attribute must have a value that is a set of space-separated tokens representing the
various classes that the element belongs to. method in the DOM,
and other such features.
class
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.id
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.id
attribute specifies its element's unique identifier (ID).id
attribute.slot
attribute
specific to HTML elements.slot
attribute is used to assign a
slot to an element: an element with a slot
attribute is
assigned to the slot
created by the slot
element whose name
attribute's value matches that slot
attribute's value — but only
if that slot
element finds itself in the shadow tree whose
root's host has the corresponding
slot
attribute value.
role
and aria-*
attributes). [ARIA]
onauxclick
onbeforeinput
onbeforematch
onbeforetoggle
onblur
*oncancel
oncanplay
oncanplaythrough
onchange
onclick
onclose
oncontextlost
oncontextmenu
oncontextrestored
oncopy
oncuechange
oncut
ondblclick
ondrag
ondragend
ondragenter
ondragleave
ondragover
ondragstart
ondrop
ondurationchange
onemptied
onended
onerror
*onfocus
*onformdata
oninput
oninvalid
onkeydown
onkeypress
onkeyup
onload
*onloadeddata
onloadedmetadata
onloadstart
onmousedown
onmouseenter
onmouseleave
onmousemove
onmouseout
onmouseover
onmouseup
onpaste
onpause
onplay
onplaying
onprogress
onratechange
onreset
onresize
*onscroll
*onscrollend
*onsecuritypolicyviolation
onseeked
onseeking
onselect
onslotchange
onstalled
onsubmit
onsuspend
ontimeupdate
ontoggle
onvolumechange
onwaiting
onwheel
body
elements as those elements expose event handlers of the
Window
object with the same names.volumechange
event fired by the user agent.
data-foldername
or data-msgid
) can be specified on any
HTML element, to store custom data, state, annotations, and
similar, specific to the page.
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.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, the attribute ends up in no namespace, not the "http://www.w3.org/2000/xmlns/
" namespace like namespace declaration attributes in
XML do.xmlns
attribute is part of the namespace
declaration mechanism, and an element cannot actually have an xmlns
attribute in no namespace specified.
xml:space
attribute in the XML namespace on any element in an XML
document. This attribute has no effect on HTML elements, as the default
behavior in HTML is to preserve whitespace. [XML]xml:space
attribute on HTML elements in the text/html
syntax.3.2.6.1 The
title
attribute
Opera?Edge79+
Edge (Legacy)12+Internet ExplorerYes
Firefox Android?Safari iOS?Chrome Android?WebView Android?Samsung Internet?Opera Android?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, it could be a label for, or instructions for, use of the
element; and so forth. The value is text.title
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).title
attribute of the nearest ancestor HTML element with a title
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.title
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.title
attributes.link
, abbr
, and input
, define
additional semantics for the title
attribute beyond the semantics
described above.title
attribute, then return its
value.
Opera12.1+Edge79+
Edge (Legacy)12+Internet Explorer5.5+
Firefox Android?Safari iOS1+Chrome Android?WebView Android?Samsung Internet?Opera Android12.1+title
IDL attribute
must reflect the title
content attribute.3.2.6.2 The
lang
and xml:lang
attributes
Opera?Edge79+
Edge (Legacy)12+Internet ExplorerYes
Firefox Android?Safari iOS?Chrome Android?WebView Android?Samsung Internet?Opera Android?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]lang
attribute in the XML namespace is defined in XML. [XML]lang
attribute in no namespace may be used on any HTML element.lang
attribute in the XML
namespace may be used on HTML elements 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 to be specified on their elements). If both the lang
attribute in no namespace and the lang
attribute in the XML namespace are specified on the same
element, they must have exactly the same value when compared in an ASCII
case-insensitive manner.lang
attribute in
the XML namespace on HTML elements 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 in HTML documents, but such attributes must only be
specified if a lang
attribute in no namespace is also specified,
and both attributes must have the same value when compared in an ASCII
case-insensitive manner.xml:lang
" has no effect on language processing.
lang
attribute in the XML
namespace set or is an HTML element and has a
lang
in no namespace attribute set. That attribute specifies the
language of the node (regardless of its value).lang
attribute in no namespace and the lang
attribute in the XML
namespace are set on an element, user agents must use the lang
attribute in the XML
namespace, and the lang
attribute in no namespace
must be ignored for the purposes of determining the element's
language.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).
Opera12.1+Edge79+
Edge (Legacy)12+Internet Explorer5.5+
Firefox Android?Safari iOS1+Chrome Android?WebView Android?Samsung Internet?Opera Android12.1+lang
IDL attribute
must reflect the lang
content attribute in no
namespace.3.2.6.3 The
translate
attribute
Opera?Edge79+
Edge (Legacy)?Internet ExplorerNo
Firefox Android?Safari iOS?Chrome Android?WebView Android?Samsung Internet?Opera Android?translate
attribute is an enumerated attribute that is used to specify whether an element's
attribute values and the values of its
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 and the invalid value default.translate
attribute is in the yes state, then the element's translation mode is in the
translate-enabled state; otherwise, if the element's translate
attribute is in the no state, then the element's
translation mode is in the no-translate state. Otherwise, either the
element's translate
attribute is in the inherit state,
or the element is not an HTML element and thus does not have a
translate
attribute; in either case, the element's
translation mode is in the same state as its parent element's, if any,
or in the translate-enabled state, if the element's parent element is
null.
abbr
on th
elementsalt
on area
,
img
, and
input
elementscontent
on meta
elements, if the name
attribute specifies a metadata name whose value is known to be translatabledownload
on a
and
area
elementslabel
on optgroup
,
option
, and
track
elementslang
on HTML elements; must be "translated" to match the language used in the translationplaceholder
on input
and
textarea
elementssrcdoc
on iframe
elements; must be parsed and recursively processedstyle
on HTML elements; must be parsed and
recursively processed (e.g. for the values of 'content' properties)title
on all HTML elementsvalue
on input
elements with a
type
attribute in the Button state
or the Reset Button statearia-label
attribute as translatable.
translate
IDL
attribute must, on getting, return true if the element's translation mode is
translate-enabled, 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.3.2.6.4 The
dir
attribute
Opera?Edge79+
Edge (Legacy)?Internet ExplorerNo
Firefox Android?Safari iOS?Chrome Android?WebView Android?Samsung Internet?Opera Android?dir
attribute
specifies the element's text directionality. The attribute is an enumerated attribute
with the following keywords and states:ltr
keyword, which maps to the ltr statertl
keyword, which maps to the rtl stateauto
keyword, which maps to the auto statetextarea
and pre
elements, the heuristic is
applied on a per-paragraph level.
dir
attribute is in the ltr statedir
attribute is not in a defined state (i.e. it is not present or has an invalid value)input
element whose type
attribute is in the Telephone state, and the dir
attribute is not in a defined state (i.e. it is not present or has an invalid value)dir
attribute is in the rtl stateinput
element whose type
attribute is in the Text, Search,
Telephone, URL, or Email
state, and the dir
attribute is in the auto statetextarea
element and the dir
attribute is in the auto statedir
attribute is in the auto statebdi
element and the dir
attribute is not in a defined state (i.e. it is not present or has an invalid value)directionality is being determined.
directionality is
being determined and that is either:
dir
attribute is
not in a defined state (i.e. it is not present or has an invalid value)dir
attribute is only defined for
HTML elements, it cannot be present on elements from other namespaces. Thus, elements
from other namespaces always just inherit their directionality from their parent element, or, if they don't have one,
default to 'ltr'.
dir
attribute is in the auto
stateabbr
on th
elementsalt
on area
,
img
, and
input
elementscontent
on meta
elements, if the name
attribute specifies a metadata name whose value is primarily intended to be human-readable rather than machine-readablelabel
on optgroup
,
option
, and
track
elementsplaceholder
on input
and
textarea
elementstitle
on all HTML elements
document.dir [ = value ]
html
element's dir
attribute's value, if any.ltr
", "rtl
", or "auto
" to replace the html
element's dir
attribute's value.html
element, returns the
empty string and ignores new values.
Opera12.1+Edge79+
Edge (Legacy)12+Internet Explorer5.5+
Firefox Android?Safari iOS1+Chrome Android?WebView Android?Samsung Internet?Opera Android12.1+dir
IDL attribute on
an element must reflect the dir
content attribute of
that element, limited to only known values.
Opera51+Edge79+
Edge (Legacy)12+Internet Explorer5+
Firefox Android?Safari iOS?Chrome Android?WebView Android?Samsung Internet?Opera Android47+dir
IDL
attribute on Document
objects must reflect the dir
content attribute of the html
element, if
any, limited to only known values. If there is no such element, then the attribute
must return the empty string and do nothing on setting.dir
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).p
element,
namely to align the text to the start edge of the paragraph, the resulting rendering could
be as follows:auto
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.3.2.6.5 The
style
attribute
Opera?Edge79+
Edge (Legacy)12+Internet ExplorerYes
Firefox Android?Safari iOS?Chrome Android?WebView Android?Samsung Internet?Opera Android?style
content attribute set. This is a style attribute as defined by CSS Style
Attributes. [CSSATTR]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]style
attributes on any of their elements
must still be comprehensible and usable if those attributes were removed.style
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
attribute.)
element.style
CSSStyleDeclaration
object for the element's style
attribute.style
IDL attribute is defined in CSS Object Model. [CSSOM]span
element and the style
attribute to make those
words show up in the relevant colors in visual media.3.2.6.6 Embedding custom non-visible data with the
data-*
attributes
Opera?Edge79+
Edge (Legacy)12+Internet ExplorerYes
Firefox Android?Safari iOS?Chrome Android?WebView Android?Samsung Internet?Opera Android?data-
", has at least one character after the
hyphen, is XML-compatible, and contains no ASCII
upper alphas.data-mytrans-de
" attribute gives specific text
for the MyTrans product to use when translating the phrase "claim" to German. However, the
standard translate
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 to be used.PaymentRequest
, which could be used in CSS to style a checkout page
differently.data-has-payment-request
attribute is effectively being used
as a boolean attribute; 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.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
).
element.dataset
Opera11+Edge79+
Edge (Legacy)12+Internet Explorer11
Firefox Android?Safari iOS?Chrome Android?WebView Android3+Samsung Internet?Opera Android11+
Opera41+Edge79+
Edge (Legacy)17+Internet ExplorerNo
Firefox Android?Safari iOS?Chrome Android?WebView Android?Samsung Internet?Opera Android41+DOMStringMap
object for the element's data-*
attributes.data-foo-bar=""
becomes element.dataset.fooBar
.dataset
IDL
attribute provides convenient accessors for all the data-*
attributes on an element. On getting, the dataset
IDL attribute
must return a DOMStringMap
whose associated element is this element.DOMStringMap
interface is used for the dataset
attribute. Each DOMStringMap
has an associated element.[
DOMStringMap
's name-value
pairs, run the following algorithm:DOMStringMap
's associated element 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.DOMStringMap
object at any instant
are the names of each pair returned from getting the
DOMStringMap
's name-value pairs at that instant, in the order returned.DOMStringMap
, 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.DOMStringMap
, given a
property name name and a new value value, run the following steps:SyntaxError
"
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.
data-
at the front of name.Name
production,
throw an "InvalidCharacterError
" Set an attribute value for the
DOMStringMap
's associated element
using name and value.DOMStringMap
, run the following steps:data-
at the front of name.DOMStringMap
's associated element.DOMStringMap
's name-value pairs. [WEBIDL]class
attribute along with data-*
attributes:splashDamage()
that takes some arguments, the first
of which is the element to process:3.2.7 The
innerText
and outerText
properties
Opera9.6+Edge79+
Edge (Legacy)12+Internet Explorer5.5+
Firefox Android?Safari iOS?Chrome Android?WebView Android1+Samsung Internet?Opera Android10.1+element.innerText [ = value ]
br
elements.element.outerText [ = value ]
br
elements.
Opera12.1+Edge79+
Edge (Legacy)12+Internet Explorer5.5+
Firefox Android?Safari iOS?Chrome Android?WebView Android1+Samsung Internet?Opera Android12.1+innerText
and
outerText
getter steps
are:innerText
getter is invoked on an element not being
rendered, its text contents are returned, but when accessed on an element that is
being rendered, all of its children that are not being rendered have
their text contents ignored.select
elements have an associated non-replaced inline CSS box
whose child boxes include only those of optgroup
and option
element
child nodes;optgroup
elements have an associated non-replaced block-level CSS
box whose child boxes include only those of option
element child nodes;
andoption
element have an associated non-replaced block-level CSS
box whose child boxes are as normal for non-replaced block-level CSS boxes.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
element. Soft hyphens should be preserved. [CSSTEXT]br
element, then append a string containing a single U+000A LF code point to
items.p
element, then append 2 (a required line break count) at the beginning and end of
items.textarea
,
input
, and video
— but not button
) are not rendered
by CSS, strictly speaking, and therefore have no CSS boxes for the
purposes of this algorithm.Selection
's
stringifier and maybe expose it directly on ranges. See Bugzilla bug 10583.
innerText
setter steps are:outerText
setter steps are:NoModificationAllowedError
" next be this's next sibling.
data is the empty string and node document is
this's node document to fragment.
merge with the next text node given next's
previous sibling.
merge with the next text
node given previous.
Document
document is the result of running the following steps:node
document is document.
data is text and node document is
document to fragment.
br
, and the
HTML namespace to fragment.node:
3.2.8 Requirements relating to the bidirectional algorithm
3.2.8.1 Authoring conformance criteria for bidirectional-algorithm formatting characters
contents, and text in attributes of HTML
elements 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]
dir
attribute, the
bdo
element, and the bdi
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
3.2.9 Requirements related to ARIA and to platform accessibility APIs
role
"] exists,
then return it.a
element change as the href
attribute is added or removed.
role
and aria-*
attributes on
HTML elements are defined in ARIA in HTML. [ARIAHTML]