1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-31 07:58:11 +00:00

LibWeb: Port HTMLSelectElement from DeprecatedString to String

This commit is contained in:
Shannon Booth 2023-08-12 21:30:19 +12:00 committed by Andreas Kling
parent d5409a056a
commit d706f9f241
3 changed files with 8 additions and 8 deletions

View file

@ -27,7 +27,7 @@ public:
size_t length();
DOM::Element* item(size_t index);
DOM::Element* named_item(DeprecatedFlyString const& name);
DOM::Element* named_item(FlyString const& name);
WebIDL::ExceptionOr<void> add(HTMLOptionOrOptGroupElement element, Optional<HTMLElementOrElementIndex> before = {});
int selected_index() const;
@ -58,7 +58,7 @@ public:
virtual void reset_algorithm() override;
DeprecatedString const& type() const;
String const& type() const;
virtual Optional<ARIA::Role> default_role() const override;