mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-21 00:23:20 +00:00
18 lines
359 B
C
18 lines
359 B
C
![]() |
#pragma once
|
||
|
|
||
|
#include <AK/AKString.h>
|
||
|
#include <LibHTML/CSS/StyleValue.h>
|
||
|
|
||
|
class StyleDeclaration {
|
||
|
public:
|
||
|
StyleDeclaration();
|
||
|
~StyleDeclaration();
|
||
|
|
||
|
const String& property_name() const { return m_property_name; }
|
||
|
const StyleValue& value() const { return *m_value; }
|
||
|
|
||
|
public:
|
||
|
String m_property_name;
|
||
|
RetainPtr<StyleValue> m_value;
|
||
|
};
|