mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 17:10:23 +00:00
f87041bf3a
Resulting in a massive rename across almost everywhere! Alongside the namespace change, we now have the following names: * JS::NonnullGCPtr -> GC::Ref * JS::GCPtr -> GC::Ptr * JS::HeapFunction -> GC::Function * JS::CellImpl -> GC::Cell * JS::Handle -> GC::Root
37 lines
1 KiB
C++
37 lines
1 KiB
C++
/*
|
|
* Copyright (c) 2023, Jonah Shafran <jonahshafran@gmail.com>
|
|
*
|
|
* SPDX-License-Identifier: BSD-2-Clause
|
|
*/
|
|
|
|
#pragma once
|
|
|
|
#include <LibWeb/CSS/CSSRule.h>
|
|
|
|
namespace Web::CSS {
|
|
|
|
class CSSNamespaceRule final : public CSSRule {
|
|
WEB_PLATFORM_OBJECT(CSSNamespaceRule, CSSRule);
|
|
GC_DECLARE_ALLOCATOR(CSSNamespaceRule);
|
|
|
|
public:
|
|
[[nodiscard]] static GC::Ref<CSSNamespaceRule> create(JS::Realm&, Optional<FlyString> prefix, FlyString namespace_uri);
|
|
|
|
virtual ~CSSNamespaceRule() = default;
|
|
|
|
void set_namespace_uri(FlyString value) { m_namespace_uri = move(value); }
|
|
FlyString const& namespace_uri() const { return m_namespace_uri; }
|
|
void set_prefix(FlyString value) { m_prefix = move(value); }
|
|
FlyString const& prefix() const { return m_prefix; }
|
|
|
|
private:
|
|
CSSNamespaceRule(JS::Realm&, Optional<FlyString> prefix, FlyString namespace_uri);
|
|
|
|
virtual void initialize(JS::Realm&) override;
|
|
|
|
virtual String serialized() const override;
|
|
FlyString m_namespace_uri;
|
|
FlyString m_prefix;
|
|
};
|
|
|
|
}
|