mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-29 21:00:06 +00:00
LibWeb: Port HTMLSelectElement from DeprecatedString to String
This commit is contained in:
committed by
Andreas Kling
parent
d5409a056a
commit
d706f9f241
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user