summaryrefslogtreecommitdiffstats
path: root/Source/WebKit2/Shared/WebString.h
diff options
context:
space:
mode:
Diffstat (limited to 'Source/WebKit2/Shared/WebString.h')
-rw-r--r--Source/WebKit2/Shared/WebString.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/WebKit2/Shared/WebString.h b/Source/WebKit2/Shared/WebString.h
index a77293b..6827276 100644
--- a/Source/WebKit2/Shared/WebString.h
+++ b/Source/WebKit2/Shared/WebString.h
@@ -74,6 +74,7 @@ public:
bool equal(WebString* other) { return m_string == other->m_string; }
bool equalToUTF8String(const char* other) { return m_string == String::fromUTF8(other); }
+ bool equalToUTF8StringIgnoringCase(const char* other) { return equalIgnoringCase(m_string, other); }
const String& string() const { return m_string; }