summaryrefslogtreecommitdiffstats
path: root/WebCore/dom
Commit message (Collapse)AuthorAgeFilesLines
* Check for the absence of a frame.Leon Clarke2010-01-141-1/+2
| | | | | | This crashes in the situation where the XHR responseXML method is being called on a document with meta tags. http://b/issue?id=2346028
* Updates Document::setExtraLayoutDelay to reflect recent submission to ↵Steve Block2010-01-072-14/+13
| | | | | | | | | | | | | webkit.org. setExtraLayoutDelay was an Android addition and was upstreamed to webkit.org in https://bugs.webkit.org/show_bug.cgi?id=32875 Removes Document::extraLayoutDelay by incorporating the extra delay in Document::minimumLayoutDelay. Removes ANDROID_MOBILE guards, as this extra code is not inhernetly specific to Android, and is a no-op if Document::setExtraLayoutDelay is not called. This removes the last uses of ANDROID_MOBILE. Change-Id: I1e18a994f32b29558dcf9a5c76aefab62e9fc13d
* Merge webkit.org at r51976 : Fix general conflicts.Steve Block2009-12-171-6/+4
| | | | | | | | | | | | | | | Notes ... For FrameLoader.cpp/h, see http://trac.webkit.org/changeset/51644 For FrameView.cpp and ScrolView.cpp, see http://trac.webkit.org/changeset/51636 For PluginInfoStore.cpp, see http://trac.webkit.org/changeset/51257 For Geolocation.cpp, see http://trac.webkit.org/changeset/50605 For V8DOMWrapper.cpp, see http://trac.webkit.org/changeset/51004 For V8Proxy.cpp, see http://trac.webkit.org/changeset/50441, http://trac.webkit.org/changeset/50327, http://trac.webkit.org/changeset/50406 and http://trac.webkit.org/changeset/50523 For HTMLInputElement.cpp, see http://trac.webkit.org/changeset/50996 For RenderBlock.cpp/RenderInline.cpp, see https://android-git.corp.google.com/g/#change,33465 Android-specific change to now-deleted JSCanvasArrayCustom.cpp was trivial. Change-Id: Iddc8d43bdcb6208d6a991a7a1d591e8a4f918bf7
* Merge webkit.org at r51976 : Initial merge by git.Steve Block2009-12-1763-376/+852
| | | | Change-Id: Ib0e7e2f0fb4bee5a186610272edf3186f0986b43
* Enable longpress and doubletap to WebKit as touchGrace Kloba2009-12-093-0/+15
| | | | event if it is requested.
* Pull down change 51321 from webkit.org.Patrick Scott2009-12-091-2/+3
| | | | | Calls to EventNames() was causing multiple copies of the event names to be created. This could cause false negatives in hash map lookups.
* Removes WebCorePrefixAndroid.h to aid WebKit upstreaming.Steve Block2009-11-121-3/+3
| | | | | | | | | | | | | | | | Content from WebCorePrefixAndroid.h has been moved to WebCorePrefix.h and the Android Makefiles modified to use that file. - Enabler flags have been moved to WebCore/config.h. - flex_XXX_T types are defined in WebCore/css/maketokenizer - Most system includes are alreay present in WebCorePrefix.h - Some includes have been moved directly to the source files that require them. - The following includes seem not to be required so have been dropped. - #include <limits.h> - #include <math.h> - #include <stdint.h> - #include <unistd.h> Change-Id: I8eba4d0a606463503554955e113d57bdf76a7136
* Merge webkit.org at r50258 : Fix conflicts.Steve Block2009-11-101-5/+2
| | | | | | | Note that FrameLoader::gotoAnchor has been moved to FramveView::gotoAnchor. See http://trac.webkit.org/changeset/49608 Change-Id: Ic2a87bb0c0f91d371508578ddccf200967524a77
* Merge webkit.org at r50258 : Initial merge by git.Steve Block2009-11-1027-172/+351
| | | | Change-Id: I1a9e1dc4ed654b69174ad52a4f031a07240f37b0
* fix instrumentation. The new WebKit has CachedResourceClientGrace Kloba2009-10-284-8/+52
| | | | derived from FastAllocBase which has overload operator new. So we need to override it again to avoid ambiguous.
* Makes a number of changes to ease future merging with and upstreaming to ↵Steve Block2009-10-223-1/+3
| | | | | | | | | | | | | webkit.org. - Fixes whitespace discrepancies between webkit.org and Android versions - Re-orders Android-specific changes to minimise the diff with webkit.org - Makes sure all Android-specific changes are appropriately guarded. - Fixes some Android-specific style problems None of these should introduce any functional changes for PLATFORM(ANDROID). Change-Id: Id27cf0b0e8682a7f29590c3fccae2d287b3630f1
* Merge webkit.org at R49305 : Update Geolocation to use new EventListener ↵Steve Block2009-10-201-1/+2
| | | | | | | | methods. See http://trac.webkit.org/changeset/48402, http://trac.webkit.org/changeset/48701 and http://trac.webkit.org/changeset/48767 Change-Id: Id32d80c62f71c98c6677d7cbe11ee2ffbdaeeff1
* Merge webkit.org at R49305 : Use new macros to define Android touch event ↵Steve Block2009-10-202-50/+4
| | | | | | | | listeners for Node and DOMWindow. See http://trac.webkit.org/changeset/48701 Change-Id: I160099dd16b222e016c3414f2ce06adf5cf52573
* Merge webkit.org at R49305 : Pull WebKit change ↵Steve Block2009-10-201-1/+1
| | | | | | http://trac.webkit.org/changeset/49428 to fix build with ENABLE_INSPECTOR = 0. Change-Id: Id5cf30ed4a1753dc0659f405286fc66a76cae3c8
* Merge webkit.org at R49305 : Fix merge conflicts.Steve Block2009-10-202-518/+14
| | | | Change-Id: I9e0ffbe9b9b824399653da038093874e315ccd6a
* Merge webkit.org at R49305 : Automatic merge by git.Steve Block2009-10-2087-1773/+2604
| | | | Change-Id: I8968561bc1bfd72b8923b7118d3728579c6dbcc7
* Fixes a bunch of WebKit whitespace discrepancies between Android and ↵Steve Block2009-10-142-2/+2
| | | | | | | | webkit.org. Do not merge. This will avoid noise in the diffs when upstreaming Android-specific changes to webkit.org. This has already been submitted to master branch.
* Removes superfluous unload event getter and setter methods from Node. Do not ↵Steve Block2009-10-132-12/+1
| | | | | | | | | merge. These were removed from webkit.org in http://trac.webkit.org/changeset/44944. This should have been picked up in https://android-git.corp.google.com/w/?p=platform/external/webkit.git;a=commitdiff;h=d227fc870c7a697500a3c900c31baf05fb9a8524, which syncs to webkit.org R47420. This has already been submitted to master branch.
* When detach the top Document, clean up the touch listeners and resetGrace Kloba2009-09-251-0/+11
| | | | | | needTouchEvents. Fix http://b/issue?id=2145333
* Add more null checking to avoid the crash.Grace Kloba2009-09-111-4/+5
|
* Move mobile doctype check from HTMLDocument to Document so that it will ↵Grace Kloba2009-09-081-0/+9
| | | | | cover xhtml case like http://us.m1.yahoo.com. Fix http://b/issue?id=2102284
* We lost ontouchxxx with the new WK. Bring them back.Grace Kloba2009-08-272-0/+12
|
* Revert "Merge WebKit r47420"Andrei Popescu2009-08-1942-737/+824
| | | | This reverts commit d227fc870c7a697500a3c900c31baf05fb9a8524.
* Revert "Compilation and link error fixes for new webkit r47420."Andrei Popescu2009-08-191-0/+13
| | | | This reverts commit 632f4508222c2a617e6820e9388867c0f4821db8.
* Compilation and link error fixes for new webkit r47420.Ben Murdoch2009-08-181-13/+0
|
* Merge WebKit r47420Ben Murdoch2009-08-1842-824/+737
|
* Fix the last of the linker errors !Ben Murdoch2009-08-171-2/+2
|
* Fix left over maunal mergesAndrei Popescu2009-08-134-65/+1
|
* dom, html and loader mergesAndrei Popescu2009-08-126-22/+3
|
* Merge in WebKit r47029.Ben Murdoch2009-08-1173-899/+1643
|
* Get WebKit r44544.Feng Qian2009-06-1784-1586/+3366
|
* Merge commit 'goog/master' into merge_webkit_from_masterFeng Qian2009-04-291-0/+11
|\
| * Temporary fix bug 1792567.Feng Qian2009-04-161-0/+11
| | | | | | | | editing/selection/selectNodeContents.html crashes after recent merge to webkit r42026. The trunk fixed the crashed already, we will pick up the fix in our next merge.
* | Make WebCore built with V8.Feng Qian2009-04-242-1/+7
|/ | | | Picked up several new files from Chrome port.
* AI 145796: Land the WebKit merge @r42026.Feng Qian2009-04-1081-4158/+2658
| | | | Automated import of CL 145796
* AI 143526: Clear execute bit on C++ source files.Cary Clark2009-03-301-0/+0
| | | | | | | | | Our execute bit is out of sync with webkit.org, so make them the same. This helps keep the diff tool from getting confused. BUG=1553405 Automated import of CL 143526
* Automated import from //branches/master/...@142772,142772Grace Kloba2009-03-251-1/+1
|
* auto import from //branches/cupcake_rel/...@138607The Android Open Source Project2009-03-131-0/+6
|
* auto import from //depot/cupcake/@136594The Android Open Source Project2009-03-05107-1673/+5244
|
* auto import from //depot/cupcake/@135843The Android Open Source Project2009-03-03217-0/+36430
|
* auto import from //depot/cupcake/@135843The Android Open Source Project2009-03-03217-36430/+0
|
* auto import from //branches/cupcake/...@126645The Android Open Source Project2009-01-1510-127/+178
|
* auto import from //branches/cupcake/...@125939The Android Open Source Project2009-01-094-32/+1
|
* Code drop from //branches/cupcake/...@124589The Android Open Source Project2008-12-17183-6317/+12540
|
* Initial ContributionThe Android Open Source Project2008-10-2159-1120/+2051
|
* external/webkit r30707Upstream1970-01-12176-0/+29256