2019-06-21 14:19:49 -03:00
|
|
|
#include <LibHTML/CSS/StyleRule.h>
|
|
|
|
|
|
2019-09-30 15:06:17 -03:00
|
|
|
StyleRule::StyleRule(Vector<Selector>&& selectors, NonnullRefPtr<StyleDeclaration>&& declaration)
|
2019-06-21 14:19:49 -03:00
|
|
|
: m_selectors(move(selectors))
|
2019-09-30 15:06:17 -03:00
|
|
|
, m_declaration(move(declaration))
|
2019-06-21 14:19:49 -03:00
|
|
|
{
|
2019-06-21 15:54:13 -03:00
|
|
|
}
|
2019-06-21 14:19:49 -03:00
|
|
|
|
2019-06-21 15:54:13 -03:00
|
|
|
StyleRule::~StyleRule()
|
|
|
|
|
{
|
2019-06-21 14:19:49 -03:00
|
|
|
}
|