1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 02:13:56 +09:00
ladybird/Userland/Libraries/LibWeb/HTML/CustomElements/CustomElementName.h
2023-03-28 07:18:09 -04:00

15 lines
230 B
C++

/*
* Copyright (c) 2023, Srikavin Ramkumar <me@srikavin.me>
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/StringView.h>
namespace Web::HTML {
bool is_valid_custom_element_name(StringView name);
}