Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5186)

Unified Diff: chrome/test/automation/dom_element_proxy.cc

Issue 9693065: Run IDB layout test suite as browser tests instead of ui tests (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix some style stuff Created 8 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}
« no previous file with comments | « chrome/test/automation/dom_element_proxy.h ('k') | content/browser/in_process_webkit/indexed_db_layout_browsertest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698