Index: Source/web/WebTextAreaElement.cpp |
diff --git a/Source/web/WebTextAreaElement.cpp b/Source/web/WebTextAreaElement.cpp |
index c4ecd8b95e8db4b88c02170538f32e9b435ce029..4f6a6851ffa031a904d8247b5158bb37bbf7f89f 100644 |
--- a/Source/web/WebTextAreaElement.cpp |
+++ b/Source/web/WebTextAreaElement.cpp |
@@ -60,6 +60,21 @@ WebString WebTextAreaElement::suggestedValue() const |
return constUnwrap<HTMLTextAreaElement>()->suggestedValue(); |
} |
+void WebTextAreaElement::setSelectionRange(int start, int end) |
+{ |
+ unwrap<HTMLTextAreaElement>()->setSelectionRange(start, end); |
+} |
+ |
+bool WebTextAreaElement::autoComplete() const |
+{ |
+ return constUnwrap<HTMLTextAreaElement>()->shouldAutocomplete(); |
+} |
+ |
+WebString WebTextAreaElement::directionForFormData() const |
+{ |
+ return constUnwrap<HTMLTextAreaElement>()->directionForFormData(); |
+} |
+ |
WebTextAreaElement::WebTextAreaElement(const PassRefPtr<HTMLTextAreaElement>& element) |
: WebFormControlElement(element) |
{ |