blob: 8d0fd15de3d690b17cd1137d0cee14f17c44b2dc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
/*
* Copyright (c) 2020-2021, the SerenityOS developers.
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/String.h>
#include <AK/Vector.h>
namespace Web::CSS {
class StyleComponentValueRule;
class StyleFunctionRule {
friend class Parser;
public:
StyleFunctionRule();
~StyleFunctionRule();
String to_string() const;
private:
String m_name;
Vector<String> m_values;
};
}
|