/* * Copyright (c) 2021, Sam Atkins * Copyright (c) 2022, Andreas Kling * * SPDX-License-Identifier: BSD-2-Clause */ #include #include #include namespace Web::CSS { CSSConditionRule::CSSConditionRule(JS::Realm& realm, CSSRuleList& rules) : CSSGroupingRule(realm, rules) { set_prototype(&Bindings::ensure_web_prototype(realm, "CSSConditionRule")); } void CSSConditionRule::for_each_effective_style_rule(Function const& callback) const { if (condition_matches()) CSSGroupingRule::for_each_effective_style_rule(callback); } }