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>
|
2026-03-04 08:03:57 -03:00
|
|
|
#include <LibWeb/CSS/DescriptorNameAndID.h>
|
2025-04-02 13:05:48 -03:00
|
|
|
#include <LibWeb/Forward.h>
|
|
|
|
|
|
|
|
|
|
namespace Web::CSS {
|
|
|
|
|
|
|
|
|
|
struct Descriptor {
|
|
|
|
|
~Descriptor();
|
|
|
|
|
|
2026-03-04 08:03:57 -03:00
|
|
|
DescriptorNameAndID descriptor_name_and_id;
|
2025-08-08 06:11:51 -03:00
|
|
|
NonnullRefPtr<StyleValue const> value;
|
2025-04-02 13:05:48 -03:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
}
|