mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 20:59:16 +00:00
LibWeb: Move ComponentValue to CSS::Parser namespace
This commit is contained in:
parent
c449cabae3
commit
fff2c35f51
Notes:
sideshowbarker
2024-07-17 11:53:00 +09:00
Author: https://github.com/AtkinsSJ
Commit: fff2c35f51
Pull-request: https://github.com/SerenityOS/serenity/pull/13643
11 changed files with 26 additions and 23 deletions
|
@ -21,14 +21,14 @@ public:
|
|||
~Declaration();
|
||||
|
||||
String const& name() const { return m_name; }
|
||||
Vector<ComponentValue> const& values() const { return m_values; }
|
||||
Vector<Parser::ComponentValue> const& values() const { return m_values; }
|
||||
Important importance() const { return m_important; }
|
||||
|
||||
String to_string() const;
|
||||
|
||||
private:
|
||||
String m_name;
|
||||
Vector<ComponentValue> m_values;
|
||||
Vector<Parser::ComponentValue> m_values;
|
||||
Important m_important { Important::No };
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue