mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-05-02 01:12:32 +00:00
LibHTML: More work on the CSS object model.
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
#include <LibHTML/CSS/StyleRule.h>
|
||||
|
||||
StyleRule::StyleRule(Vector<Selector>&& selectors, Vector<NonnullRefPtr<StyleDeclaration>>&& declarations)
|
||||
: m_selectors(move(selectors))
|
||||
, m_declarations(move(declarations))
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user