From d0825bca7fe65beaee391d30da42e937db621564 Mon Sep 17 00:00:00 2001 From: Steve Block Date: Tue, 2 Feb 2010 14:57:50 +0000 Subject: Merge webkit.org at r54127 : Initial merge by git Change-Id: Ib661abb595522f50ea406f72d3a0ce17f7193c82 --- WebKit/ChangeLog | 73 + WebKit/English.lproj/Localizable.strings | Bin 50798 -> 51324 bytes WebKit/StringsNotToBeLocalized.txt | 40 +- WebKit/WebKit.xcodeproj/project.pbxproj | 87 +- WebKit/cf/ChangeLog | 12 + WebKit/cf/WebCoreSupport/WebInspectorClientCF.cpp | 2 + WebKit/chromium/ChangeLog | 1403 ++ WebKit/chromium/WebKit.gyp | 65 +- WebKit/chromium/features.gypi | 2 + WebKit/chromium/public/WebAccessibilityObject.h | 2 +- WebKit/chromium/public/WebAccessibilityRole.h | 6 + WebKit/chromium/public/WebAnimationController.h | 60 + WebKit/chromium/public/WebDataSource.h | 4 + WebKit/chromium/public/WebDevToolsAgent.h | 12 - WebKit/chromium/public/WebDevToolsAgentClient.h | 16 +- WebKit/chromium/public/WebDevToolsFrontend.h | 5 - WebKit/chromium/public/WebDevToolsFrontendClient.h | 5 - WebKit/chromium/public/WebDocument.h | 82 + WebKit/chromium/public/WebDragData.h | 3 + WebKit/chromium/public/WebElement.h | 12 +- WebKit/chromium/public/WebEvent.h | 116 + WebKit/chromium/public/WebEventListener.h | 66 + WebKit/chromium/public/WebFileChooserParams.h | 64 + WebKit/chromium/public/WebFormElement.h | 6 +- WebKit/chromium/public/WebFrame.h | 40 +- WebKit/chromium/public/WebFrameClient.h | 6 + WebKit/chromium/public/WebGlyphCache.h | 51 + WebKit/chromium/public/WebHistoryItem.h | 3 + WebKit/chromium/public/WebInputElement.h | 1 + WebKit/chromium/public/WebKit.h | 3 + WebKit/chromium/public/WebKitClient.h | 20 +- WebKit/chromium/public/WebMutationEvent.h | 58 + WebKit/chromium/public/WebNode.h | 46 +- WebKit/chromium/public/WebNodeCollection.h | 75 + WebKit/chromium/public/WebNodeList.h | 74 + WebKit/chromium/public/WebNotificationPresenter.h | 7 +- WebKit/chromium/public/WebPageSerializer.h | 85 + WebKit/chromium/public/WebPageSerializerClient.h | 75 + WebKit/chromium/public/WebRuntimeFeatures.h | 6 + WebKit/chromium/public/WebSecurityOrigin.h | 2 + WebKit/chromium/public/WebSecurityPolicy.h | 4 + WebKit/chromium/public/WebSettings.h | 1 + WebKit/chromium/public/WebStorageArea.h | 35 +- WebKit/chromium/public/WebString.h | 25 + WebKit/chromium/public/WebURLResponse.h | 5 + WebKit/chromium/public/WebVector.h | 7 + WebKit/chromium/public/WebView.h | 16 +- WebKit/chromium/public/WebViewClient.h | 13 +- WebKit/chromium/src/ApplicationCacheHost.cpp | 50 +- WebKit/chromium/src/ApplicationCacheHostInternal.h | 70 + WebKit/chromium/src/AssertMatchingEnums.cpp | 19 + WebKit/chromium/src/ChromeClientImpl.cpp | 26 +- WebKit/chromium/src/ChromiumBridge.cpp | 17 +- WebKit/chromium/src/ContextMenuClientImpl.cpp | 6 +- WebKit/chromium/src/DOMUtilitiesPrivate.cpp | 49 + WebKit/chromium/src/DOMUtilitiesPrivate.h | 12 + WebKit/chromium/src/DragClientImpl.cpp | 4 +- WebKit/chromium/src/EditorClientImpl.cpp | 24 +- WebKit/chromium/src/EventListenerWrapper.cpp | 72 + WebKit/chromium/src/EventListenerWrapper.h | 62 + WebKit/chromium/src/FrameLoaderClientImpl.cpp | 18 +- WebKit/chromium/src/FrameLoaderClientImpl.h | 4 +- WebKit/chromium/src/GraphicsContext3D.cpp | 442 +- WebKit/chromium/src/LocalizedStrings.cpp | 10 + WebKit/chromium/src/NotificationPresenterImpl.cpp | 11 +- WebKit/chromium/src/NotificationPresenterImpl.h | 2 +- WebKit/chromium/src/PlatformMessagePortChannel.cpp | 4 +- WebKit/chromium/src/StorageAreaProxy.cpp | 69 +- WebKit/chromium/src/StorageAreaProxy.h | 14 +- WebKit/chromium/src/StorageNamespaceProxy.cpp | 27 +- WebKit/chromium/src/StorageNamespaceProxy.h | 4 +- WebKit/chromium/src/WebAccessibilityObject.cpp | 4 +- WebKit/chromium/src/WebAnimationControllerImpl.cpp | 90 + WebKit/chromium/src/WebAnimationControllerImpl.h | 64 + WebKit/chromium/src/WebBindings.cpp | 11 +- WebKit/chromium/src/WebDataSourceImpl.cpp | 9 + WebKit/chromium/src/WebDataSourceImpl.h | 2 +- WebKit/chromium/src/WebDocument.cpp | 150 + WebKit/chromium/src/WebDragData.cpp | 12 + WebKit/chromium/src/WebElement.cpp | 33 + WebKit/chromium/src/WebEntities.cpp | 133 + WebKit/chromium/src/WebEntities.h | 75 + WebKit/chromium/src/WebEvent.cpp | 219 + WebKit/chromium/src/WebEventListener.cpp | 64 + WebKit/chromium/src/WebEventListenerPrivate.cpp | 87 + WebKit/chromium/src/WebEventListenerPrivate.h | 95 + WebKit/chromium/src/WebFrameImpl.cpp | 104 +- WebKit/chromium/src/WebFrameImpl.h | 19 +- WebKit/chromium/src/WebGlyphCache.cpp | 45 + WebKit/chromium/src/WebHistoryItem.cpp | 12 + WebKit/chromium/src/WebInputElement.cpp | 5 + WebKit/chromium/src/WebKit.cpp | 8 + WebKit/chromium/src/WebMutationEvent.cpp | 65 + WebKit/chromium/src/WebNode.cpp | 100 +- WebKit/chromium/src/WebNodeCollection.cpp | 85 + WebKit/chromium/src/WebNodeList.cpp | 80 + WebKit/chromium/src/WebPageSerializer.cpp | 81 + WebKit/chromium/src/WebPageSerializerImpl.cpp | 547 + WebKit/chromium/src/WebPageSerializerImpl.h | 199 + WebKit/chromium/src/WebPluginContainerImpl.cpp | 5 +- WebKit/chromium/src/WebRuntimeFeatures.cpp | 37 +- WebKit/chromium/src/WebSecurityOrigin.cpp | 5 + WebKit/chromium/src/WebSecurityPolicy.cpp | 5 + WebKit/chromium/src/WebSettingsImpl.cpp | 5 + WebKit/chromium/src/WebSettingsImpl.h | 1 + WebKit/chromium/src/WebStorageAreaImpl.cpp | 12 +- WebKit/chromium/src/WebStorageAreaImpl.h | 6 +- WebKit/chromium/src/WebString.cpp | 5 + WebKit/chromium/src/WebURLResponse.cpp | 10 + WebKit/chromium/src/WebViewImpl.cpp | 98 +- WebKit/chromium/src/WebViewImpl.h | 4 + WebKit/chromium/src/WebWorkerBase.cpp | 5 +- WebKit/chromium/src/WebWorkerClientImpl.cpp | 6 +- WebKit/chromium/src/WebWorkerImpl.cpp | 2 +- WebKit/chromium/src/mac/WebInputEventFactory.mm | 3 + WebKit/chromium/tests/KURLTest.cpp | 611 + WebKit/chromium/tests/KeyboardTest.cpp | 213 + WebKit/chromium/tests/RunAllTests.cpp | 50 + WebKit/gtk/ChangeLog | 624 + WebKit/gtk/NEWS | 46 + WebKit/gtk/WebCoreSupport/ChromeClientGtk.cpp | 37 +- WebKit/gtk/WebCoreSupport/DocumentLoaderGtk.cpp | 13 +- WebKit/gtk/WebCoreSupport/EditorClientGtk.cpp | 46 +- WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.cpp | 42 +- WebKit/gtk/WebCoreSupport/FrameLoaderClientGtk.h | 2 + WebKit/gtk/WebCoreSupport/InspectorClientGtk.cpp | 8 +- WebKit/gtk/WebCoreSupport/PasteboardHelperGtk.cpp | 103 +- WebKit/gtk/WebCoreSupport/PasteboardHelperGtk.h | 2 + WebKit/gtk/docs/webkitgtk-docs.sgml | 4 + WebKit/gtk/docs/webkitgtk-sections.txt | 9 + WebKit/gtk/tests/testatk.c | 100 +- WebKit/gtk/tests/testdownload.c | 43 +- WebKit/gtk/tests/testloading.c | 209 +- WebKit/gtk/tests/testmimehandling.c | 30 +- WebKit/gtk/tests/testwebdatasource.c | 49 +- WebKit/gtk/tests/testwebresource.c | 29 +- WebKit/gtk/tests/testwebview.c | 29 +- WebKit/gtk/tests/testwindow.c | 12 +- WebKit/gtk/webkit/webkitdownload.cpp | 20 +- WebKit/gtk/webkit/webkitprivate.cpp | 14 +- WebKit/gtk/webkit/webkitprivate.h | 4 + WebKit/gtk/webkit/webkitwebframe.cpp | 37 +- WebKit/gtk/webkit/webkitwebhistoryitem.cpp | 27 + WebKit/gtk/webkit/webkitwebhistoryitem.h | 3 + WebKit/gtk/webkit/webkitwebnavigationaction.cpp | 9 +- WebKit/gtk/webkit/webkitwebresource.cpp | 6 +- WebKit/gtk/webkit/webkitwebsettings.cpp | 113 +- WebKit/gtk/webkit/webkitwebview.cpp | 232 +- WebKit/gtk/webkit/webkitwebview.h | 11 + WebKit/mac/ChangeLog | 4 + WebKit/mac/ChangeLog-2010-01-29 | 23230 +++++++++++++++++++ WebKit/mac/Configurations/FeatureDefines.xcconfig | 12 +- WebKit/mac/Configurations/Version.xcconfig | 2 +- WebKit/mac/Info.plist | 4 +- WebKit/mac/MigrateHeaders.make | 2 + WebKit/mac/Misc/WebCache.mm | 2 + WebKit/mac/Misc/WebElementDictionary.mm | 8 +- WebKit/mac/Misc/WebKitErrors.m | 7 + WebKit/mac/Misc/WebKitErrorsPrivate.h | 9 + .../Plugins/Hosted/HostedNetscapePluginStream.h | 2 + .../Plugins/Hosted/HostedNetscapePluginStream.mm | 2 +- .../mac/Plugins/Hosted/NetscapePluginHostManager.h | 6 +- .../Plugins/Hosted/NetscapePluginHostManager.mm | 20 +- .../mac/Plugins/Hosted/NetscapePluginHostProxy.h | 19 +- .../mac/Plugins/Hosted/NetscapePluginHostProxy.mm | 107 +- .../Plugins/Hosted/NetscapePluginInstanceProxy.h | 20 +- .../Plugins/Hosted/NetscapePluginInstanceProxy.mm | 75 +- WebKit/mac/Plugins/Hosted/ProxyInstance.h | 22 +- WebKit/mac/Plugins/Hosted/ProxyInstance.mm | 23 +- .../Plugins/Hosted/WebHostedNetscapePluginView.h | 3 + .../Plugins/Hosted/WebHostedNetscapePluginView.mm | 36 +- WebKit/mac/Plugins/Hosted/WebKitPluginClient.defs | 10 +- WebKit/mac/Plugins/Hosted/WebKitPluginHost.defs | 3 +- WebKit/mac/Plugins/WebNetscapePluginView.h | 4 +- WebKit/mac/Plugins/WebNetscapePluginView.mm | 65 +- WebKit/mac/WebCoreSupport/WebApplicationCache.mm | 4 + WebKit/mac/WebCoreSupport/WebChromeClient.h | 2 + WebKit/mac/WebCoreSupport/WebChromeClient.mm | 24 +- WebKit/mac/WebCoreSupport/WebFrameLoaderClient.mm | 14 +- .../WebGeolocationControllerClient.h | 47 + .../WebGeolocationControllerClient.mm | 60 + WebKit/mac/WebCoreSupport/WebPluginHalterClient.mm | 2 +- WebKit/mac/WebCoreSupport/WebSystemInterface.m | 8 + WebKit/mac/WebCoreSupport/WebViewFactory.mm | 10 + WebKit/mac/WebKit.exp | 1 + WebKit/mac/WebKitPrefix.h | 1 + WebKit/mac/WebView/WebDataSource.mm | 4 + WebKit/mac/WebView/WebFrame.mm | 12 +- WebKit/mac/WebView/WebFrameView.mm | 9 +- WebKit/mac/WebView/WebGeolocationPosition.h | 35 + WebKit/mac/WebView/WebGeolocationPosition.mm | 86 + .../mac/WebView/WebGeolocationPositionInternal.h | 36 + WebKit/mac/WebView/WebHTMLRepresentation.h | 13 +- WebKit/mac/WebView/WebHTMLRepresentation.mm | 23 +- WebKit/mac/WebView/WebHTMLView.mm | 29 +- WebKit/mac/WebView/WebPreferenceKeysPrivate.h | 1 + WebKit/mac/WebView/WebPreferences.mm | 15 +- WebKit/mac/WebView/WebPreferencesPrivate.h | 3 + WebKit/mac/WebView/WebScriptDebugger.h | 2 +- WebKit/mac/WebView/WebScriptDebugger.mm | 2 +- WebKit/mac/WebView/WebScriptWorld.h | 5 + WebKit/mac/WebView/WebScriptWorld.mm | 7 + WebKit/mac/WebView/WebVideoFullscreenController.mm | 1 + WebKit/mac/WebView/WebView.mm | 70 + WebKit/mac/WebView/WebViewData.h | 3 + WebKit/mac/WebView/WebViewData.mm | 4 + WebKit/mac/WebView/WebViewPrivate.h | 18 + WebKit/qt/Api/qgraphicswebview.cpp | 186 +- WebKit/qt/Api/qgraphicswebview.h | 3 + WebKit/qt/Api/qwebframe.cpp | 109 + WebKit/qt/Api/qwebframe.h | 1 + WebKit/qt/Api/qwebframe_p.h | 2 + WebKit/qt/Api/qwebinspector.cpp | 9 + WebKit/qt/Api/qwebinspector.h | 1 + WebKit/qt/Api/qwebpage.cpp | 102 +- WebKit/qt/Api/qwebpage_p.h | 5 + WebKit/qt/Api/qwebsecurityorigin.cpp | 5 + WebKit/qt/Api/qwebsettings.cpp | 24 +- WebKit/qt/Api/qwebsettings.h | 4 +- WebKit/qt/Api/qwebview.cpp | 122 +- WebKit/qt/Api/qwebview.h | 5 - WebKit/qt/ChangeLog | 1023 + WebKit/qt/QGVLauncher/main.cpp | 69 +- WebKit/qt/QtLauncher/QtLauncher.pro | 16 - WebKit/qt/QtLauncher/main.cpp | 656 - WebKit/qt/WebCoreSupport/ChromeClientQt.cpp | 53 +- WebKit/qt/WebCoreSupport/ChromeClientQt.h | 16 + WebKit/qt/WebCoreSupport/DragClientQt.cpp | 39 +- WebKit/qt/WebCoreSupport/EditorClientQt.cpp | 7 +- WebKit/qt/WebCoreSupport/FrameLoaderClientQt.cpp | 15 +- WebKit/qt/WebCoreSupport/InspectorClientQt.cpp | 4 + WebKit/qt/WebCoreSupport/QtFallbackWebPopup.cpp | 165 + WebKit/qt/WebCoreSupport/QtFallbackWebPopup.h | 65 + WebKit/qt/docs/qtwebkit.qdocconf | 2 +- WebKit/qt/docs/webkitsnippets/webelement/main.cpp | 4 +- WebKit/qt/symbian/backup_registration.xml | 5 + WebKit/qt/symbian/bwins/QtWebKitu.def | 627 + WebKit/qt/symbian/eabi/QtWebKitu.def | 699 + WebKit/qt/tests/benchmarks/loading/loading.pro | 1 + WebKit/qt/tests/benchmarks/loading/tst_loading.pro | 11 - WebKit/qt/tests/benchmarks/painting/painting.pro | 1 + .../qt/tests/benchmarks/painting/tst_painting.pro | 11 - WebKit/qt/tests/hybridPixmap/hybridPixmap.pro | 10 + WebKit/qt/tests/hybridPixmap/resources.qrc | 5 + WebKit/qt/tests/hybridPixmap/test.html | 57 + WebKit/qt/tests/hybridPixmap/tst_hybridPixmap.cpp | 52 + WebKit/qt/tests/hybridPixmap/widget.cpp | 119 + WebKit/qt/tests/hybridPixmap/widget.h | 70 + WebKit/qt/tests/hybridPixmap/widget.ui | 95 + .../qt/tests/qgraphicswebview/qgraphicswebview.pro | 11 +- WebKit/qt/tests/qwebelement/image.png | Bin 14743 -> 0 bytes WebKit/qt/tests/qwebelement/qwebelement.pro | 13 +- WebKit/qt/tests/qwebelement/qwebelement.qrc | 7 - WebKit/qt/tests/qwebelement/resources/image.png | Bin 0 -> 14743 bytes WebKit/qt/tests/qwebelement/resources/style.css | 1 + WebKit/qt/tests/qwebelement/resources/style2.css | 1 + WebKit/qt/tests/qwebelement/style.css | 1 - WebKit/qt/tests/qwebelement/style2.css | 1 - WebKit/qt/tests/qwebelement/tst_qwebelement.cpp | 30 +- WebKit/qt/tests/qwebelement/tst_qwebelement.qrc | 7 + WebKit/qt/tests/qwebframe/image.png | Bin 14743 -> 0 bytes WebKit/qt/tests/qwebframe/qwebframe.pro | 14 +- WebKit/qt/tests/qwebframe/qwebframe.qrc | 8 - WebKit/qt/tests/qwebframe/resources/image.png | Bin 0 -> 14743 bytes WebKit/qt/tests/qwebframe/resources/image2.png | Bin 14743 -> 0 bytes WebKit/qt/tests/qwebframe/resources/style.css | 1 + WebKit/qt/tests/qwebframe/resources/test1.html | 1 + WebKit/qt/tests/qwebframe/resources/test2.html | 1 + .../qt/tests/qwebframe/resources/testiframe.html | 54 + .../qt/tests/qwebframe/resources/testiframe2.html | 21 + WebKit/qt/tests/qwebframe/style.css | 1 - WebKit/qt/tests/qwebframe/test1.html | 1 - WebKit/qt/tests/qwebframe/test2.html | 1 - WebKit/qt/tests/qwebframe/tst_qwebframe.cpp | 152 +- WebKit/qt/tests/qwebframe/tst_qwebframe.qrc | 10 + WebKit/qt/tests/qwebhistory/data/page1.html | 1 - WebKit/qt/tests/qwebhistory/data/page2.html | 1 - WebKit/qt/tests/qwebhistory/data/page3.html | 1 - WebKit/qt/tests/qwebhistory/data/page4.html | 1 - WebKit/qt/tests/qwebhistory/data/page5.html | 1 - WebKit/qt/tests/qwebhistory/data/page6.html | 1 - WebKit/qt/tests/qwebhistory/qwebhistory.pro | 13 +- WebKit/qt/tests/qwebhistory/resources/page1.html | 1 + WebKit/qt/tests/qwebhistory/resources/page2.html | 1 + WebKit/qt/tests/qwebhistory/resources/page3.html | 1 + WebKit/qt/tests/qwebhistory/resources/page4.html | 1 + WebKit/qt/tests/qwebhistory/resources/page5.html | 1 + WebKit/qt/tests/qwebhistory/resources/page6.html | 1 + WebKit/qt/tests/qwebhistory/tst_qwebhistory.cpp | 2 +- WebKit/qt/tests/qwebhistory/tst_qwebhistory.qrc | 12 +- .../qwebhistoryinterface/qwebhistoryinterface.pro | 12 +- WebKit/qt/tests/qwebinspector/qwebinspector.pro | 7 +- WebKit/qt/tests/qwebpage/frametest/frame_a.html | 2 - WebKit/qt/tests/qwebpage/frametest/iframe.html | 6 - WebKit/qt/tests/qwebpage/frametest/iframe2.html | 7 - WebKit/qt/tests/qwebpage/frametest/iframe3.html | 5 - WebKit/qt/tests/qwebpage/frametest/index.html | 4 - WebKit/qt/tests/qwebpage/qwebpage.pro | 14 +- WebKit/qt/tests/qwebpage/resources/frame_a.html | 2 + WebKit/qt/tests/qwebpage/resources/iframe.html | 6 + WebKit/qt/tests/qwebpage/resources/iframe2.html | 7 + WebKit/qt/tests/qwebpage/resources/iframe3.html | 5 + WebKit/qt/tests/qwebpage/resources/index.html | 4 + WebKit/qt/tests/qwebpage/tst_qwebpage.cpp | 196 +- WebKit/qt/tests/qwebpage/tst_qwebpage.qrc | 10 +- .../qwebplugindatabase/qwebplugindatabase.pro | 12 +- WebKit/qt/tests/qwebview/data/frame_a.html | 2 - WebKit/qt/tests/qwebview/data/index.html | 4 - WebKit/qt/tests/qwebview/qwebview.pro | 14 +- WebKit/qt/tests/qwebview/resources/frame_a.html | 2 + WebKit/qt/tests/qwebview/resources/index.html | 4 + WebKit/qt/tests/qwebview/tst_qwebview.cpp | 19 +- WebKit/qt/tests/qwebview/tst_qwebview.qrc | 4 +- WebKit/qt/tests/resources/image2.png | Bin 0 -> 14743 bytes WebKit/qt/tests/tests.pri | 20 + WebKit/qt/tests/tests.pro | 4 +- WebKit/qt/tests/util.h | 4 + WebKit/win/AccessibleBase.cpp | 133 +- WebKit/win/AccessibleBase.h | 13 +- WebKit/win/ChangeLog | 835 + WebKit/win/ForEachCoClass.h | 2 + WebKit/win/FullscreenVideoController.cpp | 615 + WebKit/win/FullscreenVideoController.h | 173 + WebKit/win/Interfaces/AccessibleComparable.idl | 45 + WebKit/win/Interfaces/IWebError.idl | 9 + WebKit/win/Interfaces/IWebFramePrivate.idl | 3 +- .../Interfaces/IWebGeolocationPolicyListener.idl | 40 + WebKit/win/Interfaces/IWebGeolocationPosition.idl | 39 + WebKit/win/Interfaces/IWebGeolocationProvider.idl | 44 + WebKit/win/Interfaces/IWebHTMLRepresentation.idl | 8 +- WebKit/win/Interfaces/IWebPreferencesPrivate.idl | 6 + WebKit/win/Interfaces/IWebScriptWorld.idl | 2 + WebKit/win/Interfaces/IWebUIDelegatePrivate.idl | 4 + WebKit/win/Interfaces/IWebViewPrivate.idl | 7 + WebKit/win/Interfaces/WebKit.idl | 12 +- WebKit/win/WebCoreLocalizedStrings.cpp | 3 + WebKit/win/WebCoreSupport/WebChromeClient.cpp | 46 +- WebKit/win/WebCoreSupport/WebChromeClient.h | 6 + WebKit/win/WebCoreSupport/WebContextMenuClient.cpp | 3 +- .../WebDesktopNotificationsDelegate.cpp | 6 +- .../WebDesktopNotificationsDelegate.h | 7 +- .../WebGeolocationControllerClient.cpp | 74 + .../WebGeolocationControllerClient.h | 51 + WebKit/win/WebDataSource.cpp | 4 +- WebKit/win/WebDropSource.cpp | 42 +- WebKit/win/WebFrame.cpp | 113 +- WebKit/win/WebFrame.h | 2 +- WebKit/win/WebGeolocationPolicyListener.cpp | 97 + WebKit/win/WebGeolocationPolicyListener.h | 61 + WebKit/win/WebGeolocationPosition.cpp | 106 + WebKit/win/WebGeolocationPosition.h | 66 + WebKit/win/WebHTMLRepresentation.cpp | 48 +- WebKit/win/WebHTMLRepresentation.h | 41 +- WebKit/win/WebKit.vcproj/DerivedSources.make | 161 - WebKit/win/WebKit.vcproj/Interfaces.vcproj | 100 +- WebKit/win/WebKit.vcproj/WebKit.rc | 7 +- WebKit/win/WebKit.vcproj/WebKit.sln | 91 +- WebKit/win/WebKit.vcproj/WebKit.vcproj | 132 +- WebKit/win/WebKit.vcproj/WebKitGUID.vcproj | 8 +- WebKit/win/WebKit.vcproj/build-generated-files.sh | 62 - .../win/WebKit.vcproj/fsVideoAudioVolumeHigh.png | Bin 0 -> 3026 bytes WebKit/win/WebKit.vcproj/fsVideoAudioVolumeLow.png | Bin 0 -> 2913 bytes WebKit/win/WebKit.vcproj/fsVideoExitFullscreen.png | Bin 0 -> 2940 bytes WebKit/win/WebKit.vcproj/fsVideoPause.png | Bin 0 -> 2832 bytes WebKit/win/WebKit.vcproj/fsVideoPlay.png | Bin 0 -> 2906 bytes WebKit/win/WebKit.vcproj/resource.h | 5 + WebKit/win/WebKitClassFactory.cpp | 2 + WebKit/win/WebKitDLL.cpp | 10 + WebKit/win/WebKitLogging.cpp | 3 +- WebKit/win/WebKitLogging.h | 2 +- WebKit/win/WebKitPrefix.cpp | 1 - WebKit/win/WebPreferenceKeysPrivate.h | 4 + WebKit/win/WebPreferences.cpp | 36 +- WebKit/win/WebPreferences.h | 5 + WebKit/win/WebScriptWorld.cpp | 8 + WebKit/win/WebScriptWorld.h | 1 + WebKit/win/WebView.cpp | 398 +- WebKit/win/WebView.h | 29 +- WebKit/wx/ChangeLog | 122 + WebKit/wx/WebBrowserShell.h | 1 + WebKit/wx/WebFrame.cpp | 19 +- WebKit/wx/WebFrame.h | 21 +- WebKit/wx/WebKitDefines.h | 45 + WebKit/wx/WebKitSupport/EditorClientWx.cpp | 1 + WebKit/wx/WebKitSupport/FrameLoaderClientWx.cpp | 4 - WebKit/wx/WebSettings.cpp | 194 + WebKit/wx/WebSettings.h | 166 + WebKit/wx/WebView.cpp | 28 +- WebKit/wx/WebView.h | 20 +- WebKit/wx/bindings/python/webview.i | 12 +- WebKit/wx/bindings/python/wxwebkit-py.bkl | 109 - WebKit/wx/dependencies.bkl | 177 - WebKit/wx/presets/wxwebkit.bkl | 164 - WebKit/wx/wxwebkit.bkl | 83 - WebKit/wx/wxwk-settings.bkl | 109 - 395 files changed, 40730 insertions(+), 3062 deletions(-) create mode 100644 WebKit/chromium/public/WebAnimationController.h create mode 100644 WebKit/chromium/public/WebDocument.h create mode 100644 WebKit/chromium/public/WebEvent.h create mode 100644 WebKit/chromium/public/WebEventListener.h create mode 100644 WebKit/chromium/public/WebFileChooserParams.h create mode 100644 WebKit/chromium/public/WebGlyphCache.h create mode 100644 WebKit/chromium/public/WebMutationEvent.h create mode 100644 WebKit/chromium/public/WebNodeCollection.h create mode 100644 WebKit/chromium/public/WebNodeList.h create mode 100644 WebKit/chromium/public/WebPageSerializer.h create mode 100644 WebKit/chromium/public/WebPageSerializerClient.h create mode 100644 WebKit/chromium/src/ApplicationCacheHostInternal.h create mode 100644 WebKit/chromium/src/EventListenerWrapper.cpp create mode 100644 WebKit/chromium/src/EventListenerWrapper.h create mode 100644 WebKit/chromium/src/WebAnimationControllerImpl.cpp create mode 100644 WebKit/chromium/src/WebAnimationControllerImpl.h create mode 100644 WebKit/chromium/src/WebDocument.cpp create mode 100644 WebKit/chromium/src/WebEntities.cpp create mode 100644 WebKit/chromium/src/WebEntities.h create mode 100644 WebKit/chromium/src/WebEvent.cpp create mode 100644 WebKit/chromium/src/WebEventListener.cpp create mode 100644 WebKit/chromium/src/WebEventListenerPrivate.cpp create mode 100644 WebKit/chromium/src/WebEventListenerPrivate.h create mode 100644 WebKit/chromium/src/WebGlyphCache.cpp create mode 100644 WebKit/chromium/src/WebMutationEvent.cpp create mode 100644 WebKit/chromium/src/WebNodeCollection.cpp create mode 100644 WebKit/chromium/src/WebNodeList.cpp create mode 100644 WebKit/chromium/src/WebPageSerializer.cpp create mode 100644 WebKit/chromium/src/WebPageSerializerImpl.cpp create mode 100644 WebKit/chromium/src/WebPageSerializerImpl.h create mode 100644 WebKit/chromium/tests/KURLTest.cpp create mode 100644 WebKit/chromium/tests/KeyboardTest.cpp create mode 100644 WebKit/chromium/tests/RunAllTests.cpp create mode 100644 WebKit/mac/ChangeLog-2010-01-29 create mode 100644 WebKit/mac/WebCoreSupport/WebGeolocationControllerClient.h create mode 100644 WebKit/mac/WebCoreSupport/WebGeolocationControllerClient.mm create mode 100644 WebKit/mac/WebView/WebGeolocationPosition.h create mode 100644 WebKit/mac/WebView/WebGeolocationPosition.mm create mode 100644 WebKit/mac/WebView/WebGeolocationPositionInternal.h delete mode 100644 WebKit/qt/QtLauncher/QtLauncher.pro delete mode 100644 WebKit/qt/QtLauncher/main.cpp create mode 100644 WebKit/qt/WebCoreSupport/QtFallbackWebPopup.cpp create mode 100644 WebKit/qt/WebCoreSupport/QtFallbackWebPopup.h create mode 100644 WebKit/qt/symbian/backup_registration.xml create mode 100644 WebKit/qt/symbian/bwins/QtWebKitu.def create mode 100644 WebKit/qt/symbian/eabi/QtWebKitu.def create mode 100644 WebKit/qt/tests/benchmarks/loading/loading.pro delete mode 100644 WebKit/qt/tests/benchmarks/loading/tst_loading.pro create mode 100644 WebKit/qt/tests/benchmarks/painting/painting.pro delete mode 100644 WebKit/qt/tests/benchmarks/painting/tst_painting.pro create mode 100644 WebKit/qt/tests/hybridPixmap/hybridPixmap.pro create mode 100644 WebKit/qt/tests/hybridPixmap/resources.qrc create mode 100644 WebKit/qt/tests/hybridPixmap/test.html create mode 100644 WebKit/qt/tests/hybridPixmap/tst_hybridPixmap.cpp create mode 100644 WebKit/qt/tests/hybridPixmap/widget.cpp create mode 100644 WebKit/qt/tests/hybridPixmap/widget.h create mode 100644 WebKit/qt/tests/hybridPixmap/widget.ui delete mode 100644 WebKit/qt/tests/qwebelement/image.png delete mode 100644 WebKit/qt/tests/qwebelement/qwebelement.qrc create mode 100644 WebKit/qt/tests/qwebelement/resources/image.png create mode 100644 WebKit/qt/tests/qwebelement/resources/style.css create mode 100644 WebKit/qt/tests/qwebelement/resources/style2.css delete mode 100644 WebKit/qt/tests/qwebelement/style.css delete mode 100644 WebKit/qt/tests/qwebelement/style2.css create mode 100644 WebKit/qt/tests/qwebelement/tst_qwebelement.qrc delete mode 100644 WebKit/qt/tests/qwebframe/image.png delete mode 100644 WebKit/qt/tests/qwebframe/qwebframe.qrc create mode 100644 WebKit/qt/tests/qwebframe/resources/image.png delete mode 100644 WebKit/qt/tests/qwebframe/resources/image2.png create mode 100644 WebKit/qt/tests/qwebframe/resources/style.css create mode 100644 WebKit/qt/tests/qwebframe/resources/test1.html create mode 100644 WebKit/qt/tests/qwebframe/resources/test2.html create mode 100644 WebKit/qt/tests/qwebframe/resources/testiframe.html create mode 100644 WebKit/qt/tests/qwebframe/resources/testiframe2.html delete mode 100644 WebKit/qt/tests/qwebframe/style.css delete mode 100644 WebKit/qt/tests/qwebframe/test1.html delete mode 100644 WebKit/qt/tests/qwebframe/test2.html create mode 100644 WebKit/qt/tests/qwebframe/tst_qwebframe.qrc delete mode 100644 WebKit/qt/tests/qwebhistory/data/page1.html delete mode 100644 WebKit/qt/tests/qwebhistory/data/page2.html delete mode 100644 WebKit/qt/tests/qwebhistory/data/page3.html delete mode 100644 WebKit/qt/tests/qwebhistory/data/page4.html delete mode 100644 WebKit/qt/tests/qwebhistory/data/page5.html delete mode 100644 WebKit/qt/tests/qwebhistory/data/page6.html create mode 100644 WebKit/qt/tests/qwebhistory/resources/page1.html create mode 100644 WebKit/qt/tests/qwebhistory/resources/page2.html create mode 100644 WebKit/qt/tests/qwebhistory/resources/page3.html create mode 100644 WebKit/qt/tests/qwebhistory/resources/page4.html create mode 100644 WebKit/qt/tests/qwebhistory/resources/page5.html create mode 100644 WebKit/qt/tests/qwebhistory/resources/page6.html delete mode 100644 WebKit/qt/tests/qwebpage/frametest/frame_a.html delete mode 100644 WebKit/qt/tests/qwebpage/frametest/iframe.html delete mode 100644 WebKit/qt/tests/qwebpage/frametest/iframe2.html delete mode 100644 WebKit/qt/tests/qwebpage/frametest/iframe3.html delete mode 100644 WebKit/qt/tests/qwebpage/frametest/index.html create mode 100644 WebKit/qt/tests/qwebpage/resources/frame_a.html create mode 100644 WebKit/qt/tests/qwebpage/resources/iframe.html create mode 100644 WebKit/qt/tests/qwebpage/resources/iframe2.html create mode 100644 WebKit/qt/tests/qwebpage/resources/iframe3.html create mode 100644 WebKit/qt/tests/qwebpage/resources/index.html delete mode 100644 WebKit/qt/tests/qwebview/data/frame_a.html delete mode 100644 WebKit/qt/tests/qwebview/data/index.html create mode 100644 WebKit/qt/tests/qwebview/resources/frame_a.html create mode 100644 WebKit/qt/tests/qwebview/resources/index.html create mode 100644 WebKit/qt/tests/resources/image2.png create mode 100644 WebKit/qt/tests/tests.pri create mode 100644 WebKit/win/FullscreenVideoController.cpp create mode 100644 WebKit/win/FullscreenVideoController.h create mode 100644 WebKit/win/Interfaces/AccessibleComparable.idl create mode 100644 WebKit/win/Interfaces/IWebGeolocationPolicyListener.idl create mode 100644 WebKit/win/Interfaces/IWebGeolocationPosition.idl create mode 100644 WebKit/win/Interfaces/IWebGeolocationProvider.idl create mode 100644 WebKit/win/WebCoreSupport/WebGeolocationControllerClient.cpp create mode 100644 WebKit/win/WebCoreSupport/WebGeolocationControllerClient.h create mode 100644 WebKit/win/WebGeolocationPolicyListener.cpp create mode 100644 WebKit/win/WebGeolocationPolicyListener.h create mode 100644 WebKit/win/WebGeolocationPosition.cpp create mode 100644 WebKit/win/WebGeolocationPosition.h delete mode 100644 WebKit/win/WebKit.vcproj/DerivedSources.make delete mode 100644 WebKit/win/WebKit.vcproj/build-generated-files.sh create mode 100755 WebKit/win/WebKit.vcproj/fsVideoAudioVolumeHigh.png create mode 100755 WebKit/win/WebKit.vcproj/fsVideoAudioVolumeLow.png create mode 100755 WebKit/win/WebKit.vcproj/fsVideoExitFullscreen.png create mode 100755 WebKit/win/WebKit.vcproj/fsVideoPause.png create mode 100755 WebKit/win/WebKit.vcproj/fsVideoPlay.png create mode 100644 WebKit/wx/WebKitDefines.h create mode 100644 WebKit/wx/WebSettings.cpp create mode 100644 WebKit/wx/WebSettings.h (limited to 'WebKit') diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog index 90a6a28..1b7118f 100644 --- a/WebKit/ChangeLog +++ b/WebKit/ChangeLog @@ -1,3 +1,76 @@ +2010-01-29 Mark Rowe + + Sort Xcode projects. + + * WebKit.xcodeproj/project.pbxproj: + +2010-01-19 Dan Bernstein + + Redo DumpRenderTree build fix without making WebTypesInternal.h a private header + + * WebKit.xcodeproj/project.pbxproj: + +2010-01-19 Simon Fraser + + Build fix, no review. + + Fix build of DumpRenderTree by making the header WebTypesInternal.h Private + in WebKit. + + * WebKit.xcodeproj/project.pbxproj: + +2010-01-19 Jon Honeycutt + + MSAA: The child