mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 22:08:59 +00:00
11 lines
241 B
C++
11 lines
241 B
C++
#include <LibHTML/CSS/StyleRule.h>
|
|
|
|
StyleRule::StyleRule(Vector<Selector>&& selectors, NonnullRefPtr<StyleDeclaration>&& declaration)
|
|
: m_selectors(move(selectors))
|
|
, m_declaration(move(declaration))
|
|
{
|
|
}
|
|
|
|
StyleRule::~StyleRule()
|
|
{
|
|
}
|