added placeholder property (was present in text area but missing in input)

This commit is contained in:
Jörg Hohwiller 2020-01-14 08:59:18 +01:00 committed by Alexey Andreev
parent c0d42a9d7a
commit 5ed4de3a5a

View File

@ -67,4 +67,10 @@ public interface HTMLInputElement extends HTMLElement {
void setValue(String value);
void select();
@JSProperty
String getPlaceholder();
@JSProperty
void setPlaceholder(String value);
}