mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-05-21 10:38:24 +00:00
LibWeb: Fix broken Specificity::operator==
This commit is contained in:
@@ -51,8 +51,8 @@ public:
|
||||
bool operator==(const Specificity& other) const
|
||||
{
|
||||
return m_ids == other.m_ids
|
||||
|| m_classes < other.m_classes
|
||||
|| m_tag_names < other.m_tag_names;
|
||||
|| m_classes == other.m_classes
|
||||
|| m_tag_names == other.m_tag_names;
|
||||
}
|
||||
|
||||
private:
|
||||
|
||||
Reference in New Issue
Block a user