summaryrefslogtreecommitdiff
path: root/Source/web/WebInputElement.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/web/WebInputElement.cpp')
-rw-r--r--Source/web/WebInputElement.cpp10
1 files changed, 0 insertions, 10 deletions
diff --git a/Source/web/WebInputElement.cpp b/Source/web/WebInputElement.cpp
index 9a1a3fd34..34891c709 100644
--- a/Source/web/WebInputElement.cpp
+++ b/Source/web/WebInputElement.cpp
@@ -142,16 +142,6 @@ WebString WebInputElement::placeholder() const
return constUnwrap<HTMLInputElement>()->fastGetAttribute(HTMLNames::placeholderAttr);
}
-bool WebInputElement::isAutofilled() const
-{
- return constUnwrap<HTMLInputElement>()->isAutofilled();
-}
-
-void WebInputElement::setAutofilled(bool autofilled)
-{
- unwrap<HTMLInputElement>()->setAutofilled(autofilled);
-}
-
void WebInputElement::setSelectionRange(int start, int end)
{
unwrap<HTMLInputElement>()->setSelectionRange(start, end);