mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-07-30 12:49:19 +00:00
LibWeb/CSS: Add CSSOM types for @layer
rules
Depending on usage, `@layer` has two forms, with two different CSSOM types. One simply lists layer names and the other defines a layer with its contained rules.
This commit is contained in:
parent
bf9d05d97a
commit
1c6133aa52
Notes:
github-actions[bot]
2024-09-06 05:51:10 +00:00
Author: https://github.com/AtkinsSJ
Commit: 1c6133aa52
Pull-request: https://github.com/LadybirdBrowser/ladybird/pull/1291
17 changed files with 346 additions and 27 deletions
38
Userland/Libraries/LibWeb/CSS/CSSLayerStatementRule.h
Normal file
38
Userland/Libraries/LibWeb/CSS/CSSLayerStatementRule.h
Normal file
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
* Copyright (c) 2024, Sam Atkins <sam@ladybird.org>
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-2-Clause
|
||||
*/
|
||||
|
||||
#pragma once
|
||||
|
||||
#include <LibWeb/CSS/CSSRule.h>
|
||||
|
||||
namespace Web::CSS {
|
||||
|
||||
// https://drafts.csswg.org/css-cascade-5/#the-csslayerstatementrule-interface
|
||||
class CSSLayerStatementRule final : public CSSRule {
|
||||
WEB_PLATFORM_OBJECT(CSSLayerStatementRule, CSSRule);
|
||||
JS_DECLARE_ALLOCATOR(CSSLayerStatementRule);
|
||||
|
||||
public:
|
||||
[[nodiscard]] static JS::NonnullGCPtr<CSSLayerStatementRule> create(JS::Realm&, Vector<FlyString> name_list);
|
||||
|
||||
virtual ~CSSLayerStatementRule() = default;
|
||||
|
||||
virtual Type type() const override { return Type::LayerStatement; }
|
||||
|
||||
// FIXME: Should be FrozenArray
|
||||
ReadonlySpan<FlyString> name_list() const { return m_name_list; }
|
||||
Vector<FlyString> internal_qualified_name_list(Badge<StyleComputer>) const;
|
||||
|
||||
private:
|
||||
CSSLayerStatementRule(JS::Realm&, Vector<FlyString> name_list);
|
||||
|
||||
virtual void initialize(JS::Realm&) override;
|
||||
virtual String serialized() const override;
|
||||
|
||||
Vector<FlyString> m_name_list;
|
||||
};
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue