LibWeb: Fix broken Specificity::operator==

This commit is contained in:
Andreas Kling
2020-06-13 00:43:32 +02:00
parent ae3e5e9d37
commit fa5e8be31c

View File

@@ -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: