1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-08-23 04:47:50 +00:00

LibWeb: Hide input placeholder when input already has a value

This commit is contained in:
Bastiaan van der Plaat 2023-12-10 19:33:37 +01:00 committed by Andreas Kling
parent df57d7ca68
commit d025d207d9
6 changed files with 50 additions and 21 deletions

View file

@ -71,6 +71,7 @@ public:
void commit_pending_changes();
String placeholder() const;
Optional<DeprecatedString> placeholder_value() const;
bool checked() const { return m_checked; }