blob: ca5720e5003182d6017e5ed760be0829102fd0d3 (
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, 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;
};
}
|