You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Specifications may define moving steps for all or some nodes. The algorithm is passed a node movedNode, and a node-or-null oldParent as indicated in the move algorithm below. Like the insertion steps, these steps must not modify the node tree that movedNode participates in, create browsing contexts, fire events, or otherwise execute JavaScript. These steps may queue tasks to do these things asynchronously, however.
Specifications may define removing steps for all or some nodes. The algorithm is passed a node removedNode and a node-or-null oldParent, as indicated in the remove algorithm below.
The option HTML element removing steps, given removedOption and oldParent, are to run update an option's nearest ancestor select given removedOption.
7090
+
The option HTML element removing steps, given removedNode, isSubtreeRoot, and oldAncestor are to run update an option's nearest ancestor select given removedNode.
7090
7091
</div>
7091
7092
7092
7093
<divclass="algo">
7093
7094
`option$e 用の`~HTML要素~移動-時の手続き$は、
7094
7095
所与の
7095
-
( %移動された~node, %旧-親 )
7096
+
( %移動された~node, %下位treeの根か, %旧-先祖 )
7096
7097
に対し
7097
7098
⇒
7098
7099
`~option_eに最も近い先祖~select_eを更新する$( %移動された~node )
7099
7100
◎
7100
-
The option HTML element moving steps, given movedNodeand oldParent, are to run update an option's nearest ancestor select given movedNode.
7101
+
The option HTML element moving steps, given movedNode, isSubtreeRoot, and oldAncestor are to run update an option's nearest ancestor select given movedNode.
If oldParent is a picture element, then for each child of oldParent's children, if child is an img element, then count this as a relevant mutation for child.
2264
+
If isSubtreeRoot is true and oldAncestor is a picture element, then for each child of oldAncestor's children: if child is an img element, then count this as a relevant mutation for child.
If oldParent is a picture element, then for each child of oldParent's children, if child is an img element, then count this as a relevant mutation for child.
2296
+
If isSubtreeRoot is true and oldAncestor is a picture element, then for each child of oldAncestor's children: if child is an img element, then count this as a relevant mutation for child.
If removedNode is an element whose namespace is the HTML namespace, and this standard defines HTML element removing steps for removedNode's local name, then run the corresponding HTML element removing steps given removedNodeand oldParent.
1459
+
If removedNode is an element whose namespace is the HTML namespace, and this standard defines HTML element removing steps for removedNode's local name, then run the corresponding HTML element removing steps given removedNode, isSubtreeRoot, and oldAncestor.
If movedNode is an element whose namespace is the HTML namespace, and this standard defines HTML element moving steps for movedNode's local name, then run the corresponding HTML element moving steps given movedNode.
1533
+
If movedNode is an element whose namespace is the HTML namespace, and this standard defines HTML element moving steps for movedNode's local name, then run the corresponding HTML element moving steps given movedNode, isSubtreeRoot, and oldAncestor.
0 commit comments