Timeline



Sep 28, 2007:

8:58 PM Changeset in webkit [25803] by aroben
  • 2 edits in trunk/WebCore

Fix <rdar://4965715> Horizontal scrollwheel scrolling moves in opposite direction on Vista

Reviewed by Sam.

No regression test possible.

  • platform/win/WheelEventWin.cpp: (WebCore::PlatformWheelEvent::PlatformWheelEvent): Use a negative delta when scrolling right to match EventHandler's expectations (which are based on AppKit).
8:26 PM Changeset in webkit [25802] by eseidel
  • 3 edits
    2 adds in branches/feature-branch

2007-09-28 Eric Seidel <eric@webkit.org>

Reviewed by Sam Wenig.

ASSERT when dragging <svg:image> with non-null prefix
http://bugs.webkit.org/show_bug.cgi?id=15308

  • bindings/objc/DOM.mm: (WebCore::lookupElementClass): added (WebCore::elementClass): use new lookupElementClass function
5:38 PM Changeset in webkit [25801] by bdash
  • 4 edits in trunk

Versioning.

5:37 PM Changeset in webkit [25800] by bdash
  • 1 copy in tags/Safari-4523.10

New tag.

5:36 PM Changeset in webkit [25799] by bdash
  • 1 copy in tags/Safari-5523.10

New tag.

2:56 PM Changeset in webkit [25798] by kdecker
  • 3 edits in trunk/WebCore

Reviewed by Mark Rowe

Build fix for Mac Gtk+ and Qt builds.


  • xml/XSLStyleSheet.cpp: Use PLATFORM(MAC) instead of PLATFORM(DARWIN)
  • xml/XSLTExtensions.cpp: Ditto.
2:49 PM Changeset in webkit [25797] by harrison
  • 6 edits in trunk/WebCore

Reviewed by Darin Adler.

<rdar://problem/5511128> Crash closing or reloading this SVG

  • dom/ContainerNode.cpp: (WebCore::dispatchChildInsertionEvents): (WebCore::dispatchChildRemovalEvents): Use DocPtr instead of RefPtr, since these events are dispatched when the Document is being being torn down by removedLastRef().
  • dom/DocPtr.h: (WebCore::DocPtr::DocPtr): Fix longstanding typo in template so that the DocPtr(DocPtr) constructor can be used.
  • dom/Document.cpp: (WebCore::Document::Document): (WebCore::Document::removedLastRef):
  • dom/Document.h: (WebCore::Document::selfOnlyRef): (WebCore::Document::selfOnlyDeref):
  • platform/Shared.h: (WebCore::Shared::Shared): (WebCore::Shared::ref): (WebCore::Shared::deref): (WebCore::Shared::hasOneRef): (WebCore::TreeShared::TreeShared): (WebCore::TreeShared::ref): (WebCore::TreeShared::deref): (WebCore::TreeShared::hasOneRef): (WebCore::TreeShared::refCount): Add debug-only checks for a document being ref-counted while being deleted.
11:31 AM Changeset in webkit [25796] by kmccullo
  • 8 edits
    2 adds in trunk

WebCore:

Reviewed by Darin.

  • <rdar://5261371> Nothing downloaded when exporting bookmarks from iGoogle web history
  • Implemented IWebHTTPURLResponse::allHeaderFields so that if the content disposition is "attachment" we will download the file instead of display it. Also implemented some missing functionality.
  • platform/network/ResourceResponse.cpp: (WebCore::ResourceResponse::isAttachment):
  • platform/network/ResourceResponse.h:

win:

Reviewed by Darin.

  • <rdar://5261371> Nothing downloaded when exporting bookmarks from iGoogle web history
  • Implemented IWebHTTPURLResponse::allHeaderFields so that if the content disposition is "attachment" we will download the file instead of display it. Also implemented some missing functionality.
  • HTTPHeaderPropertyBag.cpp: Added. (HTTPHeaderPropertyBag::HTTPHeaderPropertyBag): (HTTPHeaderPropertyBag::createInstance): (HTTPHeaderPropertyBag::setResponse): (HTTPHeaderPropertyBag::response): (HTTPHeaderPropertyBag::QueryInterface): (HTTPHeaderPropertyBag::AddRef): (HTTPHeaderPropertyBag::Release): (ConvertFromLPCOLESTR): (ConvertToVariant): (ConvertFromVariant): (HTTPHeaderPropertyBag::Read): (HTTPHeaderPropertyBag::Write):
  • HTTPHeaderPropertyBag.h: Added.
  • Interfaces/IWebHTTPURLResponse.idl:
  • WebKit.vcproj/WebKit.vcproj:
  • WebURLResponse.cpp: (WebURLResponse::allHeaderFields): (WebURLResponse::isAttachment):
  • WebURLResponse.h:
8:37 AM Changeset in webkit [25795] by zecke
  • 3 edits in trunk/WebCore

2007-09-26 Holger Hans Peter Freyther <zecke@selfish.org>

Reviewed by Anders.

Implement PopupMenu using GtkMenu.

  • platform/PopupMenu.h:
  • platform/gtk/PopupMenuGtk.cpp: (WebCore::PopupMenu::PopupMenu): (WebCore::PopupMenu::~PopupMenu): (WebCore::PopupMenu::show): (WebCore::PopupMenu::hide): (WebCore::PopupMenu::updateFromElement): (WebCore::PopupMenu::itemWritingDirectionIsNatural): (WebCore::PopupMenu::menuItemActivated): (WebCore::PopupMenu::menuUnmapped): (WebCore::PopupMenu::menuPositionFunction): (WebCore::PopupMenu::menuRemoveItem):
8:36 AM Changeset in webkit [25794] by zecke
  • 2 edits in trunk/WebCore

2007-09-23 Holger Hans Peter Freyther <zecke@selfish.org>

Rubber stamped by Mark.

Obey the Coding-Style and move the asterisk to the
left to be part of the type.

  • platform/gtk/RenderThemeGtk.h:
6:45 AM Changeset in webkit [25793] by antti
  • 9 edits in trunk/LayoutTests

Reviewed by bdash.


Use frames instead windows for these tests. Closing windows reliably is difficult in DRT.

  • http/tests/security/resources/has-custom-property.html:
  • http/tests/security/resources/no-custom-property.html:
  • http/tests/security/window-properties-clear-domain-expected.txt:
  • http/tests/security/window-properties-clear-domain.html:
  • http/tests/security/window-properties-clear-port-expected.txt:
  • http/tests/security/window-properties-clear-port.html:
  • http/tests/security/window-properties-pass-expected.txt:
  • http/tests/security/window-properties-pass.html:

Sep 27, 2007:

10:56 PM Changeset in webkit [25792] by sullivan
  • 2 edits in trunk/WebKit

Reviewed by Ollie


  • fixed <rdar://problem/5408186> REGRESSION (5522-5523.9): Safari leaks every browser window


The leak started occurring when we removed the code to clear the delegates and the host window
from Safari as part of the fix for 5479443. But it turns out that Safari code was masking a
bug here in WebView: setHostWindow:nil needs to be called before setting _private->closed to
YES, or it will do nothing at all, causing a world leak due to a circular reference between
the window and the WebView.


I toyed with a more complex fix, but this is the simplest one that retains the fix for 5479443
while otherwise restoring the code order to be as close as possible to what it was before
5479443 was fixed.

  • WebView/WebView.mm: (-[WebView _close]): Moved the call that sets _private->closed to YES to be after the code that clears the delegates and the host window. Added a comment about this order.
10:50 PM Changeset in webkit [25791] by sfalken
  • 1 edit
    1 add in trunk/JavaScriptCore/JavaScriptCore.vcproj

Internal build fix

10:20 PM Changeset in webkit [25790] by sfalken
  • 1 edit in trunk/JavaScriptCore/JavaScriptCore.vcproj/JavaScriptCore.make

Internal build fix

6:28 PM Changeset in webkit [25789] by antti
  • 4 edits in trunk/LayoutTests

Reviewed by NOBODY.


Update tests to hopefully fix occasional failures

  • fast/dom/Window/window-early-properties.html:
  • http/tests/security/resources/has-custom-property.html:
  • http/tests/security/resources/no-custom-property.html:
6:01 PM Changeset in webkit [25788] by bdash
  • 12 edits in trunk

2007-09-27 Mitz Pettel <mitz@webkit.org>

Reviewed by Dave Hyatt.

Reflected in existing tests.

  • css/html4.css: Changed listboxes to use border-box sizing, to match Firefox, WinIE and apparently also Safari 2.

2007-09-27 Mitz Pettel <mitz@webkit.org>

Reviewed by Dave Hyatt.

  • fast/forms/listbox-clip-expected.checksum:
  • fast/forms/listbox-clip-expected.png:
  • fast/forms/listbox-clip-expected.txt:
  • fast/forms/listbox-selection-2.html:
  • fast/forms/select-item-background-clip.html:
  • fast/forms/select-list-box-with-height-expected.checksum:
  • fast/forms/select-list-box-with-height-expected.png:
  • fast/forms/select-list-box-with-height-expected.txt:
  • fast/text/drawBidiText.html:
5:06 PM Changeset in webkit [25787] by kdecker
  • 1 edit in trunk/WebKit/ChangeLog

Tweaked ChangeLog comment..

5:04 PM Changeset in webkit [25786] by kdecker
  • 2 edits
    1 add in trunk/JavaScriptCore

Rubber stamped by John Sullivan.

<rdar://problem/5493093>


  • JavaScriptCore.order: Added.
  • JavaScriptCore.xcodeproj/project.pbxproj: We're changing from using an order file built by another team to using one we actually check into our project repository. Linker settings for Symbol Ordering Flags have been updated accordingly.
5:03 PM Changeset in webkit [25785] by kdecker
  • 2 edits
    1 add in trunk/WebCore

<rdar://problem/5493093>


Rubber stamped by John Sullivan.


  • WebCore.order: Added.
  • WebCore.xcodeproj/project.pbxproj: We're changing from using an order file built by another team to using one we actually check into our project repository. Linker settings for Symbol Ordering Flags have been updated accordingly.
5:01 PM Changeset in webkit [25784] by adachan
  • 3 edits in trunk/WebKit/win

<rdar://problem/5507481> Added a delegate method to inform the client
app that WebView has painted.

Reviewed by Steve.

  • Interfaces/IWebUIDelegatePrivate.idl:
  • WebView.cpp: (WebView::updateBackingStore):


4:56 PM Changeset in webkit [25783] by antti
  • 8 edits
    10 adds in trunk

WebCore:

Reviewed by Geoff.


Fix for <rdar://problem/5499125>
REGRESSION (r21367): After launching Kidzui beta, a webview frame fails to appear in its main window


If window object properties were modified when it had initial empty document (synchronously after
window.open() for example) those modifications were lost when the real document was switched in.


Match Firefox behavior where window properties are not cleared if the inital document and the loaded one
have matching security domains.

Tests: fast/dom/Window/window-early-properties.html

http/tests/security/window-properties-clear-domain.html
http/tests/security/window-properties-clear-port.html
http/tests/security/window-properties-pass.html

  • WebCore.exp:
  • loader/FrameLoader.cpp: (WebCore::FrameLoader::FrameLoader): (WebCore::FrameLoader::init): (WebCore::FrameLoader::clear): (WebCore::FrameLoader::isSecureTransition): (WebCore::FrameLoader::begin):
  • loader/FrameLoader.h: If we are transitioning from initial empty document to the final one, do a domain security check between old security policy URL and new URL. If that passes don't clear script proxy and script objects.


  • bindings/js/kjs_proxy.cpp: (WebCore::KJSProxy::updateDocumentWrapper):
  • bindings/js/kjs_proxy.h:
  • page/Frame.cpp: (WebCore::Frame::setDocument): Since we don't always clear window properties anymore, we need to update the document property to point to the newly created one.

LayoutTests:

Reviewed by Geoff.


Tests for <rdar://problem/5499125>
REGRESSION (r21359-21368): After launching Kidzui beta, a webview frame fails to appear in its main window

  • fast/dom/Window/window-early-properties-expected.txt: Added.
  • fast/dom/Window/window-early-properties.html: Added.
  • http/tests/security/resources/has-custom-property.html: Added.
  • http/tests/security/resources/no-custom-property.html: Added.
  • http/tests/security/window-properties-clear-domain-expected.txt: Added.
  • http/tests/security/window-properties-clear-domain.html: Added.
  • http/tests/security/window-properties-clear-port-expected.txt: Added.
  • http/tests/security/window-properties-clear-port.html: Added.
  • http/tests/security/window-properties-pass-expected.txt: Added.
  • http/tests/security/window-properties-pass.html: Added.
4:53 PM Changeset in webkit [25782] by kdecker
  • 2 edits
    1 add in trunk/WebKit

Rubber stamped by Darin.

<rdar://problem/5493093>

  • WebKit.order: Added.
  • WebKit.xcodeproj/project.pbxproj: Altered build settings to use the new order file project instead of AppleInternal.
4:18 PM Changeset in webkit [25781] by kdecker
  • 6 edits in trunk/WebCore

Reviewed by Darin.

<rdar://problem/5493093>


  • WebCore.xcodeproj/project.pbxproj: Removed libxslt from statically linked frameworks.
  • platform/mac/SoftLinking.h: Formatting tweakes, added SOFT_LINK_LIBRARY, and if'def for PLATFORM(DARWIN)
  • xml/XSLStyleSheet.cpp: Soft-linked libxslt.
  • xml/XSLTExtensions.cpp: Removed the call to xsltGenericError, and added a FIXME comment stating that it might be helpful to push any errors from xmlXPathNewValueTree up to the Javascript Console.
  • xml/XSLTProcessor.cpp: Soft-linked libxslt.
