diff options
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/AttributeNames.h')
-rw-r--r-- | Userland/Libraries/LibWeb/HTML/AttributeNames.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/AttributeNames.h b/Userland/Libraries/LibWeb/HTML/AttributeNames.h index 399a820812..10cf26c8c0 100644 --- a/Userland/Libraries/LibWeb/HTML/AttributeNames.h +++ b/Userland/Libraries/LibWeb/HTML/AttributeNames.h @@ -7,6 +7,7 @@ #pragma once #include <AK/DeprecatedFlyString.h> +#include <AK/Error.h> namespace Web { namespace HTML { @@ -233,6 +234,8 @@ namespace AttributeNames { ENUMERATE_HTML_ATTRIBUTES #undef __ENUMERATE_HTML_ATTRIBUTE +ErrorOr<void> initialize_strings(); + } bool is_boolean_attribute(DeprecatedFlyString const& attribute); |