mirror of
https://github.com/RGBCube/serenity
synced 2025-05-24 17:05:06 +00:00
8 lines
224 B
C++
8 lines
224 B
C++
#include <LibHTML/CSS/StyleRule.h>
|
|
|
|
StyleRule::StyleRule(Vector<Selector>&& selectors, Vector<NonnullRefPtr<StyleDeclaration>>&& declarations)
|
|
: m_selectors(move(selectors))
|
|
, m_declarations(move(declarations))
|
|
{
|
|
|
|
}
|