diff --git a/source b/source index 9f6bfcc10b4..edc8f2d613b 100644 --- a/source +++ b/source @@ -3325,7 +3325,8 @@ a.setAttribute('href', 'https://example.com/'); // change the content attribute removing steps, moving steps, adopting steps, and - children changed steps hooks for elements + children changed steps, + children inserted steps hooks for elements
  • The change, append, remove, replace, get an attribute by namespace and local name, set value, and remove an attribute by namespace and local name algorithms for attributes
  • The attribute change steps hook for attributes
  • The value concept for attributes
  • @@ -67066,15 +67067,12 @@ document.body.append(script1, script2);
    -

    The script children changed steps given changedNode +

    The script children inserted steps given script are:

    -
      -
    1. If the script element is not connected, then return.

    2. - -
    3. Run the script HTML element post-connection steps, given - changedNode.

    4. -
    +
    1. If the script element is connected, then run the + script HTML element post-connection steps, given + script.

    @@ -67110,7 +67108,7 @@ document.body.append(script1, script2); data-x="">outer-script; all of their insertion steps run, which have no observable consequences in this case.

    -
  • The outer-script's children changed steps run, which +

  • The outer-script's children inserted steps run, which prepares that script; because its body is now non-empty, this executes the contents of the two Text nodes, in order.