From b4ec415c0a4bb939d0e6a03ff93a3cde8cbe9dca Mon Sep 17 00:00:00 2001 From: Anne van Kesteren Date: Sat, 28 Mar 2020 07:58:24 +0100 Subject: [PATCH] Align with DOM DocumentFragment adoption changes Complements https://github.com/whatwg/dom/pull/819. Tests: https://github.com/web-platform-tests/wpt/pull/22504. --- source | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/source b/source index e218b740b49..f177cfe19d4 100644 --- a/source +++ b/source @@ -61311,8 +61311,8 @@ interface HTMLTemplateElement : HTMLElement { contents:

    -
  1. Let doc be the template element's node document's appropriate template contents owner - document.

  2. +
  3. Let doc be the template element's node document's + appropriate template contents owner document.

  4. Create a DocumentFragment object whose node document is doc and host is the @@ -61368,15 +61368,15 @@ interface HTMLTemplateElement : HTMLElement {

    1. -

      Let doc be node's node document's - appropriate template contents owner document.

      +

      Let doc be node's node document's appropriate + template contents owner document.

      node's node document is the Document object that node was just adopted into.

    2. -
    3. Adopt node's - template contents (a DocumentFragment object) into doc.

    4. +
    5. Adopt node's template + contents into doc, with true.

    The