このページは大阪弁化フィルタによって翻訳生成されたんですわ。

翻訳前ページへ


DOM Parsing and Serialization
The Wayback Machine - http://web.archive.org/web/20110903070301/http://html5.org/specs/dom-parsing.html

Abstract

Table of contents

  1. Issues
  2. 1 Conformance
    1. 1.1 Dependencies
    2. 1.2 Extensibility
  3. 2 Terminology
  4. 3 Parsing and serializing Nodes
    1. 3.1 Parsing
    2. 3.2 Serializing
  5. 4 The DOMParser interface
  6. 5 The XMLSerializer interface
  7. 6 Extensions to the Element interface
    1. 6.1 innerHTML
    2. 6.2 outerHTML
    3. 6.3 insertAdjacentHTML()
  8. 7 Extensions to the Text interface
  9. 8 Extensions to the Range interface
  10. References
  11. Acknowledgements

Issues

Various issues are listed in the rest of the document.

This specification currently requires using the XML Parser for some APIs, when in an XML document. It is unclear whether consensus can be found for this approach.

1 Conformance

All diagrams, examples, and notes in this specification are non-normative, as are all sections explicitly marked non-normative. Everything else in this specification is normative.

The key words "MUST", "MUST NOT", "REQUIRED", "SHOULD", "SHOULD NOT", "RECOMMENDED", "MAY", and "OPTIONAL" in the normative parts of this document are to be interpreted as described in RFC2119. For readability, these words do not appear in all uppercase letters in this specification. [RFC2119]

Requirements phrased in the imperative as part of algorithms (such as "strip any leading space characters" or "return false and abort these steps") are to be interpreted with the meaning of the key word ("must", "should", "may", etc) used in introducing the algorithm.

Conformance requirements phrased as algorithms or specific steps may be implemented in any manner, so long as the end result is equivalent. (In particular, the algorithms defined in this specification are intended to be easy to follow, and not intended to be performant.)

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

When a method or an attribute is said to call another method or attribute, the user agent must invoke its internal API for that attribute or method so that e.g. the author can't change the behavior by overriding attributes or methods with custom properties or functions in ECMAScript.

Unless otherwise stated, string comparisons are done in a case-sensitive manner.

1.1 Dependencies

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

Some of the terms used in this specification are defined in DOM Core, DOM Range and HTML. [DOMCORE] [DOMRANGE] [HTML]

1.2 Extensibility

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

If vendor-specific extensions are needed, the members should be prefixed by vendor-specific strings to prevent clashes with future versions of this specification. Extensions must be defined so that the use of extensions neither contradicts nor causes the non-conformance of functionality defined in the specification.

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

2 Terminology

The term context object means the object on which the method or attribute being discussed was called.

3 Parsing and serializing Nodes

3.1 Parsing

3.2 Serializing

To produce an XML serialization of a Node node, the user agent must run the appropriate steps, depending on node's interface:

Element
Document

Run the XML fragment serialization algorithm on node. If this threw an exception, allow that exception to propagate out from this algorithm. Otherwise, return the returned string.

Comment

Let markup the concatenation of "<!--", node's data, and "-->".

If markup matches the Comment production, return markup. Otherwise, throw an INVALID_STATE_ERR exception.

Text

Let data be node's data.

If node has its serialize as CDATA flag set, run the following steps:

  1. If data doesn't match the CData production, throw an INVALID_STATE_ERR exception and terminate the entire algorithm.
  2. Let markup be the concatenation of "<![CDATA[", data, and "]]>".
  3. Return markup.

Otherwise, return data.

DocumentFragment

Let markup the empty string.

For each child of node, in order, produce an XML serialization of the child and concatenate the result to markup.

Return markup.

DocumentType
ProcessingInstruction
You tell me.

4 The DOMParser interface

interface XMLDocument : Document {
};

[Constructor]
interface DOMParser {
  Document parseFromString(DOMString str, DOMString contentType);
};

The parseFromString(str, contentType) method must run the following steps:

  1. If contentType isn't text/xml, application/xml or application/xhtml+xml, raise a NOT_SUPPORTED_ERR exception and abort these steps.

  2. Parse str with a namespace-enabled XML parser.

  3. If the previous step didn't return an error, return the newly created Document.

    Otherwise, let document a newly-created XMLDocument node. Append an Element node to it, with its localName set to parsererror and its namespaceURI set to http://www.mozilla.org/newlayout/xml/parsererror.xml. User agents may append nodes to this element, for example to describe the nature of the error.

