blob: 0ee36f81c55208d5cb7b23b8c8caabc27bb0de5c (
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
|
/*
* Copyright (c) 2020-2021, SerenityOS developers
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/String.h>
#include <LibWeb/CSS/Parser/QualifiedStyleRule.h>
namespace Web::CSS {
class AtStyleRule : public QualifiedStyleRule {
friend class Parser;
public:
AtStyleRule();
~AtStyleRule();
String to_string() const;
private:
String m_name;
};
}
|