LibWeb: Port CSSRule::serialized from DeprecatedString to String

This commit is contained in:
Shannon Booth
2023-11-20 23:16:39 +13:00
committed by Tim Flynn
parent 890cce6fbb
commit d400291ad9
18 changed files with 30 additions and 30 deletions

View File

@@ -45,7 +45,7 @@ private:
virtual void visit_edges(Visitor&) override;
virtual void initialize(JS::Realm&) override;
virtual DeprecatedString serialized() const override;
virtual String serialized() const override;
FlyString m_name;
Vector<JS::NonnullGCPtr<CSSKeyframeRule>> m_keyframes;