3:55 PM Changeset in webkit [25780] by kmccullo
  • 2 edits in trunk/WebKitTools

Reviewed by John.

  • Updating leopard leak list to refelct bugs that have been fixed and no longer leak.
  • Scripts/run-webkit-tests:
3:06 PM Changeset in webkit [25779] by adele
  • 2 edits in trunk/WebCore

Reviewed by Brady.

Fix for <rdar://problem/5453350> REGRESSION (r18541, Tiger only): Refreshing a cached https page does not reload CSS and JavaScript resources
http://bugs.webkit.org/show_bug.cgi?id=15121

  • loader/FrameLoader.cpp: (WebCore::FrameLoader::addExtraFieldsToRequest): Now sets the cache policy to ReloadIgnoringCacheData. Without setting the cache policy, the default policy in this case was ReturnCacheDataElseLoad. If we're in a situation where the resource is in the cache, we want to make sure to avoid loading from the cache in this case.
2:26 PM Changeset in webkit [25778] by thatcher
  • 1 edit in trunk/WebCore/ChangeLog

Correction, NSURLConnection not CFURLConnection.

2:24 PM Changeset in webkit [25777] by thatcher
  • 2 edits in trunk/WebCore

Reviewed by Darin.

<rdar://problem/5199546> CrashTracer: [REGRESSION] 8216 crashes in Safari at com.apple.WebCore: WebCore::ResourceHandle::client const + 6

On Tiger CFURLConnection can sometimes call the connection:willCacheResponse: delegate method on
a secondary thread instead of the main thread. This was never an issue before, since the implementation
of this method was very simple and thread safe.

The fix is to block during connection:willCacheResponse: and perform the work on the main thread.
We need to block since this delegate method needs to return a result. If we are already on the
main thread (which sometimes we are), the method does nothing different. If we are on a secondary
thread, we make a mutable dictionary to hold all the arguments and later the result object.
Then performSelectorOnMainThread:withObject: using the _callConnectionWillCacheResponseWithInfo:
selector. This new method just pulls the arguments out for the dictionary and calls the real
connection:willCacheResponse: delegate method (this time on the main thread). The result is stored
in the dictionary, and when performSelectorOnMainThread:withObject: finishes the result is pulled
out and returned.

  • platform/network/mac/ResourceHandleMac.mm: (-[WebCoreResourceHandleAsDelegate _callConnectionWillCacheResponseWithInfo:]): (-[WebCoreResourceHandleAsDelegate connection:willCacheResponse:]):
9:57 AM Changeset in webkit [25776] by weinig
  • 2 edits in trunk/WebKitLibraries

Build fix. Ran update-webkitsysteminterface script on Tiger, because
the resulting binary differs when built on Tiger.

  • libWebKitSystemInterface.a:
9:18 AM Changeset in webkit [25775] by hyatt
  • 3 edits in trunk/WebKitLibraries

Update WebKitSYstemInterface for @font-face changes.

  • WebKitSystemInterface.h:
  • libWebKitSystemInterface.a:
9:10 AM Changeset in webkit [25774] by hyatt
  • 4 edits in trunk/WebCore

Update to reflect the minimal WebKitSystemInterface changes required
to support @font-face.

Reviewed by john

  • platform/mac/FontDataMac.mm: (WebCore::FontData::platformInit): (WebCore::FontData::platformWidthForGlyph):
  • platform/mac/WebCoreSystemInterface.h:
  • platform/mac/WebCoreSystemInterface.mm:

Sep 26, 2007:

9:01 PM Changeset in webkit [25773] by aroben
  • 2 edits in trunk/LayoutTests

Remove a test that was probably only intermittently failing

Reviewed by NOBODY.

  • platform/win/Skipped:
6:30 PM Changeset in webkit [25772] by bdash
  • 2 edits in trunk/WebKitQt

2007-09-26 Mark Rowe <mrowe@apple.com>

Qt build fix.

  • WebCoreSupport/FrameLoaderClientQt.cpp: (WebCore::FrameLoaderClientQt::objectContentType): Check for empty URL instead of invalid URL.
6:29 PM Changeset in webkit [25771] by bdash
  • 2 edits in trunk/WebKit/gtk

2007-09-26 Mark Rowe <mrowe@apple.com>

Gtk build fix.

  • WebCoreSupport/FrameLoaderClientGtk.cpp: Check for empty URL instead of invalid URL.
6:24 PM Changeset in webkit [25770] by darin
  • 3 edits in trunk/WebCore
  • fix Windows build
  • platform/win/ClipboardWin.cpp: (WebCore::writeURL): Add a check for empty URL. Remove the check for invalid URL. (WebCore::ClipboardWin::setData): Remove the check for invalid URL.
  • plugins/win/PluginViewWin.cpp: (WebCore::PluginViewWin::start): Check for empty URL instead of invalid URL. (WebCore::PluginViewWin::load): Same here.
5:56 PM Changeset in webkit [25769] by darin
  • 6 edits in trunk/WebCore

Reviewed by John Sullivan.

  • fix <rdar://problem/5491054> REGRESSION (Mail, plain-text only): Nothing happens when you click on rdar://<num>&<num> links (or AOL links in Safari)

Remove the non-useful concept of a "malformed"/"invalid" URL.

There are URLs we can parse, and others we can't, but that's not sufficient to
determine if we should try to work with the URL. It's entirely possible that
a so-called "malformed" URL will work just fine if it's passed to the right
software.

  • platform/KURL.h: Removed isMalformed() and isValid().
  • loader/Cache.cpp: (WebCore::Cache::requestResource): Removed unneeded check if the URL is valid. But do check for an empty URL just to guarantee we don't trip up with a null string. It's possible we can remove this empty URL check later, but it's less risky to leave the empty string behavior alone for now.
  • loader/FrameLoader.cpp: (WebCore::FrameLoader::urlSelected): Removed unneeded check if the URL is valid. Back on 2007-07-08, we realized that we needed to allow empty URLs. But we also need to allow other URLs here. This is the code path from the Mail case. (WebCore::FrameLoader::submitForm): Replaced URL validity check with a check for an empty URL (same reasoning as for requestResource above).
  • page/InspectorController.cpp: (WebCore::InspectorResource::type):
  • rendering/RenderObject.cpp: (WebCore::RenderObject::addPDFURLRect): Removed unneeded check for an invalid URL. In both of these cases it's definitely safe to allow event an empty URL.
4:26 PM Changeset in webkit [25768] by ggaren
  • 4 edits in trunk/WebKit

Reviewed by Adele Peterson.


Fixed <rdar://problem/5507476> Promote cache model SPI to API


Promoted cache model SPI to API. This was just a move, with some small
edits to the documentation (changing 'application' to 'WebView' in
some cases, since the interface is now per-WebView).

  • WebView/WebPreferences.h:
  • WebView/WebPreferences.m: (-[WebPreferences setCacheModel:]): (-[WebPreferences cacheModel]):
  • WebView/WebPreferencesPrivate.h:
4:02 PM Changeset in webkit [25767] by tristan
  • 4 edits in branches/Safari-2.0-dashboard/WebCore

Merge r25249 and r25284 from ToT to Safari-2.0-dashboard.


2007-08-24 Sam Weinig <sam@webkit.org>

Reviewed by Adele.

Fix for <rdar://problem/5426142>

Use the EventTarget's frame when creating the EventListener.

Tests: http/tests/security/listener/xss-JSTargetNode-onclick-addEventListener.html

http/tests/security/listener/xss-JSTargetNode-onclick-shortcut.html
http/tests/security/listener/xss-window-onclick-addEventListener.html
http/tests/security/listener/xss-window-onclick-shortcut.html

  • bindings/js/JSEventTargetNode.cpp: (WebCore::JSEventTargetNode::setListener): (WebCore::JSEventTargetNodePrototypeFunction::callAsFunction):
  • bindings/js/kjs_window.cpp: (KJS::WindowFunc::callAsFunction):


2007-08-28 Sam Weinig <sam@webkit.org>

Reviewed by Darin.

Update fix landed in r25249 to account for XMLHttpRequest, which can also be EventTargets.

Tests: http/tests/security/listener/xss-XMLHttpRequest-addEventListener.html

http/tests/security/listener/xss-XMLHttpRequest-shortcut.html

  • bindings/js/JSXMLHttpRequest.cpp: (KJS::JSXMLHttpRequest::putValueProperty): Use the Window object associated with document's frame, not the active Window. (KJS::JSXMLHttpRequestPrototypeFunction::callAsFunction): ditto
  • xml/XMLHttpRequest.h: (WebCore::XMLHttpRequest::document): Expose Document member so bindings can access the correct frame.
2:23 PM Changeset in webkit [25766] by aroben
  • 2 edits in trunk/LayoutTests

Add more failing tests to the Windows Skipped file

Reviewed by NOBODY.

  • platform/win/Skipped:
1:06 PM Changeset in webkit [25765] by aroben
  • 1 edit in trunk/JavaScriptCore/kjs/testkjs.cpp

Oh, Visual Studio, why don't you see when a project file has changed that the project needs to be rebuilt?

12:57 PM Changeset in webkit [25764] by aroben
  • 2 edits in trunk/JavaScriptCore

Make testkjs delay-load WebKit.dll so WebKitInitializer can work its magic

Rubberstamped by Anders.

10:23 AM Changeset in webkit [25763] by aroben
  • 3 edits in trunk/WebKitTools

Make not finding an installed WebKit non-fatal

What really matters is that we are able to load WebKit and its
dependencies, not whether we think we've found an installed WebKit.

Reviewed by Sam.

  • WebKitInitializer/WebKitInitializer.cpp: (getWebViewCLSID): Use new LOG_WARNING macro. (getInstalledWebKitDirectory): Ditto. (initializeWebKit): Don't die if we didn't find an installed WebKit, and use new macros.
  • WebKitInitializer/WebKitInitializer.vcproj: Disabled a warning.
10:22 AM Changeset in webkit [25762] by aroben
  • 2 edits in trunk/WebKitTools

Committed this file before saving it

  • WebKitInitializer/debug_internal.vsprops:
4:28 AM Changeset in webkit [25761] by staikos
  • 2 edits in trunk/WebCore

2007-09-26 George Staikos <staikos@kde.org>

Reviewed by John Sullivan.

Only highlight the applicable portion of the text run for a search
highlight. No way to make a testcase for this presently.

  • rendering/InlineTextBox.cpp: (WebCore::InlineTextBox::paintTextMatchMarker):
12:07 AM Changeset in webkit [25760] by aroben
  • 3 edits
    1 add in trunk/WebKitTools

Load WebKit and its dependencies manually so they come from DllDirectory

I had to change WebKitInitializer to use malloc/free instead of
new/delete to avoid pulling in WebKit (and its dependencies) early
through use of fastMalloc.

Reviewed by Oliver.

  • WebKitInitializer/WebKitInitializer.cpp: (getStringValue): Changed to use malloc/free. (getInstalledWebKitDirectory): Ditto. (initializeWebKit): Call SetDllDirectory first, then load all of WebKit's dependencies manually, finally followed by WebKit itself.
  • WebKitInitializer/WebKitInitializer.vcproj: Added a new configuration to match our other projects.
  • WebKitInitializer/debug_internal.vsprops: Added.

Sep 25, 2007:

11:08 PM Changeset in webkit [25759] by aroben
  • 2 edits in trunk

Touch files to force a rebuild

10:54 PM Changeset in webkit [25758] by aroben
  • 2 edits in trunk/WebKitTools

Actually define DEBUG/NDEBUG so that we load WebKit correctly

Rubberstamped by Sam.

  • WebKitInitializer/WebKitInitializer.vcproj:
10:26 PM Changeset in webkit [25757] by aroben
  • 6 edits in trunk

Make testkjs and DRT delay-load their dependencies

JavaScriptCore:

Make testkjs delay-load its dependencies

This lets WebKitInitializer re-route the dependencies to be loaded out
of the Safari installation directory.

Rubberstamped by Sam.

WebKitTools:

Make DumpRenderTree delay-load its dependencies

This lets WebKitInitializer re-route the dependencies to be loaded out
of the Safari installation directory.

Also replaced all uses of kCFAllocatorDefault with 0 (which means the
same thing), since we can't import the kCFAllocatorDefault symbol when
delay-loading CoreFoundation.dll.

Rubberstamped by Sam.

  • DumpRenderTree/win/DumpRenderTree.cpp: (runTest): (javaScriptThreads):
  • DumpRenderTree/win/DumpRenderTree.vcproj:
  • DumpRenderTree/win/LayoutTestControllerWin.cpp: (LayoutTestController::setWaitToDump):
9:36 PM Changeset in webkit [25756] by aroben
  • 1 edit in trunk/WebKitTools/WebKitInitializer/WebKitInitializer.cpp

Touch it again so it rebuilds

7:40 PM Changeset in webkit [25755] by aroben
  • 2 edits in trunk/WebKitTools

Pull ole32.lib into WebKitInitializer

Rubberstamped by Sam.

  • WebKitInitializer/WebKitInitializer.vcproj:
7:29 PM Changeset in webkit [25754] by ddkilzer
  • 1167 edits in trunk

JavaScriptCore:

Reviewed by Adam.

  • COPYING.LIB:
  • bindings/testbindings.cpp:
  • kjs/AllInOneFile.cpp:
  • kjs/DateMath.cpp:
  • kjs/PropertyNameArray.cpp:
  • kjs/PropertyNameArray.h:
  • kjs/config.h:

