summaryrefslogtreecommitdiffstats
path: root/WebKit/android/nav/CachedRoot.cpp
diff options
context:
space:
mode:
authorCary Clark <cary@android.com>2009-09-03 16:05:35 -0400
committerCary Clark <cary@android.com>2009-09-03 16:05:35 -0400
commit5188b9fc3b8f6aa797c9d97bb0aa30ab67f98265 (patch)
tree1ba2ef8cc630a6a00d5a3661dbddec17ee4ba825 /WebKit/android/nav/CachedRoot.cpp
parent94c1489ecc5f8b0d4c78cd4960a2d14679fba38b (diff)
downloadexternal_webkit-5188b9fc3b8f6aa797c9d97bb0aa30ab67f98265.zip
external_webkit-5188b9fc3b8f6aa797c9d97bb0aa30ab67f98265.tar.gz
external_webkit-5188b9fc3b8f6aa797c9d97bb0aa30ab67f98265.tar.bz2
start in the proper subframe when finding the next text field
fixes http://b/issue?id=2048180
Diffstat (limited to 'WebKit/android/nav/CachedRoot.cpp')
-rw-r--r--WebKit/android/nav/CachedRoot.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/WebKit/android/nav/CachedRoot.cpp b/WebKit/android/nav/CachedRoot.cpp
index 76795be..102da39 100644
--- a/WebKit/android/nav/CachedRoot.cpp
+++ b/WebKit/android/nav/CachedRoot.cpp
@@ -770,7 +770,7 @@ CachedRoot::ImeAction CachedRoot::cursorTextFieldAction() const
return FAILURE;
}
// Now find the next textfield/area starting with the cursor
- if (nextTextField(cursor, 0, true)) {
+ if (cursorFrame->nextTextField(cursor, 0, true)) {
// There is a textfield/area after the cursor, so the textfield under
// the cursor should have the NEXT action
return NEXT;