diff --git a/index.html b/index.html index 036d451..8b26ba7 100644 --- a/index.html +++ b/index.html @@ -258,63 +258,15 @@
partial interface Element { - [CEReactions] attribute [LegacyNullToEmptyString] HTMLString outerHTML; [CEReactions] undefined insertAdjacentHTML(DOMString position, HTMLString text); };-
The outerHTML
IDL attribute represents the markup of 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, throws a "InvalidStateError
"
- DOMException
if the element cannot be serialized to XML, or a
- "SyntaxError
" DOMException
if the given string is not
- well-formed.
-
-
Throws a "NoModificationAllowedError
" DOMException
- if the parent of the element is a Document
.
-
On getting, return the result of invoking the fragment serializing algorithm on a
- fictional node whose only child is the context object providing true
for the
- require well-formed flag (this might throw an exception instead of returning a string).
-
-
On setting, the following steps must be run: - -
Document
, throw a
- "NoModificationAllowedError
" DOMException
.
-
- DocumentFragment
, let parent be a
- new Element
with:
-
- body
as its local name,
-
- The definition of outerHTML
has moved to the HTML Standard.