Newer
Older
minerva / Userland / Libraries / LibWeb / HTML / CustomElements / CustomElementName.h
@minerva minerva on 13 Jul 230 bytes Initial commit
/*
 * 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);

}