diff options
Diffstat (limited to 'Source/WebKit/chromium/src/WebInputElement.cpp')
-rw-r--r-- | Source/WebKit/chromium/src/WebInputElement.cpp | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Source/WebKit/chromium/src/WebInputElement.cpp b/Source/WebKit/chromium/src/WebInputElement.cpp index c0037a0ef..adae9dac8 100644 --- a/Source/WebKit/chromium/src/WebInputElement.cpp +++ b/Source/WebKit/chromium/src/WebInputElement.cpp @@ -98,6 +98,16 @@ WebString WebInputElement::value() const return constUnwrap<HTMLInputElement>()->value(); } +WebString WebInputElement::editingValue() const +{ + return constUnwrap<HTMLInputElement>()->innerTextValue(); +} + +void WebInputElement::setEditingValue(const WebString& value) +{ + unwrap<HTMLInputElement>()->setEditingValue(value); +} + void WebInputElement::setSuggestedValue(const WebString& value) { unwrap<HTMLInputElement>()->setSuggestedValue(value); |