5 The XMLSerializer interface

[Constructor]
interface XMLSerializer {
  DOMString serializeToString(Node root);
};

The serializeToString(root) method must produce an XML serialization of root and return the result.

6 Extensions to the Element interface

partial interface Element {
  attribute DOMString innerHTML;
  attribute DOMString outerHTML;
  void insertAdjacentHTML(DOMString position, DOMString text);
};

6.1 innerHTML

The innerHTML IDL attribute represents the markup of the Element's contents.

element . innerHTML [ = value ]

Returns a fragment of HTML or XML that represents the element's contents.

Can be set, to replace the contents of the element with nodes parsed from the given string.

In the case of an XML document, will throw an INVALID_STATE_ERR if the Element cannot be serialized to XML, and a SYNTAX_ERR if the given string is not well-formed.

On getting, if the Element's ownerDocument is an HTML document, then the attribute must return the result of running the HTML fragment serialization algorithm on the Element; otherwise, the Element's ownerDocument is an XML document, and the attribute must return the result of running the XML fragment serialization algorithm on the Element instead (this might raise an exception instead of returning a string).

On setting, the following steps must be run:

  1. If the Element's ownerDocument is an HTML document: Invoke the HTML fragment parsing algorithm.

    If the Element's ownerDocument is an XML document: Invoke the XML fragment parsing algorithm.

    In either case, the algorithm must be invoked with the given value as the input, and the context object as the context element.

    If this raises an exception, then abort these steps.

    Otherwise, let new children be the nodes returned.

  2. Remove the child nodes of the context object, firing appropriate mutation events.

  3. Let target document be the context object's ownerDocument.

  4. Set the ownerDocument of all the Nodes in new children to the target document.

  5. Append all the new children nodes to the context object, preserving their order, and firing mutation events as if a DocumentFragment containing the new children had been inserted.

6.2 outerHTML

The outerHTML IDL attribute represents the markup of the Element and its contents.

element . outerHTML [ = value ]

Returns a fragment of HTML or XML that represents the element and its contents.

Can be set, to replace the element with nodes parsed from the given string.

In the case of an XML document, will throw an INVALID_STATE_ERR if the element cannot be serialized to XML, and a SYNTAX_ERR if the given string is not well-formed.

Throws a NO_MODIFICATION_ALLOWED_ERR exception if the parent of the element is the Document node.

On getting, if the Element's ownerDocument is an HTML document, then the attribute must return the result of running the HTML fragment serialization algorithm on a fictional node whose only child is context object; otherwise, the Element's ownerDocument is an XML document, and the attribute must return the result of running the XML fragment serialization algorithm on that fictional node instead (this might raise an exception instead of returning a string).

On setting, the following steps must be run:

  1. Let parent be the context object's parentNode.

  2. If parent is null, abort these steps. There would be no way to obtain a reference to the nodes created even if the remaining steps were run.

  3. If parent is a Document object, throw a NO_MODIFICATION_ALLOWED_ERR exception and abort these steps.

  4. If parent is a DocumentFragment node, let parent be a new Element with body as its local name and the HTML namespace as its namespace.

  5. If the context object's ownerDocument is an HTML document: Invoke the HTML fragment parsing algorithm.

    If the context object's ownerDocument is an XML document: Invoke the XML fragment parsing algorithm.

    In either case, the algorithm must be invoked with the string being assigned into the outerHTML attribute as the input, and parent as the context element.

    If this raises an exception, then abort these steps.

    Otherwise, let new children be the nodes returned.

  6. Set the ownerDocument of all the nodes in new children to the context object's ownerDocument.

  7. Remove the context object from its parent node, firing mutation events as appropriate, and then insert in its place all the new children nodes, preserving their order, and again firing mutation events as if a DocumentFragment containing the new children had been inserted.

6.3 insertAdjacentHTML()

element . insertAdjacentHTML(position, text)

Parses the given string text as HTML or XML and inserts the resulting nodes into the tree in the position given by the position argument, as follows:

"beforebegin"
Before the element itself.
"afterbegin"
Just inside the element, before its first child.
"beforeend"
Just inside the element, after its last child.
"afterend"
After the element itself.

Throws a SYNTAX_ERR exception if the arguments have invalid values (e.g., in the case of an XML document, if the given string is not well-formed).

Throws a NO_MODIFICATION_ALLOWED_ERR exception if the given position isn't possible (e.g. inserting elements after the root element of a Document).

