summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Merge change 5069Android (Google) Code Review2009-06-234-10/+45
|\ | | | | | | | | * changes: remove references to deprecated porterduff
| * remove references to deprecated porterduffMike Reed2009-06-234-10/+45
| |
* | Fix V8 build.Feng Qian2009-06-2215-40/+123
| |
* | Merge change 4973Android (Google) Code Review2009-06-221-2/+6
|\ \ | |/ |/| | | | | * changes: Make ENABLE_VIDEO configurable.
| * Make ENABLE_VIDEO configurable.Feng Qian2009-06-221-2/+6
| |
* | Don't draw focus ring around plugin when clicking on itCary Clark2009-06-221-0/+4
| |
* | Merge change 4949Android (Google) Code Review2009-06-221-7/+8
|\ \ | | | | | | | | | | | | * changes: webkit added their own initializeBrowserFuncs(), so we need to now call both theirs and ours
| * | webkit added their own initializeBrowserFuncs(), so we need to now call both ↵Mike Reed2009-06-221-7/+8
| |/ | | | | | | theirs and ours
* | Merge change 4941Android (Google) Code Review2009-06-226-102/+1
|\ \ | | | | | | | | | | | | * changes: Remove ANDROID_USER_GESTURE as the bug it fixed no longer applies.
| * | Remove ANDROID_USER_GESTURE as the bug it fixed no longer applies.Patrick Scott2009-06-226-102/+1
| |/ | | | | | | | | | | | | I tested the original bug and found that without this change, the link works perfectly fine. The only thing that does not work with this change is redirects within iframes that are to non-http protocols. This is ok since iframes can always change the parent window's location if this is the desired behavior.
* | rebuild WebView nav cache on trackball move, other bugsCary Clark2009-06-223-12/+35
| | | | | | | | | | | | | | | | | | | | | | | | | | When the WebViewCore picture set is recomputed, check to see if the trackball has moved since the last time. If so, rebuild the nav cache even if dom version checking is disabled. If there's no focus node ready to receive a key event, check to see if the cursor is hovering over a plugin, and give it the event instead. Update all cursor state in both places it could change.
* | Providing plugins with scrolling ability as well as an event informing the ↵Derek Sollenberger2009-06-224-10/+77
|/ | | | plugin of the document's visibleRect.
* Merged changed from Chromium r18043.Feng Qian2009-06-1926-3299/+754
| | | | Need to delete V8MessagePortCustom.cpp.
* Merge change 4868Android (Google) Code Review2009-06-1945-30/+34
|\ | | | | | | | | * changes: Renaming bindings to binding.
| * Renaming bindings to binding.Feng Qian2009-06-1945-30/+34
| | | | | | | | Also updated makefiles.
* | Merge change 4804Android (Google) Code Review2009-06-192-10/+4
|\ \ | | | | | | | | | | | | * changes: Ues loadFrameRequest instead of loadPostRequest so that we don't need to change WebKit any more.
| * | Ues loadFrameRequest instead of loadPostRequest so that we don't need to ↵Grace Kloba2009-06-192-10/+4
| | | | | | | | | | | | change WebKit any more.
* | | Merge change 4774Android (Google) Code Review2009-06-192-14/+10
|\ \ \ | |_|/ |/| | | | | | | | * changes: Update our <select> to work with the latest webkit.
| * | Update our <select> to work with the latest webkit.Leon Scroggins2009-06-192-14/+10
| | | | | | | | | | | | | | | | | | | | | Remove a webkit change that makes some functions public for our use. Instead, use a pointer to a base class where those functions are already public. In one case where a function has been removed, call another function which behaves the same.
* | | Drop in v8 r2121Feng Qian2009-06-19785-0/+274604
| | | | | | | | | | | | | | | From: "http://v8.googlecode.com/svn/trunk@2121", It matches "svn://chrome-svn/chrome/branches/187/src@18043"
* | | Remove v8 source form webkitFeng Qian2009-06-19718-256808/+0
| | | | | | | | | | | | Will drop a newer revision to V8Binding/ directory.
* | | Rename Android.mk to Android.libv8.mk, v8 to bindings.Feng Qian2009-06-1942-0/+0
| | | | | | | | | | | | Plan to drop who v8 src in this directory as v8/
* | | Update revision number.Feng Qian2009-06-194-2/+5
|/ / | | | | | | Move V8 build files out of v8 directory so we can drop V8 source in directly.
* | Enable video and audio elements in WebCoreAndrei Popescu2009-06-196-11/+266
|/
* Merge commit 'goog/master-webkit-merge' into webkit-merge-44544Feng Qian2009-06-182022-59228/+128394
|\
| * Merge commit 'goog/master' into webkit_mergeFeng Qian2009-06-1848-213/+690
| |\ | | | | | | | | | | | | | | | | | | | | | Resolved conflicts: WebCore/Android.mk WebCore/storage/LocalStorageArea.h WebCore/storage/SessionStorageArea.cpp WebCore/storage/StorageEvent.cpp
| * | Some fixes of V8 makefiles.Feng Qian2009-06-185-8/+23
| | | | | | | | | | | | Not fully complete yet.
| * | Remove a leftover.Feng Qian2009-06-171-7/+1
| | |
| * | Get WebKit r44544.Feng Qian2009-06-172018-59224/+128378
| | |
* | | am fa67f45c: Fix WebKit keygen. Has submitted the change to webkit as bug 26016.Grace Kloba2009-06-181-0/+4
|\ \ \ | |_|/ |/| | | | | | | | | | | | | | Merge commit 'fa67f45c81b502d6f7125a91131c43f1b8a0ee6b' * commit 'fa67f45c81b502d6f7125a91131c43f1b8a0ee6b': Fix WebKit keygen. Has submitted the change to webkit as bug 26016.
| * | Fix WebKit keygen. Has submitted the change to webkit as bug 26016.Grace Kloba2009-06-181-0/+4
| | |
* | | clean up mouse move events in webviewCary Clark2009-06-183-125/+101
| | | | | | | | | | | | | | | | | | | | | | | | | | | Generate mouse move event after sending scroll event Move cursor update in nav cache to UI thread Remove updating nav cache on mouse move Remove node parameter from mouse move Remove plugin focus hack from mouse move Add interface to get native cursor position
* | | Adding touch events for plugins.Derek Sollenberger2009-06-186-18/+124
| | |
* | | Merge change 4469Android (Google) Code Review2009-06-172-0/+66
|\ \ \ | | | | | | | | | | | | | | | | * changes: add font table getters for plugins
| * | | add font table getters for pluginsMike Reed2009-06-172-0/+66
| | | |
* | | | try again to disable webkit fix for gmailCary Clark2009-06-172-9/+10
| | | | | | | | | | | | | | | | also, set hasCursorBounds only if cursor ring is visible
* | | | add WebView.FindAddress option to ignore case sensitivityCary Clark2009-06-173-5/+12
|/ / / | | | | | | | | | | | | | | | | | | | | | New public interface is set @hide for now. Old interface uses the new one. Requires a companion change to frameworks/base http://b/issue?id=1649036
* | | Merge change 4330Android (Google) Code Review2009-06-162-2/+2
|\ \ \ | | | | | | | | | | | | | | | | * changes: fix webkit hidden cursor, address crash
| * | | fix webkit hidden cursor, address crashCary Clark2009-06-162-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | http://b/issue?id=1918891 set cursor node hidden to 'true' to hide it also fixing crash if detecting text address runs out of text to look at
* | | | cherry-pick 0f07938f7e51e7a7eb4239b8a30e64b68dac8c66 due to automerger snafuGrace Kloba2009-06-167-17/+165
| | | |
* | | | disable superpudu fix in webkitCary Clark2009-06-161-1/+4
|/ / / | | | | | | | | | | | | | | | | | | | | | The fix to track the cursor ring closer to the animation of the gmail floating message bar adversely affects loading performance, so disable it for now. See http://b/1918741
* | | Changes to make the cursor blink at the correct times.Leon Scroggins2009-06-162-15/+34
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Make the blinking caret active when the user actually starts editing text. In WebView.cpp, determine whether to disable the blinking caret and pass that info up to the Java call. Requires a matching change in frameworks/base. Also add some comments for clarification, and remove duplicate calling points for functions. Also change glue for nativeSetFocusControllerActive to reflect its new name/ function. This change also reflects a behavioral change. If the WebView or its window lose focus, we do not restore the blinking caret when focus returns.
* | | am c55ff27e: (-s ours) Merge change 4191 into donutAndroid (Google) Code Review2009-06-150-0/+0
|\ \ \ | |/ / | | | | | | | | | | | | | | | | | | Merge commit 'c55ff27e90020786b49c7652a4cd71e71bfc8548' * commit 'c55ff27e90020786b49c7652a4cd71e71bfc8548': detect null pointer in webkit script exception Add <keygen> support for VPN team.
| * | Merge change 4191 into donutAndroid (Google) Code Review2009-06-151-0/+2
| |\ \ | | | | | | | | | | | | | | | | * changes: detect null pointer in webkit script exception
| | * | detect null pointer in webkit script exceptionCary Clark2009-06-151-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This security fix https://android-git.corp.google.com/w/?p=platform/external/webkit.git;a=commit;h=df1815070cfd8d2ed6f7101d1b8d60d037c839e6 introduced a regression in the layout test javascript-url-crash-function.html It's enough to check for a null scriptExecutionContext in reportException()
| * | | Add <keygen> support for VPN team.Grace Kloba2009-06-127-17/+166
| |/ /
* | | Enable DOM Storage in master with JSC bindings.Ben Murdoch2009-06-1529-24/+172
| |/ |/|
* | am 40e08ce5: (-s ours) Merge change 3774 into donutAndroid (Google) Code Review2009-06-120-0/+0
|\ \ | |/ | | | | | | | | | | Merge commit '40e08ce5f3984e7f4c70ea623114b1aca1cc9c42' * commit '40e08ce5f3984e7f4c70ea623114b1aca1cc9c42': DO NOT MERGE.
| * Merge change 3774 into donutAndroid (Google) Code Review2009-06-111-0/+25
| |\ | | | | | | | | | | | | * changes: DO NOT MERGE.
| | * DO NOT MERGE.Grace Kloba2009-06-101-0/+25
| | | | | | | | | | | | | | | | | | Merge 2390 from master to donut. Added postUrl() to WebView so that we can pass lat/lon for the search.