mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-06-12 02:30:30 +09:00
LibWeb: Port CSSStyleDeclaration from DeprecatedString to String
This commit is contained in:
parent
fbc4370c44
commit
f5efe9bb63
Notes:
sideshowbarker
2024-07-17 21:26:19 +09:00
Author: https://github.com/shannonbooth
Commit: f5efe9bb63
Pull-request: https://github.com/SerenityOS/serenity/pull/20977
Reviewed-by: https://github.com/ADKaster ✅
Reviewed-by: https://github.com/AtkinsSJ
Reviewed-by: https://github.com/awesomekling
5 changed files with 21 additions and 21 deletions
|
@ -19,10 +19,10 @@ public:
|
|||
virtual ~ResolvedCSSStyleDeclaration() override = default;
|
||||
|
||||
virtual size_t length() const override;
|
||||
virtual DeprecatedString item(size_t index) const override;
|
||||
virtual String item(size_t index) const override;
|
||||
virtual Optional<StyleProperty> property(PropertyID) const override;
|
||||
virtual WebIDL::ExceptionOr<void> set_property(PropertyID, StringView css_text, StringView priority) override;
|
||||
virtual WebIDL::ExceptionOr<DeprecatedString> remove_property(PropertyID) override;
|
||||
virtual WebIDL::ExceptionOr<String> remove_property(PropertyID) override;
|
||||
|
||||
virtual DeprecatedString serialized() const override;
|
||||
virtual WebIDL::ExceptionOr<void> set_css_text(StringView) override;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue