| Index: chrome/test/automation/dom_element_proxy.cc
|
| diff --git a/chrome/test/automation/dom_element_proxy.cc b/chrome/test/automation/dom_element_proxy.cc
|
| index e11a48f6632821f97aab0f37cfdd182f6ef973c7..dcc937f7a7cdc08e1ce1baac7327aa2fe7724859 100644
|
| --- a/chrome/test/automation/dom_element_proxy.cc
|
| +++ b/chrome/test/automation/dom_element_proxy.cc
|
| @@ -222,6 +222,10 @@ bool DOMElementProxy::GetText(std::string* text) {
|
| return GetValue("text", text);
|
| }
|
|
|
| +bool DOMElementProxy::GetInnerText(std::string* text) {
|
| + return GetValue("innertext", text);
|
| +}
|
| +
|
| bool DOMElementProxy::GetInnerHTML(std::string* html) {
|
| return GetValue("innerhtml", html);
|
| }
|
|
|