WebCore:

Reviewed by Adam.

  • LICENSE-LGPL-2:
  • LICENSE-LGPL-2.1:
  • WebCorePrefix.h:
  • bindings/js/JSCanvasRenderingContext2DCustom.cpp:
  • bindings/js/JSDOMWindowCustom.cpp:
  • bindings/js/JSDocumentCustom.cpp:
  • bindings/js/JSHTMLCollectionCustom.cpp:
  • bindings/js/JSHTMLElementWrapperFactory.cpp:
  • bindings/js/JSHTMLElementWrapperFactory.h:
  • bindings/js/JSHTMLInputElementBase.cpp:
  • bindings/js/JSHTMLInputElementBase.h:
  • bindings/js/JSHTMLOptionElementConstructor.cpp:
  • bindings/js/JSHTMLOptionElementConstructor.h:
  • bindings/js/JSHTMLOptionsCollectionCustom.cpp:
  • bindings/js/JSHTMLSelectElementCustom.cpp:
  • bindings/js/JSNodeFilterCondition.cpp:
  • bindings/js/JSNodeFilterCondition.h:
  • bindings/js/JSNodeIteratorCustom.cpp:
  • bindings/js/JSSVGElementWrapperFactory.cpp:
  • bindings/js/JSSVGElementWrapperFactory.h:
  • bindings/js/JSSVGMatrixCustom.cpp:
  • bindings/js/JSSVGPathSegCustom.cpp:
  • bindings/js/JSSVGPathSegListCustom.cpp:
  • bindings/js/JSSVGPointListCustom.cpp:
  • bindings/js/JSTreeWalkerCustom.cpp:
  • bindings/js/JSXMLHttpRequest.cpp:
  • bindings/js/JSXMLHttpRequest.h:
  • bindings/js/kjs_binding.cpp:
  • bindings/js/kjs_binding.h:
  • bindings/js/kjs_css.cpp:
  • bindings/js/kjs_css.h:
  • bindings/js/kjs_dom.cpp:
  • bindings/js/kjs_dom.h:
  • bindings/js/kjs_events.cpp:
  • bindings/js/kjs_events.h:
  • bindings/js/kjs_html.cpp:
  • bindings/js/kjs_html.h:
  • bindings/js/kjs_navigator.cpp:
  • bindings/js/kjs_navigator.h:
  • bindings/js/kjs_proxy.cpp:
  • bindings/js/kjs_proxy.h:
  • bindings/js/kjs_window.cpp:
  • bindings/js/kjs_window.h:
  • bindings/objc/DOMImplementationFront.cpp:
  • bindings/objc/DOMImplementationFront.h:
  • bindings/scripts/CodeGenerator.pm:
  • bindings/scripts/CodeGeneratorJS.pm:
  • bindings/scripts/CodeGeneratorObjC.pm:
  • bindings/scripts/IDLParser.pm:
  • bindings/scripts/IDLStructure.pm:
  • bindings/scripts/generate-bindings.pl:
  • config.h:
  • css/CSSBorderImageValue.cpp:
  • css/CSSBorderImageValue.h:
  • css/CSSCharsetRule.cpp:
  • css/CSSCharsetRule.h:
  • css/CSSCharsetRule.idl:
  • css/CSSComputedStyleDeclaration.cpp:
  • css/CSSComputedStyleDeclaration.h:
  • css/CSSCursorImageValue.cpp:
  • css/CSSCursorImageValue.h:
  • css/CSSFontFaceRule.cpp:
  • css/CSSFontFaceRule.h:
  • css/CSSFontFaceRule.idl:
  • css/CSSGrammar.y:
  • css/CSSHelper.cpp:
  • css/CSSHelper.h:
  • css/CSSImageValue.cpp:
  • css/CSSImageValue.h:
  • css/CSSImportRule.cpp:
  • css/CSSImportRule.h:
  • css/CSSImportRule.idl:
  • css/CSSInheritedValue.cpp:
  • css/CSSInheritedValue.h:
  • css/CSSInitialValue.cpp:
  • css/CSSInitialValue.h:
  • css/CSSMediaRule.cpp:
  • css/CSSMediaRule.h:
  • css/CSSMediaRule.idl:
  • css/CSSMutableStyleDeclaration.cpp:
  • css/CSSMutableStyleDeclaration.h:
  • css/CSSNamespace.h:
  • css/CSSPageRule.cpp:
  • css/CSSPageRule.h:
  • css/CSSPageRule.idl:
  • css/CSSParser.cpp:
  • css/CSSParser.h:
  • css/CSSPrimitiveValue.cpp:
  • css/CSSPrimitiveValue.h:
  • css/CSSPrimitiveValue.idl:
  • css/CSSProperty.cpp:
  • css/CSSProperty.h:
  • css/CSSQuirkPrimitiveValue.h:
  • css/CSSRule.cpp:
  • css/CSSRule.h:
  • css/CSSRule.idl:
  • css/CSSRuleList.cpp:
  • css/CSSRuleList.h:
  • css/CSSSelector.cpp:
  • css/CSSSelector.h:
  • css/CSSStyleDeclaration.cpp:
  • css/CSSStyleDeclaration.h:
  • css/CSSStyleDeclaration.idl:
  • css/CSSStyleRule.cpp:
  • css/CSSStyleRule.h:
  • css/CSSStyleRule.idl:
  • css/CSSStyleSelector.cpp:
  • css/CSSStyleSelector.h:
  • css/CSSStyleSheet.cpp:
  • css/CSSStyleSheet.h:
  • css/CSSStyleSheet.idl:
  • css/CSSUnknownRule.h:
  • css/CSSUnknownRule.idl:
  • css/CSSValue.h:
  • css/CSSValue.idl:
  • css/CSSValueList.cpp:
  • css/CSSValueList.h:
  • css/Counter.h:
  • css/Counter.idl:
  • css/DashboardRegion.h:
  • css/FontFamilyValue.cpp:
  • css/FontFamilyValue.h:
  • css/FontValue.cpp:
  • css/FontValue.h:
  • css/MediaFeatureNames.cpp:
  • css/MediaFeatureNames.h:
  • css/MediaList.cpp:
  • css/MediaList.h:
  • css/Pair.h:
  • css/RGBColor.idl:
  • css/Rect.h:
  • css/Rect.idl:
  • css/ShadowValue.cpp:
  • css/ShadowValue.h:
  • css/StyleBase.cpp:
  • css/StyleBase.h:
  • css/StyleList.cpp:
  • css/StyleList.h:
  • css/StyleSheet.cpp:
  • css/StyleSheet.h:
  • css/StyleSheet.idl:
  • css/StyleSheetList.cpp:
  • css/StyleSheetList.h:
  • css/StyleSheetList.idl:
  • css/html4.css:
  • css/make-css-file-arrays.pl:
  • css/makegrammar.pl:
  • css/makeprop.pl:
  • css/maketokenizer:
  • css/makevalues.pl:
  • css/quirks.css:
  • dom/AtomicStringList.h:
  • dom/Attr.cpp:
  • dom/Attr.h:
  • dom/Attr.idl:
  • dom/Attribute.cpp:
  • dom/Attribute.h:
  • dom/BeforeUnloadEvent.cpp:
  • dom/BeforeUnloadEvent.h:
  • dom/CDATASection.cpp:
  • dom/CDATASection.h:
  • dom/CDATASection.idl:
  • dom/CSSMappedAttributeDeclaration.cpp:
  • dom/CSSMappedAttributeDeclaration.h:
  • dom/CharacterData.cpp:
  • dom/CharacterData.h:
  • dom/CharacterData.idl:
  • dom/ChildNodeList.cpp:
  • dom/ChildNodeList.h:
  • dom/Clipboard.h:
  • dom/ClipboardEvent.cpp:
  • dom/ClipboardEvent.h:
  • dom/Comment.cpp:
  • dom/Comment.h:
  • dom/Comment.idl:
  • dom/ContainerNode.cpp:
  • dom/ContainerNode.h:
  • dom/DOMImplementation.cpp:
  • dom/DOMImplementation.h:
  • dom/DOMImplementation.idl:
  • dom/DocPtr.h:
  • dom/Document.cpp:
  • dom/Document.h:
  • dom/Document.idl:
  • dom/DocumentFragment.cpp:
  • dom/DocumentFragment.h:
  • dom/DocumentFragment.idl:
  • dom/DocumentMarker.h:
  • dom/DocumentType.cpp:
  • dom/DocumentType.h:
  • dom/DocumentType.idl:
  • dom/EditingText.cpp:
  • dom/EditingText.h:
  • dom/Element.cpp:
  • dom/Element.h:
  • dom/Element.idl:
  • dom/Entity.cpp:
  • dom/Entity.h:
  • dom/Entity.idl:
  • dom/EntityReference.cpp:
  • dom/EntityReference.h:
  • dom/EntityReference.idl:
  • dom/Event.cpp:
  • dom/Event.h:
  • dom/Event.idl:
  • dom/EventListener.h:
  • dom/EventListener.idl:
  • dom/EventNames.cpp:
  • dom/EventNames.h:
  • dom/EventTarget.idl:
  • dom/EventTargetNode.cpp:
  • dom/EventTargetNode.h:
  • dom/ExceptionCode.h:
  • dom/KeyboardEvent.cpp:
  • dom/KeyboardEvent.h:
  • dom/KeyboardEvent.idl:
  • dom/MappedAttribute.cpp:
  • dom/MappedAttribute.h:
  • dom/MappedAttributeEntry.h:
  • dom/MouseEvent.cpp:
  • dom/MouseEvent.h:
  • dom/MouseEvent.idl:
  • dom/MouseRelatedEvent.cpp:
  • dom/MouseRelatedEvent.h:
  • dom/MutationEvent.cpp:
  • dom/MutationEvent.h:
  • dom/MutationEvent.idl:
  • dom/NameNodeList.cpp:
  • dom/NameNodeList.h:
  • dom/NamedAttrMap.cpp:
  • dom/NamedAttrMap.h:
  • dom/NamedMappedAttrMap.cpp:
  • dom/NamedMappedAttrMap.h:
  • dom/NamedNodeMap.h:
  • dom/NamedNodeMap.idl:
  • dom/Node.cpp:
  • dom/Node.h:
  • dom/Node.idl:
  • dom/NodeFilter.cpp:
  • dom/NodeFilter.h:
  • dom/NodeFilter.idl:
  • dom/NodeFilterCondition.cpp:
  • dom/NodeFilterCondition.h:
  • dom/NodeIterator.cpp:
  • dom/NodeIterator.h:
  • dom/NodeIterator.idl:
  • dom/NodeList.cpp:
  • dom/NodeList.h:
  • dom/NodeList.idl:
  • dom/Notation.cpp:
  • dom/Notation.h:
  • dom/Notation.idl:
  • dom/ProcessingInstruction.cpp:
  • dom/ProcessingInstruction.h:
  • dom/ProcessingInstruction.idl:
  • dom/QualifiedName.cpp:
  • dom/QualifiedName.h:
  • dom/Range.cpp:
  • dom/Range.h:
  • dom/Range.idl:
  • dom/RangeException.h:
  • dom/RangeException.idl:
  • dom/RegisteredEventListener.cpp:
  • dom/RegisteredEventListener.h:
  • dom/StyleElement.cpp:
  • dom/StyleElement.h:
  • dom/StyledElement.cpp:
  • dom/StyledElement.h:
  • dom/Text.cpp:
  • dom/Text.h:
  • dom/Text.idl:
  • dom/Tokenizer.h:
  • dom/Traversal.cpp:
  • dom/Traversal.h:
  • dom/TreeWalker.cpp:
  • dom/TreeWalker.h:
  • dom/TreeWalker.idl:
  • dom/UIEvent.cpp:
  • dom/UIEvent.h:
  • dom/UIEvent.idl:
  • dom/UIEventWithKeyState.cpp:
  • dom/UIEventWithKeyState.h:
  • dom/WheelEvent.cpp:
  • dom/WheelEvent.h:
  • dom/WheelEvent.idl:
  • dom/XMLTokenizer.cpp:
  • dom/XMLTokenizer.h:
  • html/FormDataList.cpp:
  • html/FormDataList.h:
  • html/HTMLAnchorElement.cpp:
  • html/HTMLAnchorElement.h:
  • html/HTMLAnchorElement.idl:
  • html/HTMLAppletElement.cpp:
  • html/HTMLAppletElement.h:
  • html/HTMLAppletElement.idl:
  • html/HTMLAreaElement.cpp:
  • html/HTMLAreaElement.h:
  • html/HTMLAreaElement.idl:
  • html/HTMLBRElement.cpp:
  • html/HTMLBRElement.h:
  • html/HTMLBRElement.idl:
  • html/HTMLBaseElement.cpp:
  • html/HTMLBaseElement.h:
  • html/HTMLBaseElement.idl:
  • html/HTMLBaseFontElement.cpp:
  • html/HTMLBaseFontElement.h:
  • html/HTMLBaseFontElement.idl:
  • html/HTMLBlockquoteElement.cpp:
  • html/HTMLBlockquoteElement.h:
  • html/HTMLBlockquoteElement.idl:
  • html/HTMLBodyElement.cpp:
  • html/HTMLBodyElement.h:
  • html/HTMLBodyElement.idl:
  • html/HTMLButtonElement.cpp:
  • html/HTMLButtonElement.h:
  • html/HTMLButtonElement.idl:
  • html/HTMLCollection.cpp:
  • html/HTMLCollection.h:
  • html/HTMLCollection.idl:
  • html/HTMLDListElement.cpp:
  • html/HTMLDListElement.h:
  • html/HTMLDListElement.idl:
  • html/HTMLDirectoryElement.cpp:
  • html/HTMLDirectoryElement.h:
  • html/HTMLDirectoryElement.idl:
  • html/HTMLDivElement.cpp:
  • html/HTMLDivElement.h:
  • html/HTMLDivElement.idl:
  • html/HTMLDocument.cpp:
  • html/HTMLDocument.h:
  • html/HTMLDocument.idl:
  • html/HTMLElement.cpp:
  • html/HTMLElement.h:
  • html/HTMLElement.idl:
  • html/HTMLElementFactory.cpp:
  • html/HTMLElementFactory.h:
  • html/HTMLEmbedElement.cpp:
  • html/HTMLEmbedElement.h:
  • html/HTMLEmbedElement.idl:
  • html/HTMLEntityNames.gperf:
  • html/HTMLFieldSetElement.cpp:
  • html/HTMLFieldSetElement.h:
  • html/HTMLFieldSetElement.idl:
  • html/HTMLFontElement.cpp:
  • html/HTMLFontElement.h:
  • html/HTMLFontElement.idl:
  • html/HTMLFormCollection.cpp:
  • html/HTMLFormCollection.h:
  • html/HTMLFormElement.cpp:
  • html/HTMLFormElement.h:
  • html/HTMLFormElement.idl:
  • html/HTMLFrameElement.cpp:
  • html/HTMLFrameElement.h:
  • html/HTMLFrameElement.idl:
  • html/HTMLFrameElementBase.cpp:
  • html/HTMLFrameElementBase.h:
  • html/HTMLFrameOwnerElement.cpp:
  • html/HTMLFrameOwnerElement.h:
  • html/HTMLFrameSetElement.cpp:
  • html/HTMLFrameSetElement.h:
  • html/HTMLFrameSetElement.idl:
  • html/HTMLGenericFormElement.cpp:
  • html/HTMLGenericFormElement.h:
  • html/HTMLHRElement.cpp:
  • html/HTMLHRElement.h:
  • html/HTMLHRElement.idl:
  • html/HTMLHeadElement.cpp:
  • html/HTMLHeadElement.h:
  • html/HTMLHeadElement.idl:
  • html/HTMLHeadingElement.cpp:
  • html/HTMLHeadingElement.h:
  • html/HTMLHeadingElement.idl:
  • html/HTMLHtmlElement.cpp:
  • html/HTMLHtmlElement.h:
  • html/HTMLHtmlElement.idl:
  • html/HTMLIFrameElement.cpp:
  • html/HTMLIFrameElement.h:
  • html/HTMLIFrameElement.idl:
  • html/HTMLImageElement.cpp:
  • html/HTMLImageElement.h:
  • html/HTMLImageElement.idl:
  • html/HTMLImageLoader.cpp:
  • html/HTMLImageLoader.h:
  • html/HTMLInputElement.cpp:
  • html/HTMLInputElement.h:
  • html/HTMLInputElement.idl:
  • html/HTMLIsIndexElement.cpp:
  • html/HTMLIsIndexElement.h:
  • html/HTMLIsIndexElement.idl:
  • html/HTMLKeygenElement.cpp:
  • html/HTMLKeygenElement.h:
  • html/HTMLLIElement.cpp:
  • html/HTMLLIElement.h:
  • html/HTMLLIElement.idl:
  • html/HTMLLabelElement.cpp:
  • html/HTMLLabelElement.h:
  • html/HTMLLabelElement.idl:
  • html/HTMLLegendElement.cpp:
  • html/HTMLLegendElement.h:
  • html/HTMLLegendElement.idl:
  • html/HTMLLinkElement.cpp:
  • html/HTMLLinkElement.h:
  • html/HTMLLinkElement.idl:
  • html/HTMLMapElement.cpp:
  • html/HTMLMapElement.h:
  • html/HTMLMapElement.idl:
  • html/HTMLMarqueeElement.cpp:
  • html/HTMLMarqueeElement.h:
  • html/HTMLMarqueeElement.idl:
  • html/HTMLMenuElement.cpp:
  • html/HTMLMenuElement.h:
  • html/HTMLMenuElement.idl:
  • html/HTMLMetaElement.cpp:
  • html/HTMLMetaElement.h:
  • html/HTMLMetaElement.idl:
  • html/HTMLModElement.cpp:
  • html/HTMLModElement.h:
  • html/HTMLModElement.idl:
  • html/HTMLNameCollection.cpp:
  • html/HTMLNameCollection.h:
  • html/HTMLOListElement.cpp:
  • html/HTMLOListElement.h:
  • html/HTMLOListElement.idl:
  • html/HTMLObjectElement.cpp:
  • html/HTMLObjectElement.h:
  • html/HTMLObjectElement.idl:
  • html/HTMLOptGroupElement.cpp:
  • html/HTMLOptGroupElement.h:
  • html/HTMLOptGroupElement.idl:
  • html/HTMLOptionElement.cpp:
  • html/HTMLOptionElement.h:
  • html/HTMLOptionElement.idl:
  • html/HTMLOptionsCollection.cpp:
  • html/HTMLOptionsCollection.h:
  • html/HTMLOptionsCollection.idl:
  • html/HTMLParagraphElement.cpp:
  • html/HTMLParagraphElement.h:
  • html/HTMLParagraphElement.idl:
  • html/HTMLParamElement.cpp:
  • html/HTMLParamElement.h:
  • html/HTMLParamElement.idl:
  • html/HTMLParser.cpp:
  • html/HTMLParser.h:
  • html/HTMLPlugInElement.cpp:
  • html/HTMLPlugInElement.h:
  • html/HTMLPreElement.cpp:
  • html/HTMLPreElement.h:
  • html/HTMLPreElement.idl:
  • html/HTMLQuoteElement.cpp:
  • html/HTMLQuoteElement.h:
  • html/HTMLQuoteElement.idl:
  • html/HTMLScriptElement.cpp:
  • html/HTMLScriptElement.h:
  • html/HTMLScriptElement.idl:
  • html/HTMLSelectElement.cpp:
  • html/HTMLSelectElement.h:
  • html/HTMLSelectElement.idl:
  • html/HTMLStyleElement.cpp:
  • html/HTMLStyleElement.h:
  • html/HTMLStyleElement.idl:
  • html/HTMLTableCaptionElement.cpp:
  • html/HTMLTableCaptionElement.h:
  • html/HTMLTableCaptionElement.idl:
  • html/HTMLTableCellElement.cpp:
  • html/HTMLTableCellElement.h:
  • html/HTMLTableCellElement.idl:
  • html/HTMLTableColElement.cpp:
  • html/HTMLTableColElement.h:
  • html/HTMLTableColElement.idl:
  • html/HTMLTableElement.cpp:
  • html/HTMLTableElement.h:
  • html/HTMLTableElement.idl:
  • html/HTMLTablePartElement.cpp:
  • html/HTMLTablePartElement.h:
  • html/HTMLTableRowElement.cpp:
  • html/HTMLTableRowElement.h:
  • html/HTMLTableRowElement.idl:
  • html/HTMLTableSectionElement.cpp:
  • html/HTMLTableSectionElement.h:
  • html/HTMLTableSectionElement.idl:
  • html/HTMLTextAreaElement.cpp:
  • html/HTMLTextAreaElement.h:
  • html/HTMLTextAreaElement.idl:
  • html/HTMLTitleElement.cpp:
  • html/HTMLTitleElement.h:
  • html/HTMLTitleElement.idl:
  • html/HTMLTokenizer.cpp:
  • html/HTMLTokenizer.h:
  • html/HTMLUListElement.cpp:
  • html/HTMLUListElement.h:
  • html/HTMLUListElement.idl:
  • ksvg2/css/SVGCSSParser.cpp:
  • ksvg2/css/SVGCSSStyleSelector.cpp:
  • ksvg2/css/SVGRenderStyle.cpp:
  • ksvg2/css/SVGRenderStyle.h:
  • ksvg2/css/SVGRenderStyleDefs.cpp:
  • ksvg2/css/SVGRenderStyleDefs.h:
  • ksvg2/events/JSSVGLazyEventListener.cpp:
  • ksvg2/events/JSSVGLazyEventListener.h:
  • ksvg2/events/SVGZoomEvent.cpp:
  • ksvg2/events/SVGZoomEvent.h:
  • ksvg2/misc/KCanvasRenderingStyle.cpp:
  • ksvg2/misc/KCanvasRenderingStyle.h:
  • ksvg2/misc/PointerEventsHitRules.cpp:
  • ksvg2/misc/PointerEventsHitRules.h:
  • ksvg2/misc/SVGDocumentExtensions.cpp:
  • ksvg2/misc/SVGDocumentExtensions.h:
  • ksvg2/misc/SVGImageLoader.cpp:
  • ksvg2/misc/SVGImageLoader.h:
  • ksvg2/misc/SVGTimer.cpp:
  • ksvg2/misc/SVGTimer.h:
  • ksvg2/misc/TimeScheduler.cpp:
  • ksvg2/misc/TimeScheduler.h:
  • ksvg2/scripts/cssmakeprops:
  • ksvg2/scripts/cssmakevalues:
  • ksvg2/svg/ColorDistance.cpp:
  • ksvg2/svg/ColorDistance.h:
  • ksvg2/svg/GradientAttributes.h:
  • ksvg2/svg/LinearGradientAttributes.h:
  • ksvg2/svg/PatternAttributes.h:
  • ksvg2/svg/RadialGradientAttributes.h:
  • ksvg2/svg/SVGAElement.cpp:
  • ksvg2/svg/SVGAElement.h:
  • ksvg2/svg/SVGAngle.cpp:
  • ksvg2/svg/SVGAngle.h:
  • ksvg2/svg/SVGAngle.idl:
  • ksvg2/svg/SVGAnimateColorElement.cpp:
  • ksvg2/svg/SVGAnimateColorElement.h:
  • ksvg2/svg/SVGAnimateElement.cpp:
  • ksvg2/svg/SVGAnimateElement.h:
  • ksvg2/svg/SVGAnimateMotionElement.cpp:
  • ksvg2/svg/SVGAnimateMotionElement.h:
  • ksvg2/svg/SVGAnimateTransformElement.cpp:
  • ksvg2/svg/SVGAnimateTransformElement.h:
  • ksvg2/svg/SVGAnimatedPathData.cpp:
  • ksvg2/svg/SVGAnimatedPathData.h:
  • ksvg2/svg/SVGAnimatedPoints.cpp:
  • ksvg2/svg/SVGAnimatedPoints.h:
  • ksvg2/svg/SVGAnimatedTemplate.h:
  • ksvg2/svg/SVGAnimationElement.cpp:
  • ksvg2/svg/SVGAnimationElement.h:
  • ksvg2/svg/SVGCircleElement.cpp:
  • ksvg2/svg/SVGCircleElement.h:
  • ksvg2/svg/SVGClipPathElement.cpp:
  • ksvg2/svg/SVGClipPathElement.h:
  • ksvg2/svg/SVGColor.cpp:
  • ksvg2/svg/SVGColor.h:
  • ksvg2/svg/SVGColor.idl:
  • ksvg2/svg/SVGComponentTransferFunctionElement.cpp:
  • ksvg2/svg/SVGComponentTransferFunctionElement.h:
  • ksvg2/svg/SVGCursorElement.cpp:
  • ksvg2/svg/SVGCursorElement.h:
  • ksvg2/svg/SVGDefsElement.cpp:
  • ksvg2/svg/SVGDefsElement.h:
  • ksvg2/svg/SVGDescElement.cpp:
  • ksvg2/svg/SVGDescElement.h:
  • ksvg2/svg/SVGDocument.cpp:
  • ksvg2/svg/SVGDocument.h:
  • ksvg2/svg/SVGDocument.idl:
  • ksvg2/svg/SVGElement.cpp:
  • ksvg2/svg/SVGElement.h:
  • ksvg2/svg/SVGElement.idl:
  • ksvg2/svg/SVGElementInstance.cpp:
  • ksvg2/svg/SVGElementInstance.h:
  • ksvg2/svg/SVGElementInstanceList.cpp:
  • ksvg2/svg/SVGElementInstanceList.h:
  • ksvg2/svg/SVGEllipseElement.cpp:
  • ksvg2/svg/SVGEllipseElement.h:
  • ksvg2/svg/SVGException.h:
  • ksvg2/svg/SVGExternalResourcesRequired.cpp:
  • ksvg2/svg/SVGExternalResourcesRequired.h:
  • ksvg2/svg/SVGFEBlendElement.cpp:
  • ksvg2/svg/SVGFEBlendElement.h:
  • ksvg2/svg/SVGFEColorMatrixElement.cpp:
  • ksvg2/svg/SVGFEColorMatrixElement.h:
  • ksvg2/svg/SVGFEComponentTransferElement.cpp:
  • ksvg2/svg/SVGFEComponentTransferElement.h:
  • ksvg2/svg/SVGFECompositeElement.cpp:
  • ksvg2/svg/SVGFECompositeElement.h:
  • ksvg2/svg/SVGFEDiffuseLightingElement.cpp:
  • ksvg2/svg/SVGFEDiffuseLightingElement.h:
  • ksvg2/svg/SVGFEDisplacementMapElement.cpp:
  • ksvg2/svg/SVGFEDisplacementMapElement.h:
  • ksvg2/svg/SVGFEDistantLightElement.cpp:
  • ksvg2/svg/SVGFEDistantLightElement.h:
  • ksvg2/svg/SVGFEFloodElement.cpp:
  • ksvg2/svg/SVGFEFloodElement.h:
  • ksvg2/svg/SVGFEFuncAElement.cpp:
  • ksvg2/svg/SVGFEFuncAElement.h:
  • ksvg2/svg/SVGFEFuncBElement.cpp:
  • ksvg2/svg/SVGFEFuncBElement.h:
  • ksvg2/svg/SVGFEFuncGElement.cpp:
  • ksvg2/svg/SVGFEFuncGElement.h:
  • ksvg2/svg/SVGFEFuncRElement.cpp:
  • ksvg2/svg/SVGFEFuncRElement.h:
  • ksvg2/svg/SVGFEGaussianBlurElement.cpp:
  • ksvg2/svg/SVGFEGaussianBlurElement.h:
  • ksvg2/svg/SVGFEImageElement.cpp:
  • ksvg2/svg/SVGFEImageElement.h:
  • ksvg2/svg/SVGFELightElement.cpp:
  • ksvg2/svg/SVGFELightElement.h:
  • ksvg2/svg/SVGFEMergeElement.cpp:
  • ksvg2/svg/SVGFEMergeElement.h:
  • ksvg2/svg/SVGFEMergeNodeElement.cpp:
  • ksvg2/svg/SVGFEMergeNodeElement.h:
  • ksvg2/svg/SVGFEOffsetElement.cpp:
  • ksvg2/svg/SVGFEOffsetElement.h:
  • ksvg2/svg/SVGFEPointLightElement.cpp:
  • ksvg2/svg/SVGFEPointLightElement.h:
  • ksvg2/svg/SVGFESpecularLightingElement.cpp:
  • ksvg2/svg/SVGFESpecularLightingElement.h:
  • ksvg2/svg/SVGFESpotLightElement.cpp:
  • ksvg2/svg/SVGFESpotLightElement.h:
  • ksvg2/svg/SVGFETileElement.cpp:
  • ksvg2/svg/SVGFETileElement.h:
  • ksvg2/svg/SVGFETurbulenceElement.cpp:
  • ksvg2/svg/SVGFETurbulenceElement.h:
  • ksvg2/svg/SVGFilterElement.cpp:
  • ksvg2/svg/SVGFilterElement.h:
  • ksvg2/svg/SVGFilterPrimitiveStandardAttributes.cpp:
  • ksvg2/svg/SVGFilterPrimitiveStandardAttributes.h:
  • ksvg2/svg/SVGFitToViewBox.cpp:
  • ksvg2/svg/SVGFitToViewBox.h:
  • ksvg2/svg/SVGForeignObjectElement.cpp:
  • ksvg2/svg/SVGForeignObjectElement.h:
  • ksvg2/svg/SVGGElement.cpp:
  • ksvg2/svg/SVGGElement.h:
  • ksvg2/svg/SVGGradientElement.cpp:
  • ksvg2/svg/SVGGradientElement.h:
  • ksvg2/svg/SVGImageElement.cpp:
  • ksvg2/svg/SVGImageElement.h:
  • ksvg2/svg/SVGLangSpace.cpp:
  • ksvg2/svg/SVGLangSpace.h:
  • ksvg2/svg/SVGLength.cpp:
  • ksvg2/svg/SVGLength.h:
  • ksvg2/svg/SVGLength.idl:
  • ksvg2/svg/SVGLengthList.cpp:
  • ksvg2/svg/SVGLengthList.h:
  • ksvg2/svg/SVGLineElement.cpp:
  • ksvg2/svg/SVGLineElement.h:
  • ksvg2/svg/SVGLinearGradientElement.cpp:
  • ksvg2/svg/SVGLinearGradientElement.h:
  • ksvg2/svg/SVGList.h:
  • ksvg2/svg/SVGListTraits.h:
  • ksvg2/svg/SVGLocatable.cpp:
  • ksvg2/svg/SVGLocatable.h:
  • ksvg2/svg/SVGMPathElement.cpp:
  • ksvg2/svg/SVGMPathElement.h:
  • ksvg2/svg/SVGMarkerElement.cpp:
  • ksvg2/svg/SVGMarkerElement.h:
  • ksvg2/svg/SVGMaskElement.cpp:
  • ksvg2/svg/SVGMaskElement.h:
  • ksvg2/svg/SVGMatrix.idl:
  • ksvg2/svg/SVGMetadataElement.cpp:
  • ksvg2/svg/SVGMetadataElement.h:
  • ksvg2/svg/SVGMetadataElement.idl:
  • ksvg2/svg/SVGNumber.idl:
  • ksvg2/svg/SVGNumberList.cpp:
  • ksvg2/svg/SVGNumberList.h:
  • ksvg2/svg/SVGPaint.cpp:
  • ksvg2/svg/SVGPaint.h:
  • ksvg2/svg/SVGParserUtilities.cpp:
  • ksvg2/svg/SVGParserUtilities.h:
  • ksvg2/svg/SVGPathElement.cpp:
  • ksvg2/svg/SVGPathElement.h:
  • ksvg2/svg/SVGPathSeg.h:
  • ksvg2/svg/SVGPathSegArc.cpp:
  • ksvg2/svg/SVGPathSegArc.h:
  • ksvg2/svg/SVGPathSegClosePath.cpp:
  • ksvg2/svg/SVGPathSegClosePath.h:
  • ksvg2/svg/SVGPathSegCurvetoCubic.cpp:
  • ksvg2/svg/SVGPathSegCurvetoCubic.h:
  • ksvg2/svg/SVGPathSegCurvetoCubicSmooth.cpp:
  • ksvg2/svg/SVGPathSegCurvetoCubicSmooth.h:
  • ksvg2/svg/SVGPathSegCurvetoQuadratic.cpp:
  • ksvg2/svg/SVGPathSegCurvetoQuadratic.h:
  • ksvg2/svg/SVGPathSegCurvetoQuadraticSmooth.cpp:
  • ksvg2/svg/SVGPathSegCurvetoQuadraticSmooth.h:
  • ksvg2/svg/SVGPathSegLineto.cpp:
  • ksvg2/svg/SVGPathSegLineto.h:
  • ksvg2/svg/SVGPathSegLinetoHorizontal.cpp:
  • ksvg2/svg/SVGPathSegLinetoHorizontal.h:
  • ksvg2/svg/SVGPathSegLinetoVertical.cpp:
  • ksvg2/svg/SVGPathSegLinetoVertical.h:
  • ksvg2/svg/SVGPathSegList.cpp:
  • ksvg2/svg/SVGPathSegList.h:
  • ksvg2/svg/SVGPathSegMoveto.cpp:
  • ksvg2/svg/SVGPathSegMoveto.h:
  • ksvg2/svg/SVGPatternElement.cpp:
  • ksvg2/svg/SVGPatternElement.h:
  • ksvg2/svg/SVGPoint.idl:
  • ksvg2/svg/SVGPointList.cpp:
  • ksvg2/svg/SVGPointList.h:
  • ksvg2/svg/SVGPolyElement.cpp:
  • ksvg2/svg/SVGPolyElement.h:
  • ksvg2/svg/SVGPolygonElement.cpp:
  • ksvg2/svg/SVGPolygonElement.h:
  • ksvg2/svg/SVGPolylineElement.cpp:
  • ksvg2/svg/SVGPolylineElement.h:
  • ksvg2/svg/SVGPreserveAspectRatio.cpp:
  • ksvg2/svg/SVGPreserveAspectRatio.h:
  • ksvg2/svg/SVGRadialGradientElement.cpp:
  • ksvg2/svg/SVGRadialGradientElement.h:
  • ksvg2/svg/SVGRect.idl:
  • ksvg2/svg/SVGRectElement.cpp:
  • ksvg2/svg/SVGRectElement.h:
  • ksvg2/svg/SVGRenderingIntent.h:
  • ksvg2/svg/SVGSVGElement.cpp:
  • ksvg2/svg/SVGSVGElement.h:
  • ksvg2/svg/SVGSVGElement.idl:
  • ksvg2/svg/SVGScriptElement.cpp:
  • ksvg2/svg/SVGScriptElement.h:
  • ksvg2/svg/SVGSetElement.cpp:
  • ksvg2/svg/SVGSetElement.h:
  • ksvg2/svg/SVGStopElement.cpp:
  • ksvg2/svg/SVGStopElement.h:
  • ksvg2/svg/SVGStringList.cpp:
  • ksvg2/svg/SVGStringList.h:
  • ksvg2/svg/SVGStylable.cpp:
  • ksvg2/svg/SVGStylable.h:
  • ksvg2/svg/SVGStyleElement.cpp:
  • ksvg2/svg/SVGStyleElement.h:
  • ksvg2/svg/SVGStyledElement.cpp:
  • ksvg2/svg/SVGStyledElement.h:
  • ksvg2/svg/SVGStyledLocatableElement.cpp:
  • ksvg2/svg/SVGStyledLocatableElement.h:
  • ksvg2/svg/SVGStyledTransformableElement.cpp:
  • ksvg2/svg/SVGStyledTransformableElement.h:
  • ksvg2/svg/SVGSwitchElement.cpp:
  • ksvg2/svg/SVGSwitchElement.h:
  • ksvg2/svg/SVGSymbolElement.cpp:
  • ksvg2/svg/SVGSymbolElement.h:
  • ksvg2/svg/SVGTRefElement.cpp:
  • ksvg2/svg/SVGTRefElement.h:
  • ksvg2/svg/SVGTSpanElement.cpp:
  • ksvg2/svg/SVGTSpanElement.h:
  • ksvg2/svg/SVGTests.cpp:
  • ksvg2/svg/SVGTests.h:
  • ksvg2/svg/SVGTextContentElement.cpp:
  • ksvg2/svg/SVGTextContentElement.h:
  • ksvg2/svg/SVGTextElement.cpp:
  • ksvg2/svg/SVGTextElement.h:
  • ksvg2/svg/SVGTextPositioningElement.cpp:
  • ksvg2/svg/SVGTextPositioningElement.h:
  • ksvg2/svg/SVGTitleElement.cpp:
  • ksvg2/svg/SVGTitleElement.h:
  • ksvg2/svg/SVGTransform.cpp:
  • ksvg2/svg/SVGTransform.h:
  • ksvg2/svg/SVGTransform.idl:
  • ksvg2/svg/SVGTransformDistance.cpp:
  • ksvg2/svg/SVGTransformDistance.h:
  • ksvg2/svg/SVGTransformList.cpp:
  • ksvg2/svg/SVGTransformList.h:
  • ksvg2/svg/SVGTransformable.cpp:
  • ksvg2/svg/SVGTransformable.h:
  • ksvg2/svg/SVGURIReference.cpp:
  • ksvg2/svg/SVGURIReference.h:
  • ksvg2/svg/SVGUnitTypes.h:
  • ksvg2/svg/SVGUseElement.cpp:
  • ksvg2/svg/SVGUseElement.h:
  • ksvg2/svg/SVGViewElement.cpp:
  • ksvg2/svg/SVGViewElement.h:
  • ksvg2/svg/SVGZoomAndPan.cpp:
  • ksvg2/svg/SVGZoomAndPan.h:
  • loader/Cache.cpp:
  • loader/Cache.h:
  • loader/CachedCSSStyleSheet.cpp:
  • loader/CachedCSSStyleSheet.h:
  • loader/CachedImage.cpp:
  • loader/CachedImage.h:
  • loader/CachedResource.cpp:
  • loader/CachedResource.h:
  • loader/CachedResourceClient.h:
  • loader/CachedResourceClientWalker.cpp:
  • loader/CachedResourceClientWalker.h:
  • loader/CachedScript.cpp:
  • loader/CachedScript.h:
  • loader/CachedXBLDocument.cpp:
  • loader/CachedXBLDocument.h:
  • loader/CachedXSLStyleSheet.cpp:
  • loader/CachedXSLStyleSheet.h:
  • loader/DocLoader.cpp:
  • loader/DocLoader.h:
  • loader/FTPDirectoryParser.cpp:
  • loader/FTPDirectoryParser.h:
  • loader/Request.cpp:
  • loader/Request.h:
  • loader/TextResourceDecoder.cpp:
  • loader/TextResourceDecoder.h:
  • loader/loader.cpp:
  • loader/loader.h:
  • page/Chrome.cpp:
  • page/Chrome.h:
  • page/ChromeClient.h:
  • page/Frame.cpp:
  • page/Frame.h:
  • page/FramePrivate.h:
  • page/FrameTree.cpp:
  • page/FrameTree.h:
  • page/FrameView.cpp:
  • page/FrameView.h:
  • page/MouseEventWithHitTestResults.cpp:
  • page/MouseEventWithHitTestResults.h:
  • page/Page.cpp:
  • page/Page.h:
  • page/Plugin.h:
  • page/mac/ChromeMac.mm:
  • platform/Arena.cpp:
  • platform/Arena.h:
  • platform/AtomicString.cpp:
  • platform/AtomicString.h:
  • platform/AtomicStringImpl.h:
  • platform/BidiContext.cpp:
  • platform/BidiContext.h:
  • platform/BidiResolver.h:
  • platform/Font.cpp:
  • platform/Font.h:
  • platform/FontData.h:
  • platform/FontDescription.h:
  • platform/FontFallbackList.h:
  • platform/PlatformString.h:
  • platform/PopupMenu.h:
  • platform/PopupMenuClient.h:
  • platform/SearchPopupMenu.h:
  • platform/SegmentedString.cpp:
  • platform/SegmentedString.h:
  • platform/Shared.h:
  • platform/StaticConstructors.h:
  • platform/String.cpp:
  • platform/StringHash.h:
  • platform/StringImpl.cpp:
  • platform/StringImpl.h:
  • platform/TextBreakIterator.h:
  • platform/TextBreakIteratorICU.cpp:
  • platform/TextBreakIteratorInternalICU.h:
  • platform/TextStyle.h:
  • platform/UnicodeRange.cpp:
  • platform/UnicodeRange.h:
  • platform/cf/StringCF.cpp:
  • platform/cf/StringImplCF.cpp:
  • platform/graphics/FloatPoint3D.cpp:
  • platform/graphics/FloatPoint3D.h:
  • platform/graphics/Icon.h:
  • platform/graphics/IntSizeHash.h:
  • platform/graphics/PathTraversalState.cpp:
  • platform/graphics/cairo/CairoPath.h:
  • platform/graphics/cairo/PathCairo.cpp:
  • platform/graphics/mac/IconMac.mm:
  • platform/graphics/qt/IconQt.cpp:
  • platform/graphics/svg/SVGResourceFilter.cpp:
  • platform/graphics/svg/SVGResourceFilter.h:
  • platform/graphics/svg/cg/SVGPaintServerCg.cpp:
  • platform/graphics/svg/cg/SVGPaintServerGradientCg.cpp:
  • platform/graphics/svg/cg/SVGPaintServerPatternCg.cpp:
  • platform/graphics/svg/cg/SVGPaintServerSolidCg.cpp:
  • platform/graphics/svg/filters/SVGDistantLightSource.h:
  • platform/graphics/svg/filters/SVGFEBlend.cpp:
  • platform/graphics/svg/filters/SVGFEBlend.h:
  • platform/graphics/svg/filters/SVGFEColorMatrix.cpp:
  • platform/graphics/svg/filters/SVGFEColorMatrix.h:
  • platform/graphics/svg/filters/SVGFEComponentTransfer.cpp:
  • platform/graphics/svg/filters/SVGFEComponentTransfer.h:
  • platform/graphics/svg/filters/SVGFEComposite.cpp:
  • platform/graphics/svg/filters/SVGFEComposite.h:
  • platform/graphics/svg/filters/SVGFEConvolveMatrix.cpp:
  • platform/graphics/svg/filters/SVGFEConvolveMatrix.h:
  • platform/graphics/svg/filters/SVGFEDiffuseLighting.cpp:
  • platform/graphics/svg/filters/SVGFEDiffuseLighting.h:
  • platform/graphics/svg/filters/SVGFEDisplacementMap.cpp:
  • platform/graphics/svg/filters/SVGFEDisplacementMap.h:
  • platform/graphics/svg/filters/SVGFEFlood.cpp:
  • platform/graphics/svg/filters/SVGFEFlood.h:
  • platform/graphics/svg/filters/SVGFEGaussianBlur.cpp:
  • platform/graphics/svg/filters/SVGFEGaussianBlur.h:
  • platform/graphics/svg/filters/SVGFEImage.cpp:
  • platform/graphics/svg/filters/SVGFEImage.h:
  • platform/graphics/svg/filters/SVGFEMerge.cpp:
  • platform/graphics/svg/filters/SVGFEMerge.h:
  • platform/graphics/svg/filters/SVGFEMorphology.cpp:
  • platform/graphics/svg/filters/SVGFEMorphology.h:
  • platform/graphics/svg/filters/SVGFEOffset.cpp:
  • platform/graphics/svg/filters/SVGFEOffset.h:
  • platform/graphics/svg/filters/SVGFESpecularLighting.cpp:
  • platform/graphics/svg/filters/SVGFESpecularLighting.h:
  • platform/graphics/svg/filters/SVGFETile.h:
  • platform/graphics/svg/filters/SVGFETurbulence.cpp:
  • platform/graphics/svg/filters/SVGFETurbulence.h:
  • platform/graphics/svg/filters/SVGFilterEffect.cpp:
  • platform/graphics/svg/filters/SVGFilterEffect.h:
  • platform/graphics/svg/filters/SVGLightSource.cpp:
  • platform/graphics/svg/filters/SVGLightSource.h:
  • platform/graphics/svg/filters/SVGPointLightSource.h:
  • platform/graphics/svg/filters/SVGSpotLightSource.h:
  • platform/graphics/svg/filters/cg/SVGFEBlendCg.mm:
  • platform/graphics/svg/filters/cg/SVGFEColorMatrixCg.mm:
  • platform/graphics/svg/filters/cg/SVGFEComponentTransferCg.mm:
  • platform/graphics/svg/filters/cg/SVGFECompositeCg.mm:
  • platform/graphics/svg/filters/cg/SVGFEDiffuseLightingCg.mm:
  • platform/graphics/svg/filters/cg/SVGFEDisplacementMapCg.mm:
  • platform/graphics/svg/filters/cg/SVGFEFloodCg.mm:
  • platform/graphics/svg/filters/cg/SVGFEGaussianBlurCg.mm:
  • platform/graphics/svg/filters/cg/SVGFEHelpersCg.h:
  • platform/graphics/svg/filters/cg/SVGFEHelpersCg.mm:
  • platform/graphics/svg/filters/cg/SVGFEImageCg.mm:
  • platform/graphics/svg/filters/cg/SVGFEMergeCg.mm:
  • platform/graphics/svg/filters/cg/SVGFEOffsetCg.mm:
  • platform/graphics/svg/filters/cg/SVGFESpecularLightingCg.mm:
  • platform/graphics/svg/filters/cg/SVGFETileCg.mm:
  • platform/graphics/svg/filters/cg/SVGFilterEffectCg.mm:
  • platform/graphics/svg/qt/RenderPathQt.cpp:
  • platform/graphics/svg/qt/SVGPaintServerGradientQt.cpp:
  • platform/graphics/svg/qt/SVGPaintServerLinearGradientQt.cpp:
  • platform/graphics/svg/qt/SVGPaintServerPatternQt.cpp:
  • platform/graphics/svg/qt/SVGPaintServerQt.cpp:
  • platform/graphics/svg/qt/SVGPaintServerRadialGradientQt.cpp:
  • platform/graphics/svg/qt/SVGPaintServerSolidQt.cpp:
  • platform/graphics/svg/qt/SVGResourceClipperQt.cpp:
  • platform/graphics/svg/qt/SVGResourceFilterQt.cpp:
  • platform/graphics/svg/qt/SVGResourceMaskerQt.cpp:
  • platform/graphics/win/IconWin.cpp:
  • platform/gtk/FontPlatformData.h:
  • platform/gtk/FontPlatformDataGtk.cpp:
  • platform/gtk/PopupMenuGtk.cpp:
  • platform/gtk/RenderThemeGtk.cpp:
  • platform/gtk/RenderThemeGtk.h:
  • platform/image-decoders/jpeg/JPEGImageDecoder.cpp:
  • platform/image-decoders/png/PNGImageDecoder.cpp:
  • platform/mac/FontMac.mm:
  • platform/mac/FontPlatformData.h:
  • platform/mac/LocalCurrentGraphicsContext.h:
  • platform/mac/LocalCurrentGraphicsContext.mm:
  • platform/mac/PopupMenuMac.mm:
  • platform/mac/SearchPopupMenuMac.mm:
  • platform/mac/StringImplMac.mm:
  • platform/mac/StringMac.mm:
  • platform/mac/TextBreakIteratorInternalICUMac.mm:
  • platform/network/FormData.cpp:
  • platform/network/FormData.h:
  • platform/qt/FileChooserQt.cpp:
  • platform/qt/FontQt.cpp:
  • platform/qt/MenuEventProxy.h:
  • platform/qt/PlugInInfoStoreQt.cpp:
  • platform/qt/PopupMenuQt.cpp:
  • platform/qt/QWebPopup.cpp:
  • platform/qt/QWebPopup.h:
  • platform/qt/RenderThemeQt.cpp:
  • platform/qt/RenderThemeQt.h:
  • platform/qt/SearchPopupMenuQt.cpp:
  • platform/qt/TextBreakIteratorQt.cpp:
  • platform/qt/WheelEventQt.cpp:
  • platform/win/FontPlatformData.h:
  • platform/win/FontPlatformDataWin.cpp:
  • platform/win/PopupMenuWin.cpp:
  • platform/win/SearchPopupMenuWin.cpp:
  • platform/win/TextBreakIteratorInternalICUWin.cpp:
  • rendering/AutoTableLayout.cpp:
  • rendering/AutoTableLayout.h:
  • rendering/CounterNode.cpp:
  • rendering/CounterNode.h:
  • rendering/DataRef.h:
  • rendering/EllipsisBox.cpp:
  • rendering/EllipsisBox.h:
  • rendering/FixedTableLayout.cpp:
  • rendering/FixedTableLayout.h:
  • rendering/GapRects.h:
  • rendering/HitTestRequest.h:
  • rendering/HitTestResult.cpp:
  • rendering/HitTestResult.h:
  • rendering/InlineBox.cpp:
  • rendering/InlineBox.h:
  • rendering/InlineFlowBox.cpp:
  • rendering/InlineFlowBox.h:
  • rendering/InlineRunBox.h:
  • rendering/InlineTextBox.cpp:
  • rendering/InlineTextBox.h:
  • rendering/Length.h:
  • rendering/ListMarkerBox.cpp:
  • rendering/ListMarkerBox.h:
  • rendering/RenderApplet.cpp:
  • rendering/RenderApplet.h:
  • rendering/RenderArena.cpp:
  • rendering/RenderArena.h:
  • rendering/RenderBR.cpp:
  • rendering/RenderBR.h:
  • rendering/RenderBlock.cpp:
  • rendering/RenderBlock.h:
  • rendering/RenderBox.cpp:
  • rendering/RenderBox.h:
  • rendering/RenderButton.cpp:
  • rendering/RenderButton.h:
  • rendering/RenderContainer.cpp:
  • rendering/RenderContainer.h:
  • rendering/RenderCounter.cpp:
  • rendering/RenderCounter.h:
  • rendering/RenderFieldset.cpp:
  • rendering/RenderFieldset.h:
  • rendering/RenderFileUploadControl.cpp:
  • rendering/RenderFileUploadControl.h:
  • rendering/RenderFlexibleBox.cpp:
  • rendering/RenderFlexibleBox.h:
  • rendering/RenderFlow.cpp:
  • rendering/RenderFlow.h:
  • rendering/RenderForeignObject.cpp:
  • rendering/RenderForeignObject.h:
  • rendering/RenderFrame.cpp:
  • rendering/RenderFrame.h:
  • rendering/RenderFrameSet.cpp:
  • rendering/RenderFrameSet.h:
  • rendering/RenderImage.cpp:
  • rendering/RenderImage.h:
  • rendering/RenderInline.cpp:
  • rendering/RenderInline.h:
  • rendering/RenderLayer.cpp:
  • rendering/RenderLayer.h:
  • rendering/RenderLegend.cpp:
  • rendering/RenderLegend.h:
  • rendering/RenderListItem.cpp:
  • rendering/RenderListItem.h:
  • rendering/RenderListMarker.cpp:
  • rendering/RenderListMarker.h:
  • rendering/RenderMenuList.cpp:
  • rendering/RenderMenuList.h:
  • rendering/RenderObject.cpp:
  • rendering/RenderObject.h:
  • rendering/RenderPart.cpp:
  • rendering/RenderPart.h:
  • rendering/RenderPartObject.cpp:
  • rendering/RenderPartObject.h:
  • rendering/RenderPath.cpp:
  • rendering/RenderPath.h:
  • rendering/RenderReplaced.cpp:
  • rendering/RenderReplaced.h:
  • rendering/RenderSVGBlock.cpp:
  • rendering/RenderSVGBlock.h:
  • rendering/RenderSVGContainer.cpp:
  • rendering/RenderSVGContainer.h:
  • rendering/RenderSVGGradientStop.cpp:
  • rendering/RenderSVGGradientStop.h:
  • rendering/RenderSVGHiddenContainer.cpp:
  • rendering/RenderSVGHiddenContainer.h:
  • rendering/RenderSVGImage.cpp:
  • rendering/RenderSVGImage.h:
  • rendering/RenderSVGInline.cpp:
  • rendering/RenderSVGInline.h:
  • rendering/RenderSVGInlineText.cpp:
  • rendering/RenderSVGInlineText.h:
  • rendering/RenderSVGTSpan.cpp:
  • rendering/RenderSVGTSpan.h:
  • rendering/RenderSVGText.cpp:
  • rendering/RenderSVGText.h:
  • rendering/RenderSlider.cpp:
  • rendering/RenderSlider.h:
  • rendering/RenderStyle.cpp:
  • rendering/RenderStyle.h:
  • rendering/RenderTable.cpp:
  • rendering/RenderTable.h:
  • rendering/RenderTableCell.cpp:
  • rendering/RenderTableCell.h:
  • rendering/RenderTableCol.cpp:
  • rendering/RenderTableCol.h:
  • rendering/RenderTableRow.cpp:
  • rendering/RenderTableRow.h:
  • rendering/RenderTableSection.cpp:
  • rendering/RenderTableSection.h:
  • rendering/RenderText.cpp:
  • rendering/RenderText.h:
  • rendering/RenderTextControl.cpp:
  • rendering/RenderTextControl.h:
  • rendering/RenderTextFragment.cpp:
  • rendering/RenderTextFragment.h:
  • rendering/RenderTheme.cpp:
  • rendering/RenderTheme.h:
  • rendering/RenderThemeMac.h:
  • rendering/RenderThemeMac.mm:
  • rendering/RenderThemeSafari.cpp:
  • rendering/RenderThemeSafari.h:
  • rendering/RenderThemeWin.cpp:
  • rendering/RenderThemeWin.h:
  • rendering/RenderView.cpp:
  • rendering/RenderView.h:
  • rendering/RenderWidget.cpp:
  • rendering/RenderWidget.h:
  • rendering/RootInlineBox.cpp:
  • rendering/RootInlineBox.h:
  • rendering/SVGInlineFlowBox.cpp:
  • rendering/SVGInlineFlowBox.h:
  • rendering/SVGInlineTextBox.cpp:
  • rendering/SVGInlineTextBox.h:
  • rendering/SVGRootInlineBox.cpp:
  • rendering/SVGRootInlineBox.h:
  • rendering/TableLayout.h:
  • rendering/bidi.cpp:
  • rendering/bidi.h:
  • rendering/break_lines.cpp:
  • rendering/break_lines.h:
  • xml/DOMParser.cpp:
  • xml/DOMParser.h:
  • xml/DOMParser.idl:
  • xml/XMLHttpRequest.cpp:
  • xml/XMLHttpRequest.h:
  • xml/XMLSerializer.cpp:
  • xml/XMLSerializer.h:
  • xml/XMLSerializer.idl:
  • xml/XPathEvaluator.idl:
  • xml/XPathExpression.idl:
  • xml/XPathNSResolver.idl:
  • xml/XPathResult.idl:
  • xml/XSLImportRule.cpp:
  • xml/XSLImportRule.h:
  • xml/XSLStyleSheet.cpp:
  • xml/XSLStyleSheet.h:
  • xml/XSLTProcessor.cpp:
  • xml/XSLTProcessor.h:

