LibWeb: Use correct http-equiv keywords for comparisons

Previously `#keyword` was used in the macro, meaning all keywords
gained `""` around them
This commit is contained in:
Simon Wanner 2024-09-13 11:35:34 +02:00 committed by Andreas Kling
parent de3c007d79
commit d828d80b75
Notes: github-actions[bot] 2024-09-13 10:12:03 +00:00
2 changed files with 2 additions and 2 deletions

View file

@ -16,7 +16,7 @@ namespace Web::HTML {
__ENUMERATE_HTML_META_HTTP_EQUIV_ATTRIBUTE("content-language", ContentLanguage) \
__ENUMERATE_HTML_META_HTTP_EQUIV_ATTRIBUTE("content-type", EncodingDeclaration) \
__ENUMERATE_HTML_META_HTTP_EQUIV_ATTRIBUTE("default-style", DefaultStyle) \
__ENUMERATE_HTML_META_HTTP_EQUIV_ATTRIBUTE(refresh, Refresh) \
__ENUMERATE_HTML_META_HTTP_EQUIV_ATTRIBUTE("refresh", Refresh) \
__ENUMERATE_HTML_META_HTTP_EQUIV_ATTRIBUTE("set-cookie", SetCookie) \
__ENUMERATE_HTML_META_HTTP_EQUIV_ATTRIBUTE("x-ua-compatible", XUACompatible) \
__ENUMERATE_HTML_META_HTTP_EQUIV_ATTRIBUTE("content-security-policy", ContentSecurityPolicy)