mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-07 00:56:14 +00:00
LibWeb: Port HTMLObjectElement interface from DeprecatedString to String
This commit is contained in:
@@ -36,8 +36,8 @@ public:
|
||||
|
||||
virtual void attribute_changed(DeprecatedFlyString const& name, DeprecatedString const& value) override;
|
||||
|
||||
DeprecatedString data() const;
|
||||
void set_data(DeprecatedString const& data) { MUST(set_attribute(HTML::AttributeNames::data, data)); }
|
||||
String data() const;
|
||||
void set_data(String const& data) { MUST(set_attribute(HTML::AttributeNames::data, data)); }
|
||||
|
||||
DeprecatedString type() const { return deprecated_attribute(HTML::AttributeNames::type); }
|
||||
|
||||
|
||||
Reference in New Issue
Block a user