| Commit message (Collapse) | Author | Age | Files | Lines |
| |\
| |
| |
| |
| |
| |
| |
| |
| | |
CachedNode pointers." into eclair-mr2
Merge commit 'ddd2f469835ed5402cb3edfa6c2865536011fbab'
* commit 'ddd2f469835ed5402cb3edfa6c2865536011fbab':
Compare Node pointers rather than CachedNode pointers.
|
| | |
| |
| |
| | |
Fixes http://b/issue?id=2369028
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Before, the slop parameter was set to zero if the node was
invalid, and used to skip searching for the node. Now, the
cache is rebuilt on the java side before the C side is
called.
requires a companion fix in frameworks/base
fixes http://b/2362334
|
| |\ \
| |/ |
|
| | |
| |
| |
| |
| |
| | |
Fix for http://b/issue?id=2361658
Requires a change to frameworks/base.
|
| |\ \
| |/
| |
| |
| |
| |
| | |
Merge commit 'e44f974f1d7e25a2823901e0f34c04aa924b7527'
* commit 'e44f974f1d7e25a2823901e0f34c04aa924b7527':
In motionUp, update the CachedHistory's mMouseBounds.
|
| | |
| |
| |
| |
| |
| | |
mMouseBounds is later used to determine the point of clicking.
Fixes http://b/issue?id=2313991
|
| |\ \
| |/
| |
| |
| |
| |
| | |
Merge commit '6864ec3c0bb8b5cc0dfa126546419113e946661a'
* commit '6864ec3c0bb8b5cc0dfa126546419113e946661a':
remove unused jni interfaces
|
| | |
| |
| |
| | |
companion change is in frameworks/base
|
| |\ \
| |/ |
|
| | |
| |
| |
| |
| |
| |
| | |
Previously, we were storing the label info each time we build the
navigation cache.
Requires a change to frameworks/base.
|
| |\ \
| |/
| |
| |
| |
| |
| | |
Merge commit '3146e9ee4d8f6114a97ceb01d6fd54db77d99538'
* commit '3146e9ee4d8f6114a97ceb01d6fd54db77d99538':
Store label information to be used for hint text.
|
| | |
| |
| |
| |
| |
| | |
Fix for http://b/issue?id=2331526
Requires a change to frameworks/base.
|
| | | |
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
The deleted code extracted the selected text from the WebKit DOM
by looking for text in the render tree that matched the selection
region. This has never worked well.
The replacement approach matches the glyphs in the picture instead.
- WebViewCore.*
Remove getSelection() and supporting routines. Part of the deleted
code looked for punctuation between segments to add space characters
that might not be present in the markup. There's no equivalent in
the replacement code; it uses spacial gaps to detect the need to
add extra spaces.
- SelectText.*
Match the text to the selected region and convert the glyph to
unicode. The tricky part is that spaces need to be inserted into
the string when there are gaps in the text.
- WebView.cpp
Return the selection as a string to the java caller instead
of a region.
To convert the glyphs into text, a companion change was made to
external/skia. To update the UI thread/webkit thread messaging, a
companion change was also made to frameworks/base.
Fixes http://b/2166748
|
| | | |
|
| |\ \
| |/ |
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Fix for http://b/issue?id=2219166
Requires a change to frameworks/base
Remove the old change to update the WebTextView when a key is pressed,
since the IME does not generate key events. Instead, when the focus
changes, and the IME is serving the WebTextView, immediately clear
the cursor and update the WebTextView, so the user can continue
typing. Also, allow "Next" to work on the currently focused
textfield, even if it's not the cursor. Further, check for
a new action if there is a focus but not a cursor.
|
| |\ \
| |/
| |
| |
| |
| |
| | |
Merge commit '14357090e9d4ac9ad1be6147cf9c7e3ff83cdda4'
* commit '14357090e9d4ac9ad1be6147cf9c7e3ff83cdda4':
check to see if nav cache is up to date on tap
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
- WebKit/android/jni/WebViewCore.cpp
- WebKit/android/jni/WebViewCore.h
Add validNodeAndBounds() to determine if the clicked cached
node is good. First check to see if the pointer
to the frame and node still exist in the DOM. If
they do, see if the hit test bounds they point
to is the same as when the cache was recorded.
- WebKit/android/nav/CacheBuilder.cpp
- WebKit/android/nav/CachedNode.h
Record the original absolute bounds for later
comparison.
- WebKit/android/nav/CacheBuilder.h
Make getAreaRect() public so it can be called by
validation.
- WebKit/android/nav/WebView.cpp
Enhance motionUp() with additional validation:
use pointInNavCache() to see if there's a cached node;
wait for message from webkit to see if bounds is unchanged;
then use motionUp() to pass the original or altered click.
This is a two-part change with frameworks/base.
Fixes http://b/2249425
|
| | | |
|
| |\ \
| |/
| |
| |
| |
| |
| |
| |
| | |
"Next".
Merge commit '58a731c8a7beeda67d174e8a325594bc81e80a0f'
* commit '58a731c8a7beeda67d174e8a325594bc81e80a0f':
Pass a message to move the focus when user hits "Next".
|
| | |
| |
| |
| |
| |
| |
| |
| | |
Directly move the focus rather than passing a click.
Fixes http://b/issue?id=2292683
Requires a change to frameworks/base
|
| |\ \
| |/
| |
| |
| |
| |
| | |
Merge commit 'c08123548374ec7cdcf0d1ef8857807c6eda8293'
* commit 'c08123548374ec7cdcf0d1ef8857807c6eda8293':
Provide <input> type information to Java side.
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Help to fix http://b/issue?id=1890360 and http://b/issue?id=2150538
CacheBuilder.cpp:
Explicitly set isTextField to false for textareas.
CachedRoot:
Remove the code which checks to see if the textfield is a search,
since if it is, we can avoid this path altogether.
WebView:
Return a single integer which tells what type the current text
input field is.
Requires a change to frameworks/base.
|
| |\ \
| |/
| |
| |
| |
| |
| | |
Merge commit '9a00fbd61c8699856620bca057e06efca4425015'
* commit '9a00fbd61c8699856620bca057e06efca4425015':
fix crash reading readonly node state
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Something about rebuildTextView() invalidates the current cached
frame -- reading the last obtained frame after calling it may
crash. Why, I don't know. Until I figure that out, read the
cached state first.
Also remove some tests for null frame and node since the null
case has already been handled earlierin motionUp().
fixes http://b/2307964
|
| |\ \
| |/
| |
| |
| |
| |
| |
| |
| | |
return SEARCH action for SEARCH <input>
Merge commit '3a360998e7aa91c194fa97a40131bf837f2bba1b'
* commit '3a360998e7aa91c194fa97a40131bf837f2bba1b':
Store InputType information for <input> fields, return SEARCH action for SEARCH <input>
|
| | |
| |
| |
| |
| |
| |
| | |
SEARCH <input>
Fixes http://b/issue?id=2299660 and http://b/issue?id=2299650
Also remove isPassword, which is redundant.
|
| |\ \
| |/
| |
| |
| |
| |
| | |
Merge commit '021228f27b1399df5a45f3f1e7f1f12126e86e3c'
* commit '021228f27b1399df5a45f3f1e7f1f12126e86e3c':
move input-related fields out of CachedNode to expand
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Some of the fields in CachedNode are relevant only to input
fields and text areas. Move these into their own vector
so that we can add more data without making all CacheNodes
bigger.
Remove CacheNode entries that are no longer used, or can
be consolidated into the node type. Alphabetize some interfaces
and implementations. Update the debugging output.
part of http://b/2299660
|
| |\ \
| |/
| |
| |
| |
| |
| | |
Merge commit 'c0d334f902af03c2717dcc2223007ec681772cfd'
* commit 'c0d334f902af03c2717dcc2223007ec681772cfd':
Remove nativeTextInputMotionUp.
|
| | |
| |
| |
| | |
Function is not needed. Requires a change to frameworks/base
|
| |\ \
| |/
| |
| |
| |
| |
| | |
Merge commit 'b8b529ebfcb9481927b00f6e2581873616ccf424'
* commit 'b8b529ebfcb9481927b00f6e2581873616ccf424':
rename nativeFindIsDown to nativeFindIsUp
|
| | |
| |
| |
| |
| |
| | |
companion fix is in framework/base
fixes bug http://b/issue?id=2264941
|
| |\ \
| |/
| |
| |
| |
| |
| | |
Merge commit '7063c3efe30d0ec965ac48439917030f62f50489'
* commit '7063c3efe30d0ec965ac48439917030f62f50489':
Fixes license headers for all files in WebKit/android, other than those in stl/.
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
These files have not yet been upstreamed to webkit.org.
WebKit requires either a BSD-style or LGPL 2.1 license for all code.
We use a BSD-style 2-clause license for Android-specific files that will be upstreamed to webkit.org.
This change adds licenses where absent or simply fixes the names of copyright holders in the license
text to 'THE COPYRIGHT OWNER' and cleans up formatting.
Files in stl/ currently use licenses other than BSD-style and will require more careful treatment.
Change-Id: I67ad4b8932e432d3eaaeecdfeb0d09418496228d
|
| |\ \
| |/
| |
| |
| |
| |
| | |
Merge commit '19194ea29920c2f7a02d08dfb0416608bc81dbb7'
* commit '19194ea29920c2f7a02d08dfb0416608bc81dbb7':
Fix a clicking bug.
|
| | |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| | |
Remove some code that simulates a mouse click at the beginning of
a textarea and the end of a textfield. The original goal was to
make the click change the selection to be at the beginning or end
of the field, respectively. However, we actually make another call
which prevents this click from the selection. Further, the
selection actually gets changed elsewhere.
Fixes http://b/issue?id=2219233
|
| |\ \
| |/
| |
| |
| |
| |
| | |
Merge commit '7b035dc1012763a04adddc6de25256647fea50bd'
* commit '7b035dc1012763a04adddc6de25256647fea50bd':
pass the current cursor when computing the mouse position
|
| | |
| |
| |
| |
| |
| |
| |
| |
| | |
Most of the time, the simulated mouse position can be
computed from the current cursor. But when the cursor
is changed, the current cursor info could be out of
date and generate a bus error.
fixes http://b/issue?id=2061211
|
| | | |
|
| |\ \
| |/
| |
| |
| |
| |
| | |
Merge commit 'f74580c1504dcdd43fd15995b0e137982512dba2'
* commit 'f74580c1504dcdd43fd15995b0e137982512dba2':
Allow touches to change the selection.
|
| | |
| |
| |
| |
| |
| |
| |
| | |
Fixes http://b/issue?id=1650395 Lets touches change the selection
while ignoring changes from trackball events. When a touch puts
a textfield in focus, tell the WebTextView to set mOkayForFocusNotToMatch.
Requires a change in frameworks/base.
|
| |/
|
|
|
|
|
|
|
|
|
|
|
|
| |
Revert "Add check null of getRealObject(). When a WebView is"
This reverts commit b47ea2b1184167767692f88c1e5f3e4e89db04b2.
Revert "Update the comment for checking null in needtouchevents."
This reverts commit 1e67e45d20ead40b0407618abbc5e20840dc3c80.
Revert "Check null for WebViewCore's nativeClass before calling"
This reverts commit 992afbebfb735ec2dd52b4166c22ab55827d88ed.
Fix a few places where DeleteLocalRef and DeleteGlobalRef were used incorrectly.
Fix a compilation warning as well.
|
| |
|
|
|
|
|
|
|
|
| |
Previously we were keeping our own state in the UI thread to
determine when to send events to the plugin. This change removes
that logic and uses the document focus to determine when events
are to be sent. This also fixes problems with the plugins
occasionally not receiving lose focus events.
see bug http://b/2033843
|
| |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
webkit changed the behavior of hitTestResultAtPoint; it used
to return the innermost node hit, but does so no longer.
Work around this by searching the returned node for a text
node.
Start the text detection one pixel lower. This fixes picking up
the first line of a link on m.msn.com.
Simplify the selection drawing. Share code between the arrow and
the i-beam. Center the i-beam on the arrow. Use relative path
construction to simplify the i-beam.
Add debugging.
Requires a companion change in frameworks/base
partially fixes http://b/issue?id=1667690
|
| |
|
|
|
| |
Required for a change to frameworks/base
(https://android-git.corp.google.com/g/30939 )
|
| | |
|
| |
|
|
|
|
|
|
|
|
|
| |
Separate nodes that are hidden from nodes that disable
drawing the focus ring. If a node draws its own focus state,
other than not drawing the ring, it should be indistinguishable
from other focusable nodes.
Fix the nav cache dump to be in line with the latest webkit.
fixes http://b/issue?id=2201049
|