CustomElementName.h 230 B

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