mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-29 04:09:13 +00:00
LibWeb: Stub CSSCounterStyleRule
Just the interface. Adds 6 new WPT subtest passes.
This commit is contained in:
parent
7ad01d28a8
commit
8dd259b8d8
Notes:
github-actions[bot]
2025-07-18 10:52:47 +00:00
Author: https://github.com/gmta
Commit: 8dd259b8d8
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/5501
Reviewed-by: https://github.com/AtkinsSJ ✅
7 changed files with 70 additions and 1 deletions
25
Libraries/LibWeb/CSS/CSSCounterStyleRule.h
Normal file
25
Libraries/LibWeb/CSS/CSSCounterStyleRule.h
Normal file
|
@ -0,0 +1,25 @@
|
|||
/*
|
||||
* 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;
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue