mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-08 06:09:58 +00:00
16 lines
370 B
C++
16 lines
370 B
C++
/*
|
|
* Copyright (c) 2025, Lorenz Ackermann, <me@lorenzackermann.xyz>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/MathML/AttributeNames.h>
|
|
|
|
namespace Web::MathML::AttributeNames {
|
|
|
|
#define __ENUMERATE_MATHML_ATTRIBUTE(name, attribute) \
|
|
FlyString name = attribute##_fly_string;
|
|
ENUMERATE_MATHML_ATTRIBUTES
|
|
#undef __ENUMERATE_MATHML_ATTRIBUTE
|
|
|
|
}
|