2020-01-18 09:38:21 +01:00
|
|
|
/*
|
2024-10-04 13:19:50 +02:00
|
|
|
* Copyright (c) 2018-2020, Andreas Kling <andreas@ladybird.org>
|
2020-01-18 09:38:21 +01:00
|
|
|
*
|
2021-04-22 01:24:48 -07:00
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
2020-01-18 09:38:21 +01:00
|
|
|
*/
|
|
|
|
|
2019-10-12 13:02:38 +02:00
|
|
|
#pragma once
|
|
|
|
|
2023-03-29 23:46:18 +01:00
|
|
|
#include <AK/FixedArray.h>
|
2020-03-07 10:32:51 +01:00
|
|
|
#include <LibWeb/DOM/Element.h>
|
2019-10-12 13:02:38 +02:00
|
|
|
|
2020-07-26 19:37:56 +02:00
|
|
|
namespace Web::DOM {
|
2020-03-07 10:27:02 +01:00
|
|
|
|
2023-10-01 20:07:44 +13:00
|
|
|
ErrorOr<FixedArray<FlyString>> valid_local_names_for_given_html_element_interface(StringView html_element_interface_name);
|
|
|
|
bool is_unknown_html_element(FlyString const& tag_name);
|
2023-03-29 23:46:18 +01:00
|
|
|
|
|
|
|
// FIXME: The spec doesn't say what the default value of synchronous_custom_elements_flag should be.
|
2024-11-15 04:01:23 +13:00
|
|
|
WebIDL::ExceptionOr<GC::Ref<Element>> create_element(Document&, FlyString local_name, Optional<FlyString> namespace_, Optional<FlyString> prefix = {}, Optional<String> is = Optional<String> {}, bool synchronous_custom_elements_flag = false);
|
2020-03-07 10:27:02 +01:00
|
|
|
|
|
|
|
}
|