mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-12-07 21:59:54 +00:00
17 lines
370 B
C++
17 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
|
||
|
|
|
||
|
|
}
|