summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/HTML/HTMLButtonElement.cpp
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2023-03-10 08:48:54 +0100
committerAndreas Kling <kling@serenityos.org>2023-03-10 13:15:44 +0100
commita504ac3e2a57654b96501b3a1ba80f37b3381dc8 (patch)
tree767a7e21a858e4b5c6dfec77dd52b540a0e4cf49 /Userland/Libraries/LibWeb/HTML/HTMLButtonElement.cpp
parent03cc45e5a2ecc5d173aa121404d7ed8251c109f8 (diff)
downloadserenity-a504ac3e2a57654b96501b3a1ba80f37b3381dc8.zip
Everywhere: Rename equals_ignoring_case => equals_ignoring_ascii_case
Let's make it clear that these functions deal with ASCII case only.
Diffstat (limited to 'Userland/Libraries/LibWeb/HTML/HTMLButtonElement.cpp')
-rw-r--r--Userland/Libraries/LibWeb/HTML/HTMLButtonElement.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibWeb/HTML/HTMLButtonElement.cpp b/Userland/Libraries/LibWeb/HTML/HTMLButtonElement.cpp
index 0847d8e7da..6929edc161 100644
--- a/Userland/Libraries/LibWeb/HTML/HTMLButtonElement.cpp
+++ b/Userland/Libraries/LibWeb/HTML/HTMLButtonElement.cpp
@@ -64,7 +64,7 @@ DeprecatedString HTMLButtonElement::type() const
auto value = attribute(HTML::AttributeNames::type);
#define __ENUMERATE_HTML_BUTTON_TYPE_ATTRIBUTE(keyword, _) \
- if (value.equals_ignoring_case(#keyword##sv)) \
+ if (value.equals_ignoring_ascii_case(#keyword##sv)) \
return #keyword;
ENUMERATE_HTML_BUTTON_TYPE_ATTRIBUTES
#undef __ENUMERATE_HTML_BUTTON_TYPE_ATTRIBUTE
@@ -78,7 +78,7 @@ HTMLButtonElement::TypeAttributeState HTMLButtonElement::type_state() const
auto value = attribute(HTML::AttributeNames::type);
#define __ENUMERATE_HTML_BUTTON_TYPE_ATTRIBUTE(keyword, state) \
- if (value.equals_ignoring_case(#keyword##sv)) \
+ if (value.equals_ignoring_ascii_case(#keyword##sv)) \
return HTMLButtonElement::TypeAttributeState::state;
ENUMERATE_HTML_BUTTON_TYPE_ATTRIBUTES
#undef __ENUMERATE_HTML_BUTTON_TYPE_ATTRIBUTE