summaryrefslogtreecommitdiffstats
path: root/WebCore
Commit message (Collapse)AuthorAgeFilesLines
* Fix crash in fast/canvas/canvas-empty-image-pattern.htmlAndrei Popescu2009-08-281-0/+2
|
* Use v8::V8::LowMemoryNotification() instead of the non-really-existibg ↵Andrei Popescu2009-08-272-4/+8
| | | | v8::V8::CollectAllGarbage()
* Fix the paragraph is not wrapping with the new WK problem.Grace Kloba2009-08-211-0/+101
| | | | Copy the change from bidi.cpp to RenerBlockLineLayout.cpp as the file is renamed.
* Add TouchEvent check.Feng Qian2009-08-201-0/+5
| | | | It is left out by the last webkit merge.
* Fix Layout test crash in V8 bindings to AppCacheAndrei Popescu2009-08-201-0/+2
|
* Merge change 22074 into eclairAndroid (Google) Code Review2009-08-202-4/+4
|\ | | | | | | | | * changes: Fix some typos when WEBCORE_INSTRUMENTATION is on.
| * Fix some typos when WEBCORE_INSTRUMENTATION is on.Feng Qian2009-08-202-4/+4
| |
* | Fix a bunch of layout test crashesAndrei Popescu2009-08-201-10/+12
|/
* Merge commit 'goog/master' into mergeAndrei Popescu2009-08-202-20/+46
|\
| * Update MockGeolocationService to avoid the use of static initializers with ↵Steve Block2009-08-192-20/+46
| | | | | | | | constructors, as required by WebKit.
* | Merge commit 'goog/master' into mergeAndrei Popescu2009-08-193-4/+30
|\ \ | |/
| * Need to notify Java side when viewport tag is parsed.Grace Kloba2009-08-183-4/+30
| |
* | fix JSC support.Andrei Popescu2009-08-194-283/+90
| |
* | Revert "Merge WebKit r47420"Andrei Popescu2009-08-19505-19041/+5466
| | | | | | | | This reverts commit d227fc870c7a697500a3c900c31baf05fb9a8524.
* | Revert "Compilation and link error fixes for new webkit r47420."Andrei Popescu2009-08-195-16/+18
| | | | | | | | This reverts commit 632f4508222c2a617e6820e9388867c0f4821db8.
* | Revert "Start fixing JSC compile errors for new webkit."Andrei Popescu2009-08-192-782/+89
| | | | | | | | This reverts commit 62983d46fda85f4d912c221e5cbc91a05d4edebf.
* | Revert "Continue with JSC errors."Andrei Popescu2009-08-194-13/+23
| | | | | | | | This reverts commit 76de9f7763de0e4568056a5a26c93030f21e0b90.
* | Continue with JSC errors.Ben Murdoch2009-08-194-23/+13
| |
* | Start fixing JSC compile errors for new webkit.Ben Murdoch2009-08-192-89/+782
| |
* | Compilation and link error fixes for new webkit r47420.Ben Murdoch2009-08-185-18/+16
| |
* | Merge WebKit r47420Ben Murdoch2009-08-18505-5466/+19041
| |
* | Revert changes to WebCore.exp fileAndrei Popescu2009-08-181-6/+0
| |
* | Fixes for the OSX buildAndrei Popescu2009-08-184-3/+17
| |
* | Try to fix JNI startup errors.Ben Murdoch2009-08-183-3/+7
| |
* | Merge commit 'goog/master' into mergeBen Murdoch2009-08-1815-286/+758
|\ \ | |/ | | | | | | | | | | Conflicts: WebCore/bindings/v8/ScriptController.cpp WebCore/page/Geolocation.cpp WebCore/platform/android/GeolocationServiceAndroid.cpp
| * Merge change 21618 into eclairAndroid (Google) Code Review2009-08-172-0/+21
| |\ | | | | | | | | | | | | * changes: Fix #2058833. For mobile sites, add "width=device-width" if viewport width is not defined as our default viewport width is 800px now.
| | * Fix #2058833. For mobile sites, add "width=device-width" if viewport widthGrace Kloba2009-08-172-0/+21
| | | | | | | | | | | | is not defined as our default viewport width is 800px now.
| * | As PluginList is removed when we remove Gears, remove code in the native side.Grace Kloba2009-08-173-114/+0
| | |
| * | Do not merge - pulled from masterPatrick Scott2009-08-171-46/+63
| |/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | Be more restrictive when expanding iframes. If an iframe has no scrollbars and a fixed dimension, it serves no purpose to try and expand the contents. Some sites like to use hidden iframes for asynchronous loading and showing or expanding those iframes causes layout problems. Change the expansion logic slightly to only expand iframes and not contract them. Also update calcWidth and calcHeight to check for scrollbars or a non-fixed dimension. BUG=2039520,2004093
| * Correctly applies Geolocation timeout parameter.Steve Block2009-08-172-23/+40
| | | | | | | | | | | | | | | | | | | | | | | | Currently, the timeout is started when permissions are granted and stopped when the success callback is made, thus rendering the timeout useless. The correct behavior is to start the timeout when the request is started, and to stop it as soon as a position fix is obtained. Also, the timeout should always be applied, even if no error callback is present and the request should be stopped on timeout. This will be upstreamed to WebKit in bug 27256.
| * do not merge: cherry-picked 360742dd52ce2e67f08b219c5148577ce2e2b741 from ↵Steve Block2009-08-142-0/+10
| | | | | | | | | | | | master branch When Geolocation permissions are denied, terminate all watchers as well as one-shots.
| * Add GC support in V8 and calling GC in WebCoreFrameBridge::clearCache.Feng Qian2009-08-131-1/+4
| | | | | | | | This is experimental, we'd like to see the impact on page cycler intl1 and intl2.
| * Fix a couple of bugs in SecurityOrigin when parsing database identifiers.Steve Block2009-08-131-3/+4
| |
| * Final part of fix to set default values of Geolocation PositionOptions.Steve Block2009-08-132-28/+43
| | | | | | | | Updates to final version submitted to WebKit for bug 27254.
| * Fail fast if Geolocation permissions have already been denied.Steve Block2009-08-122-20/+74
| |
| * Correctly sets default values for Geolocation PositionOptions.Steve Block2009-08-113-84/+105
| | | | | | | | | | | | | | This will be submitted to WebKit in bug 27254. This was first commited in change 20268, but this caused problems in the automated build and was subsequently rolled back in change 20415. This change includes the latest comments from the WebKit review.
| * Merge change 20596Android (Google) Code Review2009-08-112-4/+432
| |\ | | | | | | | | | | | | * changes: Implements GeolocationService on Android.
| | * Implements GeolocationService on Android.Steve Block2009-08-112-4/+432
| | |
* | | Fix the last of the linker errors !Ben Murdoch2009-08-178-9/+58
| | |
* | | Linker error fixes.Ben Murdoch2009-08-171-3/+3
| | |
* | | more localized stringsAndrei Popescu2009-08-171-0/+216
| | |
* | | sort out inspector linking errorsAndrei Popescu2009-08-171-0/+4
| | |
* | | Continue with linker error fixes.Ben Murdoch2009-08-173-1/+16
| | |
* | | Merge change 21503 into master-webkit-mergeAndroid (Google) Code Review2009-08-174-0/+29
|\ \ \ | | | | | | | | | | | | | | | | * changes: A bunch of linker error fixes
| * | | A bunch of linker error fixesAndrei Popescu2009-08-174-0/+29
| | | |
* | | | Fix first set of linker errors.Ben Murdoch2009-08-173-61/+2
|/ / /
* | | Compilation fixes.Ben Murdoch2009-08-172-3/+4
| | |
* | | WebViewCore fixAndrei Popescu2009-08-172-8/+8
| | |
* | | Merge change 21488 into master-webkit-mergeAndroid (Google) Code Review2009-08-171-0/+8
|\ \ \ | | | | | | | | | | | | | | | | * changes: Fix compilation error inside ImageDecoderSkia.cpp
| * | | Fix compilation error inside ImageDecoderSkia.cppBen Murdoch2009-08-171-0/+8
| | | |