1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-25 02:15:10 +00:00
serenity/LibHTML/CSS/StyleRule.cpp
2019-06-27 12:16:20 +02:00

11 lines
250 B
C++

#include <LibHTML/CSS/StyleRule.h>
StyleRule::StyleRule(Vector<Selector>&& selectors, NonnullRefPtrVector<StyleDeclaration>&& declarations)
: m_selectors(move(selectors))
, m_declarations(move(declarations))
{
}
StyleRule::~StyleRule()
{
}