1
Fork 0
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:
Andreas Kling 2019-06-21 19:19:49 +02:00
parent d343fb2429
commit 02e02ca3a5
6 changed files with 41 additions and 12 deletions

View file

@ -1,6 +1,7 @@
#include <LibHTML/CSS/StyleSheet.h>
StyleSheet::StyleSheet()
StyleSheet::StyleSheet(Vector<NonnullRefPtr<StyleRule>>&& rules)
: m_rules(move(rules))
{
}