mirror of
https://github.com/LadybirdBrowser/ladybird
synced 2026-05-08 16:12:23 +02:00
11 lines
198 B
C++
11 lines
198 B
C++
#include <LibHTML/CSS/StyleDeclaration.h>
|
|
|
|
StyleDeclaration::StyleDeclaration(Vector<StyleProperty>&& properties)
|
|
: m_properties(move(properties))
|
|
{
|
|
}
|
|
|
|
StyleDeclaration::~StyleDeclaration()
|
|
{
|
|
}
|