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:
parent
d5409a056a
commit
d706f9f241
3 changed files with 8 additions and 8 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue