mirror of
https://github.com/RGBCube/serenity
synced 2025-05-18 14:55:08 +00:00
28 lines
512 B
C++
28 lines
512 B
C++
/*
|
|
* Copyright (c) 2020-2021, the SerenityOS developers.
|
|
* Copyright (c) 2021, Sam Atkins <atkinssj@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/Vector.h>
|
|
#include <LibWeb/CSS/Parser/StyleComponentValueRule.h>
|
|
|
|
namespace Web::CSS {
|
|
|
|
class QualifiedStyleRule {
|
|
friend class Parser;
|
|
|
|
public:
|
|
QualifiedStyleRule();
|
|
~QualifiedStyleRule();
|
|
String to_string() const;
|
|
|
|
private:
|
|
Vector<StyleComponentValueRule> m_prelude;
|
|
StyleBlockRule m_block;
|
|
};
|
|
|
|
}
|