mirror of
https://github.com/SerenityOS/serenity
synced 2026-04-26 09:35:04 +02:00
This matches the name in the CSS Typed OM spec. https://drafts.css-houdini.org/css-typed-om-1/#cssstylevalue No behaviour changes. (cherry picked from commit 0e3487b9ab455a7648185995363bb3b487551d40)
15 lines
257 B
C++
15 lines
257 B
C++
/*
|
|
* Copyright (c) 2023, Andreas Kling <kling@serenityos.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#include <LibWeb/CSS/CSSStyleValue.h>
|
|
#include <LibWeb/CSS/StyleProperty.h>
|
|
|
|
namespace Web::CSS {
|
|
|
|
StyleProperty::~StyleProperty() = default;
|
|
|
|
}
|