47 lines
999 B
C++
47 lines
999 B
C++
/*
|
|
* Copyright (c) 2018-2020, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include "Selector.h"
|
|
|
|
namespace Web::CSS {
|
|
|
|
Selector::Selector(Vector<CompoundSelector>&& compound_selectors)
|
|
: m_compound_selectors(move(compound_selectors))
|
|
{
|
|
}
|
|
|
|
Selector::~Selector()
|
|
{
|
|
}
|
|
|
|
u32 Selector::specificity() const
|
|
{
|
|
unsigned ids = 0;
|
|
unsigned tag_names = 0;
|
|
unsigned classes = 0;
|
|
|
|
for (auto& list : m_compound_selectors) {
|
|
for (auto& simple_selector : list.simple_selectors) {
|
|
switch (simple_selector.type) {
|
|
case SimpleSelector::Type::Id:
|
|
++ids;
|
|
break;
|
|
case SimpleSelector::Type::Class:
|
|
++classes;
|
|
break;
|
|
case SimpleSelector::Type::TagName:
|
|
++tag_names;
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
return ids * 0x10000 + classes * 0x100 + tag_names;
|
|
}
|
|
|
|
}
|