2025-04-02 13:05:48 -03:00
|
|
|
/*
|
|
|
|
|
* 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;
|
2025-08-08 06:11:51 -03:00
|
|
|
NonnullRefPtr<StyleValue const> value;
|
2025-04-02 13:05:48 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|