diff --git a/source b/source index 6df0e4dbdb9..843e32219be 100644 --- a/source +++ b/source @@ -144549,10 +144549,12 @@ dictionary StorageEventInit : EventInit {

To insert an element at the adjusted insertion location with an element - element:

+ element and an optional insertion location insertionLocation (default + null):

    -
  1. Let insertionLocation be the adjusted insertion location.

  2. +
  3. Set insertionLocation to the adjusted insertion location given + insertionLocation.

  4. If it is not possible to insert element at insertionLocation, abort these steps.

  5. @@ -145385,12 +145387,6 @@ document.body.appendChild(text);
  6. Let the adjustedInsertionLocation be the appropriate place for inserting a node.

  7. -
  8. Let intendedParent be the element in which the - adjustedInsertionLocation finds itself.

  9. - -
  10. Let document be intendedParent's node - document.

  11. -
  12. If any of the following are false:

    @@ -145442,7 +145438,7 @@ document.body.appendChild(text);
  13. If declarativeShadowHostElement is a shadow host, then insert an element at the adjusted insertion location with - template.

  14. + template and adjustedInsertionLocation.

  15. Otherwise:

    @@ -145463,7 +145459,7 @@ document.body.appendChild(text);
    1. Insert an element at the adjusted insertion location with - template.

    2. + template and adjustedInsertionLocation.

    3. The user agent may report an error to the developer console.