WebKitQt:

Reviewed by Adam.

  • Api/qcookiejar.cpp:
  • Api/qcookiejar.h:
  • Api/qwebframe.cpp:
  • Api/qwebframe.h:
  • Api/qwebframe_p.h:
  • Api/qwebhistoryinterface.cpp:
  • Api/qwebhistoryinterface.h:
  • Api/qwebkitglobal.h:
  • Api/qwebnetworkinterface.cpp:
  • Api/qwebnetworkinterface.h:
  • Api/qwebnetworkinterface_p.h:
  • Api/qwebobjectplugin.cpp:
  • Api/qwebobjectplugin.h:
  • Api/qwebobjectpluginconnector.cpp:
  • Api/qwebobjectpluginconnector.h:
  • Api/qwebpage.cpp:
  • Api/qwebpage.h:
  • Api/qwebpage_p.h:
  • Api/qwebpagehistory.cpp:
  • Api/qwebpagehistory.h:
  • Api/qwebsettings.cpp:
  • Api/qwebsettings.h:
  • WebCoreSupport/EditCommandQt.cpp:
  • WebCoreSupport/EditCommandQt.h:

WebKitSite:

Reviewed by Adam.

  • blog/wp-content/plugins/wp-cache/wp-cache.php:
  • blog/wp-includes/class-snoopy.php:
  • blog/wp-includes/gettext.php:
  • blog/wp-includes/js/tinymce/license.html:
  • blog/wp-includes/streams.php:

WebKitTools:

Reviewed by Adam.

  • Drosera/config.h:

LayoutTests:

Reviewed by Adam.

  • svg/carto.net/resources/button.js:
  • svg/carto.net/resources/colourPicker.js:
  • svg/carto.net/resources/comboBox.js:
  • svg/carto.net/resources/helper_functions.js:
  • svg/carto.net/resources/mapApp.js:
  • svg/carto.net/resources/scrollbar.js:
  • svg/carto.net/resources/selectionList.js:
  • svg/carto.net/resources/slider.js:
  • svg/carto.net/resources/tabgroup.js:
  • svg/carto.net/resources/textbox.js:
  • svg/carto.net/resources/window.js:
7:25 PM Changeset in webkit [25753] by weinig
  • 2 edits in trunk/JavaScriptCore

Fix location for build products for Debug_Internal.

Reviewed by Adam Roben.

7:24 PM Changeset in webkit [25752] by aroben
  • 1 edit in trunk/WebKitTools/WebKitInitializer/WebKitInitializer.cpp

Touch this file so it will rebuild

7:18 PM Changeset in webkit [25751] by ddkilzer
  • 3 edits in trunk/WebKitTools

WebKitTools:

Reviewed by Adam.

Make svn-apply and svn-unapply work with git-diff formatted patches.

  • Scripts/svn-apply: Apply a filter to the input if we find a git-diff marker before a patch. (gitdiff2svndiff): Added.
  • Scripts/svn-unapply: Ditto. (gitdiff2svndiff): Added.
