mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-05-23 03:22:54 +00:00
29 lines
512 B
C++
29 lines
512 B
C++
/*
|
|
* Copyright (c) 2025, Sam Atkins <sam@ladybird.org>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <AK/FlyString.h>
|
|
#include <LibWeb/CSS/CSSRule.h>
|
|
|
|
namespace Web::CSS::Parser {
|
|
|
|
enum class RuleContext : u8 {
|
|
Unknown,
|
|
Style,
|
|
AtMedia,
|
|
AtFontFace,
|
|
AtKeyframes,
|
|
Keyframe,
|
|
AtSupports,
|
|
SupportsCondition,
|
|
AtLayer,
|
|
AtProperty,
|
|
};
|
|
RuleContext rule_context_type_for_rule(CSSRule::Type);
|
|
RuleContext rule_context_type_for_at_rule(FlyString const&);
|
|
|
|
}
|