The insertAdjacentHTML(position, text) method, when invoked, must run the following algorithm:

  1. Use the first matching item from this list:

    If position is an ASCII case-insensitive match for the string "beforebegin"
    If position is an ASCII case-insensitive match for the string "afterend"

    Let context be the context object's parentNode.

    If context is null, abort these steps.

    If context is a Document object, throw a NO_MODIFICATION_ALLOWED_ERR exception and abort these steps.

    If position is an ASCII case-insensitive match for the string "afterbegin"
    If position is an ASCII case-insensitive match for the string "beforeend"

    Let context be the context object.

    Otherwise

    Throw a SYNTAX_ERR exception.

  2. If the following are all true:

    let context be a new Element with "body" as its local name and the HTML namespace as its namespace.

  3. If the context object's ownerDocument is an HTML document: Invoke the HTML fragment parsing algorithm.

    If the context object's ownerDocument is an XML document: Invoke the XML fragment parsing algorithm.

    In either case, the algorithm must be invoked with text as the input, and context as the context element.

    If this raises an exception, then abort these steps.

    Otherwise, let new children be the nodes returned.

  4. Set the ownerDocument of all the Nodes in new children to the target document.

  5. Use the first matching item from this list:

    If position is an ASCII case-insensitive match for the string "beforebegin"

    Insert all the new children nodes immediately before the context object.

    If position is an ASCII case-insensitive match for the string "afterbegin"

    Insert all the new children nodes before the first child of the context object, if there is one. If there is no such child, append them all to the context object.

    If position is an ASCII case-insensitive match for the string "beforeend"

    Append all the new children nodes to the context object.

    If position is an ASCII case-insensitive match for the string "afterend"

    Insert all the new children nodes immediately after the context object.

    The new children nodes must be inserted in a manner that preserves their order and fires mutation events as if a DocumentFragment containing the new children had been inserted.

7 Extensions to the Text interface

partial interface Text {
  attribute boolean serializeAsCDATA;
};
text . serializeAsCDATA [ = value ]
Controls whether, in XML, this node is serialized as a CDATA section.

Text nodes have an additional associated flag, the serialize as CDATA flag.

On getting, the serializeAsCDATA attribute must return whether the context object has its serialize as CDATA flag set. On setting, if the new value is true, the user agent must set the context object's serialize as CDATA flag, and otherwise, must unset it.

8 Extensions to the Range interface

partial interface Range {
  DocumentFragment createContextualFragment(DOMString fragment);
};
fragment = range . createContextualFragment(fragment)

Returns a DocumentFragment, created from the markup string given.

The createContextualFragment(fragment) method must run the following steps:

  1. If the context object's start's node is null, raise an INVALID_STATE_ERR exception and abort these steps.
  2. Let node the context object's start's node.

    Let element be as follows, depending on node's interface:

    Document
    DocumentFragment
    null
    Element
    node
    Text
    Comment
    node's parentElement
    DocumentType
    ProcessingInstruction
    DOM Range prevents this case. [DOMRANGE]
  3. If either element is null or the following are all true:

    let element be a new Element with "body" as its local name and the HTML namespace as its namespace.

  4. If the node's document is an HTML document: Invoke the HTML fragment parsing algorithm.

    If the node's document is an XML document: Invoke the XML fragment parsing algorithm.

    In either case, the algorithm must be invoked with fragment as the input and element as the context element.

  5. If this raises an exception, then abort these steps. Otherwise, let new children be the nodes returned.
  6. Unmark all scripts in new children as "already started".
  7. Set the ownerDocument of all the nodes in new children to the context object's root's ownerDocument.
  8. Let fragment be a new DocumentFragment and append all new children to it.
  9. Return fragment.

References

All references are normative unless marked "Non-normative".

[DOMCORE]
DOM Core, Anne van Kesteren and Ms2ger. W3C.
[DOMRANGE]
DOM Range, Aryeh Gregor and Ms2ger. WHATWG.
[HTML]
HTML, Ian Hickson. WHATWG.
[RFC2119]
Key words for use in RFCs to Indicate Requirement Levels, Scott Bradner. IETF.
[WEBIDL]
Web IDL, Cameron McCormack. W3C.

Acknowledgements

Thanks to Anne van Kesteren, Aryeh Gregor and Henri Sivonen for their useful comments.

Special thanks to Ian Hickson for defining the innerHTML and outerHTML attributes, and the insertAdjacentHTML() method in HTML. [HTML]