diff options
author | Cary Clark <cary@android.com> | 2009-09-03 16:05:35 -0400 |
---|---|---|
committer | Cary Clark <cary@android.com> | 2009-09-03 16:05:35 -0400 |
commit | 5188b9fc3b8f6aa797c9d97bb0aa30ab67f98265 (patch) | |
tree | 1ba2ef8cc630a6a00d5a3661dbddec17ee4ba825 /WebKit/android/nav/CachedRoot.cpp | |
parent | 94c1489ecc5f8b0d4c78cd4960a2d14679fba38b (diff) | |
download | external_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.cpp | 2 |
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; |