mirror of
https://github.com/RGBCube/serenity
synced 2025-07-03 05:32:13 +00:00
LibWeb: Port HTMLOptionElement interface from DeprecatedString to String
This commit is contained in:
parent
c405ba6b08
commit
7206f1777a
4 changed files with 13 additions and 16 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue