1
0
Fork 0
mirror of https://github.com/LadybirdBrowser/ladybird.git synced 2025-06-11 10:18:15 +09:00

LibWeb: Port HTMLOptionElement interface from DeprecatedString to String

This commit is contained in:
Shannon Booth 2023-09-03 15:51:13 +12:00 committed by Tim Flynn
parent c405ba6b08
commit 7206f1777a
Notes: sideshowbarker 2024-07-17 01:04:03 +09:00
4 changed files with 13 additions and 16 deletions

View file

@ -20,11 +20,11 @@ public:
bool selected() const { return m_selected; }
void set_selected(bool);
DeprecatedString value() const;
WebIDL::ExceptionOr<void> set_value(DeprecatedString);
String value() const;
WebIDL::ExceptionOr<void> set_value(String const&);
DeprecatedString text() const;
void set_text(DeprecatedString);
String text() const;
void set_text(String const&);
int index() const;