summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibWeb/CSS/Parser/StyleBlockRule.h
blob: 6aabad991f9847e7b6f942466222bb6093ba4ca7 (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
/*
 * Copyright (c) 2020-2021, SerenityOS developers
 *
 * SPDX-License-Identifier: BSD-2-Clause
 */

#pragma once

#include <AK/Vector.h>
#include <LibWeb/CSS/Parser/Token.h>

namespace Web::CSS {

class StyleBlockRule {
    friend class Parser;

public:
    StyleBlockRule();
    ~StyleBlockRule();

    String to_string() const;

private:
    Token m_token;
    Vector<String> m_values;
};

}