7:14 PM Changeset in webkit [25750] by aroben
  • 2 edits in trunk/WebKitTools

Pull advapi32.lib into WebKitInitializer

This is needed to get the registry functions we use.

Rubberstamped by Sam.

  • WebKitInitializer/WebKitInitializer.vcproj:
6:56 PM Changeset in webkit [25749] by aroben
  • 3 edits in trunk/WebKitTools

Add python and rsync to cygwin-downloader

Our build slaves need this, and it can't hurt for everyone else to
have it, too.

Reviewed by Sam.

  • CygwinDownloader/cygwin-downloader.py: Added python and rsync.
  • CygwinDownloader/cygwin-downloader.zip: Regenerated.
6:21 PM Changeset in webkit [25748] by eseidel
  • 2 edits in branches/feature-branch/WebCore

2007-09-25 Eric Seidel <eric@webkit.org>

Reviewed by Mark Rowe.

I managed to break the SVG build when fixing the --no-svg build for
http://bugs.webkit.org/show_bug.cgi?id=15281
This adds the appropriate DOMSVG headers to the copy headers phase
(in fixing the no-svg build I mistakenly re-marked them project-only)

  • WebCore.xcodeproj/project.pbxproj:
6:19 PM Changeset in webkit [25747] by darin
  • 2 edits in trunk/WebCore

