mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-08-12 19:19:30 +00:00
LibWeb: Port CSSConditionRule interface from DeprecatedString to String
This commit is contained in:
parent
ff45874d4e
commit
cf733d309e
Notes:
sideshowbarker
2024-07-16 22:16:50 +09:00
Author: https://github.com/shannonbooth
Commit: cf733d309e
Pull-request: https://github.com/SerenityOS/serenity/pull/20799
Reviewed-by: https://github.com/ADKaster ✅
6 changed files with 13 additions and 13 deletions
|
@ -18,8 +18,8 @@ class CSSConditionRule : public CSSGroupingRule {
|
|||
public:
|
||||
virtual ~CSSConditionRule() = default;
|
||||
|
||||
virtual DeprecatedString condition_text() const = 0;
|
||||
virtual void set_condition_text(DeprecatedString) = 0;
|
||||
virtual String condition_text() const = 0;
|
||||
virtual void set_condition_text(String const&) = 0;
|
||||
virtual bool condition_matches() const = 0;
|
||||
|
||||
virtual void for_each_effective_style_rule(Function<void(CSSStyleRule const&)> const& callback) const override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue