ladybird/Userland/Libraries/LibWeb/CSS/Parser/QualifiedStyleRule.h

30 lines
458 B
C
Raw Normal View History

/*
* Copyright (c) 2020-2021, SerenityOS developers
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#pragma once
#include <AK/Vector.h>
#include <LibWeb/CSS/Parser/StyleBlockRule.h>
namespace Web::CSS {
class StyleComponentValueRule;
class QualifiedStyleRule {
friend class Parser;
public:
QualifiedStyleRule();
~QualifiedStyleRule();
String to_string() const;
private:
Vector<String> m_prelude;
StyleBlockRule m_block;
};
}