2020-08-01 03:07:00 +01:00
|
|
|
/*
|
2021-04-28 22:46:44 +02:00
|
|
|
* Copyright (c) 2020, the SerenityOS developers.
|
2020-08-01 03:07:00 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-08-01 03:07:00 +01:00
|
|
|
*/
|
|
|
|
|
2024-04-27 12:09:58 +12:00
|
|
|
#include <LibWeb/Bindings/HTMLTemplateElementPrototype.h>
|
2022-08-28 13:42:07 +02:00
|
|
|
#include <LibWeb/Bindings/MainThreadVM.h>
|
2020-08-19 22:30:33 +01:00
|
|
|
#include <LibWeb/DOM/Document.h>
|
2020-08-01 03:07:00 +01:00
|
|
|
#include <LibWeb/HTML/HTMLTemplateElement.h>
|
|
|
|
|
|
|
|
namespace Web::HTML {
|
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
GC_DEFINE_ALLOCATOR(HTMLTemplateElement);
|
2023-11-19 19:47:52 +01:00
|
|
|
|
2022-02-18 21:00:52 +01:00
|
|
|
HTMLTemplateElement::HTMLTemplateElement(DOM::Document& document, DOM::QualifiedName qualified_name)
|
2021-02-07 11:20:15 +01:00
|
|
|
: HTMLElement(document, move(qualified_name))
|
2020-08-01 03:07:00 +01:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2022-03-14 13:21:51 -06:00
|
|
|
HTMLTemplateElement::~HTMLTemplateElement() = default;
|
2020-08-01 03:07:00 +01:00
|
|
|
|
2023-08-07 08:41:28 +02:00
|
|
|
void HTMLTemplateElement::initialize(JS::Realm& realm)
|
2022-08-28 13:42:07 +02:00
|
|
|
{
|
2023-08-07 08:41:28 +02:00
|
|
|
Base::initialize(realm);
|
2024-03-16 13:13:08 +01:00
|
|
|
WEB_SET_PROTOTYPE_FOR_INTERFACE(HTMLTemplateElement);
|
2023-01-10 06:28:20 -05:00
|
|
|
|
2024-11-14 05:50:17 +13:00
|
|
|
m_content = realm.create<DOM::DocumentFragment>(m_document->appropriate_template_contents_owner_document());
|
2022-10-29 13:06:24 +02:00
|
|
|
m_content->set_host(this);
|
2022-08-28 13:42:07 +02:00
|
|
|
}
|
|
|
|
|
2022-10-29 13:06:24 +02:00
|
|
|
void HTMLTemplateElement::visit_edges(Cell::Visitor& visitor)
|
2020-08-19 22:30:33 +01:00
|
|
|
{
|
2022-10-29 13:06:24 +02:00
|
|
|
Base::visit_edges(visitor);
|
2023-11-19 16:18:00 +13:00
|
|
|
visitor.visit(m_content);
|
2020-08-19 22:30:33 +01:00
|
|
|
}
|
|
|
|
|
2021-07-05 05:40:47 +01:00
|
|
|
// https://html.spec.whatwg.org/multipage/scripting.html#the-template-element:concept-node-adopt-ext
|
|
|
|
void HTMLTemplateElement::adopted_from(DOM::Document&)
|
|
|
|
{
|
2022-10-29 13:06:24 +02:00
|
|
|
// 1. Let doc be node's node document's appropriate template contents owner document.
|
|
|
|
auto doc = document().appropriate_template_contents_owner_document();
|
|
|
|
|
|
|
|
// 2. Adopt node's template contents (a DocumentFragment object) into doc.
|
|
|
|
doc->adopt_node(content());
|
2021-07-05 05:40:47 +01:00
|
|
|
}
|
|
|
|
|
2021-07-05 05:40:07 +01:00
|
|
|
// https://html.spec.whatwg.org/multipage/scripting.html#the-template-element:concept-node-clone-ext
|
2025-01-11 17:37:08 +00:00
|
|
|
WebIDL::ExceptionOr<void> HTMLTemplateElement::cloned(Node& copy, bool subtree) const
|
2021-07-05 05:40:07 +01:00
|
|
|
{
|
2025-01-05 15:46:37 +00:00
|
|
|
TRY(Base::cloned(copy, subtree));
|
|
|
|
|
|
|
|
// The cloning steps for template elements given node, copy, and subtree are:
|
|
|
|
|
|
|
|
// 1. If subtree is false, then return.
|
|
|
|
if (!subtree)
|
2024-06-25 11:06:41 +02:00
|
|
|
return {};
|
2021-07-05 05:40:07 +01:00
|
|
|
|
2025-01-05 15:46:37 +00:00
|
|
|
// 2. For each child of node's template contents's children, in tree order:
|
|
|
|
// clone a node given child with document set to copy's template contents's node document,
|
|
|
|
// subtree set to true, and parent set to copy's template contents.
|
2025-01-21 09:12:05 -05:00
|
|
|
auto& template_copy = as<HTMLTemplateElement>(copy);
|
2024-06-25 11:06:41 +02:00
|
|
|
for (auto child = content()->first_child(); child; child = child->next_sibling()) {
|
2025-01-05 15:46:37 +00:00
|
|
|
TRY(child->clone_node(&template_copy.content()->document(), true, template_copy.content()));
|
2024-06-25 11:06:41 +02:00
|
|
|
}
|
2025-01-05 15:46:37 +00:00
|
|
|
|
2024-06-25 11:06:41 +02:00
|
|
|
return {};
|
2021-07-05 05:40:07 +01:00
|
|
|
}
|
|
|
|
|
2024-11-15 04:01:23 +13:00
|
|
|
void HTMLTemplateElement::set_template_contents(GC::Ref<DOM::DocumentFragment> contents)
|
2024-06-25 09:43:50 +02:00
|
|
|
{
|
|
|
|
m_content = contents;
|
|
|
|
}
|
|
|
|
|
2020-08-01 03:07:00 +01:00
|
|
|
}
|