mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-26 19:22:30 -05:00
15 lines
254 B
C++
15 lines
254 B
C++
|
/*
|
||
|
* Copyright (c) 2023, Andreas Kling <kling@serenityos.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#include <LibWeb/CSS/StyleProperty.h>
|
||
|
#include <LibWeb/CSS/StyleValue.h>
|
||
|
|
||
|
namespace Web::CSS {
|
||
|
|
||
|
StyleProperty::~StyleProperty() = default;
|
||
|
|
||
|
}
|