mirror of
https://github.com/RGBCube/serenity
synced 2025-05-25 19:15:06 +00:00
LibHTML: More work on the CSS object model.
This commit is contained in:
parent
d343fb2429
commit
02e02ca3a5
6 changed files with 41 additions and 12 deletions
|
@ -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))
|
||||
{
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue