mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-20 16:13:21 +00:00
23 lines
361 B
C
23 lines
361 B
C
![]() |
/*
|
||
|
* Copyright (c) 2025, Sam Atkins <sam@ladybird.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <AK/NonnullRefPtr.h>
|
||
|
#include <LibWeb/CSS/DescriptorID.h>
|
||
|
#include <LibWeb/Forward.h>
|
||
|
|
||
|
namespace Web::CSS {
|
||
|
|
||
|
struct Descriptor {
|
||
|
~Descriptor();
|
||
|
|
||
|
DescriptorID descriptor_id;
|
||
|
NonnullRefPtr<CSSStyleValue const> value;
|
||
|
};
|
||
|
|
||
|
}
|