Reviewed by Harrison.

  • fix <rdar://problem/5503225> CrashTracer: [USER] 2 crashes in Dashcode at com.apple.WebCore: WebCore::Frame::document const + 0
  • page/FrameView.cpp: (WebCore::FrameView::updateControlTints): Added null check.
5:54 PM Changeset in webkit [25746] by aroben
  • 10 edits
    6 adds in trunk

Add WebKitInitializer and use it in DumpRenderTree and testkjs

JavaScriptCore:

Make testkjs use WebKitInitializer

Reviewed by Sam.

  • JavaScriptCore.vcproj/JavaScriptCore.sln: Add WebKitInitializer and make testkjs depend on it.
  • JavaScriptCore.vcproj/testkjs/testkjs.vcproj: Link against WebKitInitializer.lib.
  • kjs/testkjs.cpp: (main): Call initializeWebKit.

WebKitTools:

Add WebKitInitializer and use it in DumpRenderTree

WebKitInitializer is a static library that has one function,
initializeWebKit(). This registers WebKit and sets up the DLL search
path so that WebKit's dependencies that are installed with Safari can
be found.

Reviewed by Sam.

  • DumpRenderTree/DumpRenderTree.sln: Added WebKitInitializer and made DumpRenderTree depend on it.
  • DumpRenderTree/win/DumpRenderTree.cpp: (initialize): Call initializeWebKit.
  • DumpRenderTree/win/DumpRenderTree.vcproj: Link against WebKitInitializer.lib.
  • WebKitInitializer/WebKitInitializer.cpp: Added. (getStringValue): (getWebViewCLSID): (getInstalledWebKitDirectory): (initializeWebKit):
  • WebKitInitializer/WebKitInitializer.h: Added.
  • WebKitInitializer/WebKitInitializer.vcproj: Added.
  • WebKitInitializer/debug.vsprops: Added.
  • WebKitInitializer/release.vsprops: Added.

WebKit/win:

Add WebKitInitializer to WebKit.sln

Reviewed by Sam.

  • WebKit.vcproj/WebKit.sln: DumpRenderTree and testkjs now depend on WebKitInitializer.
5:54 PM Changeset in webkit [25745] by bdash
  • 4 edits in trunk

Versioning.

5:52 PM Changeset in webkit [25744] by bdash
  • 1 copy in tags/Safari-4523.9

New tag.

5:52 PM Changeset in webkit [25743] by bdash
  • 1 copy in tags/Safari-5523.9

New tag.

5:16 PM Changeset in webkit [25742] by sfalken
  • 1 copy in tags/Safari-523.8b

New tag.

5:16 PM Changeset in webkit [25741] by sfalken
  • 1 edit in trunk/WebKit/win/WebKit.vcproj/VERSION

Bump version for submit

4:11 PM Changeset in webkit [25740] by tristan
  • 3 edits in branches/Safari-2.0-dashboard/WebCore

Merge r24994 from ToT to Safari-2.0-dashboard.


2007-08-09 Sam Weinig <sam@webkit.org>

Reviewed by Maciej.

Fix for <rdar://problem/5395618>

Use checkNodeSecurity when setting the 'src' or 'location' attribute of an
iframe or frame element.

  • WebCore.xcodeproj/project.pbxproj:
  • bindings/js/JSAttrCustom.cpp: Added. (WebCore::JSAttr::setValue): Call checkNodeSecurity for attributes with a current iframe or frame ownerElement when setting src to a javascript: URL.
  • bindings/js/JSElementCustom.cpp: Added. (WebCore::allowSettingSrcToJavascriptURL): (WebCore::JSElement::setAttribute): Call checkNodeSecurity when element is a frame or iframe and setting he src attribute to a javascript: URL. (WebCore::JSElement::setAttributeNode): Ditto. (WebCore::JSElement::setAttributeNS): Ditto. (WebCore::JSElement::setAttributeNodeNS): Ditto.
  • bindings/js/JSHTMLFrameElementCustom.cpp: Added. (WebCore::allowSettingJavascriptURL): (WebCore::JSHTMLFrameElement::setSrc): Call checkNodeSecurity when setting to a javascript: URL. (WebCore::JSHTMLFrameElement::setLocation): Ditto.
  • bindings/js/JSHTMLIFrameElementCustom.cpp: Added. (WebCore::JSHTMLIFrameElement::setSrc): Call checkNodeSecurity when setting to a javascript: URL.
  • bindings/scripts/CodeGeneratorJS.pm: Add support for [CustomGetter] and [CustomSetter]
  • dom/Attr.idl:
  • dom/Element.idl:
  • html/HTMLFrameElement.idl:
  • html/HTMLIFrameElement.idl:
3:53 PM Changeset in webkit [25739] by bdakin
  • 3 edits in trunk/WebCore

Reviewed by Darin.

Fixes http://bugs.webkit.org/show_bug.cgi?id=15282 r25726 caused
plugins/mouse-events.html to fail

  • page/FrameView.cpp: (WebCore::FrameView::layout): We need to call updateWidgetPosition() after updating each widget.
3:45 PM Changeset in webkit [25738] by andersca
  • 2 edits in trunk/WebCore

Build fix.


  • page/Chrome.cpp: (WebCore::PageGroupLoadDeferrer::PageGroupLoadDeferrer):
3:45 PM Changeset in webkit [25737] by darin
  • 1 edit in trunk/JavaScriptCore/pcre/MERGING

One more edit.

3:44 PM Changeset in webkit [25736] by darin
  • 1 edit in trunk/JavaScriptCore/pcre/MERGING

Some quick edits.

3:38 PM Changeset in webkit [25735] by andersca
  • 2 edits in trunk/WebCore

Reviewed by Geoff.

<rdar://problem/5283916>
JavaScript timers may be firing while JavaScript alerts are displayed.


Pause JavaScript timeouts while calling UI delegate methods that might show dialogs.


  • page/Chrome.cpp: (WebCore::PageGroupLoadDeferrer::PageGroupLoadDeferrer): (WebCore::PageGroupLoadDeferrer::~PageGroupLoadDeferrer):
3:35 PM Changeset in webkit [25734] by darin
  • 1 add in trunk/JavaScriptCore/pcre/MERGING

Added a file with some helpful information for someone who wants to merge
with a newer version of PCRE.

3:18 PM Changeset in webkit [25733] by eseidel
  • 9 edits
    2 moves
    1 add in branches/feature-branch

2007-09-25 Eric Seidel <eric@webkit.org>

Reviewed by Oliver Hunt.

http://bugs.webkit.org/show_bug.cgi?id=15281
This only affects Debug builds, and the ability to save SVGs as WebArchives
neither are testable via DumpRenderTree.

  • Configurations/WebCore.xcconfig: change where Xcode looks for WebCore.exp
  • DerivedSources.make: adds SVG symbols to WebCore.exp when necessary
  • WebCore.SVG.exp: Added.
  • WebCore.exp: moved to WebCore.base.exp
  • WebCore.xcodeproj/project.pbxproj: updated to reflect moved files
  • bindings/objc/DOMSVGExecption.h: moved to DOMSVGException.h
2:09 PM Changeset in webkit [25732] by eseidel
  • 2 edits in branches/feature-branch/WebKitTools

2007-09-25 Eric Seidel <eric@webkit.org>

Reviewed by Mark Rowe.


DerivedSources.make was finding "ENABLE_SVG" in the string
"ENABLE_SVG_EXPERIMENTAL_FEATURES" thus --no-svg wasn't functioning
quite correctly.

  • Scripts/build-webkit: make --no-svg imply --no-svg-experimental
1:22 PM Changeset in webkit [25731] by aroben
  • 2 edits in trunk/WebKitTools

Make run-webkit-tests respect set-webkit-configuration

Reviewed by Sam.

  • Scripts/run-webkit-tests: Initialize $configuration to whatever set-webkit-configuration was last set to.
