2022-01-29 20:23:48 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2022, Luke Wilde <lukew@serenityos.org>
|
2023-09-11 18:36:23 +12:00
|
|
|
* Copyright (c) 2023, Shannon Booth <shannon@serenityos.org>
|
2022-01-29 20:23:48 +00:00
|
|
|
*
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
*/
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
2022-08-28 13:42:07 +02:00
|
|
|
#include <LibJS/Heap/GCPtr.h>
|
|
|
|
#include <LibJS/Heap/Handle.h>
|
2022-01-29 20:23:48 +00:00
|
|
|
#include <LibWeb/Forward.h>
|
|
|
|
|
|
|
|
namespace Web::DOM {
|
|
|
|
|
2023-09-11 18:36:23 +12:00
|
|
|
WebIDL::ExceptionOr<JS::NonnullGCPtr<Node>> convert_nodes_to_single_node(Vector<Variant<JS::Handle<Node>, String>> const& nodes, DOM::Document& document);
|
|
|
|
|
2022-01-29 20:23:48 +00:00
|
|
|
}
|