Index: Source/WebKit/wx/ChangeLog |
=================================================================== |
--- Source/WebKit/wx/ChangeLog (revision 79367) |
+++ Source/WebKit/wx/ChangeLog (working copy) |
@@ -1,3 +1,132 @@ |
+2011-02-19 Charlie Reis <creis@chromium.org> |
+ |
+ Reviewed by Mihai Parparita. |
+ |
+ Ensure loading has stopped in HistoryController::goToItem |
+ https://bugs.webkit.org/show_bug.cgi?id=54517 |
+ |
+ Add a FrameLoaderClient callback for whether to stop loading before goToItem. |
+ |
+ Test: http/tests/navigation/forward-to-fragment-fires-onload.html |
+ |
+ * WebKitSupport/FrameLoaderClientWx.cpp: |
+ (WebCore::FrameLoaderClientWx::shouldStopLoadingForHistoryItem): Added. |
+ * WebKitSupport/FrameLoaderClientWx.h: |
+ |
+2011-02-17 Kevin Ollivier <kevino@theolliviers.com> |
+ |
+ [wx] Build fix after move of DocumentWriter to DocumentLoader. |
+ |
+ * WebKitSupport/FrameLoaderClientWx.cpp: |
+ (WebCore::FrameLoaderClientWx::setMainDocumentError): |
+ (WebCore::FrameLoaderClientWx::dispatchDidFailLoading): |
+ |
+2011-01-26 MORITA Hajime <morrita@google.com> |
+ |
+ Reviewed by Ryosuke Niwa. |
+ |
+ Refactoring: Extract TextCheckerClient from EditorClient |
+ https://bugs.webkit.org/show_bug.cgi?id=53213 |
+ |
+ * WebKitSupport/EditorClientWx.h: |
+ (WebCore::EditorClientWx::textChecker): |
+ |
+2011-02-07 Ryosuke Niwa <rniwa@webkit.org> |
+ |
+ Reviewed by Adam Barth. |
+ |
+ Add EditorClient callbacks to override isDOMPasteAllowed and javaScriptCanAccessClipboard |
+ https://bugs.webkit.org/show_bug.cgi?id=52417 |
+ |
+ Added two callback functions, canCopyCut and canPaste to EditorClient. They are currently |
+ not implemented. |
+ |
+ * WebKitSupport/EditorClientWx.cpp: |
+ (WebCore::EditorClientWx::canCopyCut): Added. |
+ (WebCore::EditorClientWx::canPaste): Added. |
+ * WebKitSupport/EditorClientWx.h: |
+ |
+2011-02-10 Nate Chapin <japhet@chromium.org> |
+ |
+ Reviewed by Adam Barth. |
+ |
+ Update calls to DocumentWriter. |
+ https://bugs.webkit.org/show_bug.cgi?id=50489 |
+ |
+ * WebKitSupport/FrameLoaderClientWx.cpp: |
+ (WebCore::FrameLoaderClientWx::finishedLoading): |
+ |
+2011-02-08 Adam Barth <abarth@webkit.org> |
+ |
+ Reviewed by Eric Seidel. |
+ |
+ Remove orphan code from old parser |
+ https://bugs.webkit.org/show_bug.cgi?id=53984 |
+ |
+ * WebKitSupport/ChromeClientWx.h: |
+ |
+2011-02-07 Enrica Casucci <enrica@apple.com> |
+ |
+ Reviewed Adam Roben and Darin Adler. |
+ |
+ WebKit2: drag and drop support on Windows. |
+ https://bugs.webkit.org/show_bug.cgi?id=52775 |
+ |
+ Removed createDragImageForLink from DragClient. |
+ |
+ * WebKitSupport/DragClientWx.cpp: |
+ * WebKitSupport/DragClientWx.h: |
+ |
+2011-02-07 Patrick Gansterer <paroga@webkit.org> |
+ |
+ Reviewed by Andreas Kling. |
+ |
+ [wx] FrameLoaderClient calls loadURLInChildFrame on the child's frame loader |
+ https://bugs.webkit.org/show_bug.cgi?id=53895 |
+ |
+ * WebKitSupport/FrameLoaderClientWx.cpp: |
+ (WebCore::FrameLoaderClientWx::createFrame): Use m_frame instead of childFrame. |
+ |
+2011-02-03 Adam Langley <agl@chromium.org> |
+ |
+ Reviewed by Adam Barth. |
+ |
+ Plumb mixed script URL to FrameLoaderClient |
+ https://bugs.webkit.org/show_bug.cgi?id=52384 |
+ |
+ Regressions covered by http/tests/security/mixedContent/* |
+ |
+ * WebKitSupport/FrameLoaderClientWx.cpp: |
+ (WebCore::FrameLoaderClientWx::didRunInsecureContent): |
+ * WebKitSupport/FrameLoaderClientWx.h: |
+ |
+2011-02-02 Kevin Ollivier <kevino@theolliviers.com> |
+ |
+ [wx] Build fixes for wxWebKit. |
+ |
+ * bindings/python/wscript: |
+ |
+2011-01-28 Dan Bernstein <mitz@apple.com> |
+ |
+ Reviewed by Sam Weinig. |
+ |
+ <select> can't display right-to-left (rtl) languages |
+ https://bugs.webkit.org/show_bug.cgi?id=19785 |
+ |
+ * WebKitSupport/ChromeClientWx.cpp: |
+ (WebCore::ChromeClientWx::selectItemAlignmentFollowsMenuWritingDirection): Added. |
+ * WebKitSupport/ChromeClientWx.h: |
+ |
+2011-01-27 Nate Chapin <japhet@chromium.org> |
+ |
+ Reviewed by Adam Barth. |
+ |
+ Use Document::url() instead of FrameLoader::url(). |
+ https://bugs.webkit.org/show_bug.cgi?id=41165 |
+ |
+ * WebKitSupport/FrameLoaderClientWx.cpp: |
+ (WebCore::FrameLoaderClientWx::dispatchDidFinishDocumentLoad): |
+ |
2011-01-14 Yuzo Fujishima <yuzo@google.com> |
Reviewed by Antti Koivisto. |