mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-10-19 15:43:20 +00:00
26 lines
450 B
C
26 lines
450 B
C
![]() |
/*
|
||
|
* Copyright (c) 2025, Jelle Raaijmakers <jelle@ladybird.org>
|
||
|
*
|
||
|
* SPDX-License-Identifier: BSD-2-Clause
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <LibWeb/CSS/CSSRule.h>
|
||
|
|
||
|
namespace Web::CSS {
|
||
|
|
||
|
class CSSCounterStyleRule : public CSSRule {
|
||
|
WEB_PLATFORM_OBJECT(CSSCounterStyleRule, CSSRule);
|
||
|
|
||
|
public:
|
||
|
virtual ~CSSCounterStyleRule() = default;
|
||
|
|
||
|
protected:
|
||
|
CSSCounterStyleRule(JS::Realm&, Type);
|
||
|
|
||
|
virtual void initialize(JS::Realm&) override;
|
||
|
};
|
||
|
|
||
|
}
|