From c8d1bff75bc2fa24aa0a29f90fb449e7920b9280 Mon Sep 17 00:00:00 2001
From: Anne van Kesteren The cloning steps for elements that
- include Node
, and the concept of
- cloning steps used by that algorithmHTMLOrSVGElement
must set the
- [[CryptographicNonce]] slot on the copy to the value of the slot on the element being
- cloned.HTMLOrSVGElement
given node, copy, and
+ subtree are to set copy's [[CryptographicNonce]] to
+ node's [[CryptographicNonce]].
The cloning steps for input
elements
- must propagate the value, dirty value flag, checkedness, and dirty checkedness flag from the node being cloned
- to the copy.
The activation behavior for input
elements element, given
event, are these steps:
The cloning steps for textarea
- elements must propagate the raw value and dirty value flag from the node being cloned to the copy.
The children changed steps for textarea
elements must, if the
element's dirty value flag is false, set the element's
@@ -62849,9 +62851,10 @@ o............A....e
el does not have an async
or defer
attribute.
The cloning steps for a script
- element el being cloned to a copy copy are to set copy's
- already started to el's already started.
The cloning steps for script
+ elements given node, copy, and subtree are to set
+ copy's already started to node's already
+ started.
When an async
attribute is added to a
script
element el, the user agent must set el's
@@ -64254,22 +64257,16 @@ interface HTMLTemplateElement : HTMLElement {
The cloning steps for a template
- element node being cloned to a copy copy must run the
- following steps:
The cloning steps for template
+ elements given a node, copy, and subtree are:
If the clone children flag is not set in the calling clone algorithm, return.
Let copied contents be the result of cloning all the children of node's - template contents, with document set to copy's template contents's node - document, and with the clone children - flag set.
If subtree is false, then return.
Append copied contents to copy's template - contents.
Clone a node's children given node's + template contents, copy's template contents, + copy's template contents's node document, and + subtree.