1:08 PM Changeset in webkit [25730] by eseidel
  • 1 edit in branches/feature-branch/WebCore/ChangeLog

Correct the spelling of Rob's name

1:06 PM Changeset in webkit [25729] by eseidel
  • 2 edits in branches/feature-branch/WebCore

2007-09-25 Eric Seidel <eric@webkit.org>

Reviewed by Rob Bius.

Already tested by SVG/W3C-SVG-1.1/linking-a-07-t.svg

  • ksvg2/svg/SVGAElement.cpp: (WebCore::SVGAElement::defaultEventHandler): properly pass along target values
11:54 AM Changeset in webkit [25728] by bdash
  • 2 edits in branches/feature-branch/WebKitTools

2007-09-25 Mark Rowe <mrowe@apple.com>

Rubber-stamped by Eric.

  • BuildSlaveSupport/build-launcher-dmg: Allow the platform tag to be specified on the command line. This makes it possible to automate nightly builds for the feature-branch.
11:53 AM Changeset in webkit [25727] by bdash
  • 2 edits in trunk/WebKitTools

2007-09-25 Mark Rowe <mrowe@apple.com>

Rubber-stamped by Eric.

  • BuildSlaveSupport/build-launcher-dmg: Allow the platform tag to be specified on the command line. This makes it possible to automate nightly builds for the feature-branch.
11:35 AM Changeset in webkit [25726] by bdakin
  • 5 edits in trunk/WebCore

Reviewed by Darin.

Fix for <rdar://problem/5466459> CrashTracer: [USER] 1 crash in
NetNewsWire at com.apple.WebCore: WebCore::bidiNext + 485 (15241)

Mitz discovered that this crash appeared because r25128 made it
possible for RenderPartObject::updateWidget() to be called during
layout. updateWidget() can, through a series of calls, cause an
attach/detach to happen, which is very bad in the middle of a
layout and is what led to this crash. This patch fixes that by
having the FrameView keep track of a queue of RenderPartObjects
that need to call updateWidget(), and it goes through the queue
calling updateWidget() as soon as layout is done.

  • page/FrameView.cpp: We only want to call updateWidget() if we are not in a nested layout. Unfortunately, the existing variables on FrameViewPrivate do not have exactly the information that we need, so I added nestedLayoutCount. (WebCore::FrameViewPrivate::reset): Reset nestedLayoutCount. (WebCore::FrameView::layout): Increment nestedLayoutCount once we have gotten through all of the early returns. Call updateWidget() after layout is nestedLayoutCount is 1 and there are widgets to update. Decrement nestedLayoutCount at the end. (WebCore::FrameView::addWidgetToUpdate): (WebCore::FrameView::removeWidgetToUpdate):
  • page/FrameView.h:
  • rendering/RenderPartObject.cpp: (WebCore::RenderPartObject::~RenderPartObject): Remove this from the FrameView's update set. (WebCore::RenderPartObject::layout): Instead of calling updateWidget() immediately, add this to the update widget set on FrameView.
  • rendering/RenderPartObject.h:
11:10 AM Changeset in webkit [25725] by aroben
  • 3 edits in trunk/WebKitTools

A couple of fixes/enhancements to update-webkit-*-libs

You can now specify WEBKITSUPPORTLIBRARIESZIPDIR=C:\my\special\place
to tell update-webkit-support-libraries where it should find the
WebKitSupportLibrary.zip file you downloaded.

These scripts also now correctly interpret WEBKITLIBRARIESDIR as a
Windows-style path.

Reviewed by Sam.

  • Scripts/update-webkit-auxiliary-libs: Also renamed $supportLibsURL to $auxiliaryLibsURL and removed an irrelevant comment.
  • Scripts/update-webkit-support-libs:
11:08 AM Changeset in webkit [25724] by ddkilzer
  • 2 edits in trunk/WebCore

WebCore:

Reviewed by Mark Rowe.

  • dom/XMLTokenizer.cpp: Moved #include "SVGStyleElement.h" into #if ENABLE(SVG).
2:28 AM Changeset in webkit [25723] by hausmann
  • 1 edit in trunk/WebKitQt/ChangeLog

Fix ChangeLog typo.

2:27 AM Changeset in webkit [25722] by hausmann
  • 10 edits in trunk

Comitted Adam's patch to improve DumpRenderTree for the Qt build.

1:57 AM Changeset in webkit [25721] by justing
  • 8 edits
    4 adds in trunk

WebCore:

Reviewed by Darin.

<rdar://problem/5483567>
REGRESSION (Tiger only, workaround in AppKit on Leopard): Pasting words copied from TextEdit in Mail adds extra newline


  • editing/ReplaceSelectionCommand.cpp: (WebCore::ReplaceSelectionCommand::removeUnrenderedNodes): Added. (WebCore::ReplaceSelectionCommand::doApply): Call removeUnrenderedNodes to prevent unrendered spaces from interfering with paragraph merging.
  • editing/ReplaceSelectionCommand.h:

LayoutTests:

Reviewed by Darin.


<rdar://problem/5483567>
REGRESSION (Tiger only, workaround in AppKit on Leopard): Pasting words copied from TextEdit in Mail adds extra newline


Demonstrate fix:

  • editing/pasteboard/5483567.html: Added.
  • platform/mac/editing/pasteboard/5483567-expected.checksum: Added.
  • platform/mac/editing/pasteboard/5483567-expected.png: Added.
  • platform/mac/editing/pasteboard/5483567-expected.txt: Added.


Unrendered nodes removed:

  • editing/pasteboard/nested-blocks-with-text-area-expected.txt:
  • editing/pasteboard/nested-blocks-with-text-field-expected.txt:
  • editing/pasteboard/paste-RTFD-expected.txt:

Sep 24, 2007:

5:53 PM Changeset in webkit [25720] by sfalken
  • 2 edits in trunk/WebCore

Reviewed by Darin.

  • fix <rdar://problem/5502513>
  • platform/win/FontCacheWin.cpp: (WebCore::FontCache::getFontLinkInterface): Roll back this file; the old code leaked a global COM object, but that's no big deal and the new code caused a crash on quit.
5:01 PM Changeset in webkit [25719] by andersca
  • 2 edits in trunk/WebCore

Reviewed by Adam.

<rdar://problem/5494608>
Seed: Safari will follow links in Flash movies without clicking.

Make sure to handle mouseover and mouseout so the plug-in can track when the mouse is over it.


  • plugins/win/PluginViewWin.cpp: (WebCore::PluginViewWin::handleMouseEvent):
4:37 PM Changeset in webkit [25718] by thatcher
  • 2 edits in trunk/WebKit

Reviewed by Darin.

<rdar://problem/5498016> Photoshop CS3: Adobe Help Viewer 1.1 crashes in 9A553

WebKit started calling the mouseDidMoveOverElement delegate method with a nil dictionary in r14982.
We originally intended to call this delegate method sometimes with a nil dictionary, but due to
a bug dating back to WebKit 1.0 this delegate was never called with nil! Unfortunately we can't
start calling this with nil since it will break Adobe Help Viewer, and possibly other clients.

  • WebView/WebView.mm: (-[WebView _mouseDidMoveOverElement:modifierFlags:]):
3:45 PM Changeset in webkit [25717] by weinig
  • 2 edits in trunk/LayoutTests

Reviewed by Adam Roben.

  • platform/win/Skipped: Comment out currently disabled tests.
2:36 PM Changeset in webkit [25716] by darin
  • 8 edits in trunk/WebKit/win

Reviewed by Steve.

  • fix <rdar://problem/5095701> Download requring HTTP auth fails (progress bar forever)

The functions in WebDownload relating to authentication challenges needed
to be implemented.

  • WebDownload.cpp: (WebDownload::cancelAuthenticationChallenge): Implement. (WebDownload::continueWithoutCredentialForAuthenticationChallenge): Ditto. (WebDownload::useCredential): Ditto. (WebDownload::willSendRequest): Fix storage leak by adopting request and response after creating them. Also retain the result before returning it, since that's the API contract with CFNetwork. (WebDownload::didReceiveAuthenticationChallenge): Implement. (WebDownload::didReceiveResponse): Fix storage leak by adopting response. (WebDownload::willResumeWithResponse): Ditto. (WebDownload::didFail): Ditto.
  • WebURLAuthenticationChallenge.h: Get rid of the IID #define, instead using declspec(uuid). Added a sender parameter to the create function and an m_sender data member.
  • WebURLAuthenticationChallenge.cpp: (WebURLAuthenticationChallenge::WebURLAuthenticationChallenge): Added an explicit sender parameter so this can be used with a WebDownload, which does not involve a ResourceHandle. Later we should clean this up and not involve WebCore or ResourceHandle directly even for the non-download case. (WebURLAuthenticationChallenge::createInstance): Added an overload for the case with an explicit sender parameter. (WebURLAuthenticationChallenge::QueryInterface): Use uuidof for the ID of this class. In general, we should move to uuidof as much as possible and keep the separate macros to a minimum -- but we should do this for all uses of each class at one time to make sure we don't run into problems with two different UUIDs for the same class. This patch does it for three classes. (WebURLAuthenticationChallenge::initWithProtectionSpace): Use the query constructor instead of an explicit QueryInterface for WebURLCredential. This is another class where I'm switching from CLSID/IID macros to the use of uuidof, but in this case the use of uuidof is implicit. (WebURLAuthenticationChallenge::initWithAuthenticationChallenge): Ditto, but for WebURLAuthenticationChallenge and WebURLAuthenticationChallengeSender. (WebURLAuthenticationChallenge::sender): Use the new m_sender member to cache the sender object and also use the one that was passed into the constructor, if any.
  • WebURLAuthenticationChallengeSender.h: Get rid of the IID #define, instead using declspec(uuid). Also minimize includes and make data members private instead of protected.
  • WebURLAuthenticationChallengeSender.cpp: (WebURLAuthenticationChallengeSender::QueryInterface): Use uuidof instead of IID macro. (WebURLAuthenticationChallengeSender::cancelAuthenticationChallenge): Use query constructor instead of QueryInterface. (WebURLAuthenticationChallengeSender::continueWithoutCredentialForAuthenticationChallenge): Ditto. (WebURLAuthenticationChallengeSender::useCredential): Ditto.
  • WebURLCredential.cpp: (WebURLCredential::QueryInterface): Use uuidof instead of CLSID_WebURLCredential.
  • tangentially-related cleanup
  • WebFrame.cpp: (WebFrame::dispatchDidReceiveAuthenticationChallenge): Use the adopt constructor instead of a separate adoptRef call. (WebFrame::dispatchDidCancelAuthenticationChallenge): Ditto.
1:58 PM Changeset in webkit [25715] by kmccullo
  • 1 edit
    1 delete in trunk/WebKitTools
  • Reverted an accidentally checked in file.
  • Drosera/win/DebuggerDocumentPlatform.cpp: Removed.
1:10 PM Changeset in webkit [25714] by kmccullo
  • 3 edits in trunk/JavaScriptCore

Reviewed by Sam.

  • Continued to update project files to not use Edit and Continue for Debug Information since it doesn't work and breaks some functionality.
11:25 AM Changeset in webkit [25713] by staikos
  • 5 edits in trunk/WebCore

2007-09-24 Mike Fenton <mike@staikos.net>

Reviewed by George Staikos.

Switch to using a QImage instead of a QPixmap to make transparency work.

  • html/CanvasRenderingContext2D.cpp: (WebCore::CanvasRenderingContext2D::drawImage):
  • html/HTMLCanvasElement.cpp: (WebCore::HTMLCanvasElement::paint): (WebCore::HTMLCanvasElement::createDrawingContext): (WebCore::HTMLCanvasElement::createPlatformImage):
  • html/HTMLCanvasElement.h:
10:04 AM Changeset in webkit [25712] by kmccullo
  • 8 edits
    1 add in trunk

JavaScriptCore:

Reviewed by Sam.

  • Updated project files to not use Edit and Continue for Debug Information since it doesn't work and breaks some functionality.

WebCore:

Reviewed by Sam.

  • Updated project files to not use Edit and Continue for Debug Information since it doesn't work and breaks some functionality.
  • WebCore.vcproj/WebCore.vcproj:

WebKitTools:

Reviewed by Sam.

  • Updated project files to not use Edit and Continue for Debug Information since it doesn't work and breaks some functionality.
  • DumpRenderTree/win/DumpRenderTree.vcproj:
  • DumpRenderTree/win/TestNetscapePlugin/TestNetscapePlugin.vcproj:
9:59 AM Changeset in webkit [25711] by kmccullo
  • 2 edits in trunk/LayoutTests

Reviewed by Sam.

  • Added a new test that will not pass until DRT supports new windows.
  • platform/win/Skipped:
9:34 AM Changeset in webkit [25710] by beidson
  • 4 edits in trunk

WebKit/win:

Reviewed by John Sullivan

Fix for <rdar://5493371> - Crash in Icon Database on Windows


  • WebIconDatabase.cpp: (WebIconDatabase::iconForURL): If the URL is NULL, fallback to the default icon without asking WebCore

WebCore:

Reviewed by John Sullivan

  • loader/icon/IconDatabase.cpp: (WebCore::IconDatabase::iconForPageURL): Assert the page url is non-null
9:26 AM Changeset in webkit [25709] by aroben
  • 2 edits in trunk/WebKit/win

Fix <rdar://5499507> FrameView will always have size (0,0) if its parent WebView is never resized

Reviewed by Darin.

  • WebView.cpp: (WebView::initWithFrame): Set the main FrameView's size to the size of the WebView.
Note: See TracTimeline for information about the timeline view.