mirror of
https://github.com/RGBCube/serenity
synced 2025-07-26 05:57:44 +00:00
LibWeb: Move ComponentValue to CSS::Parser namespace
This commit is contained in:
parent
c449cabae3
commit
fff2c35f51
11 changed files with 26 additions and 23 deletions
|
@ -20,7 +20,7 @@ class StyleBlockRule : public RefCounted<StyleBlockRule> {
|
|||
|
||||
public:
|
||||
StyleBlockRule();
|
||||
explicit StyleBlockRule(Token token, Vector<ComponentValue>&& values)
|
||||
explicit StyleBlockRule(Token token, Vector<Parser::ComponentValue>&& values)
|
||||
: m_token(move(token))
|
||||
, m_values(move(values))
|
||||
{
|
||||
|
@ -33,12 +33,12 @@ public:
|
|||
|
||||
Token const& token() const { return m_token; }
|
||||
|
||||
Vector<ComponentValue> const& values() const { return m_values; }
|
||||
Vector<Parser::ComponentValue> const& values() const { return m_values; }
|
||||
|
||||
String to_string() const;
|
||||
|
||||
private:
|
||||
Token m_token;
|
||||
Vector<ComponentValue> m_values;
|
||||
Vector<Parser::ComponentValue> m_values;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue