2021-09-14 19:26:16 -03:00
|
|
|
/*
|
2024-10-04 08:19:50 -03:00
|
|
|
* Copyright (c) 2021, Andreas Kling <andreas@ladybird.org>
|
2021-09-14 19:26:16 -03:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <LibWeb/SVG/AttributeNames.h>
|
|
|
|
|
|
|
|
|
|
namespace Web::SVG::AttributeNames {
|
|
|
|
|
|
2025-01-11 16:07:41 -03:00
|
|
|
#define __ENUMERATE_SVG_ATTRIBUTE(name, attribute) \
|
|
|
|
|
FlyString name = attribute##_fly_string;
|
|
|
|
|
ENUMERATE_SVG_ATTRIBUTES
|
2021-09-14 19:26:16 -03:00
|
|
|
#undef __ENUMERATE_SVG_ATTRIBUTE
|
|
|
|
|
|
|
|
|
|
}
|