2019-06-20 23:25:25 +02:00
|
|
|
#include <LibHTML/CSS/StyleDeclaration.h>
|
|
|
|
|
2019-09-30 20:06:17 +02:00
|
|
|
StyleDeclaration::StyleDeclaration(Vector<StyleProperty>&& properties)
|
|
|
|
: m_properties(move(properties))
|
2019-06-20 23:25:25 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
StyleDeclaration::~StyleDeclaration()
|
|
|
|
{
|
|
|
|
}
|