diff --git a/dom.bs b/dom.bs index 343667dd..04b93a73 100644 --- a/dom.bs +++ b/dom.bs @@ -2701,7 +2701,8 @@ boolean open (default false):
To ensure pre-insert validity given a node node, a node parent, null or a -node child, and a boolean isReplace: +node child, and a list of nodes +childrenToExclude:
If parent is not a {{Document}}, {{DocumentFragment}}, or {{Element}} @@ -2732,9 +2733,6 @@ boolean open (default false):
If node is a {{CharacterData}} node, then return. -
Let childToExclude be child if isReplace is true; otherwise - null. -
If node is a {{DocumentFragment}} node: @@ -2754,13 +2752,14 @@ boolean open (default false):
If any of the following are true:
parent has an element child that + childrenToExclude does not contain;
isReplace is false and child is a doctype, +
child is a doctype that childrenToExclude does not + contain,
then throw a "{{HierarchyRequestError!!exception}}" {{DOMException}}. @@ -2774,14 +2773,14 @@ boolean open (default false):
If any of the following are true:
parent has a doctype child that + childrenToExclude does not contain;
child is null and parent has an element - child, + child that childrenToExclude does not contain,
then throw a "{{HierarchyRequestError!!exception}}" {{DOMException}}.
@@ -2794,7 +2793,7 @@ into a node parent before null or node
Ensure pre-insert validity given node, parent,
- child, and false.
+ child, and « ».
Let referenceChild be child.
@@ -3183,7 +3182,7 @@ a node node within a node parent
Ensure pre-insert validity given node, parent,
- child, and true.
+ child, and « child ».
Let referenceChild be child's next sibling.
@@ -3581,7 +3580,8 @@ are:
Let node be the result of converting nodes into a node given
nodes and this's node document.
- Ensure pre-insert validity given node, this, null, and false.
+ Ensure pre-insert validity given node, this, null, and
+ this's children.
Replace all with node within this.
Ensure pre-insert validity given node, parent,
- referenceNode, and false.
+ referenceNode, and « ».
If range's start node is a {{Text}} node, then set
referenceNode to the result of splitting it with offset
@@ -11583,7 +11583,7 @@ Shiki Okasaka,
Shinya Kawanaka,
Simon Pieters,
Simon Wülker,
-Stef Busking,
+Stef Busking,
Steve Byrne,
Steven Obiajulu,
Stig Halvorsen,
@@ -9967,7 +9967,7 @@ result of cloning the contents of this.
IE9 doesn't call splitText() if the offset is 0. This makes sense, but I go
with what all other browsers do. -->